* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "ten-mincho", serif;
  color: #2d2a20;
  font-size: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  scroll-behavior: smooth;
}
@media screen and (max-width: 980px) {
  html {
    min-width: 980px;
  }
}
@media screen and (max-width: 767px) {
  html {
    min-width: 100%;
    scroll-padding-top: 60px;
  }
}

.sidebar {
  position: fixed;
  width: 260px;
  height: 100%;
  padding-bottom: 30px;
  color: #222530;
  border-right: 1px solid #817f79;
  background-image: url("./img/top-bg.jpg");
  overflow: scroll;
  z-index: 99999;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .sidebar {
    width: 100%;
    max-height: 0;
    padding: 0 50px;
    left: 0;
    top: 0;
  }
}
.sidebar::after {
  content: "";
  display: none;
  position: absolute;
  width: 350px;
  height: 42px;
  margin-top: 15px;
  background-image: url("./img/top-deco-s1.png");
  background-size: cover;
  background-position: top center;
  left: -57px;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@media screen and (max-width: 767px) {
  .sidebar::after {
    display: block;
  }
}
.sidebar.active {
  max-height: 100%;
  padding: 60px 50px 55px;
}
.sidebar::-webkit-scrollbar {
  display: none;
}
.sidebar .sidebar-logo {
  margin-top: 30px;
  padding: 0 68px;
}
@media screen and (max-width: 767px) {
  .sidebar .sidebar-logo {
    padding: 0 40px;
  }
}
.sidebar .sidebar-logo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sidebar .sidebar-logo img {
    padding: 0 20px;
  }
}
.sidebar .sidebar-logo p {
  margin-top: 12px;
  font-size: 1.4rem;
  text-align: center;
}
.sidebar-contacts__wrapper {
  padding: 30px 0;
}
.sidebar-contacts {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 5px;
  background-color: #145c86;
}
.sidebar-contacts:not(:last-child) {
  margin-bottom: 15px;
}
.sidebar-contacts__row {
  gap: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sidebar-contacts__row span {
  padding: 1px 8px;
  font-size: 8px;
  color: #145c86;
  border-radius: 7px;
  background-color: #fff;
}
.sidebar-contacts__row img {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
.sidebar-contacts__row:not(:last-child) {
  margin-bottom: 5px;
}
.sidebar-contacts__txt {
  color: #fff;
  font-size: 1.6rem;
}
.sidebar-contacts__txt.lg {
  font-size: 2.3rem;
}
.sidebar-contacts__txt.sm {
  font-size: 1rem;
}
.sidebar-nav {
  margin-top: 65px;
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
  .sidebar-nav {
    margin-top: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .sidebar-nav__item {
    width: 100%;
    padding: 13px 20px;
    background-color: #ffe3bb;
    border-radius: 8px;
  }
}
.sidebar-nav__item:not(:last-child) {
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .sidebar-nav__item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.sidebar-nav__item:last-child {
  margin-top: 70px;
}
.sidebar-nav__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sidebar-nav__link::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 10px;
    background-image: url("./img/icons/arrow-right-dbrown.png");
    background-size: cover;
    background-position: center;
    right: 20px;
    top: 50%;
    -webkit-transform: translate(20px, -50%);
            transform: translate(20px, -50%);
    -webkit-animation: linkarrow-reverse 0.3s;
            animation: linkarrow-reverse 0.3s;
  }
}
.sidebar-nav__link img {
  width: 10%;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .sidebar-nav__link img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
  }
}
.sidebar-nav__link.active::after {
  -webkit-animation: linkarrow 0.3s forwards;
          animation: linkarrow 0.3s forwards;
  -webkit-transform: translate(20px, -50%);
          transform: translate(20px, -50%);
}
.sidebar-nav__link:hover .sidebar-nav__item-txt::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.sidebar-nav__sublink {
  max-height: 0;
  font-size: 1.4rem;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar-nav__sublink.active {
  max-height: 999px;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.sidebar-nav__sublink a {
  display: block;
  margin-top: 15px;
  padding-left: 35px;
}
.sidebar-nav__item-txt {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.75em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sidebar-nav__item-txt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFBC50;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.sidebar-nav__item-txt:hover {
  padding: 0 10px;
}

.mvnbc-mv {
  position: relative;
  height: 560px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mvnbc-mv {
    height: 300px;
  }
}
.mvnbc-mv::before {
  content: "";
  position: absolute;
  width: 840px;
  height: 137px;
  background-image: url("./img/top-deco-s1.png");
  background-size: cover;
  background-position: center;
  left: -150px;
  bottom: -35px;
}
@media screen and (max-width: 767px) {
  .mvnbc-mv::before {
    width: 350px;
    height: 57px;
    right: -80px;
    bottom: -20px;
  }
}
.mvnbc-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mvnbc-mv--case img {
  -o-object-position: 35% 50%;
     object-position: 35% 50%;
}
.mvnbc-mv--h350 {
  height: 350px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .mvnbc-mv--h350 {
    height: 300px;
  }
}
.mvnbc-bc {
  margin: 105px auto 78px !important;
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mvnbc-bc {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 767px) {
  .mvnbc-bc {
    margin: 60px auto 45px !important;
  }
}
.mvnbc-bc--noimage {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto !important;
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mvnbc-bc--noimage {
    max-width: 100%;
    padding: 0 6%;
  }
}
.mvnbc-bc__title {
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .mvnbc-bc__title {
    font-size: 3.6rem;
  }
}
.mvnbc-bc__breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.mvnbc-bc__item {
  position: relative;
  font-size: 1.4rem;
  color: #817f79;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .mvnbc-bc__item {
    font-size: 1.2rem;
  }
}
.mvnbc-bc__item:not(:last-child) {
  margin-right: 20px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .mvnbc-bc__item:not(:last-child) {
    margin-right: 10px;
    padding-right: 18px;
  }
}
.mvnbc-bc__item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 7.5px;
  height: 10px;
  background-image: url("./img/icons/carret-right.svg");
  background-size: cover;
  background-position: center;
  right: 0;
  top: 6px;
}
@media screen and (max-width: 767px) {
  .mvnbc-bc__item:not(:last-child)::after {
    top: 4px;
  }
}
.mvnbc-bc__item:last-child {
  color: #145c86;
}

@-webkit-keyframes linkhover {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
  }
  55% {
    opacity: 0;
    -webkit-transform: translate(-150%, -50%);
            transform: translate(-150%, -50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-10%, -50%);
            transform: translate(-10%, -50%);
  }
}

@keyframes linkhover {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
  }
  55% {
    opacity: 0;
    -webkit-transform: translate(-150%, -50%);
            transform: translate(-150%, -50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-10%, -50%);
            transform: translate(-10%, -50%);
  }
}
@-webkit-keyframes linkhover-s2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  55% {
    opacity: 0;
    -webkit-transform: translate(-50%, 30%);
            transform: translate(-50%, 30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes linkhover-s2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  55% {
    opacity: 0;
    -webkit-transform: translate(-50%, 30%);
            transform: translate(-50%, 30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes linkarrow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(40px, -50%);
            transform: translate(40px, -50%);
  }
  55% {
    opacity: 0;
    -webkit-transform: translate(0, -20%);
            transform: translate(0, -20%);
  }
  80% {
    opacity: 0;
    -webkit-transform: translate(20px, 130%) rotate(-90deg);
            transform: translate(20px, 130%) rotate(-90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(20px, -50%) rotate(-90deg);
            transform: translate(20px, -50%) rotate(-90deg);
  }
}
@keyframes linkarrow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(40px, -50%);
            transform: translate(40px, -50%);
  }
  55% {
    opacity: 0;
    -webkit-transform: translate(0, -20%);
            transform: translate(0, -20%);
  }
  80% {
    opacity: 0;
    -webkit-transform: translate(20px, 130%) rotate(-90deg);
            transform: translate(20px, 130%) rotate(-90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(20px, -50%) rotate(-90deg);
            transform: translate(20px, -50%) rotate(-90deg);
  }
}
@-webkit-keyframes linkarrow-reverse {
  0% {
    opacity: 1;
    -webkit-transform: translate(20px, -50%) rotate(-90deg);
            transform: translate(20px, -50%) rotate(-90deg);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(20px, -200%) rotate(-90deg);
            transform: translate(20px, -200%) rotate(-90deg);
  }
  55% {
    opacity: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  60% {
    opacity: 0;
    -webkit-transform: translate(-10px, -50%);
            transform: translate(-10px, -50%);
  }
  100% {
    opacity: 1;
  }
}
@keyframes linkarrow-reverse {
  0% {
    opacity: 1;
    -webkit-transform: translate(20px, -50%) rotate(-90deg);
            transform: translate(20px, -50%) rotate(-90deg);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(20px, -200%) rotate(-90deg);
            transform: translate(20px, -200%) rotate(-90deg);
  }
  55% {
    opacity: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  60% {
    opacity: 0;
    -webkit-transform: translate(-10px, -50%);
            transform: translate(-10px, -50%);
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .top-wrapper {
    padding: 0 6%;
  }
}
.top-menu-wrapper {
  position: fixed;
  width: 100%;
  height: 60px;
  padding: 0 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  left: 0;
  top: 0;
  z-index: 999999;
}
.top-menu-wrapper.active .top-menu::before {
  top: 8px;
  -webkit-transform: translatex(-50%) rotate(190deg);
          transform: translatex(-50%) rotate(190deg);
}
.top-menu-wrapper.active .top-menu::after {
  -webkit-transform: translatex(-50%) rotate(-190deg);
          transform: translatex(-50%) rotate(-190deg);
}
.top-menu-wrapper.active .top-menu h2 {
  color: #fff;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.top-menu-wrapper.active .top-menu h2::after {
  opacity: 1;
  top: 50%;
}
.top-menu {
  position: relative;
  width: 40px;
  height: 30px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top-menu::before, .top-menu::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #2d2a20;
  left: 50%;
  top: 0;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top-menu::after {
  top: 8px;
}
.top-menu h2 {
  position: absolute;
  font-size: 10px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.top-menu h2::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  left: 50%;
  top: -1px;
  color: #2d2a20;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-menu__logo {
  width: 43px;
  left: 43px;
  top: 10px;
  z-index: 999;
}
.top-menu__logo img {
  width: 100%;
}
.top-menu__title {
  font-size: 1.4rem;
}
.top-mv {
  position: relative;
  height: 720px;
  padding-left: 12.6%;
  background-image: url("./img/mv-bg.png");
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  .top-mv {
    height: 600px;
    padding-left: 0;
  }
}
.top-mv::after {
  content: "";
  position: absolute;
  width: 958px;
  height: 156px;
  background-image: url("./img/top-deco-s1.png");
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  bottom: -28px;
}
@media screen and (max-width: 767px) {
  .top-mv::after {
    width: 350px;
    height: 57px;
    left: -57px;
    bottom: -25px;
  }
}
.top-mv__title {
  position: absolute;
  color: #fff;
  font-size: 4rem;
  line-height: 1.75em;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4), 0px 0px 4px rgba(0, 0, 0, 0.1);
  left: 16%;
  bottom: 40px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 2.4rem;
    line-height: 1.75em;
    left: 34px;
    top: 50%;
    bottom: unset;
    -webkit-transform: translatey(-50%);
            transform: translatey(-50%);
  }
}
.top-mv__carousel {
  position: relative;
  height: 100%;
}
.top-mv__carousel-img {
  position: relative;
  width: 75.8%;
  height: 100%;
  margin-right: 50px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-mv__carousel-img {
    width: 100%;
    margin-right: 20px;
    border-radius: 0;
  }
}
.top-mv__carousel-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-mv__carousel-nav-container {
  position: absolute;
  width: 20px;
  height: 20px;
  text-align: center;
  right: 24%;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
@media screen and (max-width: 767px) {
  .top-mv__carousel-nav-container {
    width: 20px;
    right: 14px;
    top: unset;
    bottom: 30px;
  }
}
.top-mv__carousel-nav-item {
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-mv__carousel-nav-item {
    font-size: 1.4rem;
  }
}
.top-mv__carousel-nav:last-child {
  width: 100%;
  border-top: 1px solid #fff;
  margin-top: 4px;
  padding-top: 2px;
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-mv__carousel-nav:last-child {
    font-size: 1.4rem;
  }
}
.top-inquiry {
  position: fixed;
  width: 200px;
  padding: 40px;
  right: 0;
  top: 0;
  background-image: url("./img/top-inquire-bg.png");
  border-bottom-left-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .top-inquiry {
    width: 20%;
    padding: 14px 8px;
  }
}
.top-inquiry::before {
  content: "";
  position: absolute;
  width: 87px;
  height: 90px;
  background-image: url("./img/brush.png");
  left: -44px;
  bottom: -22px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-inquiry::before {
    max-width: 65px;
    width: 60%;
    max-height: 68px;
    height: 60%;
    left: -24%;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .top-inquiry img {
    width: 33%;
  }
}
.top-inquiry:hover::before {
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
.top-inquiry__txt {
  position: relative;
  color: #fff;
  margin-top: 10px;
  font-size: 2rem;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-inquiry__txt {
    font-size: 2.25vw;
  }
}
.top-inquiry__txt span {
  padding-top: 5px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top-inquiry__txt span {
    font-size: 1.8vw;
  }
}
.top-sec1 {
  position: relative;
  margin: 470px 0 195px;
  padding: 360px 0 325px;
  background-color: #ffe3bb;
  border-radius: 830px;
}
@media screen and (max-width: 767px) {
  .top-sec1 {
    margin: 320px 0 170px;
    padding: 125px 0 330px;
    border-radius: 187.5px;
  }
}
.top-sec1__visual {
  position: absolute;
  height: 620px;
  width: 100%;
  margin: 0 auto;
  top: -323px;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
}
@media screen and (max-width: 767px) {
  .top-sec1__visual {
    height: 280px;
    top: -230px;
  }
}
.top-sec1__mainimg {
  position: relative;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.top-sec1__mainimg::before {
  content: "";
  position: absolute;
  width: 109px;
  height: 101px;
  background-image: url("./img/paint-bucket.png");
  top: 45px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-sec1__mainimg::before {
    width: 45px;
    height: 42px;
    background-size: contain;
    background-repeat: no-repeat;
    top: -22px;
    left: 22px;
  }
}
.top-sec1__mainimg::after {
  content: "";
  position: absolute;
  width: 916px;
  height: 150px;
  background-image: url("./img/top-deco-s2.png");
  bottom: -45px;
  right: -233px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-sec1__mainimg::after {
    width: 350px;
    height: 57px;
    background-size: cover;
    right: -80px;
    bottom: -20px;
  }
}
.top-sec1__mainimg img {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 309px;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
@media screen and (max-width: 767px) {
  .top-sec1__mainimg img {
    border-radius: 0;
  }
}
.top-sec1__reason {
  max-width: 1000px;
  margin: 0 auto 175px;
}
@media screen and (max-width: 1440px) {
  .top-sec1__reason {
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__reason {
    padding: 0 6%;
    margin: 0 auto 110px;
  }
}
.top-sec1__reason-title {
  position: relative;
  font-size: 2rem;
  max-width: 640px;
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-title {
    font-size: 1.8rem;
  }
}
.top-sec1__reason-title::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  background-image: url("./img/top-reason-deco.png");
  left: 177px;
  top: -23px;
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-title::before {
    left: 130px;
  }
}
.top-sec1__reason-title::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 23px;
  background-image: url("./img/top-reason-deco2.png");
  background-size: cover;
  top: 25px;
  left: 123px;
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-title::after {
    width: 12px;
    height: 18px;
    top: 15px;
    left: 100px;
  }
}
.top-sec1__reason-title h4 {
  margin: 20px 0 27px;
  font-size: 4.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-title h4 {
    margin: 40px 0 25px;
    font-size: 3rem;
  }
}
.top-sec1__reason-title p {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-title p {
    font-size: 1.6rem;
    line-height: 2em;
  }
}
.top-sec1__reason-deco {
  position: absolute;
  width: 90px;
  height: 5.2px;
  top: 40px;
  left: 0;
}
.top-sec1__reason-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 70px;
  gap: 75px;
}
@media screen and (max-width: 1200px) {
  .top-sec1__reason-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-item {
    margin-top: 70px;
    gap: 42px;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-item.s2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top-sec1__reason-item.s2 .top-sec1__reason-txts {
  padding: 0 0 0 45px;
}
.top-sec1__reason-item.s2::before {
  -webkit-transform: scalex(-1);
          transform: scalex(-1);
  top: 130px;
  left: unset;
  right: -276px;
}
@media screen and (max-width: 1200px) {
  .top-sec1__reason-item.s2::before {
    right: unset;
    top: 90px;
    -webkit-transform: translatex(-50%) scalex(-1);
            transform: translatex(-50%) scalex(-1);
  }
}
.top-sec1__reason-item::before {
  content: "";
  position: absolute;
  width: 890px;
  height: 670px;
  background-image: url("./img/deco-2.png");
  top: 50px;
  left: -276px;
}
@media screen and (max-width: 1200px) {
  .top-sec1__reason-item::before {
    left: 50% !important;
    -webkit-transform: translatex(-50%);
            transform: translatex(-50%);
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-item::before {
    width: 577px;
    height: 434px;
    top: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
.top-sec1__reason-img {
  position: relative;
  width: 50%;
  height: auto;
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .top-sec1__reason-img {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-img {
    width: 100%;
    max-width: 400px;
  }
}
.top-sec1__reason-txts {
  position: relative;
  width: 425px;
  padding-right: 45px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .top-sec1__reason-txts {
    width: unset;
    padding: 0 !important;
  }
}
.top-sec1__reason-txts.w100 {
  margin-top: 70px;
  width: 100%;
}
.top-sec1__reason-txts.w100 h2 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-txts.w100 h2 {
    text-align: start;
  }
}
.top-sec1__reason-txts.w100 p {
  padding-left: 45px;
}
@media screen and (max-width: 1200px) {
  .top-sec1__reason-txts.w100 p {
    padding: 0;
  }
}
.top-sec1__reason-txts h2 {
  margin-bottom: 35px;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-txts h2 {
    margin-bottom: 17px;
    font-size: 2.2rem;
    line-height: 1.9047619048em;
  }
}
.top-sec1__reason-txts p {
  padding-left: 60px;
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top-sec1__reason-txts p {
    padding-left: 0;
    font-size: 1.6rem;
    line-height: 1.875em;
  }
}
.top-sec1__divider {
  position: relative;
  width: 100%;
  height: 460px;
}
@media screen and (max-width: 767px) {
  .top-sec1__divider {
    height: 380px;
  }
}
.top-sec1__divider img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-sec1__divider::before {
  content: "";
  position: absolute;
  width: 912px;
  height: 150px;
  background-image: url("./img/top-deco-s1.png");
  background-size: cover;
  background-position: center;
  top: -95px;
  left: -95px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-sec1__divider::before {
    width: 350px;
    height: 57px;
    top: -37px;
    left: -60px;
  }
}
.top-sec1__business {
  margin-bottom: 90px;
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top-sec1__business {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 1440px) {
  .top-sec1__business {
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__business {
    margin-bottom: 40px;
    padding: 0;
  }
}
.top-sec1__business-title {
  margin: 70px 0 47px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .top-sec1__business-title {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__business-title {
    margin-bottom: 100px;
  }
}
.top-sec1__business-title:hover .top-sec1__business-t1::after, .top-sec1__business-title:hover .top-sec1__business-t1::before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.top-sec1__business-title:hover .top-sec1__business-deco-img {
  background-position: right;
}
.top-sec1__business-title h2 {
  font-size: 4.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top-sec1__business-title h2 {
    font-size: 3rem;
  }
}
.top-sec1__business-t1 {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top-sec1__business-t1 {
    font-size: 1.8rem;
    margin-bottom: 27px;
  }
}
.top-sec1__business-t1::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 22px;
  background-image: url("./img/top-business-deco2.png");
  background-size: cover;
  background-position: center;
  left: -90px;
  bottom: -33px;
  -webkit-transition: 5s;
  transition: 5s;
}
.top-sec1__business-t1::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  background-image: url("./img/top-business-deco.png");
  background-size: cover;
  background-position: center;
  top: -25px;
  right: -90px;
  -webkit-transition: 5s;
  transition: 5s;
}
.top-sec1__business-deco {
  position: absolute;
  width: 95px;
  height: 4px;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  overflow: hidden;
  -webkit-transition: 5s ease-in-out;
  transition: 5s ease-in-out;
}
.top-sec1__business-deco-img {
  width: 200%;
  height: 100%;
  background-image: url("./img/top-deco-title.png");
  background-size: contain;
  background-position: left;
  -webkit-transition: 5s;
  transition: 5s;
}
.top-sec1__business-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media screen and (max-width: 1200px) {
  .top-sec1__business-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__business-content {
    display: block;
    -ms-flex-wrap: unset;
        flex-wrap: unset;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__business-content::after {
    content: "flickity";
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .top-sec1__business-item {
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__business-item {
    width: 74.6%;
    margin-right: 30px;
  }
}
.top-sec1__business-item:nth-child(2) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top-sec1__business-item:nth-child(2) {
    margin-top: 0;
  }
}
.top-sec1__business-item:nth-child(3) {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .top-sec1__business-item:nth-child(3) {
    margin-top: 0;
  }
}
.top-sec1__business-img {
  position: relative;
  display: block;
  width: 100%;
  height: 460px;
}
@media screen and (max-width: 767px) {
  .top-sec1__business-img {
    height: 420px;
  }
}
.top-sec1__business-img::before {
  content: "";
  position: absolute;
  width: 174px;
  height: 131px;
  background-image: url("./img/deco-3.png");
  background-size: cover;
  top: -75px;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-sec1__business-img::before {
    width: 130px;
    height: 100px;
    top: -50px;
  }
}
.top-sec1__business-img::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3960784314);
  border-radius: 155px 155px 9.6px 9.6px;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .top-sec1__business-img::after {
    border-radius: 140px 140px 8px 8px;
  }
}
.top-sec1__business-img:hover::after {
  opacity: 1;
}
.top-sec1__business-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 155px 155px 9.6px 9.6px;
}
@media screen and (max-width: 767px) {
  .top-sec1__business-img img {
    border-radius: 140px 140px 8px 8px;
  }
}
.top-sec1__business-txts h4 {
  margin: 25px 0 8px;
  font-size: 2.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top-sec1__business-txts h4 {
    font-size: 2rem;
    margin: 15px 0 10px;
  }
}
.top-sec1__business-txts p {
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
}
.top-sec1__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-bottom: -419px;
}
@media screen and (max-width: 1200px) {
  .top-sec1__links {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__links {
    gap: 20px;
    margin: 70px 0 -420px;
  }
}
.top-sec1__link-item {
  width: 50%;
  padding: 50px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
  border-radius: 0 10px 10px 0;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .top-sec1__link-item {
    gap: 35px;
    padding: 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__link-item {
    width: 90%;
    gap: 20px;
    padding: 50px 40px 27px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.top-sec1__link-item:nth-child(2) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .top-sec1__link-item:nth-child(2) {
    padding: 50px 0 27px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .top-sec1__link-item:nth-child(2) img {
    margin: 0 0 0 33px;
  }
}
.top-sec1__link-item:hover {
  background-color: #ffbc50;
}
.top-sec1__link-item img {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .top-sec1__link-item img {
    max-width: 75px;
    width: 50%;
    margin-right: 33px;
  }
}
.top-sec1__link-item p {
  font-size: 3.4rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
@media screen and (max-width: 767px) {
  .top-sec1__link-item p {
    font-size: 2.6rem;
  }
}
.top-info {
  padding: 120px 0 80px 0;
  background-color: #ffe3bb;
}
@media screen and (max-width: 767px) {
  .top-info {
    padding: 60px 6%;
  }
}
.top-info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 900px;
  gap: 160px;
}
@media screen and (max-width: 1200px) {
  .top-info__container {
    gap: 80px;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media screen and (max-width: 767px) {
  .top-info__container {
    gap: 25px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top-info__card {
  width: 320px;
  height: 360px;
  border-radius: 15px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top-info__card {
    margin-top: 55px;
    max-width: 150px;
    width: 40%;
    height: 170px;
    padding: 0 0 35px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top-info__card:hover {
  background-color: #ffbc50;
}
@media screen and (max-width: 767px) {
  .top-info__card img {
    width: 50%;
    min-width: 75px;
  }
}
.top-info__text {
  display: block;
  margin: -39px 0 50px;
  font-size: 3.4rem;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  white-space: nowrap;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
@media screen and (max-width: 767px) {
  .top-info__text {
    font-size: 2.6rem;
    margin: -55px 0 20px;
  }
}
.top-news {
  padding: 80px 0;
}
.top-news__container {
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top-news__container {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 767px) {
  .top-news__container {
    padding: 0;
  }
}
.top-news__header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-news__header-wrapper {
    padding: 0 6%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-news__title-holder {
  display: grid;
}
@media screen and (max-width: 1200px) {
  .top-news__title-holder {
    min-width: 200px;
    margin-right: 30px;
  }
}
.top-news__title {
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-news__title {
    font-size: 1.8rem;
  }
}
.top-news__title > img {
  width: 63px;
  height: 63px;
  position: relative;
  right: -90px;
}
@media screen and (max-width: 767px) {
  .top-news__title > img {
    position: absolute;
    top: 0;
    right: unset;
    left: 140px;
  }
}
.top-news__title::before {
  content: "";
  background: url("./img/works/news-wavy.png");
  position: absolute;
  width: 90px;
  height: 5px;
  top: 80px;
}
@media screen and (max-width: 767px) {
  .top-news__title::before {
    top: 40px;
  }
}
.top-news__header-title {
  font-size: 4.8rem;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .top-news__header-title {
    margin-top: 40px;
    font-size: 3rem;
  }
}
.top-news__nav-list {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1200px) {
  .top-news__nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .top-news__nav-list {
    margin: 38px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 18px;
    row-gap: 15px;
  }
}
.top-news__nav-item {
  height: 40px;
}
.top-news__nav-item:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .top-news__nav-item:not(:last-child) {
    margin-right: 0;
  }
}
.top-news__holder {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  padding: 10px 30px;
  gap: 10px;
  border-radius: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-news__holder {
    min-width: 135px;
    padding: 10px 30px 2px;
  }
}
.top-news__icon {
  width: 20px;
  height: 20px;
}
.top-news__text {
  font-size: 1.4rem;
  color: #817f79;
}
.top-news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .top-news__wrapper {
    display: block;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-news__wrapper::after {
    content: "flickity";
    display: none;
  }
}
.top-news__content {
  display: grid;
  overflow: hidden;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .top-news__content {
    display: block;
    width: 74.6% !important;
    gap: 40px;
  }
}
.top-news__content:first-child {
  border: 2px #817f79;
}
@media screen and (max-width: 767px) {
  .top-news__content:not(:last-child) {
    margin-right: 30px;
  }
}
.top-news__content--small {
  width: 31%;
}
.top-news__img {
  position: relative;
  cursor: pointer;
  aspect-ratio: 48/38;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-news__img {
    width: 100%;
    aspect-ratio: initial !important;
    height: 222px;
  }
}
.top-news__img--small {
  aspect-ratio: 310/245;
}
.top-news__img::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3960784314);
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-news__img:hover::after {
  opacity: 1;
}
.top-news__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  display: block;
}
.top-news__img > img.placeholder {
  width: 100px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-news__img > img:hover {
  opacity: 0.6;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.top-news__card {
  width: 60px;
  height: 120px;
  padding: 15px;
  top: 0;
  right: 0;
  text-align: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  background-color: #2d2a20;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-news__card {
    width: 40px !important;
    height: unset !important;
    min-height: 80px;
    padding: 10px;
  }
}
.top-news__card > img {
  width: 20px;
  height: 20px;
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
@media screen and (max-width: 767px) {
  .top-news__card > img {
    width: 12px;
    height: 12px;
  }
}
.top-news__card--small {
  width: 50px;
  height: 110px;
  padding-bottom: 0;
}
.top-news__card-text {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .top-news__card-text {
    font-size: 1rem !important;
    line-height: 1.9em;
  }
}
.top-news__card-text--small {
  font-size: 1.4rem;
}
.top-news__info {
  display: grid;
  background-color: #FFF4E3;
}
.top-news__date {
  font-size: 1.4rem;
  margin-top: 20px;
  color: #817f79;
}
@media screen and (max-width: 767px) {
  .top-news__date {
    margin-top: 15px;
  }
}
.top-news__label {
  height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  margin-top: 20px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top-news__label {
    height: 64px;
    margin-top: 14px;
    font-size: 1.6rem;
  }
}
.top-news__label--small {
  height: 56px;
  font-size: 1.4rem;
}
.top-news__info-btn {
  margin-top: 80px;
  gap: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-news__info-btn {
    margin-top: 52px;
  }
}
.top-news__info-btn > img {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .top-news__info-btn > img {
    width: 18px;
    height: 18px;
  }
}
.top-news__info-text {
  font-size: 1.8rem;
  color: #145c86;
}
@media screen and (max-width: 767px) {
  .top-news__info-text {
    font-size: 1.6rem;
  }
}
.top-voice__container {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(65%, transparent), color-stop(65%, #ffe3bb));
  background-image: linear-gradient(90deg, transparent 65%, #ffe3bb 65%);
  border-bottom-left-radius: 25%;
}
.top-voice__wrapper {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 90px;
  background-color: #ffe3bb;
  border-bottom-left-radius: 480px;
}
@media screen and (max-width: 1200px) {
  .top-voice__wrapper {
    padding: 80px 20px;
    border-bottom-left-radius: 120px;
  }
}
@media screen and (max-width: 767px) {
  .top-voice__wrapper {
    padding: 80px 0;
  }
}
.top-voice__wrapper::before {
  content: "";
  background: url("./img/works/roller-paint.png") no-repeat;
  position: absolute;
  width: 100px;
  height: 131px;
  display: block;
  top: 50%;
  left: -42px;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
@media screen and (max-width: 767px) {
  .top-voice__wrapper::before {
    width: 61px;
    height: 80px;
    background-size: cover;
    background-position: center;
    top: unset;
    left: 12px;
    bottom: -20px;
    -webkit-transform: unset;
            transform: unset;
  }
}
.top-voice__side-text {
  position: relative;
  width: 140px;
  height: 300px;
  margin-right: 70px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .top-voice__side-text {
    width: 100%;
    height: auto;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin-right: 0;
  }
}
.top-voice__side-paragraph {
  font-size: 1.8rem;
  line-height: 2em;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
@media screen and (max-width: 767px) {
  .top-voice__side-paragraph {
    font-size: 1.6rem;
  }
}
.top-voice__title-holder {
  position: relative;
  display: grid;
  justify-items: center;
  position: relative;
}
.top-voice__title {
  position: relative;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top-voice__title {
    font-size: 1.8rem;
  }
}
.top-voice__title > img {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 10px;
  right: -60px;
}
@media screen and (max-width: 767px) {
  .top-voice__title > img {
    top: unset;
    right: -75px;
    bottom: -23px;
  }
}
.top-voice__title::before {
  content: "";
  background: url("./img/works/voice-swirly.svg");
  position: absolute;
  width: 37px;
  height: 34px;
  left: -6rem;
  bottom: 27px;
}
@media screen and (max-width: 767px) {
  .top-voice__title::before {
    bottom: unset;
    top: -3px;
    left: -90px;
  }
}
.top-voice__title::after {
  content: "";
  background: url("./img/top-deco-title.png");
  position: absolute;
  width: 90px;
  height: 5px;
  left: 50%;
  top: 35px;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
}
.top-voice__header-title {
  font-size: 4.8rem;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .top-voice__header-title {
    margin-top: 40px;
    font-size: 3rem;
  }
}
.top-voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-voice__list {
    display: block;
    margin-top: 26px;
  }
}
@media screen and (max-width: 767px) {
  .top-voice__list::after {
    content: "flickity";
    display: none;
  }
}
.top-voice__row-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .top-voice__row-container {
    margin-top: 45px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-voice__row {
  min-height: 356px;
  padding: 25px;
  background-color: #fff;
  border-radius: 5px;
  gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-voice__row {
    width: 74.6%;
    min-height: 100%;
    margin: 0 30px 0 0 !important;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.top-voice__row:not(:last-child) {
  margin-bottom: 25px;
}
.top-voice__img {
  width: 164px;
  height: 187px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-voice__img {
    margin: 0 auto;
    width: 117px;
    height: 133.8px;
  }
}
.top-voice__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 95%;
     object-position: 95%;
  border-radius: 10px;
  display: block;
}
.top-voice__img > img.placeholder {
  width: 100px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-voice__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-voice__additional-info {
  display: block;
  margin-top: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  text-align: right;
  color: #817f79;
}
@media screen and (max-width: 767px) {
  .top-voice__additional-info {
    margin-top: 0;
    font-size: 1rem;
  }
}
.top-voice__info-content {
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  max-height: 176px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.top-voice__info-content:has(~ .top-voice__read-more > .top-voice__read-more-checkbox:checked) {
  -webkit-line-clamp: unset;
}
.top-voice__read-more {
  display: inline-block;
  margin: 20px 0 20px auto;
  font-size: 1.6rem;
  font-weight: 700;
}
.top-voice__read-more:hover {
  cursor: pointer;
}
.top-voice__read-more:has(.top-voice__read-more-checkbox:checked) {
  display: none;
}
.top-voice__read-more.hidden {
  display: none;
}
.top-voice__read-more-checkbox {
  width: 0;
}
.top-voice__paragraph {
  font-size: 1.8rem;
  color: #817f79;
}
@media screen and (max-width: 767px) {
  .top-voice__paragraph {
    margin-bottom: 12px;
    font-size: 1.4rem;
    line-height: 2em;
  }
}
.top-voice__paragraph--black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  color: #2d2a20;
}
@media screen and (max-width: 767px) {
  .top-voice__paragraph--black {
    font-size: 1.2rem;
    line-height: 2em;
  }
}
.top-voice__btn-holder {
  margin-top: 60px;
  text-align: end;
}
.top-voice__text-result {
  font-size: 1.8rem;
  color: #145c86;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-voice__text-result {
    font-size: 1.6rem;
  }
}
.top-voice__btn-icon {
  margin-left: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #145c86;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .top-voice__btn-icon {
    width: 55px;
    height: 55px;
    margin-left: 16px;
  }
}
.top-voice__btn-icon > img {
  width: 9px;
  height: 9px;
}
.top-slides {
  position: relative;
}
.top-slides::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("./img/works/blue-bg.jpg");
  left: 40%;
  top: 0;
  z-index: 1;
}
.top-slides__wrapper {
  max-width: 1500px;
  margin: 0 auto;
  background-image: url("./img/works/blue-bg.jpg");
  background-size: 100%;
  padding: 79px 0;
  border-radius: 15px 0 0 15px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-slides__wrapper {
    border-radius: 0;
  }
}
.top-slides__card {
  width: 330px;
  height: 480px;
  background-color: #2d2a20;
  margin-right: 25px;
  padding: 25px;
  border-radius: 15px;
}
@media screen and (max-width: 1760px) {
  .top-slides__card {
    width: 30%;
  }
}
@media screen and (max-width: 980px) {
  .top-slides__card {
    width: 43%;
  }
}
@media screen and (max-width: 767px) {
  .top-slides__card {
    height: unset;
    width: 74.6%;
    margin-right: 30px;
    padding: 20px 20px 30px;
  }
}
.top-slides__img {
  width: 100%;
  height: 320px;
  border-radius: 15px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-slides__img {
    height: 270px;
  }
}
.top-slides__img > img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.top-slides__img > img.placeholder {
  width: 100px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-slides__label {
  margin-top: 40px;
  display: grid;
}
@media screen and (max-width: 767px) {
  .top-slides__label {
    margin-top: 25px;
  }
}
.top-slides__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-slides__text {
    font-size: 1.2rem;
  }
}
.top-slides__text--big {
  font-size: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .top-slides__text--big {
    margin-top: 15px;
    font-size: 1.6rem;
    min-height: 3em;
  }
}
.top-slides__body {
  position: relative;
  min-height: 490px;
  font-weight: 400;
  width: 365px;
  padding: 29px 20px 0 50px;
  background-image: url("./img/works/works-bg.jpg");
  border-top-left-radius: 15px;
  margin-left: 5.7%;
  z-index: 2;
}
@media screen and (max-width: 1760px) {
  .top-slides__body {
    width: 33%;
    margin-left: 5%;
  }
}
@media screen and (max-width: 1440px) {
  .top-slides__body {
    margin-left: 3.8%;
  }
}
@media screen and (max-width: 1200px) {
  .top-slides__body {
    width: 34%;
    margin: -1% 0 0 2.6%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 980px) {
  .top-slides__body {
    width: 45%;
    margin: -1% 0 0 9%;
  }
}
@media screen and (max-width: 767px) {
  .top-slides__body {
    min-height: unset;
    width: 100%;
    margin: 0;
    padding: 0 6%;
  }
}
.top-slides__title {
  font-size: 2rem;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-slides__title {
    font-size: 1.8rem;
  }
}
.top-slides__title::before {
  content: "";
  background: url("./img/works/yellow-wavy.png");
  position: absolute;
  width: 90px;
  height: 5px;
  top: 40px;
}
.top-slides__sun {
  position: relative;
  left: 40px;
}
@media screen and (max-width: 767px) {
  .top-slides__sun {
    position: absolute;
    left: 140px;
    top: -10px;
  }
}
.top-slides__header-title {
  font-size: 4.8rem;
  margin-top: 25px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-slides__header-title {
    margin-top: 38px;
    font-size: 3rem;
  }
}
.top-slides__paragraph {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-top: 30px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top-slides__paragraph {
    margin-top: 37px;
    font-size: 1.6rem;
    line-height: 2em;
  }
}
.top-slides__text-result {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffc76b;
}
@media screen and (max-width: 767px) {
  .top-slides__text-result {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.6rem;
  }
}
.top-slides__btn-holder {
  margin: 70px 0 0 9%;
}
@media screen and (max-width: 767px) {
  .top-slides__btn-holder {
    margin: 0;
  }
}
.top-slides__btn-icon {
  margin-left: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ffc76b;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-slides__btn-icon {
    width: 55px;
    height: 55px;
  }
}
.top-slides__btn-icon > img {
  width: 9px;
  height: 9px;
}
.top-slides__inner::after {
  content: "flickity";
  display: none;
}
@media screen and (max-width: 767px) {
  .top-slides__inner::after {
    content: "";
  }
}
.top-slides__inner-wrapper {
  position: absolute;
  width: 100%;
  top: 80px;
}
@media screen and (max-width: 767px) {
  .top-slides__inner-wrapper {
    position: relative;
    margin-top: 28px;
    top: unset;
  }
}
.top-slides__inner-wrapper.isnull {
  padding-left: 40%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-slides__inner-wrapper.isnull {
    padding-inline: 6%;
    text-align: center;
  }
}
.top-wrapper__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-wrapper__btn.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.top-btn__more {
  position: relative;
  display: inline-block;
  margin-top: 90px;
  padding-right: 78px;
  font-size: 1.8rem;
  color: #145c86;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top-btn__more {
    margin-top: 55px;
    font-size: 1.6rem;
  }
}
.top-btn__more.s2 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top-btn__more.s2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top-btn__more:hover .top-btn__more-img {
  width: 85px;
  height: 85px;
  margin: 0 -15px 0 8px;
}
@media screen and (max-width: 767px) {
  .top-btn__more:hover .top-btn__more-img {
    width: 82px;
    height: 82px;
  }
}
.top-btn__more:hover .top-btn__more-img::before {
  -webkit-animation: linkhover 0.5s;
          animation: linkhover 0.5s;
  -webkit-transform: translate(-10%, -50%);
          transform: translate(-10%, -50%);
}
.top-btn__more--yellow {
  color: #ffc76b;
}
.top-btn__more-img {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 2px solid #145c86;
  border-radius: 50%;
  top: 50%;
  right: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top-btn__more-img {
    width: 55px;
    height: 55px;
  }
}
.top-btn__more-img::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background-image: url("./img/icons/arrow-right-blue.png");
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top-btn__more-img--yellow {
  border-color: #ffc76b;
}
.top-btn__more-img--yellow::before {
  background: url("./img/works/arrow-icon.svg") no-repeat center/contain;
}

.news__container {
  padding: 80px 4% 0;
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news__container {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 767px) {
  .news__container {
    padding-top: 40px;
  }
}
.news__container--pb30 {
  padding-bottom: 30px;
}
.news__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
}
@media screen and (max-width: 767px) {
  .news__category-list {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 15px;
  }
}
.news__category {
  padding-bottom: 10px;
  font-size: 1.6rem;
  color: #817f79;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news__category {
    font-size: 1.4rem;
  }
}
.news__category > img {
  margin-right: 15px;
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .news__category > img {
    width: 15px;
    height: 15px;
    margin-right: 10px;
  }
}
.news__category.active {
  position: relative;
  color: #2d2a20;
}
.news__category.active::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px solid #2d2a20;
}
.news__archive-list {
  margin: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px 3%;
}
@media screen and (max-width: 1200px) {
  .news__archive-list {
    -webkit-column-gap: 4%;
       -moz-column-gap: 4%;
            column-gap: 4%;
  }
}
.news__archive-item {
  position: relative;
  width: 31.3%;
}
@media screen and (max-width: 1200px) {
  .news__archive-item {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .news__archive-item {
    width: 100%;
  }
}
.news__archive-item-img {
  width: 100%;
  aspect-ratio: 313/248;
  -o-object-fit: cover;
     object-fit: cover;
  background: #e6e6e6;
}
.news__archive-item-category {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  min-height: 110px;
  padding: 15px;
  background: #2d2a20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news__archive-item-category {
    padding: 10px;
  }
}
.news__archive-item-category > span {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
.news__archive-item-category > img {
  width: 20px;
  height: 20px;
  -webkit-filter: invert(1) brightness(2);
          filter: invert(1) brightness(2);
}
.news__archive-item-info {
  font-size: 1.4rem;
}
.news__archive-item-date {
  margin: 20px 0;
  color: #817f79;
}
@media screen and (max-width: 767px) {
  .news__archive-item-date {
    margin: 10px 0;
  }
}
.news__archive-item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font: 1.4rem "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
}
.news__block {
  background: #fff;
  padding: 65px 100px;
  border-radius: 10px;
  margin-top: 50px;
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news__block {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 1200px) {
  .news__block {
    padding: 6%;
  }
}
.news__block-info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 30px;
  margin-bottom: 60px;
  border-bottom: 1px solid #2d2a20;
}
@media screen and (max-width: 767px) {
  .news__block-info-container {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.news__block-date {
  font-size: 1.4rem;
  color: #817f79;
}
.news__block-category {
  margin-left: auto;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #817f79;
}
.news__block-category > img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
.news__block-title {
  margin-top: 40px;
  width: 100%;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 2em;
  color: #145c86;
}
@media screen and (max-width: 767px) {
  .news__block-title {
    margin-top: 20px;
    line-height: 1.6em;
  }
}
.news__block-subtitle {
  position: relative;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 767px) {
  .news__block-subtitle {
    margin-top: 20px;
    padding-left: 15px;
  }
}
.news__block-subtitle::before {
  margin-right: 16px;
  display: inline-block;
  content: "";
  background: url("./img/icons/strand.svg") no-repeat center/contain;
  width: 6px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .news__block-subtitle::before {
    position: absolute;
    margin-right: 0;
    top: 7px;
    left: 0;
    margin-right: 5px;
  }
}
.news__block-text {
  font: 1.8rem "Zen Kaku Gothic New", sans-serif;
  margin: 25px 0 35px;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .news__block-text {
    margin: 20px 0;
    font-size: 1.4rem;
  }
}
.news__block-img {
  width: 100%;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__nav {
  margin: 55px 0;
  padding-bottom: 55px;
  border-bottom: 1px solid #817f79;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.6rem;
  line-height: 2.125em;
}
@media screen and (max-width: 767px) {
  .news__nav {
    margin: 32.5px 0;
    font-size: 1.3rem;
  }
}
.news__nav-return, .news__nav-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news__nav-return::before, .news__nav-prev::before {
  margin-right: 20px;
  display: inline-block;
  content: "";
  width: 10px;
  height: 8.3px;
  background: url("./img/icons/arrow-left.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .news__nav-return::before, .news__nav-prev::before {
    margin-right: 5px;
  }
}
.news__nav-return::before {
  width: 24px;
  height: 24px;
  background: url("./img/icons/all-icon.svg") no-repeat center/contain;
}
.news__nav-next::after {
  margin-left: 20px;
  display: inline-block;
  content: "";
  width: 10px;
  height: 8.3px;
  background: url("./img/icons/arrow-right.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .news__nav-next::after {
    margin-left: 5px;
  }
}
.news__heading {
  font-size: 3.4rem;
}

.top-mv__carousel .flickity-page-dots {
  height: 300px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  top: 50%;
  right: 26.3%;
  left: unset;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .top-mv__carousel .flickity-page-dots {
    display: none;
  }
}
.top-mv__carousel .flickity-page-dots .dot {
  height: 33%;
  width: 3px;
  background-color: #fff;
  border-radius: 3px;
  opacity: 0;
  margin-left: -1.5px;
}
.top-mv__carousel .flickity-page-dots .dot.is-selected {
  opacity: 1;
}
.top-mv__carousel .flickity-viewport {
  height: 100% !important;
}

.top-slides__inner .flickity-page-dots {
  width: 29.8%;
  height: 1px;
  left: 39%;
  bottom: -109px;
  background-color: rgba(255, 255, 255, 0.5019607843);
}
@media screen and (max-width: 980px) {
  .top-slides__inner .flickity-page-dots {
    width: 25.8%;
    left: 48%;
  }
}
@media screen and (max-width: 767px) {
  .top-slides__inner .flickity-page-dots {
    display: none;
  }
}
.top-slides__inner .flickity-page-dots .dot {
  height: 3px;
  width: 16.65%;
  margin: 0;
  border-radius: 5px;
  background-color: transparent;
  top: -6px;
}
.top-slides__inner .flickity-page-dots .dot.is-selected {
  opacity: 1;
  height: 4px;
  position: relative;
  background-color: #fff;
}
.top-slides__inner .flickity-button {
  top: unset;
  bottom: -135px;
}
@media screen and (max-width: 767px) {
  .top-slides__inner .flickity-button {
    top: 50%;
    bottom: unset;
  }
}
.top-slides__inner .flickity-prev-next-button {
  width: 60px;
  height: 60px;
  border: solid 2px rgba(255, 255, 255, 0.5019607843);
  background-color: transparent;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top-slides__inner .flickity-prev-next-button:hover {
  background-color: unset;
  border: solid 3px #fff;
}
.top-slides__inner .flickity-prev-next-button:hover::before {
  -webkit-filter: brightness(100) opacity(1);
          filter: brightness(100) opacity(1);
}
.top-slides__inner .flickity-prev-next-button::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 8px;
  background-image: url("./img/icons/arrow-right-blue.png");
  background-size: cover;
  background-position: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: brightness(100) opacity(0.7);
          filter: brightness(100) opacity(0.7);
}
.top-slides__inner .flickity-prev-next-button.previous {
  -webkit-transform: scale(-1);
          transform: scale(-1);
  left: unset;
  right: 24%;
}
@media screen and (max-width: 1440px) {
  .top-slides__inner .flickity-prev-next-button.previous {
    right: 20%;
  }
}
@media screen and (max-width: 980px) {
  .top-slides__inner .flickity-prev-next-button.previous {
    right: 15%;
  }
}
.top-slides__inner .flickity-prev-next-button.next {
  right: 18%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 1440px) {
  .top-slides__inner .flickity-prev-next-button.next {
    right: 11%;
  }
}
@media screen and (max-width: 980px) {
  .top-slides__inner .flickity-prev-next-button.next {
    right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .top-slides__inner .flickity-prev-next-button.next {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.top-slides__inner .flickity-button-icon {
  display: none;
}

.top-voice__list .flickity-button:disabled,
.top-sec1__business-content .flickity-button:disabled,
.top-slides__inner .flickity-button:disabled,
.top-news__wrapper .flickity-button:disabled {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .top-voice__list .flickity-prev-next-button.previous, .top-voice__list .flickity-prev-next-button.next,
  .top-sec1__business-content .flickity-prev-next-button.previous,
  .top-sec1__business-content .flickity-prev-next-button.next,
  .top-slides__inner .flickity-prev-next-button.previous,
  .top-slides__inner .flickity-prev-next-button.next,
  .top-news__wrapper .flickity-prev-next-button.previous,
  .top-news__wrapper .flickity-prev-next-button.next {
    width: 45px;
    height: 45px;
    background-color: #fff;
    background-image: url("./img/icons/arrow-right-dbrown.png");
    background-size: 7.5px 6.2px;
    background-position: center;
    background-repeat: no-repeat;
    right: 9%;
  }
}
@media screen and (max-width: 400px) {
  .top-voice__list .flickity-prev-next-button.previous, .top-voice__list .flickity-prev-next-button.next,
  .top-sec1__business-content .flickity-prev-next-button.previous,
  .top-sec1__business-content .flickity-prev-next-button.next,
  .top-slides__inner .flickity-prev-next-button.previous,
  .top-slides__inner .flickity-prev-next-button.next,
  .top-news__wrapper .flickity-prev-next-button.previous,
  .top-news__wrapper .flickity-prev-next-button.next {
    right: 6.4%;
  }
}
@media screen and (max-width: 767px) {
  .top-voice__list .flickity-prev-next-button.previous,
  .top-sec1__business-content .flickity-prev-next-button.previous,
  .top-slides__inner .flickity-prev-next-button.previous,
  .top-news__wrapper .flickity-prev-next-button.previous {
    left: 9%;
    right: unset;
    -webkit-transform: translateY(-50%) scaleX(-1);
            transform: translateY(-50%) scaleX(-1);
  }
}
@media screen and (max-width: 400px) {
  .top-voice__list .flickity-prev-next-button.previous,
  .top-sec1__business-content .flickity-prev-next-button.previous,
  .top-slides__inner .flickity-prev-next-button.previous,
  .top-news__wrapper .flickity-prev-next-button.previous {
    left: 6.4%;
  }
}
.top-voice__list .flickity-prev-next-button .flickity-button-icon,
.top-sec1__business-content .flickity-prev-next-button .flickity-button-icon,
.top-slides__inner .flickity-prev-next-button .flickity-button-icon,
.top-news__wrapper .flickity-prev-next-button .flickity-button-icon {
  display: none !important;
}

.top-sec1__business-content .flickity-viewport {
  overflow: visible;
}
.top-sec1__business-content .flickity-prev-next-button.previous, .top-sec1__business-content .flickity-prev-next-button.next {
  top: 210px;
}

.top-news__wrapper .flickity-viewport {
  overflow: visible;
}
.top-news__wrapper .flickity-prev-next-button.previous, .top-news__wrapper .flickity-prev-next-button.next {
  top: 111px;
}

.case-detail__slider .flickity-page-dots {
  bottom: 30px;
}
.case-detail__slider .flickity-page-dots .dot {
  margin: 0 7.5px;
  opacity: 0.5;
  background-color: #fff;
}
.case-detail__slider .flickity-page-dots .dot.is-selected {
  opacity: 1;
}
.case-detail__slider .flickity-button:hover {
  background-color: transparent;
}
.case-detail__slider .flickity-prev-next-button.previous, .case-detail__slider .flickity-prev-next-button.next {
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 2px solid #145c86;
  top: 0;
  right: -150px;
  left: unset;
  z-index: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .case-detail__slider .flickity-prev-next-button.previous, .case-detail__slider .flickity-prev-next-button.next {
    width: 44px;
    height: 44px;
    top: unset;
    bottom: -102px !important;
    left: 0;
    right: unset;
  }
}
.case-detail__slider .flickity-prev-next-button.previous::before, .case-detail__slider .flickity-prev-next-button.next::before {
  content: url("./img/icons/arrow-right-blue.png");
  position: absolute;
  width: 10px;
  display: block;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .case-detail__slider .flickity-prev-next-button.previous::before, .case-detail__slider .flickity-prev-next-button.next::before {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
}
.case-detail__slider .flickity-prev-next-button.next {
  top: unset;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .case-detail__slider .flickity-prev-next-button.next {
    left: unset;
    right: 0;
  }
}
.case-detail__slider .flickity-prev-next-button.next::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (max-width: 767px) {
  .case-detail__slider .flickity-prev-next-button.next::before {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
}
.case-detail__slider .flickity-prev-next-button svg {
  display: none;
}

.service .flickity-viewport {
  height: 100%;
  overflow: visible;
}
.service .flickity-page-dots {
  width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -80px;
}
@media screen and (max-width: 767px) {
  .service .flickity-page-dots {
    width: 60%;
    bottom: -55px;
  }
}
.service .flickity-page-dots .dot {
  width: 100%;
  height: 1px;
  margin: 0;
}
.service .flickity-page-dots .dot.is-selected {
  height: 3px;
  border-radius: 5px;
}
.service .flickity-prev-next-button {
  bottom: -28%;
  top: auto;
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid #2d2a20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .service .flickity-prev-next-button {
    width: 45px;
    height: 45px;
    bottom: -30%;
  }
}
.service .flickity-prev-next-button:hover {
  background: transparent;
}
.service .flickity-prev-next-button.previous {
  left: auto;
  right: 8.2%;
}
@media screen and (max-width: 767px) {
  .service .flickity-prev-next-button.previous {
    right: auto;
    left: 1%;
  }
}
.service .flickity-prev-next-button.previous::before {
  content: url("./img/service/service-slider-arrow-left.svg");
  width: 10px;
  display: block;
}
.service .flickity-prev-next-button.next {
  right: 1%;
}
.service .flickity-prev-next-button.next::before {
  content: url("./img/service/service-slider-arrow-right.svg");
  width: 10px;
  display: block;
}
.service .flickity-prev-next-button svg {
  display: none;
}

.case-detail__slider-nav-item.is-selected {
  border: 2px solid #2d2a20;
}

.company .flickity-viewport {
  height: 630px !important;
}
@media screen and (max-width: 980px) {
  .company .flickity-viewport {
    height: 500px !important;
  }
}
.company__cell.is-selected {
  height: 550px;
  top: 0;
}
@media screen and (max-width: 980px) {
  .company__cell.is-selected {
    height: 450px;
  }
}
.company__cell.is-selected .sm {
  width: 330px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.company__cell.is-selected + .company__cell {
  height: 530px;
  top: 50px;
}
@media screen and (max-width: 980px) {
  .company__cell.is-selected + .company__cell {
    height: 400px;
  }
}
.company__cell.is-selected + .company__cell > img.sm {
  width: 330px;
}

.reason__main-text {
  text-align: center;
  padding-top: 90px;
  max-width: 830px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason__main-text {
    padding: 45px 15px 0;
  }
}
.reason__main-title h2 {
  margin-bottom: 20px;
  font: 400 2.4rem "ten-mincho", serif;
  line-height: 1.75em;
  color: #145c86;
}
@media screen and (max-width: 767px) {
  .reason__main-title h2 {
    margin-bottom: 12px;
    font-size: 17px;
  }
}
.reason__wrapper {
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .reason__wrapper {
    padding: 0 3% 20px;
  }
}
.reason__wrapper::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  border-top-left-radius: 830px;
  border-top-right-radius: 830px;
}
.reason__main-description p {
  font-size: 1.8rem;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 1200px) {
  .reason__main-description p {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .reason__main-description p {
    padding: 0;
    font-size: 14px;
  }
}
.reason__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.82%;
  padding-top: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.reason__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.reason__item:nth-child(2) .reason__item-image::before {
  content: "";
  width: 126%;
  height: 30.13%;
  position: absolute;
  background-image: url("./img/reason/reason-item-bg-blue.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -17%;
  right: -40%;
}
.reason__item:nth-child(3) .reason__item-image::before {
  content: "";
  width: 107.5%;
  height: 27.52%;
  position: absolute;
  background-image: url("./img/reason/reason-item-bg-peach.png");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -15%;
  left: -20%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .reason__item:nth-child(3) .reason__item-image::before {
    bottom: auto;
    top: -17%;
  }
}
.reason__item-image {
  width: 47.59%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason__item-image {
    width: 100%;
  }
}
.reason__item-image img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.reason__item-context p {
  font-size: 1.8rem;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .reason__item-context p {
    font-size: 14px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }
}
.reason__item-title h3 {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 400;
  color: #145c86;
  letter-spacing: 0.15em;
  line-height: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .reason__item-title h3 {
    margin-bottom: 12px;
    font-size: 17px;
  }
}
.reason__item-text {
  width: 27.47%;
  min-width: 460px;
}
@media screen and (max-width: 767px) {
  .reason__item-text {
    width: 100%;
    min-width: 100%;
  }
}
.reason__more-info {
  background-color: #ffe3bb;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .reason__more-info {
    padding: 40px 0;
  }
}
.reason__more-info-wrapper {
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .reason__more-info-wrapper {
    max-width: 100%;
    padding: 0 6%;
  }
}
.reason__more-info-title {
  text-align: center;
  padding-bottom: 45px;
}
.reason__more-info-title h4 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #145c86;
}
@media screen and (max-width: 767px) {
  .reason__more-info-title h4 {
    font-size: 17px;
  }
}
.reason__more-info-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.reason__more-info-item {
  width: 30%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reason__more-info-image {
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .reason__more-info-image {
    height: 135px;
  }
}
.reason__more-info-image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reason__more-info-image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.reason__more-info-image:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(20, 92, 134, 0.6);
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.reason__more-info-image:after {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #145c86;
  mix-blend-mode: multiply;
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  border-radius: 10px;
}
.reason__more-info-image:hover::before {
  opacity: 0;
}
.reason__more-info-image:hover::after {
  opacity: 1;
}
.reason__more-info-text {
  text-orientation: upright;
  -webkit-writing-mode: tb;
      -ms-writing-mode: tb;
          writing-mode: tb;
  position: absolute;
  z-index: 1;
}
.reason__more-info-text h5 {
  color: #fff;
  font-size: 3.4rem;
  font-weight: 400;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
@media screen and (max-width: 767px) {
  .reason__more-info-text h5 {
    font-size: 22px;
  }
}

.service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service__header {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 767px) {
  .service__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.service__header::before {
  content: "";
  background-image: url("./img/service/service-head-decor.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 89%;
  height: 114.29%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.service__header-title-wrapper {
  position: relative;
}
.service__header-title-wrapper h2 {
  font-size: 2.4rem;
  color: #145c86;
  font-weight: 400;
  line-height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .service__header-title-wrapper h2 {
    font-size: 17px;
    padding-bottom: 10px;
    display: block;
  }
}
.service__header-title-wrapper .punct {
  display: inline-block;
  margin-left: auto;
  margin-top: -8px;
}
.service__header-center {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .service__header-center {
    display: block;
    line-height: 2em;
  }
}
.service__header-center > span.vertical {
  margin-top: 10px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .service__header-center > span.vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .service__header-center--sp-inline {
    display: inline-block;
  }
}
.service__header-content {
  width: 77%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .service__header-content {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .service__header-content {
    width: 100%;
  }
}
.service__header-image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .service__header-image {
    margin-bottom: 20px;
  }
}
.service__header-image img {
  width: 100%;
}
.service__header-text p {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .service__header-text p {
    font-size: 14px;
  }
}
.service__repaint-wrapper {
  position: relative;
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service__repaint-wrapper {
    max-width: 100%;
    padding: 0 6%;
  }
}
.service__repaint-header-wrapper {
  text-align: center;
}
.service__repaint-subheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service__repaint-subheader h4 {
  font-size: 2rem;
  padding: 10px 0 5px;
}
@media screen and (max-width: 767px) {
  .service__repaint-subheader h4 {
    font-size: 1.8rem;
  }
}
.service__repaint-subheader:before {
  content: url("./img/service/service-repaint-head-decor01.svg");
  display: block;
  width: 4%;
}
.service__repaint-subheader:after {
  content: url("./img/service/service-repaint-head-decor02.svg");
  display: block;
  width: 9%;
}
.service__repaint-header {
  padding-top: 5px;
  margin: 10px 0 30px;
}
.service__repaint-header h3 {
  font-size: 4.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .service__repaint-header h3 {
    font-size: 26px;
  }
}
.service__repaint-header-text {
  text-align: center;
}
.service__repaint-header-text p {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .service__repaint-header-text p {
    font-size: 14px;
  }
}
.service__repaint {
  padding: 80px 0 50px;
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__repaint {
    padding: 40px 0 25px;
  }
}
.service__repaint:before {
  content: "";
  background-color: #ffe3bb;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-top-left-radius: 830px;
  border-top-right-radius: 830px;
}
.service__repaint-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 42px;
  position: relative;
  z-index: 1;
  gap: 0 2.75%;
}
@media screen and (max-width: 767px) {
  .service__repaint-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding-top: 25px;
  }
}
.service__repaint-item {
  width: 31.5%;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .service__repaint-item {
    width: 100%;
    padding: 12.5px;
  }
}
.service__repaint-image {
  width: 100%;
}
.service__repaint-image img {
  width: 100%;
}
.service__repaint-item-title {
  padding-top: 24px;
}
.service__repaint-item-title h5 {
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .service__repaint-item-title h5 {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .service__repaint-item-title {
    padding-top: 12px;
  }
}
.service__repaint-item-text {
  padding-top: 5px;
}
.service__repaint-item-text p {
  font-size: 1.4rem;
  line-height: 1.75em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .service__repaint-item-text p {
    font-size: 12px;
  }
}
.service__material {
  padding: 80px 0 160px;
  position: relative;
}
.service__material::before {
  content: url("./img/service/service-material-decor-blue.png");
  position: absolute;
  top: -8%;
  right: -170px;
}
@media screen and (max-width: 767px) {
  .service__material::before {
    width: 100%;
    right: auto;
  }
}
.service__material-wrapper {
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service__material-wrapper {
    max-width: 100%;
    padding: 0 6%;
  }
}
.service__material-subheader {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.service__material-subheader:after {
  content: url("./img/service/service-repaint-head-decor02.svg");
  display: block;
  width: 9%;
}
.service__material-subheader h3 {
  font-size: 2rem;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__material-subheader h3 {
    font-size: 1.8rem;
  }
}
.service__material-subheader h3::before {
  content: url("./img/service/service-material-subhead-decor.svg");
  display: block;
  right: -50px;
  bottom: 0;
  position: absolute;
  width: 15px;
  height: 25px;
}
.service__material-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 13px;
}
.service__material-header:after {
  content: url("./img/service/service-material-head-decor.svg");
  height: 100%;
  width: 38px;
  padding-left: 50px;
}
.service__material-header h2 {
  font-size: 4.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .service__material-header h2 {
    font-size: 29px;
  }
}
.service__material-header-text {
  padding-top: 18px;
}
.service__material-header-text p {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .service__material-header-text p {
    font-size: 14px;
  }
}
.service__material-table-wrapper {
  overflow: auto;
}
.service__material-table {
  margin-top: 50px;
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border-collapse: collapse;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .service__material-table {
    width: 800px;
  }
}
.service__material-table tr:last-child th, .service__material-table tr:last-child td {
  border-bottom: 0;
}
.service__material-table tr.throw th {
  border-bottom: 1.2px solid #817f79;
}
.service__material-table th {
  font-size: 1.8rem;
  font-weight: 400;
  color: #145c86;
  width: 20%;
  border: 1px solid #b3b2af;
  border-top: 0;
  font-family: "ten-mincho", serif;
}
.service__material-table th:first-child {
  border-left: 0;
  border-right: 1px solid #817f79;
}
@media screen and (max-width: 767px) {
  .service__material-table th {
    font-size: 14px;
  }
}
.service__material-table td {
  text-align: center;
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: 1px solid #b3b2af;
  border-collapse: collapse;
  line-height: 1.75em;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 767px) {
  .service__material-table td {
    font-size: 14px;
  }
}
.service__material-table td, .service__material-table th {
  padding: 30px 25px;
}
@media screen and (max-width: 1200px) {
  .service__material-table td, .service__material-table th {
    padding: 30px 2.5%;
  }
}
@media screen and (max-width: 767px) {
  .service__material-table td, .service__material-table th {
    padding: 20px 12.5px;
  }
}
.service__material-table td:last-child, .service__material-table th:last-child {
  border-right: 0;
}
.service__filer-image {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service__filer-image img {
  width: 100%;
}
.service__filer-image::before {
  content: url("./img/service/service-material-decor-peach.png");
  display: block;
  position: absolute;
  left: -95px;
  top: -25%;
}
@media screen and (max-width: 767px) {
  .service__filer-image::before {
    top: -90%;
    width: 100%;
  }
}
.service__procedure {
  padding: 80px 0 170px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__procedure {
    padding: 40px 0 80px;
  }
}
.service__procedure::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  border-bottom-left-radius: 830px;
  border-bottom-right-radius: 830px;
}
.service__procedure-wrapper {
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service__procedure-wrapper {
    max-width: 100%;
    padding: 0 6%;
  }
}
.service__procedure-header-subtitle {
  position: relative;
}
.service__procedure-header-subtitle h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .service__procedure-header-subtitle h3 {
    font-size: 1.8rem;
  }
}
.service__procedure-header-subtitle h3:after {
  content: url("./img/service/service-repaint-head-decor02.svg");
  display: block;
  width: 90px;
}
.service__procedure-header-subtitle::before {
  content: url("./img/service/service-procedure-title-decor01.svg");
  display: block;
  position: absolute;
  width: 56px;
  right: 102%;
  top: 10px;
}
.service__procedure-header-subtitle::after {
  content: url("./img/service/service-procedure-title-decor02.svg");
  display: block;
  position: absolute;
  width: 35px;
  left: 105%;
  top: -10px;
}
.service__procedure-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service__procedure-header-title {
  padding-top: 10px;
}
.service__procedure-header-title h2 {
  font-size: 4.8rem;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__procedure-header-title h2 {
    font-size: 29px;
  }
}
.service__procedure-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 110px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__procedure-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.service__procedure-graphic {
  width: 46%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service__procedure-graphic {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.service__procedure-content {
  width: 45.5%;
}
@media screen and (max-width: 767px) {
  .service__procedure-content {
    width: 100%;
    padding-top: 15px;
  }
}
.service__procedure-items {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .service__procedure-items {
    padding-top: 40px;
  }
}
.service__procedure-count {
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__procedure-count {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.service__procedure-count span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .service__procedure-count span {
    font-size: 13px;
  }
}
.service__procedure-count::after {
  content: url("./img/service/service-material-counter-decor.svg");
  position: absolute;
  left: 0;
  width: 90px;
  top: 35px;
}
.service__procedure-title h4 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #145c86;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .service__procedure-title h4 {
    font-size: 17px;
  }
}
.service__procedure-text p {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .service__procedure-text p {
    font-size: 14px;
    padding-top: 15px;
  }
}
.service__procedure-image {
  width: 400px;
  border-radius: 50%;
  background-color: #fff;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .service__procedure-image {
    width: 250px;
    height: 250px;
    margin-top: 70px;
  }
}
.service__procedure-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.service__procedure-image::before {
  content: url("./img/service/service-material-img-decor.svg");
  position: absolute;
  width: 175px;
  z-index: 1;
  top: -70px;
}
@media screen and (max-width: 767px) {
  .service__procedure-image::before {
    width: 100px;
    top: -40px;
  }
}
@media screen and (max-width: 767px) {
  .service__works {
    padding-top: 55px;
  }
}
.service__works-wrapper {
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service__works-wrapper {
    max-width: 100%;
    padding: 0 6%;
  }
}
.service__works-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service__works-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
@media screen and (max-width: 767px) {
  .service__works-button-container {
    width: 100%;
    padding-top: 20px;
  }
}
.service__works-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  color: #145c86;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .service__works-button {
    font-size: 14px;
  }
}
.service__works-button span {
  white-space: nowrap;
}
.service__works-button img {
  margin-left: 20px;
  max-width: 64px;
  padding: 25px;
  border: 2px solid #145c86;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .service__works-button img {
    padding: 10px;
    width: 30px;
    border-width: 1px;
  }
}
.service__works-header-subtitle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.service__works-header-subtitle::after {
  content: url("./img/service/service-repaint-head-decor02.svg");
  display: block;
  width: 90px;
}
.service__works-header-subtitle h4 {
  position: relative;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .service__works-header-subtitle h4 {
    font-size: 1.8rem;
  }
}
.service__works-header-subtitle h4::after {
  content: url("./img/service/service-procedure-title-decor02.svg");
  display: block;
  position: absolute;
  width: 45px;
  position: absolute;
  top: 10px;
  left: 110px;
}
.service__works-header-title {
  padding-top: 20px;
}
.service__works-header-title h3 {
  font-size: 4.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .service__works-header-title h3 {
    font-size: 29px;
  }
}
.service__works-item {
  width: 33%;
  height: 100%;
  margin-right: 2.5%;
  background-color: #2d2a20;
  padding: 25px 25px 35px 25px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .service__works-item {
    width: 50%;
  }
}
.service__works-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.service__works-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.service__works-image > img.placeholder {
  width: 100px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.service__works-item-subheader {
  padding-top: 35px;
}
@media screen and (max-width: 767px) {
  .service__works-item-subheader {
    padding-top: 10px;
  }
}
.service__works-item-subheader h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .service__works-item-subheader h4 {
    font-size: 12px;
  }
}
.service__works-item-title {
  padding-top: 10px;
}
.service__works-item-title h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .service__works-item-title h3 {
    font-size: 15px;
    min-height: 3em;
  }
}
.service__works-slider {
  padding-top: 40px;
  margin-bottom: 195px;
  height: 480px;
}
@media screen and (max-width: 767px) {
  .service__works-slider {
    margin-bottom: 150px;
    height: 300px;
  }
}
.service__waterproofing {
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service__waterproofing {
    max-width: 100%;
    padding: 0 6%;
  }
}
.service__waterproofing-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .service__waterproofing-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.service__waterproofing-item {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .service__waterproofing-item {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
  }
}
.service__waterproofing-image {
  border-top-right-radius: 155px;
  border-top-left-radius: 155px;
  border-bottom-left-radius: 9.6px;
  border-bottom-right-radius: 9.6px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service__waterproofing-image {
    width: 50%;
    position: relative;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .service__waterproofing-image img {
    height: 100%;
    width: 100%;
  }
}
.service__waterproofing-title {
  font-size: 2.4rem;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .service__waterproofing-title {
    font-size: 17px;
  }
}
.service__waterproofing-text p {
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .service__waterproofing-text p {
    font-size: 12px;
  }
}

.case {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .case {
    padding-bottom: 45px;
  }
}
.case-categorize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .case-categorize {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
}
.case-categorize:first-of-type {
  margin-bottom: 40px;
}
.case-categorize__title {
  padding: 0 10px;
  min-width: 140px;
  height: 30px;
  font-size: 1.8rem;
  color: #145c86;
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case-categorize__title {
    padding-top: 2px;
    font-size: 1.6rem;
  }
}
.case-categorize__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .case-categorize__group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-width: 350px;
    gap: 30px;
  }
}
@media screen and (max-width: 400px) {
  .case-categorize__group {
    min-width: unset;
  }
}
.case-categorize__item {
  font-size: 1.6rem;
  color: #817f79;
}
@media screen and (max-width: 767px) {
  .case-categorize__item {
    font-size: 1.4rem;
  }
}
.case-categorize__item--active {
  color: #2d2a20;
  padding-bottom: 8px;
  border-bottom: 2px solid #2d2a20;
}
.case-categorize__item.all {
  position: relative;
  padding-left: 30px;
}
.case-categorize__item.all::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("./img/icons/bento-menu.svg");
  background-size: cover;
  background-position: center;
  left: 0;
  top: 0;
}
.case-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 48px 0 75px;
  row-gap: 50px;
}
@media screen and (max-width: 767px) {
  .case-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 22.5px;
    margin: 28px 0 40px;
  }
}
.case-item {
  width: 47.5%;
  padding: 30px 30px 50px;
  border-radius: 12px;
  color: #fff;
  background-color: #2d2a20;
}
@media screen and (max-width: 767px) {
  .case-item {
    width: 100%;
    min-height: 480px;
    padding: 20px 20px 35px;
  }
}
.case-item__img {
  width: 100%;
  height: 472px;
  margin-bottom: 47px;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .case-item__img {
    height: 300px;
    margin-bottom: 25px;
  }
}
.case-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-item__t1 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .case-item__t1 {
    margin-bottom: 14px;
    font-size: 1.4rem;
  }
}
.case-item__t2 {
  font-size: 2.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .case-item__t2 {
    font-size: 2.2rem;
  }
}
.case-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .case-pagenavi {
    gap: 10px;
  }
}
.case-pagenavi__page {
  width: 60px;
  height: 60px;
  background-color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .case-pagenavi__page {
    max-width: 40px;
    max-height: 40px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 400px) {
  .case-pagenavi__page {
    max-width: 30px;
    max-height: 30px;
  }
}
.case-pagenavi__page.active {
  border: 2px solid #145c86;
}
.case-pagenavi__page.prev, .case-pagenavi__page.next {
  position: relative;
  margin-left: 20px;
  background-color: transparent;
  border: 2px solid #145c86;
}
@media screen and (max-width: 767px) {
  .case-pagenavi__page.prev, .case-pagenavi__page.next {
    margin-left: 8px;
  }
}
.case-pagenavi__page.prev::before, .case-pagenavi__page.next::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 8.3px;
  background-image: url("./img/icons/arrow-right-blue.png");
  background-size: cover;
  background-position: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.case-pagenavi__page.prev {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  .case-pagenavi__page.prev {
    margin: 0 8px 0 0;
  }
}
.case-pagenavi__page.prev::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}

.case-detail {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .case-detail {
    padding-bottom: 45px;
  }
}
.case-detail__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.case-detail__heading h4 {
  font-size: 3.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .case-detail__heading h4 {
    font-size: 2.4rem;
  }
}
.case-detail__datencat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.case-detail__datencat p {
  margin-right: 10px;
  font-size: 1.8rem;
  color: #817f79;
}
@media screen and (max-width: 767px) {
  .case-detail__datencat p {
    margin-right: 0;
    width: 100%;
    font-size: 1.6rem;
  }
}
.case-detail__datencat span {
  padding: 2px 20px;
  font-size: 1.8rem;
  color: #fff;
  background-color: #817f79;
  border-radius: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case-detail__datencat span {
    font-size: 1.4rem;
  }
}
.case-detail__slider-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 50px 0 78px;
  padding-right: 180px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .case-detail__slider-container {
    margin: 35px 0 55px;
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.case-detail__slider {
  width: 100%;
  height: 820px;
}
@media screen and (max-width: 767px) {
  .case-detail__slider {
    height: 400px;
  }
}
.case-detail__slider-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.case-detail__slider-nav {
  position: absolute !important;
  width: 820px;
  height: 130px;
  padding: 0 30px;
  top: 50%;
  right: -343px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 767px) {
  .case-detail__slider-nav {
    position: relative !important;
    width: 100%;
    height: 100px;
    padding: 0 20px;
    top: unset;
    right: unset;
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
  }
}
.case-detail__slider-nav-item {
  width: 130px;
  height: 130px;
  margin-right: 30px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .case-detail__slider-nav-item {
    width: 100px;
    height: 100%;
    margin-right: 20px;
  }
}
.case-detail__slider-nav-item img {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .case-detail__slider-nav-item img {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.case-detail__b4naft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .case-detail__b4naft {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.case-detail__b4naft-item {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .case-detail__b4naft-item {
    width: 100%;
  }
}
.case-detail__b4naft-item p {
  margin-bottom: 25px;
  font-size: 2.4rem;
  text-align: end;
}
@media screen and (max-width: 767px) {
  .case-detail__b4naft-item p {
    font-size: 2.1rem;
    margin-bottom: 18px;
    text-align: justify;
  }
}
.case-detail__b4naft-item p.s1b {
  color: #817f79;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .case-detail__b4naft-item p.s1b {
    text-align: justify;
  }
}
.case-detail__b4naft-img {
  width: 100%;
  height: 440px;
  background-color: #ccc;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .case-detail__b4naft-img {
    height: 230px;
  }
}
.case-detail__b4naft-img:not(:last-of-type) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .case-detail__b4naft-img:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.case-detail__pdata {
  margin: 80px 0 60px;
  padding: 48px 100px;
  border-radius: 12px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .case-detail__pdata {
    margin: 50px 0 40px;
    padding: 30px;
  }
}
.case-detail__pdata-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .case-detail__pdata-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.case-detail__pdata-item:not(:last-child) {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #b3b2af;
}
@media screen and (max-width: 767px) {
  .case-detail__pdata-item:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.case-detail__pdata-item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 0.5px;
  background-color: #2d2a20;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .case-detail__pdata-item:not(:last-child)::after {
    width: 110px;
  }
}
.case-detail__pdata-item.s1 {
  border-bottom: 1px solid #2d2a20;
}
.case-detail__pdata-item.s1::after {
  display: none;
}
.case-detail__pdata-item span {
  min-width: 140px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .case-detail__pdata-item span {
    min-width: 110px;
    font-size: 1.6rem;
  }
}
.case-detail__pdata-item p {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .case-detail__pdata-item p {
    font-size: 1.4rem;
  }
}
.case-detail__pdata-text p:not(:last-child) {
  margin-bottom: 10px;
}
.case-detail__pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  padding-bottom: 55px;
  border-bottom: 1px solid #817f79;
}
@media screen and (max-width: 767px) {
  .case-detail__pagination {
    margin-bottom: 30px;
    padding-bottom: 80px;
    gap: 20px;
  }
}
.case-detail__pagination-btn {
  position: relative;
  padding-left: 38px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .case-detail__pagination-btn {
    font-size: 1.4rem;
  }
}
.case-detail__pagination-btn::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("./img/icons/bento-menu.svg");
  background-size: cover;
  background-position: center;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.case-detail__pagination-btn.prev {
  padding-left: 25px;
}
.case-detail__pagination-btn.prev::before {
  width: 10px;
  height: 8.3px;
  background-image: url("./img/icons/arrow-left.svg");
}
.case-detail__pagination-btn.next {
  padding: 0 25px 0 0;
}
.case-detail__pagination-btn.next::before {
  width: 10px;
  height: 8.3px;
  background-image: url("./img/icons/arrow-left.svg");
  left: unset;
  right: 0;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
@media screen and (max-width: 767px) {
  .case-detail__pagination-btn.all {
    position: absolute;
    padding-left: 30px;
    bottom: 40px;
    white-space: nowrap;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.case-detail__more-title {
  margin-bottom: 40px;
  font-size: 3.4rem;
}
@media screen and (max-width: 767px) {
  .case-detail__more-title {
    font-size: 2.8rem;
    margin-bottom: 22px;
  }
}
.case-detail__more-content {
  display: grid;
  grid-template-columns: repeat(3, 31%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .case-detail__more-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.case-detail__more-item {
  max-width: 305px;
  padding: 20px 20px 30px;
  background-color: #2d2a20;
  border-radius: 8px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .case-detail__more-item {
    width: 100%;
    max-width: unset;
  }
}
.case-detail__more-item img {
  width: 100%;
  height: 295px;
  margin-bottom: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .case-detail__more-item img {
    height: 200px;
    margin-bottom: 20px;
  }
}
.case-detail__more-item span {
  font-size: 1.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.case-detail__more-item p {
  font-size: 1.8rem;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .case-detail__more-item p {
    margin-top: 10px;
    font-size: 1.6rem;
  }
}

.footer {
  padding-left: 260px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-left: 0;
  }
}
.footer__wrapper {
  padding: 80px 0;
  background-image: url("./img/footer-bg.jpg");
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-inline: 4%;
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__container {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 1200px) {
  .footer__container {
    gap: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__card {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__card {
    width: 100%;
  }
}
.footer__card--white {
  width: 40%;
  color: #2d2a20;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .footer__card--white {
    width: 100%;
    padding: 37px 25px;
  }
}
.footer__title {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .footer__title {
    font-size: 2.8rem;
  }
}
.footer__info {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  line-height: 2em;
  margin-top: 40px;
  opacity: 0.85;
}
@media screen and (max-width: 767px) {
  .footer__info {
    margin-top: 34px;
    font-size: 1.6rem;
    line-height: 2em;
  }
}
.footer__btn {
  width: 100%;
  height: 60px;
  margin-top: 40px;
  gap: 16px;
  background-color: #fff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__btn {
    height: 55px;
  }
}
.footer__btn > img {
  width: 18px;
  height: 18px;
}
.footer__text {
  font-size: 1.8rem;
  color: #145c86;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 1.6rem;
  }
}
.footer__holder {
  margin-top: 29px;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__logo {
  width: 130px;
  height: 130px;
  background-color: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    padding: 17px;
    max-width: 114px;
    height: 114px;
  }
}
.footer__logo > img {
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .footer__logo > img {
    width: 100%;
    height: auto;
  }
}
.footer__address {
  display: grid;
  padding: 20px 0;
  opacity: 0.85;
}
.footer__label {
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__label {
    font-size: 1.6rem;
  }
}
.footer__label--small {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .footer__label--small {
    margin-top: 14px;
    font-size: 1.2rem;
    line-height: 2em;
  }
}
.footer__contact {
  font-size: 3.5rem;
  color: white;
  margin-top: 22px;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    font-size: 3.4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__contact > img {
  width: 35px;
  height: 29px;
}
.footer__link {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .footer__link {
    text-align: center;
  }
}
.footer__link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff3e3;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.footer__link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.footer__info-holder {
  text-align: center;
}
.footer__info-text {
  font-size: 1.8rem;
}
.footer__paragraph {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.7;
  margin-top: 22px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .footer__paragraph {
    font-size: 1.6rem;
    line-height: 2em;
  }
}
.footer__paragraph--small {
  font-size: 1.4rem;
  margin-top: 40px;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .footer__paragraph--small {
    margin-top: 20px;
  }
}
.footer__extension {
  position: relative;
  padding: 70px 0;
}
.footer__extension::before {
  content: "";
  background: url("./img/works/footer-wave.png") no-repeat;
  position: absolute;
  width: 855px;
  height: 139px;
  right: -155px;
  top: -100px;
}
@media screen and (max-width: 767px) {
  .footer__extension::before {
    background-size: cover;
    background-position: center;
    width: 350px;
    height: 57px;
    right: -70px;
    top: -40px;
  }
}
.footer__extension-container {
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__extension-container {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 767px) {
  .footer__extension-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__extension-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__extension-wrapper {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 767px) {
  .footer__extension-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__extension-wrapper--flex {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer__extension-col--s2 {
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .footer__extension-col--s2 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__extension-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .footer__extension-content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__extension-img {
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .footer__extension-img {
    width: 240px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .footer__extension-img img {
    width: 125px;
    margin-left: auto;
  }
}
.footer__list {
  font-size: 1.8rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .footer__list {
    width: 221px;
    font-size: 1.6rem;
  }
}
.footer__extra-info {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .footer__extra-info {
    margin-top: 40px;
    text-align: center;
  }
}
.footer__extra-link {
  font-size: 1.4rem;
  color: #817f79;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 0 10px;
}
.footer__extra-link:last-child {
  margin-left: 40px;
}
.footer__extra-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff3e3;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.footer__extra-link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.footer__copyright {
  font-size: 1.4rem;
  color: #817f79;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 25px;
  }
}

.privacy__block {
  width: 100%;
  padding: 15px 30px 25px;
  border-radius: 10px;
  background: #fff;
  font: 1.6rem "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .privacy__block {
    font-size: 1.2rem;
  }
}
.privacy__block:first-child {
  margin-top: 80px;
}
.privacy__block:last-child {
  margin-bottom: 80px;
}
.privacy__block hr {
  border: none;
  border-top: 1px solid #b3b2af;
  margin: 30px 0;
}
.privacy__heading {
  font: 2rem "ten-mincho", serif;
  line-height: 2.4em;
}
@media screen and (max-width: 767px) {
  .privacy__heading {
    font-size: 1.6rem;
  }
}

.sitemap__container {
  height: 100%;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .sitemap__container {
    padding: 50px 50px 80px;
  }
}
@media screen and (max-width: 767px) {
  .sitemap__container {
    padding: 50px 0;
  }
}
.sitemap__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .sitemap__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sitemap__link {
  width: 100%;
  color: #2d2a20;
  min-width: 140px;
  padding: 20px 0;
  font-size: 18px;
  line-height: 2.6666666667em;
  font-family: "ten-mincho", serif;
  font-weight: 500;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sitemap__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.1169px;
  border-radius: 1px;
  background-color: #b3b2af;
}
.sitemap__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 0.96px;
  border-radius: 1px;
  background-color: #2d2a20;
}
.sitemap__link:hover {
  color: #145c86;
}
.sitemap__link--list {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sitemap__link--list:hover {
  color: #2d2a20;
}
.sitemap__ul {
  min-width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sitemap__ul:last-child {
  padding-left: 20px;
}
.sitemap__ul li {
  list-style: disc;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2.5em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sitemap__ul li:hover {
  color: #145c86;
}

.contact__container {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 65px 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .contact__container {
    padding: 65px 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact__container {
    padding: 50px 0;
  }
}
.contact__wrapper {
  width: 100%;
  text-align: center;
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact__wrapper:first-child {
  margin-top: 0;
}
.contact__wrapper-progress {
  margin: 0 0 20px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 767px) {
  .contact__wrapper-progress {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.contact__wrapper-flexcolumn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact__details {
  background-color: #ffe3bb;
  width: 100%;
  max-width: 440px;
  padding: 0 15px 15px;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .contact__details {
    padding-bottom: 10px;
    margin-top: 10px;
  }
}
.contact__details-bgnone {
  padding: 0;
  background-color: transparent;
}
.contact__subtitle {
  font-size: 24px;
  line-height: 2em;
  color: #145c86;
  font-family: "ten-mincho", serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contact__subtitle {
    font-size: 20px;
    text-align: center;
  }
}
.contact__subtitle-margin {
  margin: 30px 0 40px;
}
.contact__subtitle--mb {
  margin-bottom: 40px;
}
.contact__text {
  font-size: 18px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #2d2a20;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .contact__text br {
    display: none;
  }
}
.contact__text-mb {
  margin-bottom: 35px;
}
.contact__text-gray {
  color: #817f79;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contact__text-gray {
    margin-top: 10px;
  }
}
.contact__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__number p {
  font-size: 40px;
  line-height: 1.75em;
  color: #145c86;
  font-family: "ten-mincho", serif;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .contact__number p {
    font-size: 30px;
  }
}
.contact__number-bottom {
  font-size: 14px;
  color: #145c86;
  line-height: 2em;
  margin-top: -12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.contact__form-wrapper {
  padding: 60px 100px;
  background-color: #fff;
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .contact__form-wrapper {
    padding: 60px;
  }
}
@media screen and (max-width: 767px) {
  .contact__form-wrapper {
    padding: 30px 20px;
  }
}
.contact__progress {
  width: auto;
  text-align: start;
}
.contact__progress-line {
  background-image: url("./img/icons/contact-progress.png");
  background-repeat: no-repeat;
  margin-top: 10px;
  height: 10px;
  width: 90px;
}
@media screen and (max-width: 767px) {
  .contact__progress-line {
    width: 100%;
  }
}
.contact__progress-bar {
  color: #145c86;
  font-size: 16px;
  font-family: "ten-mincho", serif;
}
.contact__progress-text {
  color: #145c86;
  font-size: 20px;
  line-height: 2.4em;
  font-family: "ten-mincho", serif;
}
@media screen and (max-width: 767px) {
  .contact__progress-text {
    font-size: 18px;
  }
}
.contact__progress-img {
  height: 10px;
  width: 7.5px;
  margin-bottom: 15px;
}
.contact__form-container {
  width: 100%;
}
.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #b3b2af;
}
@media screen and (max-width: 767px) {
  .contact__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact__item.border-bottom-0 {
  border-bottom: 0;
}
.contact__item:last-child .contact__input p {
  display: block !important;
}
.contact__item-flexcolumn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 80px !important;
}
.contact__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 270px;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .contact__title {
    gap: 10px;
    min-width: auto;
  }
}
.contact__input-wrapper {
  max-width: 530px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact__input-wrapper {
    max-width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact__input-wrapper.margin-left {
    margin-left: 20px;
  }
}
.contact__required {
  background-color: #145c86;
  padding: 5px 10px;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .contact__required {
    padding: 3px 8px;
  }
}
.contact__required span {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .contact__required span {
    font-size: 12px;
  }
}
.contact__required--bordered {
  background-color: #fff;
  border: 1px solid #145c86;
  color: #145c86;
}
.contact__input {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .contact__input {
    text-align: justify;
  }
}
.contact__input:last-child {
  margin-bottom: 0;
}
.contact__input--dflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__input--autowidth {
  width: auto;
  margin-left: 20px;
}
.contact__input label {
  font-size: 16px;
  color: #2d2a20;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .contact__input label {
    font-size: 14px;
  }
}
.contact__input p {
  font-size: 14px;
  color: #2d2a20;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .contact__input p {
    font-size: 12px;
  }
}
.contact__input span {
  font-size: 16px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.contact__input-label {
  display: block !important;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.contact__input-text {
  width: 100%;
  height: 50px;
  background-color: #f2f2f2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  padding: 10px;
  outline: none;
  border: 0;
}
@media screen and (max-width: 767px) {
  .contact__input-text {
    font-size: 14px;
  }
}
.contact__input-text::-webkit-input-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-text::-moz-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-text:-ms-input-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-text::-ms-input-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-text::placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-textarea {
  width: 100%;
  outline: none;
  border: 0;
  background-color: #f2f2f2;
  padding: 15px 10px;
  resize: none;
  font-size: 16px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .contact__input-textarea {
    font-size: 14px;
  }
}
.contact__input-textarea::-webkit-input-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-textarea::-moz-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-textarea:-ms-input-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-textarea::-ms-input-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-textarea::placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-checkbox {
  position: absolute;
  opacity: 0;
  width: 25px;
  height: 25px;
  z-index: 5;
}
.contact__input-checkbox::-webkit-input-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-checkbox::-moz-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-checkbox:-ms-input-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-checkbox::-ms-input-placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__input-checkbox::placeholder {
  color: #817f79;
  opacity: 1;
}
.contact__note {
  font-size: 16px;
  color: #ffbc50;
  font-family: "ten-mincho", serif;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .contact__note {
    font-size: 14px;
  }
}
.contact__button-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  margin: 0 auto;
  text-align: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .contact__button-wrapper {
    height: 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contact__button-wrapper--mr {
  margin-right: 40px;
}
.contact__button-wrapper--ml {
  margin-left: 40px;
}
.contact__button-wrapper--mt {
  margin-top: 80px;
}
.contact__button-container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__button {
  width: 300px;
  height: 100%;
  background-color: #145c86;
  border-radius: 30px;
  color: #fff;
  border: 0;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  font-family: "ten-mincho", serif;
}
@media screen and (max-width: 767px) {
  .contact__button {
    font-size: 14px;
  }
}
.contact__button-outline {
  background-color: #fff;
  color: #145c86;
  border: 2px solid #145c86;
}
.contact__checkmark {
  position: relative;
  height: 25px;
  width: 25px;
  margin-right: 15px;
  background-color: #f2f2f2;
  border: 0;
  z-index: 0;
}
.contact__checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 3px;
  width: 5px;
  height: 12px;
  border: solid #ffbc50;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.contact__label {
  display: block;
  font-size: 18px;
  font-family: "ten-mincho", serif;
  color: #2d2a20;
}
@media screen and (max-width: 767px) {
  .contact__label {
    font-size: 16px;
  }
}
.contact .label-bottom {
  color: #145c86;
}
.contact .label-bottom a {
  color: #2d2a20;
}
.contact__icon {
  width: 35px;
}
.contact__input input:checked ~ .contact__checkmark::after {
  display: block;
}
.contact__input input:checked ~ label {
  color: #ffbc50;
}
.contact__input input:checked ~ label a {
  color: #ffbc50;
}
.contact .active {
  color: #ffbc50;
}
.contact .contact__progress-line--active {
  background-image: url("./img/icons/contact-active-progress.png");
}
.contact .contact__item-flexcolumn p {
  display: block !important;
}

.flow__content {
  padding-bottom: 167px;
}
.flow__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}
@media screen and (max-width: 1230px) {
  .flow__menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}
@media screen and (max-width: 567px) {
  .flow__menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.flow__card {
  width: 20%;
  height: auto;
  padding: 25px 20px 30px 20px;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1230px) {
  .flow__card {
    width: 49%;
    height: 270px;
    margin: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 567px) {
  .flow__card {
    width: 100%;
    height: unset;
  }
}
.flow__card:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 1230px) {
  .flow__card:not(:last-child) {
    margin: 0;
  }
}
.flow__icon {
  width: 50px;
  height: 50px;
}
.flow__number {
  font: 400 1.6rem "ten-mincho", serif;
  color: #2d2a20;
  margin: 20px 0 41px 0;
  position: relative;
}
.flow__number::after {
  content: "";
  background: url("./img/flow/wave.png");
  position: absolute;
  width: 90px;
  height: 5px;
  left: 50%;
  top: 45px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.flow__menu-text {
  font-family: "ten-mincho", serif;
  font-size: 2rem;
  text-align: center;
  line-height: 2em;
}
.flow__contact {
  gap: 20px;
  margin-top: 50px;
  padding: 50px 30px 56px 30px;
  border-radius: 10px;
  background-color: #ffe3bb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .flow__contact {
    gap: 15px;
    padding: 30px 20px 36px 20px;
  }
}
.flow__contact-title {
  font: 400 2.4rem "ten-mincho", serif;
  color: #2d2a20;
  text-align: center;
}
.flow__contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .flow__contact-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.flow__contact-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .flow__contact-holder {
    padding-left: 0;
  }
}
.flow__contact-icon {
  width: 35px;
  height: 29px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .flow__contact-icon {
    width: 28px;
    height: 22px;
    margin-right: 12px;
  }
}
.flow__contact-details {
  font: 400 4rem "ten-mincho", serif;
  width: calc(100% - 35px);
  color: #145c86;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .flow__contact-details {
    font-size: 3rem;
  }
}
.flow__contact-details > span {
  font: 400 1.4rem "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .flow__contact-link {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.flow__contact-btn {
  width: 440px;
  height: 60px;
  gap: 16px;
  background-color: #fff;
  border-radius: 30px;
  border: 1.8px solid #145c86;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flow__contact-btn > img {
  width: 18px;
  height: 18px;
}
.flow__contact-text {
  font-family: "ten-mincho", serif;
  font-size: 1.8rem;
  color: #145c86;
}
.flow__menu-content:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .flow__menu-content:not(:last-child) {
    margin-bottom: 25px;
  }
}
.flow__menu-holder {
  gap: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 980px) {
  .flow__menu-holder {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 980px) and (max-width: 767px) {
  .flow__menu-holder {
    gap: 37.5px;
  }
}
@media screen and (max-width: 567px) {
  .flow__menu-holder {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.flow__menu-holder--btn {
  gap: 20px;
}
@media screen and (max-width: 980px) {
  .flow__menu-holder--btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .flow__menu-holder--btn {
    padding: 0;
    gap: 10px;
  }
}
@media screen and (max-width: 980px) {
  .flow__menu-holder--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.flow__details {
  width: 47%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .flow__details {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .flow__details {
    width: 100%;
  }
}
.flow__details--w45 {
  width: 47%;
}
@media screen and (max-width: 1440px) {
  .flow__details--w45 {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .flow__details--w45 {
    width: auto;
  }
}
.flow__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .flow__image {
    max-width: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.flow__section-num {
  font: 400 1.6rem "ten-mincho", serif;
  margin-bottom: 33px;
  color: #2d2a20;
  text-align: center;
  position: relative;
}
.flow__section-num::after {
  content: "";
  background: url("./img/flow/wave.png");
  position: absolute;
  width: 90px;
  height: 5px;
  left: 50%;
  top: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .flow__section-num:not(:first-child) {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .flow__section-num:not(:first-child)::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.flow__section-title {
  font: 400 3.4rem "ten-mincho", serif;
  color: #2d2a20;
  text-align: center;
}
.flow__section-title--left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .flow__section-title--left {
    text-align: center;
  }
}
.flow__paragraph {
  font: 400 1.8rem "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  margin-top: 18px;
  line-height: 1.8em;
}
.flow__menu-link {
  width: 33.33%;
}
@media screen and (max-width: 567px) {
  .flow__menu-link {
    width: 100%;
    max-width: 330px;
  }
}
.flow__menu-btn {
  width: 100%;
  height: 60px;
  background: #fff;
  border-radius: 30px;
  border: 2px solid #145c86;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__menu-btn {
    padding-right: calc(10px + 10%);
    height: 50px;
  }
}
.flow__menu-btn::after {
  content: "";
  background: url("./img/flow/arrow-icon.svg");
  position: absolute;
  width: 10px;
  height: 8px;
  right: 10%;
  top: 45%;
}
.flow__menu-btn > span {
  font: 400 1.8rem "ten-mincho", serif;
  color: #145c86;
}
@media screen and (max-width: 767px) {
  .flow__menu-btn > span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 360px) {
  .flow__menu-btn > span {
    font-size: 1.3rem;
  }
}
.flow__divider {
  width: 100%;
  height: 380px;
  position: relative;
}
.flow__divider::before {
  content: "";
  position: absolute;
  width: 912px;
  height: 150px;
  background-image: url("./img/top-deco-s1.png");
  background-size: cover;
  background-position: center;
  top: -95px;
  left: -95px;
  z-index: 1;
}
.flow__divider > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 50%;
  top: 50%;
}
.flow__faq-container {
  background-color: #fff;
}
.flow__faq-content {
  padding: 80px 0 77px 0;
}
.flow__title-holder {
  text-align: center;
}
.flow__faq-title {
  font: 400 2rem "ten-mincho", serif;
  margin-bottom: 50px;
  display: inline-block;
  position: relative;
}
.flow__faq-title::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 31px;
  background-image: url("./img/flow/faq-deco.png");
  right: 16rem;
  top: 30px;
}
.flow__faq-title::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 23px;
  background-image: url("./img/flow/faq-deco-1.png");
  left: 20rem;
  top: 70px;
}
.flow__faq-deco {
  left: 50%;
  top: 40px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.flow__faq-sub {
  font: 400 4.8rem "ten-mincho", serif;
}
@media screen and (max-width: 767px) {
  .flow__faq-sub {
    font-size: 4.2rem;
  }
}
.flow__faq {
  padding-top: 50px;
}
.flow__category {
  font: 400 3.4rem "ten-mincho", serif;
  color: #2d2a20;
  margin-bottom: 18px;
}
.flow__faq-main {
  padding: 26px 100px 0 100px;
  background-color: #FFF4E3;
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .flow__faq-main {
    padding: 50px;
  }
}
@media screen and (max-width: 567px) {
  .flow__faq-main {
    padding: 20px;
  }
}
.flow__qna-holder {
  gap: 30px;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flow__qna-holder:not(:last-child, :first-child) {
  border-bottom: 1px solid #B3B2AF;
}
.flow__qna-holder--left {
  position: relative;
}
.flow__qna-holder--left::after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: #B3B2AF;
  position: absolute;
}
.flow__qna-holder--border-btm {
  border-bottom: 1px solid #B3B2AF;
}
.flow__qna-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flow__qna-text {
  font: 400 2rem "ten-mincho", serif;
  width: 60px;
  height: 60px;
  color: #2d2a20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .flow__qna-text {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}
.flow__qna-text--icon {
  color: white;
  background-color: #145c86;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow__qna-paragraph {
  font: 400 2rem "ten-mincho", serif;
  width: calc(100% - 60px);
  padding-left: 40px;
  line-height: 3.6rem;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 567px) {
  .flow__qna-paragraph {
    padding-left: 20px;
  }
}
.flow__qna-paragraph--answer {
  font: 400 1.8rem "Zen Kaku Gothic New", sans-serif;
  line-height: 3.6rem;
}

.recruit__hero {
  background: url("./img/recruit/hero-bg.jpg") no-repeat center;
  background-size: cover;
  height: 400px;
  margin-top: 110px;
  position: relative;
}
.recruit__hero-text {
  color: #fff;
  max-width: 1000px;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  padding: 0 100px;
  text-align: center;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1200px) {
  .recruit__hero-text {
    padding: 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__hero-text {
    padding: 0 6%;
  }
}
.recruit__title {
  font-family: "ten-mincho", serif;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .recruit__title {
    font-size: 2.2rem;
  }
}
.recruit__subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  margin-top: 50px;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .recruit__subtitle {
    margin-top: 25px;
  }
}
.recruit__content {
  padding: 20px 100px 80px 100px;
}
@media screen and (max-width: 767px) {
  .recruit__content {
    padding: 20px 0 80px 0;
  }
}
.recruit__container {
  display: grid;
  grid-template-columns: 140px 1fr;
  position: relative;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .recruit__container {
    grid-template-columns: 20% 1fr;
  }
}
.recruit__container::before, .recruit__container::after {
  content: "";
  position: absolute;
  bottom: 0;
}
.recruit__container::before {
  left: 0;
  width: 140px;
  border-bottom: 1px solid #2d2a20;
}
@media screen and (max-width: 767px) {
  .recruit__container::before {
    width: 20%;
    min-width: 80px;
  }
}
.recruit__container::after {
  width: calc(100% - 140px);
  right: 0;
  border-bottom: 1px solid #B3B2AF;
}
@media screen and (max-width: 767px) {
  .recruit__container::after {
    width: 80%;
  }
}
.recruit__info {
  font-family: "ten-mincho", serif;
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .recruit__info {
    min-width: 80px;
  }
}
.recruit__details {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 2em;
  padding-left: 19.7%;
}
@media screen and (max-width: 767px) {
  .recruit__details {
    padding-left: 65px;
  }
}
@media screen and (max-width: 567px) {
  .recruit__details {
    padding-left: 20px;
  }
}

.voice__content {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .voice__content {
    padding: 40px 0;
  }
}
.voice__title-wrapper {
  text-align: center;
}
.voice__title {
  font: 400 2.5rem "ten-mincho", serif;
  color: #145c86;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .voice__title {
    padding-bottom: 25px;
    font-size: 2.3rem;
  }
}
.voice__subtitle {
  font: 400 1.8rem "Zen Kaku Gothic New", sans-serif;
  color: #2d2a20;
}
.voice__container {
  padding: 75px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .voice__container {
    padding: 45px 0 40px 0;
  }
}
.voice__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  min-height: 385px;
}
@media screen and (max-width: 567px) {
  .voice__card {
    min-height: 588px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.voice__card:not(:last-child) {
  margin-bottom: 30px;
}
.voice__img {
  width: 164px;
  height: 187px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .voice__img {
    margin: 0 auto;
  }
}
.voice__img > img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 95%;
     object-position: 95%;
}
.voice__img > img.placeholder {
  display: block;
  width: 100px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.voice__details {
  display: grid;
  padding-left: 25px;
}
@media screen and (max-width: 567px) {
  .voice__details {
    padding: 25px 0 0 0;
  }
}
.voice__details-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  max-height: 192px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.voice__details-content:has(~ .voice__read-more > .voice__read-more-checkbox:checked) {
  display: block;
  -webkit-line-clamp: initial;
}
.voice__info {
  font: 400 2rem "ten-mincho", serif;
  color: #817f79;
  margin-bottom: 25px;
  line-height: 3.6rem;
}
@media screen and (max-width: 767px) {
  .voice__info {
    font-size: 1.8rem;
    line-height: 3.2rem;
    margin-bottom: 15px;
  }
}
.voice__info:not(.voice__info--copy) {
  letter-spacing: 0.1em;
}
.voice__info--copy {
  font: 400 1.8rem "Zen Kaku Gothic New", sans-serif;
  color: #2d2a20;
  line-height: 3.6rem;
}
@media screen and (max-width: 767px) {
  .voice__info--copy {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
.voice__additional-info {
  font: 400 1.4rem "Zen Kaku Gothic New", sans-serif;
  color: #817f79;
  text-align: right;
  display: block;
}
.voice__read-more {
  margin: 20px 0 20px auto;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
}
.voice__read-more:hover {
  cursor: pointer;
}
.voice__read-more:has(.voice__read-more-checkbox:checked) {
  display: none;
}
.voice__read-more.hidden {
  display: none;
}
.voice__read-more-checkbox {
  width: 0;
}
.voice__pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .voice__pagenavi {
    gap: 10px;
  }
}

.company__title-container {
  text-align: center;
}
.company__title {
  font: 2.4rem "ten-mincho", serif;
  color: #145c86;
  line-height: 2em;
}
.company__title-container {
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .company__title-container {
    padding-bottom: 25px;
  }
}
.company__content {
  position: relative;
}
.company__content::before {
  content: "";
  position: absolute;
  width: 1612px;
  height: 263px;
  background-image: url("./img/top-deco-s2.png");
  background-size: cover;
  background-position: center;
  right: -150px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .company__content::before {
    width: 350px;
    height: 57px;
    left: 60%;
    top: 88%;
    z-index: 1;
  }
}
@media screen and (max-width: 567px) {
  .company__content::before {
    top: 80%;
  }
}
.company__content::after {
  content: "";
  position: absolute;
  width: 840px;
  height: 137px;
  background-image: url("./img/top-deco-s1.png");
  background-size: cover;
  background-position: center;
  left: -150px;
  bottom: 65px;
}
@media screen and (max-width: 767px) {
  .company__content::after {
    width: 350px;
    height: 57px;
    right: -80px;
    top: 80%;
  }
}
.company__carousel {
  width: 100%;
  height: auto;
}
.company__cell {
  width: 50%;
  height: 370px;
  margin-right: 80px;
  top: 90px;
  -webkit-transition: height 0.3s, top 0.3s;
  transition: height 0.3s, top 0.3s;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .company__cell {
    width: 80%;
    margin-right: 40px;
  }
}
@media screen and (max-width: 567px) {
  .company__cell {
    width: 100%;
    margin-right: 20px;
  }
}
.company__cell > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.company__cell > img.sm {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .company__cell > img.sm {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.company__paragraph-wrapper {
  padding: 50px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .company__paragraph-wrapper {
    padding: 25px 0 40px 0;
  }
}
@media screen and (max-width: 567px) {
  .company__paragraph-wrapper {
    padding: 0 0 40px 0;
  }
}
.company__paragraph {
  font: 1.8rem "Zen Kaku Gothic New", sans-serif;
  color: #2d2a20;
  line-height: 2em;
  text-align: center;
}
.company__profile {
  background-color: #fff;
}
.company__profile-content {
  padding: 73px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .company__profile-content {
    padding: 40px 0;
  }
}
.company__profile-title {
  text-align: center;
}
.company__main-title {
  font: 2rem "ten-mincho", serif;
  display: inline-block;
  position: relative;
}
.company__main-title::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 31px;
  background-image: url("./img/flow/faq-deco.png");
  right: 20rem;
  top: 0;
}
.company__main-title::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 23px;
  background-image: url("./img/flow/faq-deco-1.png");
  left: 20rem;
  top: 30px;
}
.company__deco {
  left: 50%;
  top: 40px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.company__subtitle {
  font-weight: 400;
  font-size: 4.8rem;
  margin-top: 40px;
}
.company__main-container {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .company__main-container {
    padding-top: 20px;
  }
}
.company__profile-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .company__profile-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.company__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding: 30px 0;
  border-bottom: 1px solid #B3B2AF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company__wrapper {
    width: 100%;
  }
}
.company__wrapper::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 140px;
  height: 1px;
  border-radius: 1px;
  background-color: #2d2a20;
}
.company__wrapper--w100 {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.company__info {
  font: 1.8rem "ten-mincho", serif;
  color: #2d2a20;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .company__info {
    width: 50%;
  }
}
.company__info--holder {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .company__info--holder {
    width: 50%;
  }
}
.company__details {
  font: 1.6rem "Zen Kaku Gothic New", sans-serif;
  color: #2d2a20;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .company__details {
    width: 50%;
  }
}
.company__details > a {
  text-decoration: underline;
  color: #145c86;
}
.company__details--holder {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .company__details--holder {
    width: 50%;
  }
}
.company__map {
  width: 100%;
  height: 340px;
  margin-top: 20px;
}

.contact__title--privacy .mwform-checkbox-field span {
  letter-spacing: -0.1em !important;
}

.mwform-radio-field {
  position: relative;
  margin-left: 30px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .mwform-radio-field {
    margin-left: 0;
    font-size: 14.3308px;
  }
  .mwform-radio-field:not(:first-child) {
    margin-left: 50.6px;
  }
}
.mwform-radio-field:hover {
  cursor: pointer;
}
.mwform-radio-field span {
  position: relative;
  padding-left: 35px;
}
.mwform-radio-field span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border: 2px solid #ffe3bb;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mwform-radio-field span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  display: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  background: #c9c32b;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mwform-radio-field input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.mwform-radio-field input:checked + span::after {
  display: block;
}

.mwform-checkbox-field {
  font-size: 16px;
  color: #2d2a20;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .mwform-checkbox-field {
    font-size: 12.32px;
    margin-bottom: 10px;
  }
}
.mwform-checkbox-field:hover {
  cursor: pointer;
}
.mwform-checkbox-field span {
  padding-left: 45px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mwform-checkbox-field span {
    padding-left: 25px;
    white-space: normal;
  }
}
.mwform-checkbox-field span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  background-color: #f2f2f2;
  border: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .mwform-checkbox-field span::before {
    top: -2px;
  }
}
.mwform-checkbox-field span::after {
  content: "";
  position: absolute;
  top: 5%;
  left: 7px;
  display: none;
  width: 4px;
  height: 12px;
  border: solid #ffbc50;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mwform-checkbox-field input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.mwform-checkbox-field input:checked + span {
  color: #ffbc50;
}
.mwform-checkbox-field input:checked + span::after {
  display: block;
}

.mw_wp_form .contact__input-wrapper {
  font-size: 16px;
  color: #2d2a20;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.mw_wp_form .contact__input {
  font-size: 16px;
  color: #2d2a20;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.mw_wp_form_confirm .contact__input-label {
  display: none !important;
}
.mw_wp_form_confirm .contact__item--hide-confirm {
  display: none;
}
.mw_wp_form_confirm .contact__button-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 140px;
}

.wp-pagenavi {
  margin: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
  }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend {
  color: #817f79;
  width: 60px;
  height: 60px;
  margin: 0 5px 6px;
  background: #fff;
  border-radius: 30px;
  font-size: 1.6rem;
  line-height: 2.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .page,
  .wp-pagenavi .current,
  .wp-pagenavi .extend {
    width: 40px;
    height: 40px;
    margin: 0;
  }
}
.wp-pagenavi .current {
  color: #145c86;
  border: 2px solid #145c86;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  border: 2px solid #145c86;
  background: transparent;
  color: #145c86;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    margin: 0;
  }
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  display: block;
  content: "";
  width: 10px;
  height: 8px;
  background: url("./img/icons/pagenavi-arrow-left.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wp-pagenavi .nextpostslink {
  margin-left: 40px;
  margin-right: unset;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .nextpostslink {
    margin-left: 0;
  }
}
.wp-pagenavi .nextpostslink::after {
  background: url("./img/icons/pagenavi-arrow-right.svg") no-repeat center/contain;
}
.wp-pagenavi .nextpostslink:hover::after {
  -webkit-transform: translate(calc(-50% + 2px), -50%);
          transform: translate(calc(-50% + 2px), -50%);
}
.wp-pagenavi .extend {
  background: transparent;
  color: #000;
}
.wp-pagenavi .extend:nth-last-child(2) {
  display: none;
}

.white {
  color: #fff;
}

.white-bg {
  background: #fff;
}

.black {
  color: #000;
}

.black-bg {
  background: #000;
}

.primary {
  color: #ffe3bb;
}

.primary-bg {
  background: #ffe3bb;
}

.secondary {
  color: #145c86;
}

.overflow {
  overflow: hidden;
}

.nowrap {
  white-space: nowrap;
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.main-wrapper {
  max-width: calc(1000px + 8%);
  margin: 0 auto;
  padding-inline: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .main-wrapper {
    max-width: 100%;
    padding: 0 6%;
  }
}

.pagebody {
  position: relative;
  padding-left: 260px;
  overflow: hidden;
  background-image: url("./img/top-bg.jpg");
  background-repeat: repeat;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .pagebody {
    padding-top: 60px;
    padding-left: 0;
  }
}

.link-animate:hover > * {
  color: transparent;
  -webkit-transition-delay: 0.38s;
          transition-delay: 0.38s;
}
.link-animate:hover > *::after {
  opacity: 1;
  -webkit-animation: linkhover-s2 0.5s;
          animation: linkhover-s2 0.5s;
}
.link-animate > * {
  position: relative;
  -webkit-transition: 0s;
  transition: 0s;
}
.link-animate > *::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  color: #145c86;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.anchor {
  position: relative;
}

.anchor-anchor {
  position: absolute;
  top: -50px;
}

.trim {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trim-crumb {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.none {
  display: none;
}

.empty-post__message {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .empty-post__message {
    font-size: 1.6rem;
  }
}

/*# sourceMappingURL=/main.css.map */