@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
:root {
  --font-family: "Noto Serif JP", serif;
  --primary-color: #f3efe8;
  --secondary-color: #f7f4ef;
  --footer-color: #cdc3a2;
  --text-color: #464646;
  --body-color: #f3efe8b2;
}

html {
  font-family: var(--font-family);
}

* {
  box-sizing: border-box;
}

.header {
  width: 100%;
  height: 75px;
  background-color: var(--primary-color);
}
.header-wrapper {
  width: 95%;
  max-width: 1440px;
  padding: 0 48px 0 56px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-wrapper__logo {
  width: 153px;
  height: 39px;
}
.header-wrapper__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-wrapper__menu-ul {
  display: flex;
  gap: 20px;
}
.header-wrapper__menu-li {
  position: relative;
}
.header-wrapper__menu-li:hover .header-wrapper__menu-li__sub-menu {
  opacity: 1;
  visibility: visible;
  height: 46px;
}
.header-wrapper__menu-li:hover .header-wrapper__menu-li__sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -13px;
  width: 2px;
  height: 120%;
  background-color: #333;
}
.header-wrapper__menu-li a {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  transition: all 200ms linear;
}
.header-wrapper__menu-li a:hover {
  color: gray;
}
.header-wrapper__menu-li__sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  height: 40px;
  transition: all 200ms linear;
  margin-left: 13px;
  z-index: 99;
}
.header-wrapper__menu-li__sub-menu__li {
  position: relative;
}
.header-wrapper__menu-li__sub-menu li {
  font-size: 14px;
  font-weight: 400;
}
.header-btn-contact {
  width: 173px;
  height: 50px;
  background-color: var(--primary-color);
}
.header-btn-contact > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  transition: all 200ms linear;
  font-family: var(--font-family);
}
.header-btn-contact > a:hover {
  background-color: #444;
  border-color: #fff;
  color: #fff;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998 !important;
}

@media screen and (max-width: 1440px) {
  .header-wrapper {
    width: 98%;
    padding: 0;
  }
}
@media screen and (max-width: 1300px) {
  .header-wrapper__logo {
    width: 139.0909090909px;
    height: 35.4545454545px;
  }
  .header-wrapper__menu-ul {
    gap: 18.1818181818px;
  }
  .header-wrapper__menu-li:hover .header-wrapper__menu-li__sub-menu {
    height: 41.8181818182px;
  }
  .header-wrapper__menu-li a {
    font-size: 12.7272727273px;
  }
  .header-wrapper__menu-li__sub-menu {
    gap: 7.2727272727px;
    height: 36.3636363636px;
  }
  .header-wrapper__menu-li__sub-menu__li .list-circle {
    left: -9.0909090909px;
  }
  .header-wrapper__menu-li__sub-menu li {
    font-size: 12.7272727273px;
  }
}
@media screen and (max-width: 1200px) {
  .header-wrapper__logo {
    width: 109.2857142857px;
    height: 27.8571428571px;
  }
  .header-wrapper__menu-ul {
    gap: 14.2857142857px;
  }
  .header-wrapper__menu-li:hover .header-wrapper__menu-li__sub-menu {
    height: 32.8571428571px;
  }
  .header-wrapper__menu-li a {
    font-size: 10px;
  }
  .header-wrapper__menu-li__sub-menu {
    gap: 5.7142857143px;
    height: 28.5714285714px;
  }
  .header-wrapper__menu-li__sub-menu__li .list-circle {
    left: -7.1428571429px;
  }
  .header-wrapper__menu-li__sub-menu li {
    font-size: 10px;
  }
  .header-btn-contact {
    width: 123.5714285714px;
    height: 45.7142857143px;
  }
  .header-btn-contact > a {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 50px;
    max-width: 430px;
  }
  .header-wrapper {
    padding: 0;
    width: 90%;
  }
  .header-wrapper__logo {
    width: 80px;
    height: 20px;
  }
  .header-wrapper__menu {
    display: none;
  }
  .header-wrapper__hamburger .btn {
    position: relative;
    z-index: 999;
    width: 32px;
    height: 32px;
    background-image: url("../public/assets/img/hamburger-icon.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .header-wrapper__hamburger .btn.btn-active {
    background-image: url("../public/assets/img/close-icon.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80% 80%;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
  }
  .header-wrapper__hamburger-nav {
    position: fixed;
    inset: 0;
    left: 50px;
    bottom: 70px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    z-index: 998;
    transform: translateX(100%);
    transition: all 200ms linear;
    padding: 90px 0 40px;
    height: 100vh;
    overflow-y: auto;
  }
  .header-wrapper__hamburger-nav.active {
    transform: translateX(0);
  }
  .header-wrapper__hamburger-nav .m-0 {
    margin: 0;
  }
  .header-wrapper__hamburger-nav .mt-24 {
    margin-top: 24px;
  }
  .header-wrapper__hamburger-nav .mt-12 {
    margin-top: 12px;
  }
  .header-wrapper__hamburger-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-wrapper__hamburger-nav ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-wrapper__hamburger-nav ul li a {
    color: initial;
    font-size: 14px;
    font-weight: 700;
  }
  .header-wrapper__hamburger-nav ul ul.header-wrapper__hamburger-nav__sub-menu {
    margin-top: 10px;
    gap: 10px;
  }
  .header-wrapper__hamburger-nav ul ul.header-wrapper__hamburger-nav__sub-menu li a {
    color: initial;
    font-size: 10px;
    font-weight: 400;
  }
  .header-wrapper__hamburger-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    letter-spacing: 0.16em;
    margin-top: 29px;
    margin-bottom: 42px;
  }
  .header-wrapper__hamburger-info a {
    color: initial;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
  }
  .header-wrapper__hamburger-info a img {
    width: 20px;
    height: 20px;
    object-fit: cover;
  }
  .header-wrapper__hamburger-info__company-name {
    font-size: 12px;
    font-weight: 400;
  }
  .header-btn-contact {
    display: none;
  }
  .d-none {
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .header {
    height: 50px;
    max-width: 430px;
  }
  .header-wrapper {
    padding: 0;
    width: 90%;
  }
  .header-wrapper__logo {
    width: 80px;
    height: 20px;
  }
  .header-wrapper__menu {
    display: none;
  }
  .header-wrapper__hamburger .btn {
    position: relative;
    z-index: 999;
    width: 32px;
    height: 32px;
    background-image: url("../public/assets/img/hamburger-icon.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .header-wrapper__hamburger .btn.btn-active {
    background-image: url("../public/assets/img/close-icon.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80% 80%;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
  }
  .header-wrapper__hamburger-nav {
    position: fixed;
    right: 0;
    top: 0;
    left: 50px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    z-index: 998;
    transform: translateX(100%);
    transition: all 200ms linear;
    padding: 46px 0 107px;
    height: fit-content;
    overflow-y: auto;
  }
  .header-wrapper__hamburger-nav.active {
    transform: translateX(0);
  }
  .header-wrapper__hamburger-nav .m-0 {
    margin: 0;
  }
  .header-wrapper__hamburger-nav .mt-20 {
    margin-top: 20px;
  }
  .header-wrapper__hamburger-nav .mt-22 {
    margin-top: 22px;
  }
  .header-wrapper__hamburger-nav .mt-12 {
    margin-top: 12px;
  }
  .header-wrapper__hamburger-nav .mt-16 {
    margin-top: 16px;
  }
  .header-wrapper__hamburger-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-wrapper__hamburger-nav ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-wrapper__hamburger-nav ul li a {
    color: initial;
    font-size: 14px;
    font-weight: 700;
  }
  .header-wrapper__hamburger-nav ul ul.header-wrapper__hamburger-nav__sub-menu {
    margin-top: 10px;
    gap: 11px;
  }
  .header-wrapper__hamburger-nav ul ul.header-wrapper__hamburger-nav__sub-menu li a {
    color: initial;
    font-size: 12px;
    font-weight: 400;
  }
  .header-wrapper__hamburger-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    letter-spacing: 0.16em;
    margin-top: 29px;
    margin-bottom: 42px;
  }
  .header-wrapper__hamburger-info a {
    color: initial;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
  }
  .header-wrapper__hamburger-info a img {
    width: 20px;
    height: 20px;
    object-fit: cover;
  }
  .header-wrapper__hamburger-info__company-name {
    font-size: 12px;
    font-weight: 400;
  }
  .header-btn-contact {
    display: none;
  }
  .d-none {
    display: none;
  }
}
.banner {
  width: 100%;
  background-color: var(--body-color);
}
.banner-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-image: url("../public/assets/img/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 982px;
  position: relative;
}
.banner-wrapper__text {
  font-size: 64px;
  color: white;
  font-weight: 700;
  position: absolute;
  top: 104px;
  left: 100px;
  letter-spacing: 0.16em;
  line-height: 1.3;
}
.banner-wrapper__line {
  width: 222px;
  height: 1px;
  background-color: white;
  position: absolute;
  top: 20%;
  left: 46%;
  transform: translate(-50%, 0%);
  rotate: -45deg;
}
.banner-wrapper__list {
  font-size: 36px;
  color: white;
  letter-spacing: 0.16em;
  position: absolute;
  top: 261px;
  right: 100px;
  line-height: 1.5;
}

@media screen and (max-width: 1439px) {
  .banner-wrapper__text {
    font-size: 53.3333333333px;
  }
  .banner-wrapper__line {
    width: 222px;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 20%;
    left: 46%;
    transform: translate(-50%, 0%);
    rotate: -45deg;
  }
  .banner-wrapper__list {
    font-size: 30px;
  }
}
@media screen and (max-width: 430px) {
  .banner-wrapper {
    max-width: 430px;
    background-image: url("../public/assets/img/banner.png");
    background-size: 100% 100%;
    height: 402.5px;
  }
  .banner-wrapper__text {
    font-size: 20px;
    top: 40px;
    left: 25px;
  }
  .banner-wrapper__line {
    display: none;
  }
  .banner-wrapper__list {
    font-size: 16px;
    top: 107px;
    left: 25px;
    right: 0;
  }
}
.about {
  width: 100%;
  background-color: var(--body-color);
  padding-bottom: 75px;
  display: block;
}
.about-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  max-height: 935px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.about-img {
  display: flex;
  flex-direction: column;
  gap: 31px;
  margin-left: 76px;
  margin-top: 70px;
}
.about-img img {
  width: 373px;
  height: 248px;
  object-fit: cover;
}
.about-content {
  margin-top: 70px;
  display: flex;
  width: 100%;
  justify-content: center;
}
.about-content img {
  width: 625px;
  height: 565px;
  object-fit: cover;
}
.about-content p {
  writing-mode: vertical-rl;
  font-size: 24px;
}
.about-content p:nth-last-child(1) {
  margin-left: 20px;
  margin-top: 20px;
}
.about-content p:nth-last-child(2) {
  margin-left: 50px;
}
.about-content p:nth-last-child(3) {
  margin-left: 20px;
}
.about-content p:nth-last-child(4) {
  margin-left: 20px;
}
.about-content p:nth-last-child(5) {
  margin-left: 50px;
}
.about-content p:nth-last-child(6) {
  margin-left: 20px;
}
.about-content p:nth-last-child(7) {
  margin-left: 20px;
}
.about-content p:nth-last-child(8) {
  margin-left: 50px;
}
.about-content p:nth-last-child(9) {
  margin-left: 20px;
}
.about-content p:nth-last-child(10) {
  margin-left: 20px;
}
.about-title {
  background-color: rgba(205, 195, 162, 0.7490196078);
  display: flex;
  margin-right: 38px;
  padding: 0 40px;
  max-height: 593px;
}
.about-title__img1 {
  margin-top: 60px;
  order: 1;
}
.about-title__img1 img {
  width: 98px;
  height: 390px;
  object-fit: cover;
}
.about-title__img2 {
  order: 0;
  margin-top: 185px;
}
.about-title__img2 img {
  width: 81px;
  height: 285px;
  object-fit: cover;
}
.about-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  width: 671px;
  height: 80px;
  margin: 75px auto 0;
}
.about-btn__link {
  font-weight: 400;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--text-color);
  transition: all 200ms linear;
}
.about-btn__link:hover {
  background-color: #444;
  border-color: #fff;
  color: #fff;
}

.about-sp {
  display: none;
}

@media screen and (max-width: 1439px) {
  .about {
    padding-bottom: 62.5px;
  }
  .about-wrapper {
    max-height: 779.1666666667px;
    gap: 33.3333333333px;
  }
  .about-img {
    gap: 25.8333333333px;
    margin-left: 63.3333333333px;
    margin-top: 58.3333333333px;
  }
  .about-img img {
    width: 310.8333333333px;
    height: 206.6666666667px;
  }
  .about-content {
    margin-top: 58.3333333333px;
  }
  .about-content img {
    width: 520.8333333333px;
    height: 470.8333333333px;
  }
  .about-content p {
    writing-mode: vertical-rl;
    font-size: 20px;
  }
  .about-content p:nth-last-child(1) {
    margin-left: 16.6666666667px;
    margin-top: 16.6666666667px;
  }
  .about-content p:nth-last-child(2) {
    margin-left: 41.6666666667px;
  }
  .about-content p:nth-last-child(3) {
    margin-left: 16.6666666667px;
  }
  .about-content p:nth-last-child(4) {
    margin-left: 16.6666666667px;
  }
  .about-content p:nth-last-child(5) {
    margin-left: 41.6666666667px;
  }
  .about-content p:nth-last-child(6) {
    margin-left: 16.6666666667px;
  }
  .about-content p:nth-last-child(7) {
    margin-left: 16.6666666667px;
  }
  .about-content p:nth-last-child(8) {
    margin-left: 41.6666666667px;
  }
  .about-content p:nth-last-child(9) {
    margin-left: 16.6666666667px;
  }
  .about-content p:nth-last-child(10) {
    margin-left: 16.6666666667px;
  }
  .about-title {
    margin-right: 31.6666666667px;
    padding: 0 33.3333333333px;
    max-height: 494.1666666667px;
  }
  .about-title__img1 {
    margin-top: 50px;
  }
  .about-title__img1 img {
    width: 81.6666666667px;
    height: 325px;
  }
  .about-title__img2 {
    margin-top: 154.1666666667px;
  }
  .about-title__img2 img {
    width: 67.5px;
    height: 237.5px;
  }
  .about-btn {
    width: 559.1666666667px;
    height: 66.6666666667px;
    margin: 62.5px auto 0;
  }
  .about-btn__link {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .about {
    padding-bottom: 52.0833333333px;
  }
  .about-wrapper {
    max-height: 649.3055555556px;
    gap: 27.7777777778px;
  }
  .about-img {
    gap: 21.5277777778px;
    margin-left: 52.7777777778px;
    margin-top: 48.6111111111px;
  }
  .about-img img {
    width: 259.0277777778px;
    height: 172.2222222222px;
  }
  .about-content {
    margin-top: 48.6111111111px;
  }
  .about-content img {
    width: 434.0277777778px;
    height: 392.3611111111px;
  }
  .about-content p {
    writing-mode: vertical-rl;
    font-size: 16.6666666667px;
  }
  .about-content p:nth-last-child(1) {
    margin-left: 13.8888888889px;
    margin-top: 13.8888888889px;
  }
  .about-content p:nth-last-child(2) {
    margin-left: 34.7222222222px;
  }
  .about-content p:nth-last-child(3) {
    margin-left: 13.8888888889px;
  }
  .about-content p:nth-last-child(4) {
    margin-left: 13.8888888889px;
  }
  .about-content p:nth-last-child(5) {
    margin-left: 34.7222222222px;
  }
  .about-content p:nth-last-child(6) {
    margin-left: 13.8888888889px;
  }
  .about-content p:nth-last-child(7) {
    margin-left: 13.8888888889px;
  }
  .about-content p:nth-last-child(8) {
    margin-left: 34.7222222222px;
  }
  .about-content p:nth-last-child(9) {
    margin-left: 13.8888888889px;
  }
  .about-content p:nth-last-child(10) {
    margin-left: 13.8888888889px;
  }
  .about-title {
    margin-right: 26.3888888889px;
    padding: 0 27.7777777778px;
    max-height: 411.8055555556px;
  }
  .about-title__img1 {
    margin-top: 41.6666666667px;
  }
  .about-title__img1 img {
    width: 68.0555555556px;
    height: 270.8333333333px;
  }
  .about-title__img2 {
    margin-top: 128.4722222222px;
  }
  .about-title__img2 img {
    width: 56.25px;
    height: 197.9166666667px;
  }
  .about-btn {
    width: 465.9722222222px;
    height: 55.5555555556px;
    margin: 52.0833333333px auto 0;
  }
  .about-btn__link {
    font-size: 16.6666666667px;
  }
}
@media screen and (max-width: 430px) {
  .about {
    display: none;
  }
  .about-sp {
    display: block;
    background-color: #f7f4ef;
  }
  .about-sp-wrapper {
    display: flex;
    gap: 24px;
  }
  .about-sp-img {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin-top: 34px;
  }
  .about-sp-img img {
    width: 219px;
    height: 145px;
    object-fit: cover;
  }
  .about-sp-content {
    width: 100%;
  }
  .about-sp-title {
    background: rgba(205, 195, 162, 0.7490196078);
    width: 104px;
    height: 250px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .about-sp-title__img1 {
    order: 1;
    margin-top: 25px;
  }
  .about-sp-title__img1 img {
    width: 42px;
    height: 164px;
    object-fit: cover;
  }
  .about-sp-title__img2 {
    margin-top: 79px;
    order: 0;
  }
  .about-sp-title__img2 img {
    width: 34px;
    height: 120px;
    object-fit: cover;
  }
  .about-sp-content-img {
    display: flex;
    justify-content: center;
    margin-top: 19px;
  }
  .about-sp-content-img img {
    width: 335px;
    height: 288px;
    object-fit: contain;
  }
  .about-sp-content-img p {
    writing-mode: vertical-rl;
    font-size: 16px;
  }
  .about-sp-content-img p:nth-last-child(1) {
    margin-left: 10px;
    margin-top: 30px;
  }
  .about-sp-content-img p:nth-last-child(2) {
    margin-left: 35px;
  }
  .about-sp-content-img p:nth-last-child(3) {
    margin-left: 10px;
  }
  .about-sp-content-img p:nth-last-child(4) {
    margin-left: 10px;
  }
  .about-sp-content-img p:nth-last-child(5) {
    margin-left: 35px;
  }
  .about-sp-content-img p:nth-last-child(6) {
    margin-left: 10px;
  }
  .about-sp-content-img p:nth-last-child(7) {
    margin-left: 10px;
  }
  .about-sp-content-img p:nth-last-child(8) {
    margin-left: 35px;
  }
  .about-sp-content-img p:nth-last-child(9) {
    margin-left: 10px;
  }
  .about-sp-content-img p:nth-last-child(10) {
    margin-left: 10px;
  }
  .about-sp-btn {
    width: 326px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 35px;
    padding-bottom: 76px;
  }
  .about-sp-btn__link {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.16em;
    color: #000;
    text-align: center;
    display: block;
    width: 100%;
    border: 1px solid black;
    padding: 20px 0;
  }
}
@media screen and (max-width: 360px) {
  .about-sp-wrapper {
    gap: 23.0769230769px;
  }
  .about-sp-img {
    gap: 18.2692307692px;
    margin-top: 32.6923076923px;
  }
  .about-sp-img img {
    width: 210.5769230769px;
    height: 139.4230769231px;
  }
  .about-sp-title {
    width: 100px;
    height: 240.3846153846px;
  }
  .about-sp-title__img1 {
    margin-top: 24.0384615385px;
  }
  .about-sp-title__img1 img {
    width: 40.3846153846px;
    height: 157.6923076923px;
  }
  .about-sp-title__img2 {
    margin-top: 75.9615384615px;
  }
  .about-sp-title__img2 img {
    width: 32.6923076923px;
    height: 115.3846153846px;
  }
  .about-sp-content-img {
    margin-top: 18.2692307692px;
  }
  .about-sp-content-img img {
    width: 322.1153846154px;
    height: 276.9230769231px;
  }
  .about-sp-btn {
    width: 313.4615384615px;
    margin-top: 33.6538461538px;
    padding-bottom: 73.0769230769px;
  }
  .about-sp-btn__link {
    font-size: 15.3846153846px;
    padding: 19.2307692308px 0;
  }
}
.construction {
  width: 100%;
  background-color: var(--body-color);
}
.construction-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 150px;
  position: relative;
}
.construction-title {
  display: flex;
  justify-content: center;
  padding: 55px 0 95px;
}
.construction-title__text {
  height: auto;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.16em;
  writing-mode: vertical-lr;
}
.construction-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: fit-content;
  margin: 0 auto;
}
.construction-content-item {
  display: flex;
  flex-direction: column;
}
.construction-content-item img {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
}
.construction-content-item__text {
  font-size: 16px;
  letter-spacing: 0.16em;
  padding: 15px 0 0 42px;
  position: relative;
  max-width: 250px;
}
.construction-content-item__text a {
  color: initial;
}
.construction-content-item__text-city {
  font-weight: 400;
  margin-bottom: 5px;
}
.construction-content-item__text-title {
  font-weight: 700;
  line-height: 1.5;
}
.construction-content-item__text-line {
  width: 1px;
  height: 77px;
  background-color: var(--text-color);
  position: absolute;
  left: 21px;
  top: -21px;
}
.construction-btn {
  position: absolute;
  bottom: -31px;
  right: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  width: 537px;
  height: 80px;
}
.construction-btn__link {
  color: white;
  background-color: var(--text-color);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.16em;
  transition: all 0.2s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.construction-btn__link:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.construction-bg {
  background-color: rgba(205, 195, 162, 0.3294117647);
  width: 900px;
  height: 844px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 1439px) {
  .construction-wrapper {
    padding: 0 26.6666666667px 125px;
  }
  .construction-title {
    padding: 45.8333333333px 0 79.1666666667px;
  }
  .construction-title__text {
    font-size: 20px;
  }
  .construction-content {
    gap: 33.3333333333px;
  }
  .construction-content-item__text {
    font-size: 13.3333333333px;
    padding: 12.5px 0 0 35px;
  }
  .construction-content-item__text-line {
    height: 64.1666666667px;
    left: 17.5px;
    top: -17.5px;
  }
  .construction-btn {
    right: 166.6666666667px;
    width: 447.5px;
    height: 80px;
  }
  .construction-btn__link {
    font-size: 20px;
  }
  .construction-bg {
    width: 750px;
    height: 703.3333333333px;
  }
}
@media screen and (max-width: 1400px) {
  .construction-bg {
    width: 816px;
  }
}
@media screen and (max-width: 1300px) {
  .construction-wrapper {
    padding: 0 29.0909090909px 136.3636363636px;
  }
  .construction-title {
    padding: 50px 0 86.3636363636px;
  }
  .construction-title__text {
    font-size: 21.8181818182px;
  }
  .construction-content {
    gap: 36.3636363636px;
  }
  .construction-content-item img {
    height: 263.6363636364px;
  }
  .construction-content-item__text {
    font-size: 14.5454545455px;
    padding: 13.6363636364px 0 0 38.1818181818px;
  }
  .construction-content-item__text-line {
    height: 70px;
    left: 19.0909090909px;
    top: -19.0909090909px;
  }
  .construction-btn {
    right: 166.6666666667px;
    width: 488.1818181818px;
    height: 80px;
  }
  .construction-btn__link {
    font-size: 21.8181818182px;
  }
  .construction-bg {
    width: 818.1818181818px;
    height: 818.1818181818px;
  }
}
@media screen and (max-width: 1200px) {
  .construction-wrapper {
    padding: 0 26.6666666667px 125px;
  }
  .construction-title {
    padding: 45.8333333333px 0 79.1666666667px;
  }
  .construction-title__text {
    font-size: 20px;
  }
  .construction-content {
    gap: 33.3333333333px;
  }
  .construction-content-item img {
    height: 241.6666666667px;
  }
  .construction-content-item__text {
    font-size: 13.3333333333px;
    padding: 12.5px 0 0 35px;
  }
  .construction-content-item__text-line {
    height: 64.1666666667px;
    left: 17.5px;
    top: -17.5px;
  }
  .construction-btn {
    right: 76.9230769231px;
    width: 447.5px;
    height: 80px;
  }
  .construction-btn__link {
    font-size: 20px;
  }
  .construction-bg {
    width: 750px;
    height: 703.3333333333px;
  }
}
@media screen and (max-width: 1100px) {
  .construction-wrapper {
    padding: 0 24.6153846154px 115.3846153846px;
  }
  .construction-title {
    padding: 42.3076923077px 0 73.0769230769px;
  }
  .construction-title__text {
    font-size: 18.4615384615px;
  }
  .construction-content {
    gap: 30.7692307692px;
  }
  .construction-content-item img {
    height: 223.0769230769px;
  }
  .construction-content-item__text {
    font-size: 12.3076923077px;
    padding: 11.5384615385px 0 0 32.3076923077px;
  }
  .construction-content-item__text-line {
    height: 59.2307692308px;
    left: 16.1538461538px;
    top: -16.1538461538px;
  }
  .construction-btn {
    right: 30.303030303px;
    width: 413.0769230769px;
    height: 80px;
  }
  .construction-btn__link {
    font-size: 18.4615384615px;
  }
  .construction-bg {
    width: 692.3076923077px;
    height: 64.6153846154px;
  }
}
@media screen and (max-width: 430px) {
  .construction-sp {
    width: 100%;
    background-color: var(--body-color);
  }
  .construction-sp-wrapper {
    max-width: 430px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 70px;
  }
  .construction-sp-title {
    display: flex;
    justify-content: center;
    padding: 7px 0 41px;
  }
  .construction-sp-title__text {
    height: auto;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.16em;
    writing-mode: vertical-lr;
  }
  .construction-sp-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 52px;
    max-width: fit-content;
    margin: 0 auto;
  }
  .construction-sp-content-item {
    display: flex;
    flex-direction: column;
  }
  .construction-sp-content-item img {
    width: 100%;
    max-width: 327px;
    height: 221px;
    object-fit: cover;
  }
  .construction-sp-content-item__text {
    font-size: 16px;
    letter-spacing: 0.16em;
    padding: 15px 0 0 41px;
    position: relative;
    max-width: 250px;
  }
  .construction-sp-content-item__text a {
    color: initial;
  }
  .construction-sp-content-item__text-city {
    font-weight: 400;
    margin-bottom: 5px;
  }
  .construction-sp-content-item__text-title {
    font-weight: 700;
    line-height: 1.5;
  }
  .construction-sp-content-item__text-line {
    width: 1px;
    background-color: var(--text-color);
    position: absolute;
    height: 107px;
    left: 23px;
    top: -29px;
  }
  .construction-sp-btn {
    position: absolute;
    bottom: -22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    left: 37px;
    height: 45px;
    width: 273px;
  }
  .construction-sp-btn__link {
    color: white;
    background-color: var(--text-color);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.16em;
    transition: all 0.2s linear;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .construction-sp-btn__link:hover {
    background-color: #fff;
    border-color: #444;
    color: #444;
  }
  .construction-sp-bg {
    background-color: rgba(205, 195, 162, 0.33);
    width: 293px;
    height: 624px;
    right: 0;
    z-index: -1;
    position: absolute;
    bottom: 0;
  }
}
.customer-voice {
  width: 100%;
  background-color: var(--body-color);
}
.customer-voice-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 103px;
}
.customer-voice-title {
  display: flex;
  justify-content: center;
  padding: 173px 0 80px;
}
.customer-voice-title__text {
  writing-mode: vertical-lr;
  height: auto;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.16em;
}
.customer-voice-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: fit-content;
  margin: 0 auto 80px;
}
.customer-voice-content-item {
  display: flex;
  flex-direction: column;
}
.customer-voice-content-item img {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.customer-voice-content-item__text {
  font-size: 16px;
  letter-spacing: 0.16em;
  padding: 25px 0 0;
  max-width: 250px;
}
.customer-voice-content-item__text a {
  color: initial;
}
.customer-voice-content-item__text-title {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.customer-voice-btn {
  display: flex;
  justify-content: center;
  border: 1px solid black;
  width: 537px;
  height: 80px;
  margin: 0 auto;
}
.customer-voice-btn__link {
  color: var(--text-color);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.16em;
  transition: all 0.2s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.customer-voice-btn__link:hover {
  background-color: #444;
  border-color: #fff;
  color: #fff;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media screen and (max-width: 1439px) {
  .customer-voice-wrapper {
    padding: 0 26.6666666667px 85.8333333333px;
  }
  .customer-voice-title {
    padding: 144.1666666667px 0 66.6666666667px;
  }
  .customer-voice-title__text {
    font-size: 20px;
  }
  .customer-voice-content {
    gap: 33.3333333333px;
    margin-bottom: 66.6666666667px;
  }
  .customer-voice-content-item img {
    max-width: 337.5px;
  }
  .customer-voice-content-item__text {
    font-size: 13.3333333333px;
    padding: 20.8333333333px 0 0;
  }
  .customer-voice-btn {
    width: 447.5px;
    height: 66.6666666667px;
    margin: 0 auto;
  }
  .customer-voice-btn__link {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .customer-voice-wrapper {
    padding: 0 22.2222222222px 71.5277777778px;
  }
  .customer-voice-title {
    padding: 120.1388888889px 0 55.5555555556px;
  }
  .customer-voice-title__text {
    font-size: 16.6666666667px;
  }
  .customer-voice-content {
    gap: 27.7777777778px;
    margin-bottom: 55.5555555556px;
  }
  .customer-voice-content-item img {
    max-width: 281.25px;
    height: 201.3888888889px;
  }
  .customer-voice-content-item__text {
    font-size: 11.1111111111px;
    padding: 17.3611111111px 0 0;
  }
  .customer-voice-btn {
    width: 372.9166666667px;
    height: 55.5555555556px;
    margin: 0 auto;
  }
  .customer-voice-btn__link {
    font-size: 16.6666666667px;
  }
}
@media screen and (max-width: 430px) {
  .customer-voice {
    max-width: 430px;
  }
  .customer-voice-wrapper {
    padding: 0 15px 65px;
  }
  .customer-voice-title {
    padding: 79px 0 53px;
  }
  .customer-voice-title__text {
    font-size: 20px;
  }
  .customer-voice-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
    margin-bottom: 29px;
  }
  .customer-voice-content-item img {
    aspect-ratio: 1/1;
    max-height: 150px;
  }
  .customer-voice-content-item__text {
    font-size: 14px;
    padding: 18px 0 0;
  }
  .customer-voice-content-item__text a {
    color: initial;
  }
  .customer-voice-content-item__text-title {
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .customer-voice-btn {
    width: 232px;
    height: 48px;
  }
  .customer-voice-btn__link {
    font-size: 16px;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.contact-section {
  width: 100%;
  background-color: #f3efe8;
}
.contact-section-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 76px 50px 141px;
}
.contact-section__wrapper {
  max-width: 900px;
  max-height: 317px;
  overflow: hidden;
  margin: 0 auto 28px;
}
.contact-section-main {
  background-image: url("../public/assets/img/contact-main.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 317px;
  padding: 18px;
  max-width: 864px;
  margin: 0 auto 46px;
  transition: all 0.2s linear;
  cursor: pointer;
}
.contact-section-main:hover {
  transform: scale(1.2);
  opacity: 0.5;
}
.contact-section-main:hover .content {
  border-color: transparent;
}
.contact-section-main:hover .content .link {
  right: 62px;
}
.contact-section-main .content {
  border: 2px solid white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  position: relative;
}
.contact-section-main .content-title {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.16em;
  color: white;
}
.contact-section-main .content .sub-title {
  font-weight: 400;
  font-size: 16px;
  color: white;
  letter-spacing: 0.16em;
}
.contact-section-main .content .link {
  position: absolute;
  bottom: 9px;
  right: 21px;
  font-weight: 400;
  color: white;
  font-size: 16px;
  letter-spacing: 0.16em;
  padding: 20px 0;
  display: flex;
  align-items: center;
  transition: all 0.2s linear;
}
.contact-section-main .content .link img {
  width: 16px;
}
.contact-section-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-section-sub__wrapper {
  max-width: 270px;
  max-height: 270px;
  overflow: hidden;
}
.contact-section-sub__item {
  height: 270px;
  padding: 10px;
  transition: all 0.2s linear;
  cursor: pointer;
}
.contact-section-sub__item:hover {
  transform: scale(1.1);
  opacity: 0.5;
}
.contact-section-sub__item:hover .content {
  border-color: transparent;
}
.contact-section-sub__item .content {
  border: 2px solid white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 20px;
}
.contact-section-sub__item .content-title {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.16em;
  color: white;
  text-align: center;
  line-height: 1.5;
}
.contact-section-sub__item .content .link {
  font-weight: 400;
  color: white;
  font-size: 16px;
  letter-spacing: 0.16em;
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.contact-section-sub__item .content .link img {
  width: 16px;
}
.contact-section-sub .item1 {
  background-image: url("../public/assets/img/contact-3.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-section-sub .item2 {
  background-image: url("../public/assets/img/contact-2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-section-sub .item3 {
  background-image: url("../public/assets/img/contact-1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  width: 753px;
  height: 80px;
  margin: 80px auto 0;
}
.contact-section-btn a {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.16em;
  color: var(--text-color);
  transition: all 0.2s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.contact-section-btn a:hover {
  background-color: #444;
  border-color: #fff;
  color: #fff;
}

@media screen and (max-width: 1439px) {
  .contact-section-wrapper {
    padding: 63.3333333333px 41.6666666667px 117.5px;
  }
  .contact-section-main {
    height: 264.1666666667px;
    padding: 15px;
    margin-bottom: 38.3333333333px;
    max-width: 750px;
  }
  .contact-section-main .content {
    gap: 66.6666666667px;
  }
  .contact-section-main .content-title {
    font-size: 26.6666666667px;
  }
  .contact-section-main .content .sub-title {
    font-size: 13.3333333333px;
  }
  .contact-section-main .content .link {
    bottom: 7.5px;
    right: 17.5px;
    font-size: 13.3333333333px;
    padding: 8.3333333333px 0;
  }
  .contact-section-main .content .link img {
    width: 13.3333333333px;
  }
  .contact-section-sub {
    gap: 22.5px;
    max-width: 750px;
  }
  .contact-section-sub__item {
    height: 225px;
    padding: 8.3333333333px;
  }
  .contact-section-sub__item .content {
    gap: 16.6666666667px;
  }
  .contact-section-sub__item .content-title {
    font-size: 20px;
  }
  .contact-section-sub__item .content .link {
    font-size: 13.3333333333px;
    padding: 8.3333333333px 0;
  }
  .contact-section-sub__item .content .link img {
    width: 13.3333333333px;
  }
  .contact-section-btn {
    width: 627.5px;
    height: 66.6666666667px;
    margin: 66.6666666667px auto 0;
  }
  .contact-section-btn a {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .contact-section-wrapper {
    padding: 52.7777777778px 34.7222222222px 97.9166666667px;
  }
  .contact-section-main {
    height: 220.1388888889px;
    padding: 12.5px;
    margin-bottom: 31.9444444444px;
    max-width: 625px;
  }
  .contact-section-main .content {
    gap: 55.5555555556px;
  }
  .contact-section-main .content-title {
    font-size: 22.2222222222px;
  }
  .contact-section-main .content .sub-title {
    font-size: 11.1111111111px;
  }
  .contact-section-main .content .link {
    bottom: 6.25px;
    right: 14.5833333333px;
    font-size: 11.1111111111px;
    padding: 6.9444444444px 0;
  }
  .contact-section-main .content .link img {
    width: 11.1111111111px;
  }
  .contact-section-sub {
    gap: 18.75px;
    max-width: 625px;
  }
  .contact-section-sub__item {
    height: 187.5px;
    padding: 6.9444444444px;
  }
  .contact-section-sub__item .content {
    gap: 13.8888888889px;
  }
  .contact-section-sub__item .content-title {
    font-size: 16.6666666667px;
  }
  .contact-section-sub__item .content .link {
    font-size: 11.1111111111px;
    padding: 6.9444444444px 0;
  }
  .contact-section-sub__item .content .link img {
    width: 11.1111111111px;
  }
  .contact-section-btn {
    width: 522.9166666667px;
    height: 55.5555555556px;
    margin: 55.5555555556px auto 0;
  }
  .contact-section-btn a {
    font-size: 16.6666666667px;
  }
}
@media screen and (max-width: 430px) {
  .contact-section__sp {
    background-color: var(--body-color);
  }
  .contact-section__sp-wrapper {
    overflow: hidden;
    padding: 51px 24px 69px;
  }
  .contact-section__sp-main {
    background-image: url("../public/assets/img/contact-main-sp.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 116px;
    padding: 8px !important;
    margin-bottom: 13px;
  }
  .contact-section__sp-main .content {
    border: 2px solid white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    position: relative;
  }
  .contact-section__sp-main .content-title {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.16em;
    color: white;
    margin-left: 70px;
  }
  .contact-section__sp-main .content .sub-title {
    font-weight: 700;
    font-size: 16px;
    color: white;
    letter-spacing: 0.16em;
    margin-left: 70px;
  }
  .contact-section__sp-main .content .link {
    position: absolute;
    font-weight: 400;
    color: white;
    letter-spacing: 0.16em;
    display: flex;
    align-items: center;
    bottom: 8px;
    right: 8px;
    font-size: 10px;
    padding: 0 0;
  }
  .contact-section__sp-main .content .link img {
    width: 27px;
  }
  .contact-section__sp-sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 11px;
  }
  .contact-section__sp-sub__item {
    height: 116px;
    padding: 8px !important;
  }
  .contact-section__sp-sub__item .content {
    border: 2px solid white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 20px;
  }
  .contact-section__sp-sub__item .content-title {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.16em;
    color: white;
    text-align: center;
    line-height: 1.5;
    display: flex;
    justify-content: center; /* Horizontally center the text */
    align-items: center; /* Vertically center the text */
    height: 100%; /* Make sure the parent container has a set height */
}

  .contact-section__sp-sub__item .content .link {
    font-weight: 400;
    color: white;
    font-size: 10px;
    letter-spacing: 0.16em;
    padding: 0;
    position: absolute;
    bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .contact-section__sp-sub__item .content .link img {
    width: 27px;
  }
  .contact-section__sp-sub .item1 {
    background-image: url("../public/assets/img/contact-sp-1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .contact-section__sp-sub .item2 {
    background-image: url("../public/assets/img/contact-sp-2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .contact-section__sp-sub .item3 {
    background-image: url("../public/assets/img/contact-sp-3.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .contact-section__sp-sub .item4 {
    background-image: url("../public/assets/img/contact-sp-4.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .contact-section__sp-btn {
    display: none;
  }
}
@media screen and (max-width: 390px) {
  .contact-section__sp-main .content-title {
    margin-left: 37px;
  }
  .contact-section__sp-main .content .sub-title {
    margin-left: 37px;
  }
}
@media screen and (max-width: 375px) {
  .contact-section__sp-main .content-title {
    margin-left: 35px;
  }
  .contact-section__sp-main .content .sub-title {
    margin-left: 35px;
  }
}
.section-news {
  width: 100%;
  background-color: #f7f4ef;
}
.section-news-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 132px 45px;
  display: flex;
  justify-content: center;
}
.section-news .news-event {
  background-color: #d7cfb5;
  position: relative;
  width: 38%;
  margin-bottom: 106px;
  min-height: fit-content;
}
.section-news .news-event__line {
  width: 1px;
  height: 107px;
  position: absolute;
  top: 0;
  left: 35px;
  background: #1a3076;
}
.section-news .news-event__title p {
  padding: 20px 60px;
  width: max-content;
  background-color: #464646;
  margin-top: 60px;
  margin-bottom: 40px;
  color: white;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.16em;
}
.section-news .news-event__content {
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section-news .news-event__content img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-news .news-event__content-text {
  margin-top: 20px;
}
.section-news .news-event__content-text__title {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.16em;
}
.section-news .news-event__content-text__title a {
  color: #000;
}
.section-news .news-event__content-text__location {
  font-size: 16px;
  margin-top: 20px;
  letter-spacing: 0.16em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-news .news-event__content-text__location-img {
  width: 16px !important;
  height: auto !important;
  object-fit: cover;
}
.section-news .news-event__content-text__description {
  font-size: 20px;
  margin-top: 20px;
  display: -webkit-box;
  line-clamp: 18;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.16em;
}
.section-news .news-event__btn {
  margin: 0 auto 30px;
  width: 423px;
  height: 80px;
  border: 1px solid #464646;
}
.section-news .news-event__btn-link {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.16em;
  display: block;
  height: 100%;
  line-height: 80px;
  text-align: center;
  color: var(--text-color);
  transition: all 0.2s linear;
}
.section-news .news-event__btn-link:hover {
  background-color: #444;
  color: #fff;
  border-color: #fff;
}
.section-news .news-blog {
  background-color: rgba(205, 195, 162, 0.3294117647);
  width: 38%;
  margin-top: 106px;
  position: relative;
}
.section-news .news-blog__line {
  width: 1px;
  height: 107px;
  position: absolute;
  top: 0;
  right: 39px;
  background: #1a3076;
}
.section-news .news-blog__title {
  display: flex;
  justify-content: end;
}
.section-news .news-blog__title p {
  padding: 20px 60px;
  width: 315px;
  background-color: #464646;
  margin-top: 60px;
  margin-bottom: 40px;
  color: white;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.16em;
  text-align: center;
}
.section-news .news-blog__content {
  max-width: 300px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section-news .news-blog__content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.section-news .news-blog__content-text__date {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-top: 20px;
}
.section-news .news-blog__content-text__title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-top: 20px;
}
.section-news .news-blog__content-text__title a {
  color: #000;
}
.section-news .news-blog__btn {
  margin: 0 auto 30px;
  width: 423px;
  height: 80px;
  border: 1px solid #464646;
}
.section-news .news-blog__btn-link {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.16em;
  display: block;
  height: 100%;
  line-height: 80px;
  text-align: center;
  color: var(--text-color);
  transition: all 0.2s linear;
}
.section-news .news-blog__btn-link:hover {
  background-color: #444;
  color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 1439px) {
  .section-news-wrapper {
    padding: 110px 37.5px;
  }
  .section-news .news-event {
    margin-bottom: 88.3333333333px;
    height: 992.5px;
  }
  .section-news .news-event__line {
    height: 89.1666666667px;
    left: 29.1666666667px;
  }
  .section-news .news-event__title p {
    padding: 16.6666666667px 50px;
    margin-top: 50px;
    margin-bottom: 33.3333333333px;
    font-size: 20px;
  }
  .section-news .news-event__content {
    max-width: 250px;
  }
  .section-news .news-event__content-text {
    margin-top: 16.6666666667px;
  }
  .section-news .news-event__content-text__title {
    font-size: 13.3333333333px;
  }
  .section-news .news-event__content-text__location {
    font-size: 13.3333333333px;
    margin-top: 16.6666666667px;
    gap: 8.3333333333px;
  }
  .section-news .news-event__content-text__location-img {
    width: 13.3333333333px !important;
  }
  .section-news .news-event__content-text__description {
    font-size: 16.6666666667px;
    margin-top: 16.6666666667px;
  }
  .section-news .news-event__btn {
    bottom: 25.8333333333px;
    width: 352.5px;
    height: 66.6666666667px;
  }
  .section-news .news-event__btn-link {
    font-size: 20px;
    line-height: 66.6666666667px;
  }
  .section-news .news-blog {
    margin-top: 88.3333333333px;
  }
  .section-news .news-blog__line {
    height: 89.1666666667px;
    right: 32.5px;
  }
  .section-news .news-blog__title p {
    padding: 16.6666666667px 50px;
    width: 262.5px;
    margin-top: 50px;
    margin-bottom: 33.3333333333px;
    font-size: 20px;
  }
  .section-news .news-blog__content {
    max-width: 250px;
  }
  .section-news .news-blog__content-text__date {
    font-size: 13.3333333333px;
    margin-top: 16.6666666667px;
  }
  .section-news .news-blog__content-text__title {
    font-size: 13.3333333333px;
    margin-top: 16.6666666667px;
  }
  .section-news .news-blog__btn {
    bottom: 25.8333333333px;
    width: 352.5px;
    height: 66.6666666667px;
  }
  .section-news .news-blog__btn-link {
    font-size: 20px;
    line-height: 66.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .section-news-wrapper {
    padding: 91.6666666667px 31.25px;
  }
  .section-news .news-event {
    margin-bottom: 73.6111111111px;
    height: 827.0833333333px;
  }
  .section-news .news-event__line {
    height: 74.3055555556px;
    left: 24.3055555556px;
  }
  .section-news .news-event__title p {
    padding: 13.8888888889px 41.6666666667px;
    margin-top: 41.6666666667px;
    margin-bottom: 27.7777777778px;
    font-size: 16.6666666667px;
  }
  .section-news .news-event__content {
    max-width: 208.3333333333px;
  }
  .section-news .news-event__content-text {
    margin-top: 13.8888888889px;
  }
  .section-news .news-event__content-text__title {
    font-size: 11.1111111111px;
  }
  .section-news .news-event__content-text__location {
    font-size: 11.1111111111px;
    margin-top: 13.8888888889px;
    gap: 6.9444444444px;
  }
  .section-news .news-event__content-text__location-img {
    width: 11.1111111111px !important;
  }
  .section-news .news-event__content-text__description {
    font-size: 13.8888888889px;
    margin-top: 13.8888888889px;
  }
  .section-news .news-event__btn {
    bottom: 21.5277777778px;
    width: 293.75px;
    height: 55.5555555556px;
  }
  .section-news .news-event__btn-link {
    font-size: 16.6666666667px;
    line-height: 55.5555555556px;
  }
  .section-news .news-blog {
    margin-top: 73.6111111111px;
  }
  .section-news .news-blog__line {
    height: 74.3055555556px;
    right: 27.0833333333px;
  }
  .section-news .news-blog__title p {
    padding: 13.8888888889px 41.6666666667px;
    width: 218.75px;
    margin-top: 41.6666666667px;
    margin-bottom: 27.7777777778px;
    font-size: 16.6666666667px;
  }
  .section-news .news-blog__content {
    max-width: 208.3333333333px;
  }
  .section-news .news-blog__content-text__date {
    font-size: 11.1111111111px;
    margin-top: 13.8888888889px;
  }
  .section-news .news-blog__content-text__title {
    font-size: 11.1111111111px;
    margin-top: 13.8888888889px;
  }
  .section-news .news-blog__btn {
    bottom: 21.5277777778px;
    width: 293.75px;
    height: 55.5555555556px;
  }
  .section-news .news-blog__btn-link {
    font-size: 16.6666666667px;
    line-height: 55.5555555556px;
  }
}
@media screen and (max-width: 430px) {
  .section-news {
    max-width: 430px;
  }
  .section-news-wrapper {
    padding: 0;
    flex-wrap: wrap;
  }
  .section-news .news-event {
    width: 100%;
    margin-bottom: 0;
    min-height: auto;
    height: fit-content;
  }
  .section-news .news-event__line {
    width: 1px;
    height: 84px;
    position: absolute;
    top: 0;
    left: 36px;
    background: #1a3076;
  }
  .section-news .news-event__title p {
    padding: 13px 68px;
    margin-top: 60px;
    margin-bottom: 66px;
    font-size: 18px;
  }
  .section-news .news-event__content {
    padding: 0 41px;
    max-width: 100%;
  }
  .section-news .news-event__content-text {
    margin-top: 24px;
  }
  .section-news .news-event__content-text__title {
    font-size: 16px;
  }
  .section-news .news-event__content-text__location {
    font-size: 14px;
    margin-top: 10px;
    gap: 10px;
  }
  .section-news .news-event__content-text__location-img {
    width: 14px !important;
  }
  .section-news .news-event__content-text__description {
    font-size: 14px;
    margin-top: 10px;
    line-clamp: 3;
  }
  .section-news .news-event__btn {
    width: 232px;
    height: 48px;
    margin-top: 30px;
  }
  .section-news .news-event__btn-link {
    font-size: 16px;
    height: 100%;
    line-height: 46px;
  }
  .section-news .news-blog {
    width: 100%;
    margin-top: 0;
    height: fit-content;
    position: relative;
  }
  .section-news .news-blog__line {
    width: 1px;
    height: 64px;
    position: absolute;
    top: 0;
    right: 40px;
    background: #1a3076;
  }
  .section-news .news-blog__title p {
    padding: 13px 100px;
    margin-top: 45px;
    margin-bottom: 42px;
    font-size: 18px;
    width: max-content;
  }
  .section-news .news-blog__content {
    padding: 0 51px 0 47px;
    max-width: 100%;
  }
  .section-news .news-blog__content-text__date {
    font-size: 16px;
    margin-top: 18px;
  }
  .section-news .news-blog__content-text__title {
    font-size: 16px;
    margin-top: 10px;
  }
  .section-news .news-blog__btn {
    bottom: 60px;
    width: 232px;
    height: 48px;
  }
  .section-news .news-blog__btn-link {
    font-size: 16px;
    line-height: 46px;
  }
}
.introduction {
  width: 100%;
  background-color: #f7f4ef;
}
.introduction-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 40px 87px;
}
.introduction-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.introduction-content__wrapper {
  max-width: 900px;
  max-height: 200px;
  overflow: hidden;
}
.introduction-content__item {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.introduction-content__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.introduction-content__item a p {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: white;
  width: max-content;
}
.introduction-content .item1 {
  background-image: url("../public/assets/img/sekoall_1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.2s linear;
}
.introduction-content .item1:hover {
  transform: scale(1.2);
  opacity: 0.5;
}
.introduction-content .item2 {
  background-image: url("../public/assets/img/introduction-2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.2s linear;
}
.introduction-content .item2:hover {
  transform: scale(1.2);
  opacity: 0.5;
}
.introduction-btn {
  display: flex;
  justify-content: center;
  border: 1px solid black;
  width: 753px;
  height: 80px;
  margin: 148px auto 0;
}
.introduction-btn a {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--text-color);
  transition: all 0.2s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.introduction-btn a:hover {
  background-color: #444;
  color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 1439px) {
  .introduction-wrapper {
    padding: 33.3333333333px 33.3333333333px 72.5px;
  }
  .introduction-content {
    gap: 50px;
    max-width: 750px;
  }
  .introduction-content__wrapper {
    max-width: 750px;
    max-height: 166.6666666667px;
  }
  .introduction-content__item {
    height: 166.6666666667px;
  }
  .introduction-content__item a p {
    font-size: 26.6666666667px;
  }
  .introduction-btn {
    width: 627.5px;
    height: 66.6666666667px;
    margin: 123.3333333333px auto 0;
  }
  .introduction-btn a {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .introduction-wrapper {
    padding: 27.7777777778px 27.7777777778px 60.4166666667px;
  }
  .introduction-content {
    gap: 41.6666666667px;
    max-width: 625px;
  }
  .introduction-content__wrapper {
    max-width: 625px;
    max-height: 138.8888888889px;
  }
  .introduction-content__item {
    height: 138.8888888889px;
  }
  .introduction-content__item a p {
    font-size: 22.2222222222px;
  }
  .introduction-btn {
    width: 522.9166666667px;
    height: 55.5555555556px;
    margin: 102.7777777778px auto 0;
  }
  .introduction-btn a {
    font-size: 16.6666666667px;
  }
}
@media screen and (max-width: 430px) {
  .introduction {
    max-width: 430px;
    background: #f7f4ef;
  }
  .introduction-wrapper {
    padding: 24px 20px 30px 10px;
  }
  .introduction-content {
    gap: 16px;
  }
  .introduction-content__item a p {
    font-size: 16px;
  }
  .introduction-content .item1 {
    background-color: #d9d9d9;
    height: 102px;
  }
  .introduction-content .item2 {
    background-image: url("../public/assets/img/introduction-2.png");
    height: 106px;
  }
  .introduction-content .item2 p {
    padding: 0;
    background-color: transparent;
  }
  .introduction-btn {
    margin-top: 18px;
    width: 326px;
    height: 48px;
  }
  .introduction-btn a {
    font-size: 16px;
    padding: 0;
  }
}
.footer {
  width: 100%;
  background-color: rgba(205, 195, 162, 0.3294117647);
}
.footer-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 99px 99px 0 113px;
}
.footer-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  margin-top: -83px;
}
.footer-logo img {
  width: 172px;
  height: 44px;
  object-fit: cover;
}
.footer-logo a {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.16em;
  padding: 17px 36px;
  background-color: #464646;
  color: white;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.016em;
}
.footer-main__info {
  position: relative;
  font-weight: 400;
}
.footer-main__info .company-name {
  font-size: 16px;
}
.footer-main__info .address {
  font-size: 16px;
  margin-top: 19px;
  margin-bottom: 0;
  line-height: 2;
}
.footer-main__info .tel {
  font-size: 16px;
}
.footer-main__info .social {
  display: flex;
  gap: 20px;
  margin-top: 22px;
}
.footer-main__info .social > a img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
.footer-main__info .social-img {
  position: absolute;
  bottom: -91px;
}
.footer-main__info .social-img img {
  width: 165px;
  height: 55px;
  object-fit: cover;
}
.footer-main__nav {
  padding: 20px 77px 23px 42px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 438px;
  display: flex;
  justify-content: center;
  gap: 86px;
}
.footer-main__nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: max-content;
  justify-items: center;
  align-items: center;
  position: relative;
}
.footer-main__nav ul li {
  width: max-content;
}
.footer-main__nav ul li a {
  display: block;
  width: max-content;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  transition: all 0.2s linear;
}
.footer-main__nav ul li a:hover {
  color: gray;
}
.footer-main__nav ul .nav-li-policy {
  display: block;
  position: absolute;
  bottom: -49px;
  left: 50%;
  transform: translate(-43%, 0);
}
.footer-main__nav ul .nav-li-policy a {
  font-size: 14px;
  color: #1a3076;
  width: max-content;
}
.footer-main__buttons {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-main__buttons > a {
  color: initial;
  font-size: 16px;
  letter-spacing: 0.16em;
  font-weight: 400;
  width: 326px;
  height: 43px;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
}
.footer-main__buttons > a:hover {
  background-color: #444;
  color: #fff;
  border-color: #fff;
}
.footer-policy {
  display: none;
  text-align: center;
  margin: 12px 0 99px -20px;
}
.footer-policy a {
  font-size: 14px;
  color: #1a3076;
}
.footer-copyright p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 20px;
  margin-top: 125px;
}
.footer-follow-menu {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-follow-menu__mail, .footer-follow-menu__phone {
  width: 50px;
  height: 200px;
}
.footer-follow-menu__mail > a, .footer-follow-menu__phone > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  writing-mode: vertical-rl;
  font-family: var(--font-family);
  letter-spacing: 0.16em;
  line-height: 1.3;
  transition: all 0.2s linear;
}
.footer-follow-menu__mail {
  background-color: #464646;
  border: 1px solid #444;
  transition: all 0.2s linear;
}
.footer-follow-menu__mail > a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #444;
}
.footer-follow-menu__phone {
  background-color: #d7cfb5;
}
.footer-follow-menu-sp {
  display: none;
}

@media screen and (max-width: 1439px) {
  .footer-wrapper {
    padding: 82.5px 82.5px 0 94.1666666667px;
  }
  .footer-logo {
    margin-top: -69.1666666667px;
  }
  .footer-logo img {
    width: 143.3333333333px;
    height: 36.6666666667px;
  }
  .footer-logo a {
    font-size: 20px;
    padding: 14.1666666667px 30px;
  }
  .footer-main__info .company-name {
    font-size: 13.3333333333px;
  }
  .footer-main__info .address {
    font-size: 13.3333333333px;
    margin-top: 15.8333333333px;
    line-height: 1.6666666667;
  }
  .footer-main__info .tel {
    font-size: 13.3333333333px;
  }
  .footer-main__info .social {
    gap: 16.6666666667px;
    margin-top: 18.3333333333px;
  }
  .footer-main__info .social > a img {
    width: 25px;
    height: 25px;
  }
  .footer-main__info .social-img {
    bottom: -75.8333333333px;
  }
  .footer-main__info .social-img img {
    width: 137.5px;
    height: 45.8333333333px;
  }
  .footer-main__nav {
    padding: 16.6666666667px 64.1666666667px 19.1666666667px 35px;
    width: 365px;
    gap: 71.6666666667px;
  }
  .footer-main__nav ul {
    gap: 16.6666666667px;
  }
  .footer-main__nav ul li a {
    font-size: 11.6666666667px;
  }
  .footer-main__nav ul .nav-li-policy {
    bottom: -40.8333333333px;
  }
  .footer-main__nav ul .nav-li-policy a {
    font-size: 11.6666666667px;
  }
  .footer-main__buttons {
    gap: 25px;
  }
  .footer-main__buttons > a {
    font-size: 13.3333333333px;
    width: 271.6666666667px;
    height: 35.8333333333px;
  }
  .footer-policy {
    margin: 10px 0 82.5px -16.6666666667px;
  }
  .footer-policy a {
    font-size: 11.6666666667px;
  }
  .footer-copyright p {
    font-size: 11.6666666667px;
    padding-bottom: 16.6666666667px;
    margin-top: 104.1666666667px;
  }
  .footer-follow-menu {
    gap: 12.5px;
  }
  .footer-follow-menu__mail, .footer-follow-menu__phone {
    width: 41.6666666667px;
    height: 166.6666666667px;
  }
  .footer-follow-menu__mail > a, .footer-follow-menu__phone > a {
    font-size: 13.3333333333px;
  }
}
@media screen and (max-width: 1200px) {
  .footer-wrapper {
    padding: 68.75px 68.75px 0 78.4722222222px;
  }
  .footer-logo {
    margin-top: -57.6388888889px;
  }
  .footer-logo img {
    width: 119.4444444444px;
    height: 30.5555555556px;
  }
  .footer-logo a {
    font-size: 16.6666666667px;
    padding: 11.8055555556px 25px;
  }
  .footer-main__info .company-name {
    font-size: 11.1111111111px;
  }
  .footer-main__info .address {
    font-size: 11.1111111111px;
    margin-top: 13.1944444444px;
    line-height: 1.3888888889;
  }
  .footer-main__info .tel {
    font-size: 11.1111111111px;
  }
  .footer-main__info .social {
    gap: 13.8888888889px;
    margin-top: 15.2777777778px;
  }
  .footer-main__info .social > a img {
    width: 20.8333333333px;
    height: 20.8333333333px;
  }
  .footer-main__info .social-img {
    bottom: -63.1944444444px;
  }
  .footer-main__info .social-img img {
    width: 114.5833333333px;
    height: 38.1944444444px;
  }
  .footer-main__nav {
    padding: 13.8888888889px 53.4722222222px 15.9722222222px 29.1666666667px;
    width: 304.1666666667px;
    gap: 59.7222222222px;
  }
  .footer-main__nav ul {
    gap: 13.8888888889px;
  }
  .footer-main__nav ul li a {
    font-size: 9.7222222222px;
  }
  .footer-main__nav ul .nav-li-policy {
    bottom: -34.0277777778px;
  }
  .footer-main__nav ul .nav-li-policy a {
    font-size: 9.7222222222px;
  }
  .footer-main__buttons {
    gap: 20.8333333333px;
  }
  .footer-main__buttons > a {
    font-size: 11.1111111111px;
    width: 226.3888888889px;
    height: 29.8611111111px;
  }
  .footer-policy {
    margin: 8.3333333333px 0 68.75px -13.8888888889px;
  }
  .footer-policy a {
    font-size: 9.7222222222px;
  }
  .footer-copyright p {
    font-size: 9.7222222222px;
    padding-bottom: 13.8888888889px;
    margin-top: 86.8055555556px;
  }
  .footer-follow-menu {
    gap: 10.4166666667px;
  }
  .footer-follow-menu__mail, .footer-follow-menu__phone {
    width: 34.7222222222px;
    height: 138.8888888889px;
  }
  .footer-follow-menu__mail > a, .footer-follow-menu__phone > a {
    font-size: 11.1111111111px;
  }
}
@media screen and (max-width: 430px) {
  .footer-wrapper {
    max-width: 430px;
    padding: 85px 35px 15px;
  }
  .footer-logo {
    margin-bottom: 17px;
    justify-content: center;
    position: relative;
    top: 0px;
  }
  .footer-logo img {
    width: 107px;
    height: 27px;
  }
  .footer-main {
    flex-direction: column;
    justify-content: space-between;
    letter-spacing: 0.016em;
    align-items: center;
  }
  .footer-main__info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-main__info .company-name {
    font-size: 16px;
  }
  .footer-main__info .address {
    font-size: 14px;
    margin: 12px 0 2px;
    text-align: center;
    line-height: 1.5;
  }
  .footer-main__info .tel {
    font-size: 14px;
    color: initial;
  }
  .footer-main__info .social {
    gap: 10px;
    margin-bottom: 23px;
  }
  .footer-main__info .social > a img {
    width: 30px;
    height: 30px;
  }
  .footer-main__info .social-img {
    display: none;
  }
  .footer-main__nav {
    padding: 12px;
    border-top: 1px solid #464646;
    border-bottom: 1px solid #464646;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 305px;
    margin: 0;
  }
  .footer-main__nav ul {
    gap: 20px 31px;
    width: max-content;
    justify-items: center;
  }
  .footer-main__nav ul li {
    width: max-content;
  }
  .footer-main__nav ul li a {
    color: var(--text-color);
    font-size: 12px;
    width: max-content;
  }
  .footer-main__nav ul .nav-li-policy {
    display: none;
  }
  .footer-main__buttons {
    display: none;
  }
  .footer-policy {
    display: block;
    text-align: center;
    margin: 10px 0 22px;
  }
  .footer-policy a {
    font-size: 6px;
    color: #000;
  }
  .footer-copyright {
    margin-top: 31px;
  }
  .footer-copyright p {
    font-size: 8px;
    padding-bottom: 0;
    margin-top: 0;
  }
  .footer-follow-menu {
    display: none;
  }
  .footer-follow-menu-sp {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    z-index: 999;
  }
  .footer-follow-menu-sp__mail, .footer-follow-menu-sp__contact {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-follow-menu-sp__mail > a, .footer-follow-menu-sp__contact > a {
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
  }
  .footer-follow-menu-sp__mail {
    background-color: #464646;
  }
  .footer-follow-menu-sp__contact {
    background-color: #d7cfb5;
  }
  .footer-follow-menu-sp__contact > a {
    color: #000;
  }
  .footer-follow-menu-sp__phone {
    background-color: #f3efe8;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-follow-menu-sp__phone > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .footer-follow-menu-sp__phone > a > img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 6px;
    margin-left: 9px;
  }
}
.breadcrumb {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.breadcrumb-wrapper {
  width: 87.36%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 60px 0;
}
.breadcrumb-wrapper a {
  color: #000;
}
.breadcrumb-text {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.16em;
}

@media screen and (max-width: 1439px) {
  .breadcrumb-wrapper {
    gap: 8.3333333333px;
    padding: 50px 0;
  }
  .breadcrumb-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .breadcrumb-wrapper {
    gap: 6.9444444444px;
    padding: 41.6666666667px 0;
  }
  .breadcrumb-text {
    font-size: 12.5px;
  }
}
.main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: auto;
}
.main-wrapper {
  padding: 0 40px 80px;
}
.main-wrapper__title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 100px;
}
.main-wrapper__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 40px;
  max-width: fit-content;
  margin: 0 auto;
}
.main-wrapper__content a {
  color: #000;
}
.main-wrapper__content-item {
  display: flex;
  flex-direction: column;
}
.main-wrapper__content-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 300px;
  aspect-ratio: 3/2;
}
.main-wrapper__content-item__text {
  padding-left: 40px;
  position: relative;
}
.main-wrapper__content-item__text .main-city {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-top: 20px;
}
.main-wrapper__content-item__text .main-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-top: 10px;
  line-height: 1.3;
  max-width: 250px;
}
.main-wrapper__content-item__text .main-line {
  position: absolute;
  height: 100%;
  width: 1px;
  left: 20px;
  top: -20px;
  background-color: #000;
}
.main-btn {
  display: flex;
  justify-content: center;
}
.main-btn a {
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.16em;
  padding: 20px 160px;
  border: 1px solid #000;
  color: #000;
  margin-bottom: 80px;
}
.main .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.16em;
  margin-bottom: 80px;
}
.main .pagination .page-numbers {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 0 10px 0 0;
}
.main .pagination .page-numbers::after {
  content: "|";
  font-weight: 400;
  font-size: 16px;
  padding: 0 0 0 10px;
}
.main .pagination > a {
  color: initial;
}
.main .pagination .current {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 1439px) {
  .main-wrapper {
    padding: 0 33.3333333333px 66.6666666667px;
  }
  .main-wrapper__title {
    font-size: 33.3333333333px;
    margin-bottom: 83.3333333333px;
  }
  .main-wrapper__content {
    gap: 58.3333333333px 33.3333333333px;
  }
  .main-wrapper__content-item__text {
    padding-left: 33.3333333333px;
  }
  .main-wrapper__content-item__text .main-city {
    font-size: 16.6666666667px;
    margin-top: 16.6666666667px;
  }
  .main-wrapper__content-item__text .main-title {
    font-size: 20px;
    margin-top: 16.6666666667px;
  }
  .main-wrapper__content-item__text .main-line {
    left: 16.6666666667px;
    top: -16.6666666667px;
  }
  .main-btn {
    justify-content: center;
  }
  .main-btn a {
    font-size: 26.6666666667px;
    padding: 16.6666666667px 133.3333333333px;
    margin-bottom: 66.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .main-wrapper {
    padding: 0 27.7777777778px 55.5555555556px;
  }
  .main-wrapper__title {
    font-size: 27.7777777778px;
    margin-bottom: 69.4444444444px;
  }
  .main-wrapper__content {
    gap: 48.6111111111px 27.7777777778px;
  }
  .main-wrapper__content-item__text {
    padding-left: 27.7777777778px;
  }
  .main-wrapper__content-item__text .main-city {
    font-size: 13.8888888889px;
    margin-top: 13.8888888889px;
  }
  .main-wrapper__content-item__text .main-title {
    font-size: 16.6666666667px;
    margin-top: 13.8888888889px;
  }
  .main-wrapper__content-item__text .main-line {
    left: 13.8888888889px;
    top: -13.8888888889px;
  }
  .main-btn {
    justify-content: center;
  }
  .main-btn a {
    font-size: 22.2222222222px;
    padding: 13.8888888889px 111.1111111111px;
    margin-bottom: 55.5555555556px;
  }
}
@media screen and (max-width: 430px) {
  .main {
    max-width: 430px;
  }
  .main-wrapper {
    padding: 0 24px 80px;
  }
  .main-wrapper__title {
    font-size: 20px;
    margin: 50px 0 66px;
    position: relative;
  }
  .main-wrapper__title:before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 305px;
    height: 1px;
    background-color: #464646;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-wrapper__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 70px 0;
  }
  .main-wrapper__content-item__text {
    padding-left: 40px;
  }
  .main-wrapper__content-item__text .main-city {
    font-size: 14px;
    margin-top: 10px;
  }
  .main-wrapper__content-item__text .main-title {
    font-size: 16px;
    margin-top: 10px;
  }
  .main-wrapper__content-item__text .main-line {
    position: absolute;
    height: 150%;
    width: 1px;
    left: 20px;
    top: -20px;
    background-color: #000;
  }
  .main-btn {
    display: flex;
    justify-content: center;
  }
  .main-btn a {
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 0.16em;
    padding: 20px 160px;
    border: 1px solid #000;
    color: #000;
    margin-bottom: 80px;
  }
  .main .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.16em;
    margin-bottom: 80px;
  }
  .main .pagination .page-numbers {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    padding: 0 10px 0 0;
  }
  .main .pagination .page-numbers::after {
    content: "|";
    font-weight: 400;
    font-size: 16px;
    padding: 0 0 0 10px;
  }
  .main .pagination > a {
    color: initial;
  }
  .main .pagination .current {
    font-size: 20px;
    font-weight: 700;
  }
}
.detail {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.detail-wrapper {
  padding: 0 78px;
}
.detail-title {
  letter-spacing: 0.16em;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.detail-title h2 {
  font-size: 32px;
  margin-bottom: 40px;
  position: relative;
  width: max-content;
}
.detail-title h2::before {
  content: "";
  width: 2px;
  height: 208px;
  background: #000;
  position: absolute;
  left: -50px;
  top: 0;
}
.detail-title p {
  font-size: 20px;
  margin-bottom: 20px;
  width: max-content;
}
.detail-content {
  padding: 0 80px;
  letter-spacing: 0.16em;
  /* Customize css wp */
  /* Customize css wp */
}
.detail-content > h2 {
  text-align: center;
}
.detail-content__main-img {
  display: flex;
  justify-content: center;
}
.detail-content__description {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}
.detail-content img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 40px;
  margin-top: 40px;
  cursor: pointer;
}
.detail-content h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 40px;
  text-align: center;
}
.detail-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
}
.detail-content__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 43px 55px;
  margin-top: 40px;
  margin-bottom: 69px;
}
.detail-content__gallery img {
  margin: 0;
}
.detail-content__info {
  font-weight: 400;
  letter-spacing: 0.16em;
}
.detail-content__info .title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
}
.detail-content__info table {
  width: 100%;
}
.detail-content__info tr {
  border-top: 1px solid var(--text-color);
}
.detail-content__info tr:last-child {
  border-bottom: 1px solid var(--text-color);
}
.detail-content__info td {
  width: 50%;
  padding: 30px 0;
  line-height: 2;
}
.detail-content__info td:first-child {
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}
.detail-content__design-people {
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
.detail-content__design-people .title {
  font-size: 20px;
  text-align: center;
}
.detail-content__design-people .info-contain {
  width: 859px;
  height: auto;
  margin: 0 auto;
  background-color: rgba(205, 195, 162, 0.3294117647);
  padding: 33px;
  display: flex;
  gap: 40px;
  margin-bottom: 63px;
}
.detail-content__design-people .info-contain img {
  width: 100%;
  max-width: 227px;
  object-fit: cover;
  margin: 0;
  aspect-ratio: 1/1;
}
.detail-content__design-people .info-contain .info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}
.detail-content__design-people .info-contain .info-name {
  font-weight: 700;
  font-size: 24px;
}
.detail-content__design-people .info-contain .info-qualifications p {
  font-size: 20px;
}
.detail-content__design-people .info-contain .info-desc {
  font-size: 16px;
  line-height: 1.5;
}
.detail-content__design-people .info-contain .info-link > a {
  font-size: 20px;
  color: #1a3076;
  margin-top: 26px;
  transition: all 0.2s linear;
}
.detail-content__design-people .info-contain .info-link > a:hover {
  color: gray;
}
.detail-content__btn {
  margin-top: 102px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
}
.detail-content__btn-prev {
  justify-self: left;
}
.detail-content__btn-prev a {
  font-size: 16px;
  color: white;
  background: var(--text-color);
  padding: 20px 80px;
  display: block;
  border: 2px solid #444;
  transition: all 0.2s linear;
}
.detail-content__btn-prev a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.detail-content__btn-next {
  justify-self: right;
}
.detail-content__btn-next a {
  font-size: 16px;
  color: white;
  background: var(--text-color);
  padding: 20px 80px;
  display: block;
  border: 2px solid #444;
  transition: all 0.2s linear;
}
.detail-content__btn-next a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.detail-content__btn-back {
  color: initial;
  font-size: 20px;
  border: 1px solid #000;
  padding: 25px 75px;
  width: max-content;
  transition: all 0.2s linear;
}
.detail-content__btn-back:hover {
  background-color: #444;
  border-color: #fff;
  color: #fff;
}
.detail-content .clear-fix {
  clear: both;
}
.detail-content .wp-block-gallery__title {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
}
.detail-content .wp-block-image {
  margin: 40px 0 20px;
  display: flex;
  justify-content: center;
}
.detail-content .wp-block-image img {
  width: 100%;
  object-fit: cover;
  margin: 0;
}
.detail-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 43px 30px;
  margin: 30px 0 130px;
}
.detail-content .wp-block-gallery .wp-block-image {
  margin: 0;
  overflow: hidden;
}
.detail-content .wp-block-gallery .wp-block-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  margin: 0;
  aspect-ratio: 1/1;
  transition: all 0.2s linear;
}
.detail-content .wp-block-gallery .wp-block-image img:hover {
  transform: scale(1.2);
  opacity: 0.5;
}
.detail-content .wp-block-verse {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}
.detail-content .wp-block-table {
  font-weight: 400;
  letter-spacing: 0.16em;
}
.detail-content .wp-block-table .title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
}
.detail-content .wp-block-table table {
  width: 100%;
}
.detail-content .wp-block-table tr {
  border-top: 1px solid #1a3076;
}
.detail-content .wp-block-table tr:last-child {
  border-bottom: 1px solid #1a3076;
}
.detail-content .wp-block-table td {
  padding: 30px 0;
  line-height: 2;
}
.detail-content .wp-block-table td:first-child {
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  width: 50%;
}
.detail-content .wp-block-columns {
  display: flex;
  gap: 40px;
}
.detail-content .wp-block-columns .wp-block-column {
  width: calc(50% - 20px);
}
.detail-content .wp-block-columns .wp-block-column figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  aspect-ratio: 3/2;
}

.modal-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

@media screen and (max-width: 1439px) {
  .detail-wrapper {
    padding: 0 65px;
  }
  .detail-line {
    height: 173.3333333333px;
    left: 20.8333333333%;
  }
  .detail-title h2 {
    font-size: 26.6666666667px;
    margin-bottom: 33.3333333333px;
  }
  .detail-title p {
    font-size: 16.6666666667px;
    margin-bottom: 16.6666666667px;
  }
  .detail-content {
    padding: 0 66.6666666667px;
  }
  .detail-content img {
    margin-bottom: 33.3333333333px;
    margin-top: 33.3333333333px;
  }
  .detail-content h3 {
    font-size: 26.6666666667px;
    margin-bottom: 33.3333333333px;
  }
  .detail-content p {
    font-size: 13.3333333333px;
  }
  .detail-content__gallery {
    gap: 35.8333333333px 45.8333333333px;
    margin-top: 33.3333333333px;
    margin-bottom: 57.5px;
  }
  .detail-content__info .title {
    font-size: 16.6666666667px;
    margin-bottom: 33.3333333333px;
  }
  .detail-content__info td {
    padding: 25px 0;
  }
  .detail-content__design-people {
    margin-top: 66.6666666667px;
    gap: 33.3333333333px;
  }
  .detail-content__design-people .title {
    font-size: 16.6666666667px;
  }
  .detail-content__design-people .info-contain {
    width: 715.8333333333px;
    height: auto;
    padding: 27.5px;
    gap: 33.3333333333px;
    margin-bottom: 66.6666666667px;
  }
  .detail-content__design-people .info-contain img {
    max-width: 189.1666666667px;
  }
  .detail-content__design-people .info-contain .info {
    gap: 8.3333333333px;
    padding: 8.3333333333px 0;
  }
  .detail-content__design-people .info-contain .info-name {
    font-size: 20px;
  }
  .detail-content__design-people .info-contain .info-qualifications p {
    font-size: 16.6666666667px;
  }
  .detail-content__design-people .info-contain .info-desc {
    font-size: 13.3333333333px;
  }
  .detail-content__design-people .info-contain .info .link {
    font-size: 16.6666666667px;
    margin-top: 16.6666666667px;
  }
  .detail-content__btn-prev a {
    font-size: 13.3333333333px;
    padding: 20px 66.6666666667px;
  }
  .detail-content__btn-next a {
    font-size: 13.3333333333px;
    padding: 20px 66.6666666667px;
  }
  .detail-content .goto-back {
    margin-bottom: 66.6666666667px;
    margin-top: 66.6666666667px;
  }
  .detail-content .goto-back a {
    font-size: 30px;
    padding: 20px 66.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .detail-wrapper {
    padding: 0 54.1666666667px;
  }
  .detail-line {
    height: 144.4444444444px;
    left: 17.3611111111%;
  }
  .detail-title h2 {
    font-size: 22.2222222222px;
    margin-bottom: 27.7777777778px;
  }
  .detail-title p {
    font-size: 13.8888888889px;
    margin-bottom: 13.8888888889px;
  }
  .detail-content {
    padding: 0 55.5555555556px;
  }
  .detail-content img {
    margin-bottom: 27.7777777778px;
    margin-top: 27.7777777778px;
  }
  .detail-content h3 {
    font-size: 22.2222222222px;
    margin-bottom: 27.7777777778px;
  }
  .detail-content p {
    font-size: 11.1111111111px;
  }
  .detail-content__gallery {
    gap: 29.8611111111px 38.1944444444px;
    margin-top: 27.7777777778px;
    margin-bottom: 47.9166666667px;
  }
  .detail-content__info .title {
    font-size: 13.8888888889px;
    margin-bottom: 27.7777777778px;
  }
  .detail-content__info td {
    padding: 20.8333333333px 0;
  }
  .detail-content__design-people {
    margin-top: 55.5555555556px;
    gap: 27.7777777778px;
  }
  .detail-content__design-people .title {
    font-size: 13.8888888889px;
  }
  .detail-content__design-people .info-contain {
    width: 596.5277777778px;
    height: auto;
    padding: 22.9166666667px;
    gap: 27.7777777778px;
    margin-bottom: 55.5555555556px;
  }
  .detail-content__design-people .info-contain img {
    max-width: 157.6388888889px;
  }
  .detail-content__design-people .info-contain .info {
    gap: 6.9444444444px;
    padding: 6.9444444444px 0;
  }
  .detail-content__design-people .info-contain .info-name {
    font-size: 16.6666666667px;
  }
  .detail-content__design-people .info-contain .info-qualifications p {
    font-size: 13.8888888889px;
  }
  .detail-content__design-people .info-contain .info-desc {
    font-size: 11.1111111111px;
  }
  .detail-content__design-people .info-contain .info .link {
    font-size: 13.8888888889px;
    margin-top: 13.8888888889px;
  }
  .detail-content__btn-prev a {
    font-size: 11.1111111111px;
    padding: 16.6666666667px 55.5555555556px;
  }
  .detail-content__btn-next a {
    font-size: 11.1111111111px;
    padding: 16.6666666667px 55.5555555556px;
  }
  .detail-content .goto-back {
    margin-bottom: 55.5555555556px;
    margin-top: 55.5555555556px;
  }
  .detail-content .goto-back a {
    font-size: 25px;
    padding: 16.6666666667px 55.5555555556px;
  }
}
@media screen and (max-width: 430px) {
  .detail {
    max-width: 430px;
  }
  .detail-wrapper {
    padding: 0 18px;
  }
  .detail-title h2 {
    font-size: 20px;
    margin: 50px 0 20px;
    width: 100%;
    line-height: 1.2;
    text-align: center;
  }
  .detail-title h2::before {
    content: "";
    width: 1px;
    height: 97px;
    background: #1a3076;
    left: -21px;
  }
  .detail-title p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .detail-content {
    padding: 0;
    /* Customize css wp */
    /* Customize css wp */
  }
  .detail-content__description {
    font-size: 14px;
  }
  .detail-content h3 {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: center;
  }
  .detail-content p {
    font-size: 14px;
  }
  .detail-content__info {
    font-weight: 400;
    letter-spacing: 0.16em;
  }
  .detail-content__info .title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
  }
  .detail-content__info table {
    width: 100%;
  }
  .detail-content__info tr {
    border-top: 1px solid var(--text-color);
  }
  .detail-content__info tr:last-child {
    border-bottom: 1px solid var(--text-color);
  }
  .detail-content__info td {
    width: 50%;
    padding: 30px 0;
    line-height: 2;
  }
  .detail-content__info td:first-child {
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
  }
  .detail-content__design-people {
    gap: 40px;
  }
  .detail-content__design-people .title {
    font-size: 16px;
  }
  .detail-content__design-people .info-contain {
    width: 90.4%;
    padding: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    height: auto;
    gap: 20px;
  }
  .detail-content__design-people .info-contain img {
    max-width: 150px;
    margin: 0 auto;
  }
  .detail-content__design-people .info-contain .info {
    gap: 10px;
  }
  .detail-content__design-people .info-contain .info-name {
    font-size: 20px;
    text-align: center;
  }
  .detail-content__design-people .info-contain .info-qualifications p {
    font-size: 16px;
    text-align: center;
  }
  .detail-content__design-people .info-contain .info-desc {
    margin-top: 10px;
    text-align: justify;
    font-size: 14px;
  }
  .detail-content__design-people .info-contain .info-link {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .detail-content__design-people .info-contain .info-link .link {
    font-size: 14px;
    color: white;
    margin-top: 20px;
    padding: 0;
    background-color: #1a3076;
    width: 300px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .detail-content__btn {
    margin-top: 0;
    display: flex;
    place-items: center;
    justify-content: space-between;
    padding-bottom: 26px;
  }
  .detail-content__btn-prev {
    justify-self: left;
  }
  .detail-content__btn-prev a {
    font-size: 12px;
    padding: 8px 25px;
    display: block;
  }
  .detail-content__btn-next {
    justify-self: right;
  }
  .detail-content__btn-next a {
    font-size: 12px;
    padding: 8px 25px;
    display: block;
  }
  .detail-content .sp-btn__back {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 80px;
  }
  .detail-content .sp-btn__back-link {
    color: initial;
    font-size: 14px;
    border: 1px solid #000;
    width: 232px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .detail-content .wp-block-gallery__title {
    margin-top: 68px;
  }
  .detail-content .wp-block-image {
    margin: 40px 0 20px;
    display: flex;
    justify-content: center;
  }
  .detail-content .wp-block-image img {
    width: 100% !important;
    height: 100%;
  }
  .detail-content .wp-block-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    margin: 30px 0 78px;
  }
  .detail-content .wp-block-gallery .wp-block-image {
    margin: 0;
  }
  .detail-content .wp-block-gallery .wp-block-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    margin: 0;
    aspect-ratio: 1/1;
  }
  .detail-content .wp-block-verse {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
  }
  .detail-content .wp-block-table .title {
    font-size: 16px;
  }
  .detail-content .wp-block-table td {
    font-size: 12px;
  }
  .detail-content .wp-block-table td:first-child {
    width: 40%;
  }
  .detail-content .wp-block-columns {
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
  }
  .detail-content .wp-block-columns .wp-block-column {
    width: 100%;
  }
  .detail-content .wp-block-columns .wp-block-column > .wp-block-image {
    margin: 0;
  }
  .modal-img {
    inset: 0;
  }
  .modal-img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .detail-content__design-people .info-contain {
    width: 100%;
  }
}
@media screen and (max-width: 360px) {
  .detail {
    max-width: 360px;
  }
  .detail-content {
    padding: 0;
  }
  .detail-content__design-people {
    gap: 40px;
  }
  .detail-content__design-people .title {
    font-size: 16px;
  }
  .detail-content__design-people .info-contain {
    width: 100%;
    padding: 20px;
    margin-bottom: 60px;
    gap: 20px;
  }
  .detail-content__design-people .info-contain .info {
    gap: 10px;
  }
  .detail-content__design-people .info-contain .info-name {
    font-size: 20px;
  }
  .detail-content__design-people .info-contain .info-qualifications p {
    font-size: 16px;
  }
  .detail-content__design-people .info-contain .info-desc {
    margin-top: 10px;
    font-size: 14px;
  }
  .detail-content__design-people .info-contain .info-link .link {
    font-size: 14px;
    margin-top: 20px;
    padding: 0;
    width: 250px;
    height: 45px;
  }
}
.main-voice {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 2554px;
}
.main-voice-wrapper {
  padding: 0 40px 477px;
}
.main-voice-wrapper__title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 93px;
}
.main-voice-wrapper__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 40px;
  max-width: fit-content;
  margin: 0 auto;
}
.main-voice-wrapper__content a {
  color: #000;
}
.main-voice-wrapper__content-item {
  display: flex;
  flex-direction: column;
}
.main-voice-wrapper__content-item img {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.main-voice-wrapper__content-item__text {
  letter-spacing: 0.16em;
  max-width: 300px;
}
.main-voice-wrapper__content-item__text .main-title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 25px;
  line-height: 1.2;
}
.main-voice-wrapper__content-item__text .main-name {
  font-size: 14px;
  font-weight: 400;
  margin-top: 15px;
}
.main-voice-btn {
  display: flex;
  justify-content: center;
}
.main-voice-btn a {
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.16em;
  padding: 20px 160px;
  border: 1px solid #000;
  color: #000;
  margin-bottom: 80px;
}

@media screen and (max-width: 1439px) {
  .main-voice {
    min-height: 2128.3333333333px;
  }
  .main-voice-wrapper {
    padding: 0 33.3333333333px 66.6666666667px;
  }
  .main-voice-wrapper__title {
    font-size: 33.3333333333px;
    margin-bottom: 83.3333333333px;
  }
  .main-voice-wrapper__content {
    gap: 58.3333333333px 33.3333333333px;
  }
  .main-voice-wrapper__content-item__text .main-title {
    font-size: 20px;
    margin-top: 16.6666666667px;
  }
  .main-voice-wrapper__content-item__text .main-name {
    font-size: 20px;
    margin-top: 12.5px;
  }
  .main-voice-btn {
    justify-content: center;
  }
  .main-voice-btn a {
    font-size: 26.6666666667px;
    padding: 16.6666666667px 133.3333333333px;
    margin-bottom: 66.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .main-voice {
    min-height: 1773.6111111111px;
  }
  .main-voice-wrapper {
    padding: 0 27.7777777778px 55.5555555556px;
  }
  .main-voice-wrapper__title {
    font-size: 27.7777777778px;
    margin-bottom: 69.4444444444px;
  }
  .main-voice-wrapper__content {
    gap: 48.6111111111px 27.7777777778px;
  }
  .main-voice-wrapper__content-item__text .main-title {
    font-size: 16.6666666667px;
    margin-top: 13.8888888889px;
  }
  .main-voice-wrapper__content-item__text .main-name {
    font-size: 16.6666666667px;
    margin-top: 10.4166666667px;
  }
  .main-voice-btn {
    justify-content: center;
  }
  .main-voice-btn a {
    font-size: 22.2222222222px;
    padding: 13.8888888889px 111.1111111111px;
    margin-bottom: 55.5555555556px;
  }
}
@media screen and (max-width: 430px) {
  .main-voice {
    max-width: 430px;
    height: auto;
  }
  .main-voice-wrapper {
    padding: 0 28px 477px;
  }
  .main-voice-wrapper__title {
    font-size: 20px;
    margin: 50px 0 66px;
    position: relative;
  }
  .main-voice-wrapper__title:before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 305px;
    height: 1px;
    background-color: #464646;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-voice-wrapper__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 18px;
  }
  .main-voice-wrapper__content-item__text .main-title {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.3;
  }
  .main-voice-wrapper__content-item__text .main-name {
    font-size: 12px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 360px) {
  .main-voice-wrapper {
    padding: 0 26.9230769231px 458.6538461538px;
  }
  .main-voice-wrapper__title {
    font-size: 19.2307692308px;
    margin: 48.0769230769px 0 63.4615384615px;
  }
  .main-voice-wrapper__title:before {
    max-width: 293.2692307692px;
    bottom: -9.6153846154px;
  }
  .main-voice-wrapper__content {
    gap: 25px 17.3076923077px;
  }
  .main-voice-wrapper__content-item__text .main-title {
    font-size: 13.4615384615px;
    margin-top: 9.6153846154px;
  }
  .main-voice-wrapper__content-item__text .main-name {
    font-size: 11.5384615385px;
    margin-top: 14.4230769231px;
  }
}
.voice-detail {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.voice-detail-title {
  letter-spacing: 0.16em;
  font-weight: 400;
  text-align: center;
}
.voice-detail-title h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.voice-detail-title p {
  font-size: 32px;
  margin-bottom: 53px;
}
.voice-detail-content {
  padding: 0 160px;
  letter-spacing: 0.16em;
  /* Customize css wp */
}
.voice-detail-content__img {
  margin: 0 auto 136px;
}
.voice-detail-content__img img {
  width: 100%;
  object-fit: cover;
}
.voice-detail-content .wp-block-group {
  margin-bottom: 40px;
  font-size: 16px;
}
.voice-detail-content .wp-block-group p {
  padding: 10px 0;
}
.voice-detail-content .wp-block-group p strong {
  font-weight: 700;
}
.voice-detail-content .wp-block-group p strong::before {
  content: "Q";
  font-weight: 700;
  margin-right: 15px;
}
.voice-detail-content .wp-block-group p:nth-child(2) {
  padding: 0;
  line-height: 2;
}
.voice-detail-content .wp-block-group p:nth-child(2)::before {
  content: "A";
  margin-right: 15px;
}
.voice-detail-content__btn {
  margin-top: 102px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
}
.voice-detail-content__btn-prev {
  justify-self: left;
}
.voice-detail-content__btn-prev a {
  font-size: 16px;
  color: white;
  background: var(--text-color);
  padding: 20px 80px;
  display: block;
  border: 2px solid #444;
  transition: all 0.2s linear;
}
.voice-detail-content__btn-prev a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.voice-detail-content__btn-next {
  justify-self: right;
}
.voice-detail-content__btn-next a {
  font-size: 16px;
  color: white;
  background: var(--text-color);
  padding: 20px 80px;
  display: block;
  border: 2px solid #444;
  transition: all 0.2s linear;
}
.voice-detail-content__btn-next a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.voice-detail-content__btn-back {
  color: initial;
  font-size: 20px;
  border: 1px solid #000;
  padding: 25px 75px;
  width: max-content;
  transition: all 0.2s linear;
}
.voice-detail-content__btn-back:hover {
  background-color: #444;
  border-color: #fff;
  color: #fff;
}
.voice-detail-content .wp-block-gallery__title {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  margin-top: 201px;
}
.voice-detail-content .wp-block-image {
  margin: 40px 0;
}
.voice-detail-content .wp-block-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  margin: 0;
}
.voice-detail-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 43px 30px;
  margin: 30px 0 188px;
  padding: 0 32px;
}
.voice-detail-content .wp-block-gallery .wp-block-image {
  margin: 0;
  overflow: hidden;
}
.voice-detail-content .wp-block-gallery .wp-block-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  height: 100%;
  margin: 0;
  transition: all 0.2s linear;
}
.voice-detail-content .wp-block-gallery .wp-block-image img:hover {
  transform: scale(1.2);
  opacity: 0.5;
}

@media screen and (max-width: 1439px) {
  .voice-detail-title h2 {
    font-size: 33.3333333333px;
    margin-bottom: 16.6666666667px;
  }
  .voice-detail-title p {
    font-size: 26.6666666667px;
    margin-bottom: 44.1666666667px;
  }
  .voice-detail-content {
    padding: 0 133.3333333333px;
    /* Customize css wp */
  }
  .voice-detail-content__img {
    margin: 0 auto 113.3333333333px;
  }
  .voice-detail-content .wp-block-group {
    margin-bottom: 33.3333333333px;
    font-size: 16px;
  }
  .voice-detail-content .wp-block-group p {
    padding: 8.3333333333px 0;
  }
  .voice-detail-content .wp-block-group p strong::before {
    content: "Q";
    margin-right: 12.5px;
  }
  .voice-detail-content .wp-block-group p:nth-child(2)::before {
    margin-right: 12.5px;
  }
  .voice-detail-content__btn-prev a {
    font-size: 16px;
    padding: 16.6666666667px 66.6666666667px;
  }
  .voice-detail-content__btn-next a {
    font-size: 16px;
    padding: 16.6666666667px 66.6666666667px;
  }
  .voice-detail-content .goto-back {
    margin-top: 54.1666666667px;
    margin-bottom: 164.1666666667px;
  }
  .voice-detail-content .goto-back a {
    font-size: 30px;
    padding: 20px 66.6666666667px;
  }
  .voice-detail-content .wp-block-gallery__title {
    font-size: 16.6666666667px;
    margin-top: 167.5px;
  }
  .voice-detail-content .wp-block-image {
    margin: 33.3333333333px 0;
  }
  .voice-detail-content .wp-block-gallery {
    gap: 35.8333333333px 45.8333333333px;
    margin: 25px 0 156.6666666667px;
    padding: 0 26.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .voice-detail-title h2 {
    font-size: 27.7777777778px;
    margin-bottom: 13.8888888889px;
  }
  .voice-detail-title p {
    font-size: 22.2222222222px;
    margin-bottom: 36.8055555556px;
  }
  .voice-detail-content {
    padding: 0 111.1111111111px;
    /* Customize css wp */
  }
  .voice-detail-content__img {
    margin: 0 auto 94.4444444444px;
  }
  .voice-detail-content .wp-block-group {
    margin-bottom: 27.7777777778px;
    font-size: 16px;
  }
  .voice-detail-content .wp-block-group p {
    padding: 6.9444444444px 0;
  }
  .voice-detail-content .wp-block-group p strong::before {
    content: "Q";
    margin-right: 10.4166666667px;
  }
  .voice-detail-content .wp-block-group p:nth-child(2)::before {
    margin-right: 10.4166666667px;
  }
  .voice-detail-content__btn-prev a {
    font-size: 16px;
    padding: 13.8888888889px 55.5555555556px;
  }
  .voice-detail-content__btn-next a {
    font-size: 16px;
    padding: 13.8888888889px 55.5555555556px;
  }
  .voice-detail-content .goto-back {
    margin-top: 45.1388888889px;
    margin-bottom: 136.8055555556px;
  }
  .voice-detail-content .goto-back a {
    font-size: 25px;
    padding: 16.6666666667px 55.5555555556px;
  }
  .voice-detail-content .wp-block-gallery__title {
    font-size: 13.8888888889px;
    margin-top: 139.5833333333px;
  }
  .voice-detail-content .wp-block-image {
    margin: 27.7777777778px 0;
  }
  .voice-detail-content .wp-block-gallery {
    gap: 29.8611111111px 38.1944444444px;
    margin: 20.8333333333px 0 130.5555555556px;
    padding: 0 22.2222222222px;
  }
}
@media screen and (max-width: 430px) {
  .voice-detail {
    max-width: 430px;
  }
  .voice-detail-title h2 {
    font-size: 20px;
    margin: 50px 0 20px;
  }
  .voice-detail-title p {
    font-size: 14px;
    margin-bottom: 26px;
  }
  .voice-detail-content {
    padding: 0 25px;
    font-size: 14px;
    /* Customize css wp */
  }
  .voice-detail-content__img {
    margin: 0 auto 40px;
  }
  .voice-detail-content .wp-block-group p {
    line-height: 1.5;
  }
  .voice-detail-content__btn {
    margin-top: 0;
    display: flex;
    place-items: center;
    justify-content: space-between;
    padding-bottom: 26px;
  }
  .voice-detail-content__btn-prev {
    justify-self: left;
  }
  .voice-detail-content__btn-prev a {
    font-size: 12px;
    padding: 8px 18px;
    display: block;
  }
  .voice-detail-content__btn-next {
    justify-self: right;
  }
  .voice-detail-content__btn-next a {
    font-size: 12px;
    padding: 8px 18px;
    display: block;
  }
  .voice-detail-content .sp-btn__back {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 80px;
  }
  .voice-detail-content .sp-btn__back-link {
    color: initial;
    font-size: 14px;
    border: 1px solid #000;
    width: 232px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .voice-detail-content .wp-block-gallery__title {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    margin-top: 100px;
  }
  .voice-detail-content .wp-block-image {
    margin: 40px 0;
  }
  .voice-detail-content .wp-block-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    margin: 0;
  }
  .voice-detail-content .wp-block-gallery {
    gap: 14px 18px;
    padding: 0;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 360px) {
  .voice-detail-title h2 {
    font-size: 19.2307692308px;
    margin: 50px 0 20px;
  }
  .voice-detail-title p {
    font-size: 13.4615384615px;
    margin-bottom: 25px;
  }
  .voice-detail-content {
    padding: 0 24.0384615385px;
    /* Customize css wp */
  }
  .voice-detail-content__img {
    margin: 0 auto 38.4615384615px;
  }
  .voice-detail-content__btn-prev a {
    font-size: 11.5384615385px;
    padding: 7.6923076923px 15.3846153846px;
  }
  .voice-detail-content__btn-next a {
    font-size: 11.5384615385px;
    padding: 7.6923076923px 17.3076923077px;
  }
  .voice-detail-content .wp-block-gallery__title {
    font-size: 19.2307692308px;
    margin-top: 96.1538461538px;
  }
  .voice-detail-content .wp-block-image {
    margin: 38.4615384615px 0;
  }
  .voice-detail-content .wp-block-gallery {
    gap: 13.4615384615px 17.3076923077px;
  }
}
.main-blog {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: auto;
  min-height: 100vh;
}
.main-blog-wrapper {
  padding: 0 40px 0;
  margin-bottom: 80px;
}
.main-blog-wrapper__title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 93px;
}
.main-blog-wrapper__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 40px;
  max-width: fit-content;
  margin: 0 auto;
}
.main-blog-wrapper__content a {
  color: #000;
}
.main-blog-wrapper__content-item {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}
.main-blog-wrapper__content-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.main-blog-wrapper__content-item__text {
  letter-spacing: 0.16em;
  font-weight: 700;
  width: 100%;
}
.main-blog-wrapper__content-item__text .main-title {
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.5;
}
.main-blog-wrapper__content-item__text .main-date {
  font-size: 16px;
  margin-top: 25px;
}
.main-blog-btn {
  display: flex;
  justify-content: center;
}
.main-blog-btn a {
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.16em;
  padding: 20px 160px;
  border: 1px solid #000;
  color: #000;
  margin-bottom: 80px;
}
.main-blog .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.16em;
  margin-bottom: 80px;
}
.main-blog .pagination .page-numbers {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 0 10px 0 0;
}
.main-blog .pagination .page-numbers::after {
  content: "|";
  font-weight: 400;
  font-size: 16px;
  padding: 0 0 0 10px;
}
.main-blog .pagination > a {
  color: initial;
}
.main-blog .pagination .current {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 1439px) {
  .main-blog-wrapper {
    padding: 0 33.3333333333px 66.6666666667px;
  }
  .main-blog-wrapper__title {
    font-size: 33.3333333333px;
    margin-bottom: 83.3333333333px;
  }
  .main-blog-wrapper__content {
    gap: 58.3333333333px 33.3333333333px;
  }
  .main-blog-wrapper__content-item__text .main-title {
    font-size: 20px;
    margin-top: 12.5px;
  }
  .main-blog-wrapper__content-item__text .main-date {
    font-size: 13.3333333333px;
    margin-top: 20.8333333333px;
  }
  .main-blog-btn {
    justify-content: center;
  }
  .main-blog-btn a {
    font-size: 26.6666666667px;
    padding: 16.6666666667px 133.3333333333px;
    margin-bottom: 66.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .main-blog-wrapper {
    padding: 0 27.7777777778px 55.5555555556px;
  }
  .main-blog-wrapper__title {
    font-size: 27.7777777778px;
    margin-bottom: 69.4444444444px;
  }
  .main-blog-wrapper__content {
    gap: 48.6111111111px 27.7777777778px;
  }
  .main-blog-wrapper__content-item__text .main-title {
    font-size: 16.6666666667px;
    margin-top: 10.4166666667px;
  }
  .main-blog-wrapper__content-item__text .main-date {
    font-size: 11.1111111111px;
    margin-top: 17.3611111111px;
  }
  .main-blog-btn {
    justify-content: center;
  }
  .main-blog-btn a {
    font-size: 22.2222222222px;
    padding: 13.8888888889px 111.1111111111px;
    margin-bottom: 55.5555555556px;
  }
}
@media screen and (max-width: 430px) {
  .main-blog {
    max-width: 430px;
  }
  .main-blog-wrapper {
    padding: 0 48px 0;
  }
  .main-blog-wrapper__title {
    font-size: 20px;
    margin: 50px 0 66px;
    position: relative;
  }
  .main-blog-wrapper__title:before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 305px;
    height: 1px;
    background-color: #464646;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-blog-wrapper__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .main-blog-wrapper__content-item img {
    aspect-ratio: 3/2;
  }
  .main-blog-wrapper__content-item__text .main-title {
    font-size: 14px;
    margin-top: 10px;
  }
  .main-blog-wrapper__content-item__text .main-date {
    font-size: 12px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 360px) {
  .main-blog-wrapper {
    padding: 0 46.1538461538px 0;
  }
  .main-blog-wrapper__title {
    font-size: 19.2307692308px;
    margin: 48.0769230769px 0 63.4615384615px;
  }
  .main-blog-wrapper__title:before {
    max-width: 293.2692307692px;
    bottom: -9.6153846154px;
  }
  .main-blog-wrapper__content {
    gap: 28.8461538462px;
  }
  .main-blog-wrapper__content-item__text .main-title {
    font-size: 13.4615384615px;
    margin-top: 9.6153846154px;
  }
  .main-blog-wrapper__content-item__text .main-date {
    font-size: 11.5384615385px;
    margin-top: 14.4230769231px;
  }
}
.detail-blog {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.detail-blog-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.detail-blog-title {
  letter-spacing: 0.16em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 63px;
}
.detail-blog-title h2 {
  font-size: 32px;
  margin-bottom: 40px;
}
.detail-blog-title p {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}
.detail-blog-content {
  padding: 0 80px;
  letter-spacing: 0.16em;
}
.detail-blog-content .wp-block-image {
  display: flex;
}
.detail-blog-content .wp-block-image img {
  height: 100%;
  max-width: 712px;
  margin: 40px 0 40px;
  aspect-ratio: unset;
}
.detail-blog-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 3;
}
.detail-blog-content__design-people {
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
.detail-blog-content__design-people .title {
  font-size: 20px;
  text-align: center;
}
.detail-blog-content__design-people .info-contain {
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: rgba(205, 195, 162, 0.3294117647);
  padding: 33px;
  display: flex;
  gap: 40px;
  margin-bottom: 136px;
}
.detail-blog-content__design-people .info-contain img {
  width: 100%;
  max-width: 227px !important;
  object-fit: cover;
  margin: 0;
}
.detail-blog-content__design-people .info-contain .info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.detail-blog-content__design-people .info-contain .info-name {
  font-weight: 700;
  font-size: 24px;
}
.detail-blog-content__design-people .info-contain .info-qualifications p {
  font-size: 20px;
  line-height: 1;
}
.detail-blog-content__design-people .info-contain .info-desc {
  font-size: 16px;
  line-height: 1.5;
}
.detail-blog-content__design-people .info-contain .info-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-blog-content__design-people .info-contain .info-link .link {
  font-size: 20px;
  color: #1a3076;
  transition: all 0.2s linear;
}
.detail-blog-content__design-people .info-contain .info-link .link:hover {
  color: gray;
}
.detail-blog-content__btn {
  margin-top: 102px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
}
.detail-blog-content__btn-prev {
  justify-self: left;
}
.detail-blog-content__btn-prev a {
  font-size: 16px;
  color: white;
  background: var(--text-color);
  padding: 20px 80px;
  display: block;
  border: 2px solid #444;
  transition: all 0.2s linear;
}
.detail-blog-content__btn-prev a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.detail-blog-content__btn-next {
  justify-self: right;
}
.detail-blog-content__btn-next a {
  font-size: 16px;
  color: white;
  background: var(--text-color);
  padding: 20px 80px;
  display: block;
  border: 2px solid #444;
  transition: all 0.2s linear;
}
.detail-blog-content__btn-next a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.detail-blog-content__btn-back {
  color: initial;
  font-size: 20px;
  border: 1px solid #000;
  padding: 25px 75px;
  width: max-content;
  transition: all 0.2s linear;
}
.detail-blog-content__btn-back:hover {
  background-color: #444;
  border-color: #fff;
  color: #fff;
}
.detail-blog-content .wp-block-columns {
  display: flex;
  gap: 40px;
}
.detail-blog-content .wp-block-columns .wp-block-column {
  width: calc(50% - 20px);
}
.detail-blog-content .wp-block-columns .wp-block-column figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  aspect-ratio: 3/2;
}

@media screen and (max-width: 1439px) {
  .detail-blog-wrapper {
    max-width: 1000px;
  }
  .detail-blog-title {
    margin-bottom: 52.5px;
  }
  .detail-blog-title h2 {
    font-size: 33.3333333333px;
    margin-bottom: 33.3333333333px;
  }
  .detail-blog-title p {
    font-size: 16.6666666667px;
    margin-bottom: 16.6666666667px;
  }
  .detail-blog-content {
    padding: 0 66.6666666667px;
  }
  .detail-blog-content .wp-block-image img {
    max-width: 593.3333333333px;
    margin: 33.3333333333px 0 33.3333333333px;
  }
  .detail-blog-content p {
    font-size: 13.3333333333px;
    line-height: 2.5;
  }
  .detail-blog-content__design-people {
    margin-top: 66.6666666667px;
    gap: 33.3333333333px;
  }
  .detail-blog-content__design-people .title {
    font-size: 16.6666666667px;
  }
  .detail-blog-content__design-people .info-contain {
    width: 715.8333333333px;
    padding: 27.5px;
    gap: 33.3333333333px;
    margin-bottom: 113.3333333333px;
  }
  .detail-blog-content__design-people .info-contain img {
    max-width: 189.1666666667px;
    aspect-ratio: 1/1;
  }
  .detail-blog-content__design-people .info-contain .info-name {
    font-size: 20px;
  }
  .detail-blog-content__design-people .info-contain .info-qualifications p {
    font-size: 16.6666666667px;
  }
  .detail-blog-content__design-people .info-contain .info-desc {
    font-size: 13.3333333333px;
  }
  .detail-blog-content__design-people .info-contain .info .link {
    font-size: 16.6666666667px;
  }
  .detail-blog-content__btn-prev a {
    font-size: 13.3333333333px;
    padding: 16.6666666667px 66.6666666667px;
  }
  .detail-blog-content__btn-next a {
    font-size: 13.3333333333px;
    padding: 16.6666666667px 66.6666666667px;
  }
  .detail-blog-content .goto-back {
    margin-top: 54.1666666667px;
    margin-bottom: 164.1666666667px;
  }
  .detail-blog-content .goto-back a {
    font-size: 30px;
    padding: 20px 66.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .detail-blog-wrapper {
    max-width: 833.3333333333px;
  }
  .detail-blog-title {
    margin-bottom: 43.75px;
  }
  .detail-blog-title h2 {
    font-size: 27.7777777778px;
    margin-bottom: 27.7777777778px;
  }
  .detail-blog-title p {
    font-size: 13.8888888889px;
    margin-bottom: 13.8888888889px;
  }
  .detail-blog-content {
    padding: 0 55.5555555556px;
  }
  .detail-blog-content .wp-block-image img {
    max-width: 494.4444444444px;
    margin: 27.7777777778px 0 27.7777777778px;
  }
  .detail-blog-content p {
    font-size: 11.1111111111px;
    line-height: 2.0833333333;
  }
  .detail-blog-content__design-people {
    margin-top: 55.5555555556px;
    gap: 27.7777777778px;
  }
  .detail-blog-content__design-people .title {
    font-size: 13.8888888889px;
  }
  .detail-blog-content__design-people .info-contain {
    width: 596.5277777778px;
    padding: 22.9166666667px;
    gap: 27.7777777778px;
    margin-bottom: 94.4444444444px;
  }
  .detail-blog-content__design-people .info-contain img {
    max-width: 157.6388888889px;
  }
  .detail-blog-content__design-people .info-contain .info-name {
    font-size: 16.6666666667px;
  }
  .detail-blog-content__design-people .info-contain .info-qualifications p {
    font-size: 13.8888888889px;
  }
  .detail-blog-content__design-people .info-contain .info-desc {
    font-size: 11.1111111111px;
  }
  .detail-blog-content__design-people .info-contain .info .link {
    font-size: 13.8888888889px;
  }
  .detail-blog-content__btn-prev a {
    font-size: 11.1111111111px;
    padding: 13.8888888889px 55.5555555556px;
  }
  .detail-blog-content__btn-next a {
    font-size: 11.1111111111px;
    padding: 13.8888888889px 55.5555555556px;
  }
  .detail-blog-content .goto-back {
    margin-top: 45.1388888889px;
    margin-bottom: 136.8055555556px;
  }
  .detail-blog-content .goto-back a {
    font-size: 25px;
    padding: 16.6666666667px 55.5555555556px;
  }
}
@media screen and (max-width: 430px) {
  .detail-blog {
    max-width: 430px;
    overflow: hidden;
  }
  .detail-blog-wrapper {
    max-width: 430px;
  }
  .detail-blog-title {
    padding: 0 35px;
  }
  .detail-blog-title h2 {
    font-size: 20px;
    margin: 50px 0 20px;
    line-height: 1.5;
  }
  .detail-blog-title p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .detail-blog-content {
    padding: 0;
  }
  .detail-blog-content .wp-block-image {
    justify-content: center;
  }
  .detail-blog-content .wp-block-image img {
    max-width: 300px;
    margin: 0 0 34px;
  }
  .detail-blog-content .wp-block-columns {
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
  }
  .detail-blog-content .wp-block-columns .wp-block-column {
    width: 100%;
  }
  .detail-blog-content .wp-block-columns .wp-block-column > .wp-block-image {
    margin: 0;
  }
  .detail-blog-content p {
    padding: 0 35px;
    font-size: 14px;
    line-height: 2.5;
  }
  .detail-blog-content__design-people {
    margin-top: 80px;
    padding: 0 18px;
    gap: 30px;
    max-width: 430px;
  }
  .detail-blog-content__design-people .title {
    font-size: 16px;
  }
  .detail-blog-content__design-people .info-contain {
    width: 100%;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 51px;
  }
  .detail-blog-content__design-people .info-contain img {
    max-width: 150px;
    margin: 0 auto;
  }
  .detail-blog-content__design-people .info-contain .info-name {
    font-size: 20px;
    text-align: center;
  }
  .detail-blog-content__design-people .info-contain .info-qualifications {
    margin: 10px 0 20px;
  }
  .detail-blog-content__design-people .info-contain .info-qualifications p {
    font-size: 16px;
    text-align: center;
    padding: 0;
  }
  .detail-blog-content__design-people .info-contain .info-desc {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
  }
  .detail-blog-content__design-people .info-contain .info-link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 29px;
  }
  .detail-blog-content__design-people .info-contain .info-link .link {
    font-size: 14px;
    color: white;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .detail-blog-content__design-people .info-contain .info-link .link:nth-child(1) {
    background-color: #464646;
  }
  .detail-blog-content__design-people .info-contain .info-link .link:nth-child(2) {
    background-color: #1a3076;
  }
  .detail-blog-content__btn {
    margin-top: 0;
    display: flex;
    place-items: center;
    justify-content: space-between;
    padding: 0 35px 26px;
  }
  .detail-blog-content__btn-prev {
    justify-self: left;
  }
  .detail-blog-content__btn-prev a {
    font-size: 12px;
    padding: 8px 25px;
    display: block;
  }
  .detail-blog-content__btn-next {
    justify-self: right;
  }
  .detail-blog-content__btn-next a {
    font-size: 12px;
    padding: 8px 25px;
    display: block;
  }
  .detail-blog-content .sp-btn__back {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 80px;
  }
  .detail-blog-content .sp-btn__back-link {
    color: initial;
    font-size: 14px;
    border: 1px solid #000;
    width: 232px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 375px) {
  .detail-blog-content__design-people .info-contain .info-link .link {
    font-size: 12px;
  }
}
.contact-main {
  width: 100%;
  letter-spacing: 0.16em;
}
.contact-main__wrapper {
  max-width: 1440px;
  margin: 0 auto 400px;
}
.contact-main__title {
  font-size: 32px;
  margin-bottom: 50px;
  margin-top: 5px;
  text-align: center;
}
.contact-main__subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 28px;
}
.contact-main__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 700px;
  height: 112px;
  border: 1px solid #000;
  margin: 0 auto;
  margin-bottom: 34px;
  color: #000;
}
.contact-main__btn span {
  display: flex;
  align-items: center;
  gap: 21px;
}
.contact-main__btn span > img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
.contact-main__btn span:nth-child(1) {
  font-size: 24px;
}
.contact-main__btn span:nth-child(2) {
  font-size: 16px;
  letter-spacing: 1px;
}
.contact-main form {
  width: 1100px;
  margin: 0 auto;
  background-color: #f3efe8;
  padding: 82px 102px 87px;
}
.contact-main-form__input {
  font-size: 16px;
  margin-bottom: 25px;
}
.contact-main-form__input label {
  line-height: 30px;
}
.contact-main-form__input label span {
  color: #ff0303;
  font-size: 16px;
}
.contact-main-form__input .wpcf7-list-item-label {
  font-size: 14px;
}
.contact-main-form__input input {
  border: #d9d9d9;
}
.contact-main-form__input input[type=text],
.contact-main-form__input input[type=email],
.contact-main-form__input input[type=tel] {
  width: 500px;
  height: 55px;
  font-size: 16px;
  padding-left: 10px;
}
.contact-main-form__input input[name=postNumber] {
  width: 300px;
  height: 55px;
  font-size: 16px;
  padding-left: 10px;
}
.contact-main-form__input input[name=address] {
  width: 500px;
  height: 55px;
  font-size: 16px;
  padding-left: 10px;
}
.contact-main-form__input textarea {
  width: 600px;
  height: 250px;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #d9d9d9;
}
.contact-main-form__input .contact-message-label {
  display: block;
  margin-top: 15px;
}
.contact-main-form__input-col {
  margin-bottom: 34px;
  margin-top: 25px;
}
.contact-main-form__input-col .wpcf7-radio {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-main-form__input-col .wpcf7-radio input[type=radio] {
  margin-right: 9px;
  width: 20px;
  height: 20px;
}
.contact-main-form__input-col .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.contact-main-form__policy {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  font-size: 20px;
  margin-top: 100px;
}
.contact-main-form__policy a {
  color: #000;
  text-decoration: underline;
  line-height: 30px;
  margin-left: 17px;
}
.contact-main-form__policy label {
  display: flex;
  align-items: center;
}
.contact-main-form__policy input[type=checkbox] {
  width: 30px;
  height: 30px;
}
.contact-main-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-main-form__submit input[type=submit] {
  width: 416px;
  height: 77px;
  background: #464646;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s linear;
}
.contact-main-form__submit input[type=submit]:hover {
  background: #fff;
  color: #444;
}
.contact-main .contact-main-form__input {
  position: relative;
}
.contact-main .contact-main-form__input .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #ff0303;
  font-size: 14px;
}
.contact-main span[data-name=privacy-policy] {
  position: relative;
}
.contact-main span[data-name=privacy-policy] .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -18px;
  left: 0;
  color: #ff0303;
  font-size: 14px;
  width: 200%;
  left: -70%;
  transform: translateX(30%);
}

@media screen and (max-width: 1439px) {
  .contact-main__title {
    font-size: 26.6666666667px;
    margin-bottom: 41.6666666667px;
    margin-top: 4.1666666667px;
  }
  .contact-main__subtitle {
    font-size: 13.3333333333px;
    margin-bottom: 87.5px;
  }
  .contact-main form {
    width: 916.6666666667px;
    padding: 68.3333333333px 85px 72.5px;
  }
  .contact-main-form__input {
    font-size: 13.3333333333px;
    margin-bottom: 49.1666666667px;
  }
  .contact-main-form__input label {
    line-height: 25px;
  }
  .contact-main-form__input label span {
    font-size: 18.3333333333px;
  }
  .contact-main-form__input .wpcf7-list-item-label {
    font-size: 11.6666666667px;
  }
  .contact-main-form__input input[type=text],
  .contact-main-form__input input[type=email],
  .contact-main-form__input input[type=tel] {
    height: 45.8333333333px;
    font-size: 13.3333333333px;
    padding-left: 8.3333333333px;
  }
  .contact-main-form__input input[name=postNumber] {
    height: 45.8333333333px;
    font-size: 13.3333333333px;
    padding-left: 8.3333333333px;
  }
  .contact-main-form__input input[name=address] {
    height: 45.8333333333px;
    font-size: 13.3333333333px;
    padding-left: 8.3333333333px;
  }
  .contact-main-form__input textarea {
    height: 298.3333333333px;
    font-size: 13.3333333333px;
    padding: 8.3333333333px;
  }
  .contact-main-form__input-col {
    margin-bottom: 28.3333333333px;
    margin-top: 20.8333333333px;
  }
  .contact-main-form__input-col .wpcf7-radio {
    gap: 25px;
  }
  .contact-main-form__input-col .wpcf7-radio input[type=radio] {
    margin-right: 7.5px;
  }
  .contact-main-form__policy {
    margin-bottom: 25px;
    font-size: 16.6666666667px;
  }
  .contact-main-form__policy a {
    line-height: 25px;
    margin-left: 25.8333333333px;
  }
  .contact-main-form__policy input[type=checkbox] {
    width: 25px;
    height: 25px;
  }
  .contact-main-form__submit input[type=submit] {
    width: 312.5px;
    height: 64.1666666667px;
    font-size: 16.6666666667px;
  }
  .contact-main .contact-main-form__input .wpcf7-not-valid-tip {
    bottom: -20px;
    font-size: 11.6666666667px;
  }
  .contact-main span[data-name=privacy-policy] .wpcf7-not-valid-tip {
    bottom: -15px;
    font-size: 11.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .contact-main__title {
    font-size: 22.2222222222px;
    margin-bottom: 34.7222222222px;
    margin-top: 3.4722222222px;
  }
  .contact-main__subtitle {
    font-size: 11.1111111111px;
    margin-bottom: 72.9166666667px;
  }
  .contact-main form {
    width: 763.8888888889px;
    padding: 56.9444444444px 70.8333333333px 60.4166666667px;
  }
  .contact-main-form__input {
    font-size: 11.1111111111px;
    margin-bottom: 40.9722222222px;
  }
  .contact-main-form__input label {
    line-height: 20.8333333333px;
  }
  .contact-main-form__input label span {
    font-size: 15.2777777778px;
  }
  .contact-main-form__input .wpcf7-list-item-label {
    font-size: 9.7222222222px;
  }
  .contact-main-form__input input[type=text],
  .contact-main-form__input input[type=email],
  .contact-main-form__input input[type=tel] {
    height: 38.1944444444px;
    font-size: 11.1111111111px;
    padding-left: 6.9444444444px;
  }
  .contact-main-form__input input[name=postNumber] {
    height: 38.1944444444px;
    font-size: 11.1111111111px;
    padding-left: 6.9444444444px;
  }
  .contact-main-form__input input[name=address] {
    height: 38.1944444444px;
    font-size: 11.1111111111px;
    padding-left: 6.9444444444px;
  }
  .contact-main-form__input textarea {
    height: 248.6111111111px;
    font-size: 11.1111111111px;
    padding: 6.9444444444px;
  }
  .contact-main-form__input-col {
    margin-bottom: 23.6111111111px;
    margin-top: 17.3611111111px;
  }
  .contact-main-form__input-col .wpcf7-radio {
    gap: 20.8333333333px;
  }
  .contact-main-form__input-col .wpcf7-radio input[type=radio] {
    margin-right: 6.25px;
  }
  .contact-main-form__policy {
    margin-bottom: 20.8333333333px;
    font-size: 13.8888888889px;
  }
  .contact-main-form__policy a {
    line-height: 20.8333333333px;
    margin-left: 21.5277777778px;
  }
  .contact-main-form__policy input[type=checkbox] {
    width: 20.8333333333px;
    height: 20.8333333333px;
  }
  .contact-main-form__submit input[type=submit] {
    width: 260.4166666667px;
    height: 53.4722222222px;
    font-size: 13.8888888889px;
  }
  .contact-main .contact-main-form__input .wpcf7-not-valid-tip {
    bottom: -20.8333333333px;
    font-size: 9.7222222222px;
  }
  .contact-main span[data-name=privacy-policy] .wpcf7-not-valid-tip {
    bottom: -12.5px;
    font-size: 9.7222222222px;
  }
}
@media screen and (max-width: 430px) {
  .contact-main__wrapper {
    max-width: 430px;
    margin: 0 auto 200px;
  }
  .contact-main__title {
    font-size: 24px;
    margin-bottom: 40px;
    margin-top: 40px;
    text-align: center;
  }
  .contact-main__subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    width: 90%;
    margin: 0 auto;
  }
  .contact-main__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 300px;
    height: auto;
    padding: 20px;
    border: 1px solid #000;
    margin: 0 auto;
    margin-bottom: 34px;
    color: #000;
    margin-top: 40px;
  }
  .contact-main__btn span {
    display: flex;
    align-items: center;
    gap: 11px;
  }
  .contact-main__btn span > img {
    width: 20px;
    height: 20px;
    object-fit: cover;
  }
  .contact-main__btn span:nth-child(1) {
    font-size: 16px;
  }
  .contact-main__btn span:nth-child(2) {
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
  }
  .contact-main form {
    max-width: 430px;
    width: 100%;
    padding: 20px;
  }
  .contact-main-form__input {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .contact-main-form__input label {
    line-height: 30px;
  }
  .contact-main-form__input label span {
    color: #ff0303;
    font-size: 14px;
  }
  .contact-main-form__input .wpcf7-list-item-label {
    font-size: 14px;
  }
  .contact-main-form__input input {
    border: #d9d9d9;
  }
  .contact-main-form__input input[type=text],
  .contact-main-form__input input[type=email],
  .contact-main-form__input input[type=tel] {
    width: 100%;
    height: 30px;
    font-size: 12px;
    padding-left: 10px;
  }
  .contact-main-form__input input[name=postNumber] {
    width: 100%;
    height: 30px;
    font-size: 12px;
    padding-left: 10px;
  }
  .contact-main-form__input input[name=address] {
    width: 100%;
    height: 30px;
    font-size: 12px;
    padding-left: 10px;
  }
  .contact-main-form__input textarea {
    width: 100%;
    height: 150px;
    font-size: 12px;
    padding: 10px;
    border: 1px solid #d9d9d9;
  }
  .contact-main-form__input-col {
    margin-bottom: 0;
    margin-top: 10px;
  }
  .contact-main-form__input-col .wpcf7-radio {
    flex-direction: column;
    gap: 20px;
  }
  .contact-main-form__input-col .wpcf7-radio input[type=radio] {
    height: 15px;
  }
  .contact-main-form__policy {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
    margin-top: 25px;
  }
  .contact-main-form__policy a {
    color: #000;
    text-decoration: underline;
    line-height: 30px;
    margin-left: 20px;
  }
  .contact-main-form__policy label {
    display: flex;
    align-items: center;
  }
  .contact-main-form__policy input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .contact-main-form__submit {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-main-form__submit > p {
    width: 100%;
  }
  .contact-main-form__submit input[type=submit] {
    width: 100%;
    height: 40px;
    background: #464646;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
  }
  .contact-main .contact-main-form__input {
    position: relative;
  }
  .contact-main .contact-main-form__input .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -12px;
    left: 0;
    color: #ff0303;
    font-size: 10px;
  }
  .contact-main span[data-name=privacy-policy] {
    position: relative;
  }
  .contact-main span[data-name=privacy-policy] .wpcf7-not-valid-tip {
    position: relative;
    left: 0;
    color: #ff0303;
    font-size: 14px;
  }
}
.main-staff {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 2000px;
  background-color: #f3efe8;
}
.main-staff-wrapper {
  padding: 0 40px 0;
  margin-bottom: 80px;
}
.main-staff-wrapper__title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 93px;
}
.main-staff-wrapper__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 86px;
  justify-items: center;
  align-items: center;
  max-width: 1072px;
  margin: 0 auto;
}
.main-staff-wrapper__content a {
  color: #000;
}
.main-staff-wrapper__content-item {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}
.main-staff-wrapper__content-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.main-staff-wrapper__content-item__text {
  letter-spacing: 0.16em;
  font-weight: 700;
}
.main-staff-wrapper__content-item__text .main-title {
  font-size: 24px;
  margin-top: 15px;
  line-height: 1.5;
  margin-left: 15px;
}
.main-staff-wrapper__content-item__text .main-qualifications {
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
  background: #000;
  color: #fff;
  max-width: max-content;
  padding: 5px 16px;
  border-radius: 50px;
}
.main-staff-btn {
  display: flex;
  justify-content: center;
}
.main-staff-btn a {
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.16em;
  padding: 20px 160px;
  border: 1px solid #000;
  color: #000;
  margin-bottom: 80px;
}
.main-staff .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.16em;
  margin-bottom: 80px;
}
.main-staff .pagination .page-numbers {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 0 10px 0 0;
}
.main-staff .pagination .page-numbers::after {
  content: "|";
  font-weight: 400;
  font-size: 16px;
  padding: 0 0 0 10px;
}
.main-staff .pagination > a {
  color: initial;
}
.main-staff .pagination .current {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 1439px) {
  .main-staff {
    height: auto;
  }
  .main-staff-wrapper {
    padding: 0 33.3333333333px 0;
    margin-bottom: 66.6666666667px;
  }
  .main-staff-wrapper__title {
    font-size: 33.3333333333px;
    margin-bottom: 77.5px;
  }
  .main-staff-wrapper__content {
    gap: 58.3333333333px 71.6666666667px;
  }
  .main-staff-wrapper__content-item {
    max-width: 250px;
  }
  .main-staff-wrapper__content-item__text .main-title {
    font-size: 20px;
    margin-top: 12.5px;
    margin-left: 12.5px;
  }
  .main-staff-wrapper__content-item__text .main-qualifications {
    font-size: 13.3333333333px;
    margin-top: 12.5px;
    padding: 4.1666666667px 13.3333333333px;
    border-radius: 41.6666666667px;
  }
  .main-staff-btn a {
    font-size: 26.6666666667px;
    padding: 16.6666666667px 133.3333333333px;
    margin-bottom: 66.6666666667px;
  }
  .main-staff .pagination {
    margin-bottom: 66.6666666667px;
  }
  .main-staff .pagination .page-numbers {
    font-size: 13.3333333333px;
    padding: 0 8.3333333333px 0 0;
  }
  .main-staff .pagination .page-numbers::after {
    font-size: 13.3333333333px;
    padding: 0 0 0 8.3333333333px;
  }
  .main-staff .pagination .current {
    font-size: 16.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .main-staff {
    height: auto;
  }
  .main-staff-wrapper {
    padding: 0 27.7777777778px 0;
    margin-bottom: 55.5555555556px;
  }
  .main-staff-wrapper__title {
    font-size: 27.7777777778px;
    margin-bottom: 64.5833333333px;
  }
  .main-staff-wrapper__content {
    gap: 48.6111111111px 59.7222222222px;
  }
  .main-staff-wrapper__content-item__text .main-title {
    font-size: 16.6666666667px;
    margin-top: 10.4166666667px;
    margin-left: 10.4166666667px;
  }
  .main-staff-wrapper__content-item__text .main-qualifications {
    font-size: 11.1111111111px;
    margin-top: 10.4166666667px;
    padding: 3.4722222222px 11.1111111111px;
    border-radius: 34.7222222222px;
  }
  .main-staff-btn a {
    font-size: 22.2222222222px;
    padding: 13.8888888889px 111.1111111111px;
    margin-bottom: 55.5555555556px;
  }
  .main-staff .pagination {
    margin-bottom: 55.5555555556px;
  }
  .main-staff .pagination .page-numbers {
    font-size: 11.1111111111px;
    padding: 0 6.9444444444px 0 0;
  }
  .main-staff .pagination .page-numbers::after {
    font-size: 11.1111111111px;
    padding: 0 0 0 6.9444444444px;
  }
  .main-staff .pagination .current {
    font-size: 13.8888888889px;
  }
}
@media screen and (max-width: 430px) {
  .main-staff {
    max-width: 430px;
    height: 1500px;
    background-color: #fff;
  }
  .main-staff-wrapper {
    padding: 0 37px 0 23px;
    margin-bottom: 80px;
  }
  .main-staff-wrapper__title {
    font-size: 20px;
    margin: 50px 0 66px;
    position: relative;
  }
  .main-staff-wrapper__title:before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 305px;
    height: 1px;
    background-color: #464646;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-staff-wrapper__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
    max-width: 430px;
  }
  .main-staff-wrapper__content-item__text .main-title {
    font-size: 16px;
    margin-top: 9px;
    margin-left: 11px;
  }
  .main-staff-wrapper__content-item__text .main-qualifications {
    font-size: 10px;
    margin-top: 9px;
    max-width: 100%;
    padding: 7px 11px;
    background-color: #464646;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .main-staff {
    max-width: 375px;
  }
  .main-staff-wrapper {
    padding: 0 37px 0 23px;
  }
  .main-staff-wrapper__content {
    max-width: 375px;
  }
  .main-staff-wrapper__content-item__text .main-qualifications {
    font-size: 8px;
  }
}
@media screen and (max-width: 360px) {
  .main-staff-wrapper__content-item__text .main-qualifications {
    font-size: 7px;
  }
}
.detail-staff {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  letter-spacing: 0.16em;
  background-color: #f3efe8;
}
.detail-staff-wrapper {
  width: 75%;
  margin: 0 auto;
}
.detail-staff-wrapper .detail-staff__title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 119px;
}
.detail-staff__info {
  display: flex;
  gap: 46px;
  margin-bottom: 74px;
}
.detail-staff__info img {
  width: 100%;
  object-fit: cover;
  max-width: 300px;
  aspect-ratio: 1/1;
}
.detail-staff__info-text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.detail-staff__info-text__qualifications {
  font-size: 16px;
  font-weight: 400;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  max-width: max-content;
}
.detail-staff__info-text__name {
  font-size: 32px;
  font-weight: 600;
}
.detail-staff__info-text__other-qualifications {
  border: 1px solid #000;
  padding: 32px 34px;
  display: flex;
  align-items: center;
  gap: 38px;
}
.detail-staff__info-text__other-qualifications p {
  font-size: 16px;
  font-weight: 700;
}
.detail-staff__info-text__other-qualifications #staff_other_qualifications {
  font-weight: 400;
  line-height: 32px;
}
.detail-staff-content h2.wp-block-heading {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  margin-bottom: 47px;
}
.detail-staff-content h2.wp-block-heading::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -21px;
  width: 100%;
  height: 1px;
  background: #000;
}
.detail-staff-content > p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.5;
}
.detail-staff__btn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
}
.detail-staff__btn-prev {
  justify-self: left;
}
.detail-staff__btn-prev a {
  font-size: 16px;
  color: white;
  background: var(--text-color);
  padding: 20px 80px;
  display: block;
  border: 2px solid #444;
  transition: all 0.2s linear;
}
.detail-staff__btn-prev a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.detail-staff__btn-next {
  justify-self: right;
}
.detail-staff__btn-next a {
  font-size: 16px;
  color: white;
  background: var(--text-color);
  padding: 20px 80px;
  display: block;
  border: 2px solid #444;
  transition: all 0.2s linear;
}
.detail-staff__btn-next a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.detail-staff__btn-back {
  color: initial;
  font-size: 20px;
  border: 1px solid #000;
  padding: 25px 75px;
  width: max-content;
  transition: all 0.2s linear;
}
.detail-staff__btn-back:hover {
  background-color: #444;
  border-color: #fff;
  color: #fff;
}
.detail-staff__link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 153px;
}
.detail-staff__link > a {
  color: #1a3076;
  font-size: 20px;
  font-weight: 400;
  max-width: max-content;
  transition: all 0.2s linear;
}
.detail-staff__link > a:hover {
  color: gray;
}

@media screen and (max-width: 1439px) {
  .detail-staff-wrapper .detail-staff__title {
    font-size: 33.3333333333px;
    margin-bottom: 99.1666666667px;
  }
  .detail-staff__info {
    gap: 38.3333333333px;
    margin-bottom: 61.6666666667px;
  }
  .detail-staff__info img {
    max-width: 250px;
    aspect-ratio: 1/1;
  }
  .detail-staff__info-text__qualifications {
    font-size: 13.3333333333px;
    padding: 6.6666666667px 13.3333333333px;
    border-radius: 16.6666666667px;
  }
  .detail-staff__info-text__name {
    font-size: 26.6666666667px;
  }
  .detail-staff__info-text__other-qualifications {
    padding: 26.6666666667px 28.3333333333px;
    gap: 31.6666666667px;
  }
  .detail-staff__info-text__other-qualifications p {
    font-size: 13.3333333333px;
  }
  .detail-staff__info-text__other-qualifications #staff_other_qualifications {
    line-height: 24px !important;
  }
  .detail-staff-content h2.wp-block-heading {
    font-size: 26.6666666667px;
    margin-bottom: 39.1666666667px;
  }
  .detail-staff-content h2.wp-block-heading::after {
    bottom: -17.5px;
  }
  .detail-staff-content > p {
    font-size: 13.3333333333px;
    margin-bottom: 33.3333333333px;
  }
  .detail-staff__btn {
    padding-bottom: 50px;
  }
  .detail-staff__btn-prev a {
    font-size: 13.3333333333px;
    padding: 16.6666666667px 66.6666666667px;
  }
  .detail-staff__btn-next a {
    font-size: 13.3333333333px;
    padding: 16.6666666667px 66.6666666667px;
  }
  .detail-staff__btn-back {
    font-size: 16.6666666667px;
    padding: 20.8333333333px 62.5px;
  }
  .detail-staff__link {
    gap: 16.6666666667px;
    margin-bottom: 127.5px;
  }
  .detail-staff__link > a {
    font-size: 16.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .detail-staff-wrapper .detail-staff__title {
    font-size: 27.7777777778px;
    margin-bottom: 82.6388888889px;
  }
  .detail-staff__info {
    gap: 31.9444444444px;
    margin-bottom: 51.3888888889px;
  }
  .detail-staff__info img {
    max-width: 208.3333333333px;
    aspect-ratio: 1/1;
  }
  .detail-staff__info-text__qualifications {
    font-size: 11.1111111111px;
    padding: 5.5555555556px 11.1111111111px;
    border-radius: 13.8888888889px;
  }
  .detail-staff__info-text__name {
    font-size: 22.2222222222px;
  }
  .detail-staff__info-text__other-qualifications {
    padding: 22.2222222222px 23.6111111111px;
    gap: 26.3888888889px;
  }
  .detail-staff__info-text__other-qualifications p {
    font-size: 11.1111111111px;
  }
  .detail-staff__info-text__other-qualifications #staff_other_qualifications {
    line-height: 20px !important;
  }
  .detail-staff-content h2.wp-block-heading {
    font-size: 22.2222222222px;
    margin-bottom: 32.6388888889px;
  }
  .detail-staff-content h2.wp-block-heading::after {
    bottom: -14.5833333333px;
  }
  .detail-staff-content > p {
    font-size: 11.1111111111px;
    margin-bottom: 27.7777777778px;
  }
  .detail-staff__btn {
    padding-bottom: 41.6666666667px;
  }
  .detail-staff__btn-prev a {
    font-size: 11.1111111111px;
    padding: 13.8888888889px 55.5555555556px;
  }
  .detail-staff__btn-next a {
    font-size: 11.1111111111px;
    padding: 13.8888888889px 55.5555555556px;
  }
  .detail-staff__btn-back {
    font-size: 13.8888888889px;
    padding: 17.3611111111px 52.0833333333px;
  }
  .detail-staff__link {
    gap: 13.8888888889px;
    margin-bottom: 106.25px;
  }
  .detail-staff__link > a {
    font-size: 13.8888888889px;
  }
}
@media screen and (max-width: 430px) {
  .detail-staff {
    max-width: 430px;
    background-color: #ffffff;
  }
  .detail-staff-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 69px 0 66px;
  }
  .detail-staff-wrapper .detail-staff__title {
    display: none;
  }
  .detail-staff__info {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .detail-staff__info img {
    width: 80%;
    margin: 0 auto;
  }
  .detail-staff__info-text__qualifications {
    font-size: 10px;
    padding: 7px 11px;
    margin-bottom: 9px;
  }
  .detail-staff__info-text__name {
    font-size: 16px;
    margin-bottom: 26px;
  }
  .detail-staff__info-text__other-qualifications {
    border: 1px solid #000;
    padding: 8px 0 20px 11px;
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
  }
  .detail-staff__info-text__other-qualifications p {
    font-size: 14px;
  }
  .detail-staff__info-text__other-qualifications #staff_other_qualifications {
    line-height: 28px;
  }
  .detail-staff-content h2.wp-block-heading {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .detail-staff-content h2.wp-block-heading::after {
    left: -11px;
  }
  .detail-staff-content > p {
    font-size: 14px;
  }
  .detail-staff__btn {
    display: flex;
    place-items: center;
    justify-content: space-between;
    padding-bottom: 26px;
  }
  .detail-staff__btn-prev {
    justify-self: left;
  }
  .detail-staff__btn-prev a {
    font-size: 12px;
    padding: 8px 18px;
    display: block;
  }
  .detail-staff__btn-next {
    justify-self: right;
  }
  .detail-staff__btn-next a {
    font-size: 12px;
    padding: 8px 18px;
    display: block;
  }
  .detail-staff .sp-btn__back {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .detail-staff .sp-btn__back-link {
    color: initial;
    font-size: 14px;
    border: 1px solid #000;
    width: 232px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .detail-staff__link {
    gap: 12px;
    margin-bottom: 43px;
  }
  .detail-staff__link > a {
    color: #fff;
    font-size: 14px;
    max-width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a3076;
  }
  .detail-staff__link > a:nth-child(1) {
    order: 2;
  }
  .detail-staff__link > a:nth-child(2) {
    background-color: #464646;
  }
}
.main-event {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: auto;
}
.main-event-wrapper {
  padding: 0 40px 0;
  margin-bottom: 80px;
}
.main-event-wrapper__title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 93px;
}
.main-event-wrapper__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 45px;
  max-width: fit-content;
  margin: 0 auto;
}
.main-event-wrapper__content a {
  color: #000;
}
.main-event-wrapper__content-item {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}
.main-event-wrapper__content-item img {
  width: 100%;
  aspect-ratio: 1.6/1;
  object-fit: cover;
}
.main-event-wrapper__content-item__text {
  letter-spacing: 0.16em;
  font-weight: 400;
}
.main-event-wrapper__content-item__text .main-title {
  font-size: 16px;
  margin-top: 5px;
  line-height: 1.5;
}
.main-event-wrapper__content-item__text .main-status {
  font-size: 11px;
  margin-top: 5px;
  width: 126px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1A3076;
  color: white;
}
.main-event-wrapper__content-item__text .main-address {
  font-size: 14px;
  margin-top: 5px;
  display: flex;
  align-items: center;
}
.main-event-wrapper__content-item__text .main-address img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.main-event-btn {
  display: flex;
  justify-content: center;
}
.main-event-btn a {
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.16em;
  padding: 20px 160px;
  border: 1px solid #000;
  color: #000;
  margin-bottom: 80px;
}
.main-event .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.16em;
  margin-bottom: 80px;
}
.main-event .pagination .page-numbers {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 0 10px 0 0;
}
.main-event .pagination .page-numbers::after {
  content: "|";
  font-weight: 400;
  font-size: 16px;
  padding: 0 0 0 10px;
}
.main-event .pagination > a {
  color: initial;
}
.main-event .pagination .current {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 1439px) {
  .main-event-wrapper {
    padding: 0 33.3333333333px 66.6666666667px;
  }
  .main-event-wrapper__title {
    font-size: 33.3333333333px;
    margin-bottom: 83.3333333333px;
  }
  .main-event-wrapper__content {
    gap: 58.3333333333px 33.3333333333px;
  }
  .main-event-wrapper__content-item__text .main-title {
    font-size: 20px;
    margin-top: 12.5px;
  }
  .main-event-wrapper__content-item__text .main-date {
    font-size: 13.3333333333px;
    margin-top: 20.8333333333px;
  }
  .main-event-btn {
    justify-content: center;
  }
  .main-event-btn a {
    font-size: 26.6666666667px;
    padding: 16.6666666667px 133.3333333333px;
    margin-bottom: 66.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .main-event-wrapper {
    padding: 0 27.7777777778px 55.5555555556px;
  }
  .main-event-wrapper__title {
    font-size: 27.7777777778px;
    margin-bottom: 69.4444444444px;
  }
  .main-event-wrapper__content {
    gap: 48.6111111111px 27.7777777778px;
  }
  .main-event-wrapper__content-item__text .main-title {
    font-size: 16.6666666667px;
    margin-top: 10.4166666667px;
  }
  .main-event-wrapper__content-item__text .main-date {
    font-size: 11.1111111111px;
    margin-top: 17.3611111111px;
  }
  .main-event-btn {
    justify-content: center;
  }
  .main-event-btn a {
    font-size: 22.2222222222px;
    padding: 13.8888888889px 111.1111111111px;
    margin-bottom: 55.5555555556px;
  }
}
@media screen and (max-width: 430px) {
  .main-event {
    max-width: 430px;
  }
  .main-event-wrapper__title {
    font-size: 20px;
    margin: 50px 0 66px;
    position: relative;
  }
  .main-event-wrapper__title:before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 305px;
    height: 1px;
    background-color: #464646;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-event-wrapper__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 23px;
  }
  .main-event-wrapper__content-item__text .main-title {
    margin-top: 9px;
  }
  .main-event-wrapper__content-item__text .main-status {
    margin-top: 9px;
    margin-left: 0;
  }
  .main-event-wrapper__content-item__text .main-address {
    margin-top: 9px;
  }
  .main-event-wrapper__content-item__text .main-address img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
}
.detail-event {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  letter-spacing: 0.16em;
}
.detail-event-wrapper {
  width: 75%;
  margin: 0 auto;
}
.detail-event-wrapper > h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 20px;
}
.detail-event img {
  cursor: pointer;
}
.detail-event .custom-gallery-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}
.detail-event .custom-gallery-layout-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-event .custom-gallery-layout img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.detail-event__subtitle {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 83px;
}
.detail-event__subtitle-status {
  font-size: 11px;
  width: 126px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1a3076;
  color: white;
}
.detail-event__subtitle-address {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.detail-event__subtitle-address img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.detail-event p {
  line-height: 2;
  margin-bottom: 20px;
}
.detail-event-content .wp-block-image {
  width: 100%;
  object-fit: cover;
  max-width: 800px;
  aspect-ratio: 1.62/1;
  margin: 0 auto;
}
.detail-event-content .wp-block-image img {
  width: 100% !important;
  object-fit: cover;
}
.detail-event-content .has-text-align-center {
  text-align: center;
}
.detail-event-content .wp-block-table {
  margin-top: 156px;
  margin-bottom: 23px;
  font-weight: 400;
  letter-spacing: 0.16em;
}
.detail-event-content .wp-block-table .table-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}
.detail-event-content .wp-block-table table {
  width: 100%;
}
.detail-event-content .wp-block-table tr {
  border-top: 1px solid #1a3076;
}
.detail-event-content .wp-block-table tr:last-child {
  border-bottom: 1px solid #1a3076;
}
.detail-event-content .wp-block-table td {
  width: 50%;
  padding: 30px 0;
  line-height: 2;
  text-align: center;
}
.detail-event-content .wp-block-table td:first-child {
  font-weight: 700;
}
.detail-event-content .wp-block-columns {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.detail-event-content .wp-block-columns .wp-block-column {
  width: calc(50% - 20px);
}
.detail-event-content .wp-block-columns .wp-block-column figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  aspect-ratio: 3/2;
}
.detail-event-content .wp-block-columns .wp-block-column p {
  word-break: break-word;
}
.detail-event-note {
  margin: 105px auto 323px;
  font-size: 16px;
  letter-spacing: 0.16em;
  border: 1px solid #000;
  padding: 23px 32px;
  width: max-content;
}
.detail-event-note > p {
  margin-bottom: 0;
}
.detail-event__btn {
  margin-top: 102px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  place-self: end;
  padding-bottom: 60px;
}
.detail-event__btn-prev a {
  font-size: 16px;
  color: white;
  background: var(--text-color);
  padding: 20px 80px;
  display: block;
  border: 2px solid #444;
  transition: all 0.2s linear;
}
.detail-event__btn-prev a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.detail-event__btn-next a {
  font-size: 16px;
  color: white;
  background: var(--text-color);
  padding: 20px 80px;
  display: block;
  border: 2px solid #444;
  transition: all 0.2s linear;
}
.detail-event__btn-next a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}
.detail-event__btn-back {
  color: initial;
  font-size: 20px;
  border: 1px solid #000;
  padding: 25px 75px;
  width: max-content;
  transition: all 0.2s linear;
}
.detail-event__btn-back:hover {
  background-color: #444;
  border-color: #fff;
  color: #fff;
}
.detail-event__link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 153px;
}
.detail-event__link > a {
  color: #1a3076;
  font-size: 20px;
  font-weight: 400;
  max-width: max-content;
}
.detail-event .event-custom-time {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}
.detail-event-form {
  letter-spacing: 0.16em;
}
.detail-event-form__title {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-top: 125px;
  margin-bottom: 52px;
}
.detail-event-form__content {
  background-color: #f3efe8;
  padding: 80px 102px;
}
.detail-event-form__content__input {
  margin-bottom: 25px;
}
.detail-event-form__content__input > p {
  margin-bottom: 0;
}
.detail-event-form__content__input label {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.detail-event-form__content__input label span {
  color: #ff0303;
}
.detail-event-form__content__input input {
  width: 500px;
  height: 60px;
  padding-left: 10px;
  font-size: 16px;
  border: 1px solid #d9d9d9;
}
.detail-event-form__content__input input[name=address] {
  width: 500px;
}
.detail-event-form__content__input input[name=postCode] {
  width: 300px;
}
.detail-event-form__content__input .wpcf7-radio {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.detail-event-form__content__input .wpcf7-radio input[type=radio] {
  margin-right: 9px;
  width: 20px;
  height: 20px;
}
.detail-event-form__content__input .wpcf7-list-item > label {
  display: flex;
  align-items: center;
}
.detail-event-form__content__input .wpcf7-list-item > label > span {
  color: #000;
}
.detail-event-form__content__input textarea {
  width: 600px;
  height: 250px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #d9d9d9;
}
.detail-event-form__content__input label[for=event_name] {
  margin-bottom: 16px;
}
.detail-event-form__content__input:last-child {
  margin-bottom: 35px;
}
.detail-event-form__content__input .event_time {
  display: flex;
  flex-direction: column;
  gap: 31px;
  font-size: 16px;
}
.detail-event-form__content__input .event_time p a {
  color: gray;
}
.detail-event-form__content__input.select-input {
  margin-left: 50px;
}
.detail-event-form__content__input .event_time-item {
  display: flex;
  align-items: center;
  gap: 27px;
}
.detail-event-form__content__input .event_time-item select {
  width: 172px;
  height: 45px;
  appearance: none;
  outline: none;
  border: 1px solid #d9d9d9;
  text-align: center;
}
.detail-event-form__content__input .event_time-item .wpcf7-form-control-wrap input {
  width: 172px;
  height: 45px;
  padding-left: 10px;
  font-size: 16px;
  border: 1px solid #d9d9d9;
}
.detail-event-form__content__input .event_time-item div p {
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail-event-form__content__input__textarea-message {
  font-size: 20px;
  margin: 20px 0 122px;
}
.detail-event-form__content__select select {
  width: 500px;
  height: 60px;
  padding-left: 10px;
  font-size: 16px;
  border: 1px solid #d9d9d9;
}
.detail-event-form__content .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}
.detail-event-form__content .wpcf7-form-control-wrap[data-name=message] {
  display: inline;
}
.detail-event-form__content .wpcf7-not-valid-tip {
  color: #ff0303;
}
.detail-event-form__content__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 26px;
  margin-top: 100px;
}
.detail-event-form__content__checkbox > p {
  margin-bottom: 0;
}
.detail-event-form__content__checkbox label {
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 17px;
}
.detail-event-form__content__checkbox input {
  width: 30px;
  height: 30px;
}
.detail-event-form__content__checkbox a {
  color: initial;
  text-decoration: underline;
}
.detail-event-form__content__checkbox .wpcf7-form-control-wrap {
  align-items: center;
}
.detail-event-form__content__btn {
  display: flex;
  justify-content: center;
}
.detail-event-form__content__btn > p {
  margin-bottom: 0;
}
.detail-event-form__content__btn button {
  width: 416px;
  height: 66px;
  background-color: #464646;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  letter-spacing: 0.16em;
  transition: all 0.2s linear;
}
.detail-event-form__content__btn button:hover {
  background-color: #fff;
  color: #444;
}

@media screen and (max-width: 1439px) {
  .detail-event-wrapper > h1 {
    font-size: 26.6666666667px;
    margin-top: 41.6666666667px;
    margin-bottom: 16.6666666667px;
  }
  .detail-event__subtitle {
    gap: 16.6666666667px;
    margin-bottom: 69.1666666667px;
  }
  .detail-event__subtitle-status {
    font-size: 9.1666666667px;
    width: 105px;
    height: 20px;
  }
  .detail-event__subtitle-address {
    font-size: 11.6666666667px;
  }
  .detail-event__subtitle-address img {
    width: 25px;
    height: 25px;
  }
  .detail-event p {
    line-height: 1.6666666667;
    margin-bottom: 16.6666666667px;
  }
  .detail-event-content .wp-block-image {
    margin: 0 auto 45px;
  }
  .detail-event-content .wp-block-table {
    margin-top: 130px;
    margin-bottom: 19.1666666667px;
  }
  .detail-event-content .wp-block-table .table-title {
    font-size: 16.6666666667px;
    margin-bottom: 33.3333333333px;
  }
  .detail-event-content .wp-block-table td {
    padding: 25px 0;
    line-height: 1.6666666667;
  }
  .detail-event__btn {
    margin-top: 85px;
    padding-bottom: 50px;
  }
  .detail-event__btn-prev a {
    font-size: 13.3333333333px;
    padding: 16.6666666667px 66.6666666667px;
  }
  .detail-event__btn-next a {
    font-size: 13.3333333333px;
    padding: 16.6666666667px 66.6666666667px;
  }
  .detail-event__btn-back {
    font-size: 16.6666666667px;
    padding: 20.8333333333px 62.5px;
  }
  .detail-event__link {
    gap: 16.6666666667px;
    margin-bottom: 127.5px;
  }
  .detail-event__link > a {
    font-size: 16.6666666667px;
  }
  .detail-event .event-custom-time {
    gap: 33.3333333333px;
    margin-top: 16.6666666667px;
  }
  .detail-event-form__title {
    font-size: 26.6666666667px;
    margin-top: 104.1666666667px;
    margin-bottom: 43.3333333333px;
  }
  .detail-event-form__content {
    padding: 66.6666666667px 85px;
  }
  .detail-event-form__content__input {
    margin-bottom: 53.3333333333px;
  }
  .detail-event-form__content__input label {
    font-size: 13.3333333333px;
    line-height: 25px;
  }
  .detail-event-form__content__input input {
    height: 50px;
    padding-left: 8.3333333333px;
    font-size: 13.3333333333px;
  }
  .detail-event-form__content__input textarea {
    height: 322.5px;
    padding: 8.3333333333px;
    font-size: 13.3333333333px;
  }
  .detail-event-form__content__input label[for=event_name] {
    margin-bottom: 30.8333333333px;
  }
  .detail-event-form__content__input:last-child {
    margin-bottom: 29.1666666667px;
  }
  .detail-event-form__content__input .event_time {
    gap: 25.8333333333px;
    font-size: 13.3333333333px;
  }
  .detail-event-form__content__input .event_time-item {
    gap: 22.5px;
  }
  .detail-event-form__content__input .event_time-item select {
    width: 143.3333333333px;
    height: 37.5px;
  }
  .detail-event-form__content__checkbox {
    gap: 16.6666666667px;
    margin-bottom: 33.3333333333px;
  }
  .detail-event-form__content__checkbox label {
    font-size: 13.3333333333px;
  }
  .detail-event-form__content__checkbox input {
    width: 25px;
    height: 25px;
  }
  .detail-event-form__content__btn button {
    width: 312.5px;
    height: 70px;
    font-size: 16.6666666667px;
  }
}
@media screen and (max-width: 1200px) {
  .detail-event-wrapper > h1 {
    font-size: 22.2222222222px;
    margin-top: 34.7222222222px;
    margin-bottom: 13.8888888889px;
  }
  .detail-event__subtitle {
    gap: 13.8888888889px;
    margin-bottom: 57.6388888889px;
  }
  .detail-event__subtitle-status {
    font-size: 7.6388888889px;
    width: 87.5px;
    height: 16.6666666667px;
  }
  .detail-event__subtitle-address {
    font-size: 9.7222222222px;
  }
  .detail-event__subtitle-address img {
    width: 20.8333333333px;
    height: 20.8333333333px;
  }
  .detail-event p {
    line-height: 1.3888888889;
    margin-bottom: 13.8888888889px;
  }
  .detail-event-content .wp-block-image {
    margin: 0 auto 37.5px;
  }
  .detail-event-content .wp-block-table {
    margin-top: 108.3333333333px;
    margin-bottom: 15.9722222222px;
  }
  .detail-event-content .wp-block-table .table-title {
    font-size: 13.8888888889px;
    margin-bottom: 27.7777777778px;
  }
  .detail-event-content .wp-block-table td {
    padding: 20.8333333333px 0;
    line-height: 1.3888888889;
  }
  .detail-event__btn {
    margin-top: 70.8333333333px;
    padding-bottom: 41.6666666667px;
  }
  .detail-event__btn-prev a {
    font-size: 11.1111111111px;
    padding: 13.8888888889px 55.5555555556px;
  }
  .detail-event__btn-next a {
    font-size: 11.1111111111px;
    padding: 13.8888888889px 55.5555555556px;
  }
  .detail-event__btn-back {
    font-size: 13.8888888889px;
    padding: 17.3611111111px 52.0833333333px;
  }
  .detail-event__link {
    gap: 13.8888888889px;
    margin-bottom: 106.25px;
  }
  .detail-event__link > a {
    font-size: 13.8888888889px;
  }
  .detail-event .event-custom-time {
    gap: 27.7777777778px;
    margin-top: 13.8888888889px;
  }
  .detail-event-form__title {
    font-size: 22.2222222222px;
    margin-top: 86.8055555556px;
    margin-bottom: 36.1111111111px;
  }
  .detail-event-form__content {
    padding: 55.5555555556px 70.8333333333px;
  }
  .detail-event-form__content__input {
    margin-bottom: 44.4444444444px;
  }
  .detail-event-form__content__input label {
    font-size: 11.1111111111px;
    line-height: 20.8333333333px;
  }
  .detail-event-form__content__input input {
    height: 41.6666666667px;
    padding-left: 6.9444444444px;
    font-size: 11.1111111111px;
  }
  .detail-event-form__content__input textarea {
    height: 268.75px;
    padding: 6.9444444444px;
    font-size: 11.1111111111px;
  }
  .detail-event-form__content__input label[for=event_name] {
    margin-bottom: 25.6944444444px;
  }
  .detail-event-form__content__input:last-child {
    margin-bottom: 24.3055555556px;
  }
  .detail-event-form__content__input .event_time {
    gap: 21.5277777778px;
    font-size: 11.1111111111px;
  }
  .detail-event-form__content__input .event_time-item {
    gap: 18.75px;
  }
  .detail-event-form__content__input .event_time-item select {
    width: 119.4444444444px;
    height: 31.25px;
  }
  .detail-event-form__content__checkbox {
    gap: 13.8888888889px;
    margin-bottom: 27.7777777778px;
  }
  .detail-event-form__content__checkbox label {
    font-size: 11.1111111111px;
  }
  .detail-event-form__content__checkbox input {
    width: 20.8333333333px;
    height: 20.8333333333px;
  }
  .detail-event-form__content__btn button {
    width: 260.4166666667px;
    height: 58.3333333333px;
    font-size: 13.8888888889px;
  }
}
@media screen and (max-width: 430px) {
  .detail-event {
    max-width: 430px;
  }
  .detail-event-wrapper {
    width: 80%;
    padding: 0;
  }
  .detail-event-wrapper > h1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .detail-event .custom-gallery-layout {
    grid-template-columns: repeat(2, 1fr);
    display: none;
  }
  .detail-event__subtitle {
    flex-direction: column;
    margin-bottom: 30px;
    gap: 10px;
  }
  .detail-event__subtitle > p {
    margin-bottom: 0 !important;
  }
  .detail-event p {
    line-height: 2;
    margin-bottom: 0px;
    font-size: 14px !important;
  }
  .detail-event-content iframe {
    width: 100%;
  }
  .detail-event-content .wp-block-image {
    width: 100%;
    object-fit: cover;
    max-width: 700px;
    aspect-ratio: 1/1;
    margin: 0 auto 54px;
  }
  .detail-event-content .wp-block-image img {
    width: 100% !important;
    object-fit: cover;
  }
  .detail-event-content .has-text-align-center {
    text-align: center;
  }
  .detail-event-content .wp-block-table {
    margin-top: 156px;
    margin-bottom: 23px;
    font-weight: 400;
    letter-spacing: 0.16em;
  }
  .detail-event-content .wp-block-table .table-title {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
  }
  .detail-event-content .wp-block-table table {
    width: 100%;
  }
  .detail-event-content .wp-block-table tr {
    border-top: 1px solid #1a3076;
  }
  .detail-event-content .wp-block-table tr:last-child {
    border-bottom: 1px solid #1a3076;
  }
  .detail-event-content .wp-block-table td {
    width: 50%;
    padding: 30px 0;
    line-height: 2;
    text-align: center;
    font-size: 12px;
  }
  .detail-event-content .wp-block-table td:first-child {
    font-weight: 700;
  }
  .detail-event-content .wp-block-columns {
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
  }
  .detail-event-content .wp-block-columns .wp-block-column {
    width: calc(50% - 20px);
  }
  .detail-event-content .wp-block-columns .wp-block-column > .wp-block-image {
    margin: 0;
  }
  .detail-event__link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 153px;
  }
  .detail-event__link > a {
    color: #1a3076;
    font-size: 20px;
    font-weight: 400;
    max-width: max-content;
  }
  .detail-event .event-custom-time {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .detail-event-note {
    margin: 35px auto 107px;
    font-size: 14px;
    padding: 23px 32px;
    max-width: 100%;
  }
  .detail-event-note > p {
    margin-bottom: 0;
  }
  .detail-event__btn {
    margin-top: 313px;
    display: flex;
    place-items: center;
    justify-content: space-between;
    padding-bottom: 26px;
  }
  .detail-event__btn-prev {
    justify-self: left;
  }
  .detail-event__btn-prev a {
    font-size: 12px;
    padding: 8px 18px;
    display: block;
  }
  .detail-event__btn-next {
    justify-self: right;
  }
  .detail-event__btn-next a {
    font-size: 12px;
    padding: 8px 18px;
    display: block;
  }
  .detail-event .sp-btn__back {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 80px;
  }
  .detail-event .sp-btn__back-link {
    color: initial;
    font-size: 14px;
    border: 1px solid #000;
    width: 232px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .detail-event-form__title {
    font-size: 20px;
    margin-top: 72px;
    margin-bottom: 25px;
  }
  .detail-event-form__content {
    padding: 10px;
    border: 1px solid #000;
    width: 110%;
    margin-left: -5%;
  }
  .detail-event-form__content__input {
    margin-bottom: 10px;
  }
  .detail-event-form__content__input label {
    font-size: 14px;
    line-height: 30px;
  }
  .detail-event-form__content__input label span {
    color: #ff0303;
  }
  .detail-event-form__content__input input {
    width: 100%;
    height: 30px;
    font-size: 12px;
  }
  .detail-event-form__content__input input[name=postCode] {
    width: 100%;
  }
  .detail-event-form__content__input input[name=address] {
    width: 100%;
  }
  .detail-event-form__content__input .wpcf7-radio {
    flex-direction: column;
    gap: 0;
  }
  .detail-event-form__content__input .wpcf7-radio input[type=radio] {
    height: 15px;
  }
  .detail-event-form__content__input .wpcf7-list-item > label {
    display: flex;
    align-items: center;
  }
  .detail-event-form__content__input .wpcf7-list-item > label > span {
    color: #000;
  }
  .detail-event-form__content__input textarea {
    height: 150px;
    width: 100%;
  }
  .detail-event-form__content__input label[for=event_name] {
    margin-bottom: 0;
  }
  .detail-event-form__content__input:last-child {
    margin-bottom: 10px;
  }
  .detail-event-form__content__input.select-input {
    margin-left: 0;
  }
  .detail-event-form__content__input .event_time {
    gap: 10px;
    font-size: 12px;
  }
  .detail-event-form__content__input .event_time-item {
    gap: 10px;
    flex-direction: column;
    align-items: start;
  }
  .detail-event-form__content__input .event_time-item > div {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .detail-event-form__content__input .event_time-item > div p {
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .detail-event-form__content__input .event_time-item select {
    width: 172px;
    height: 30px;
  }
  .detail-event-form__content__input .event_time-item .wpcf7-form-control-wrap input {
    width: 172px;
    height: 30px;
  }
  .detail-event-form__content__input__textarea-message {
    font-size: 20px;
    margin: 10px 0 40px;
  }
  .detail-event-form__content__select select {
    width: 100%;
    height: 30px;
    font-size: 12px;
  }
  .detail-event-form__content__checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 25px;
  }
  .detail-event-form__content__checkbox label {
    font-size: 14px;
  }
  .detail-event-form__content__checkbox input {
    width: 15px;
    height: 15px;
  }
  .detail-event-form__content__checkbox .wpcf7-form-control-wrap {
    align-items: start;
  }
  .detail-event-form__content__btn button {
    width: 290px;
    height: 40px;
    font-size: 16px;
  }
  .wp-block-gallery__title {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    margin-top: 68px;
  }
  .wp-block-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    margin: 30px 0 78px;
  }
  .wp-block-gallery .wp-block-image {
    margin: 0;
  }
  .wp-block-gallery .wp-block-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    margin: 0;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 360px) {
  .detail-event-form__title {
    font-size: 19.2307692308px;
    margin-top: 69.2307692308px;
    margin-bottom: 24.0384615385px;
  }
  .detail-event-form__content {
    padding: 9.6153846154px;
  }
  .detail-event-form__content__input {
    margin-bottom: 9.6153846154px;
  }
  .detail-event-form__content__input label {
    font-size: 13.4615384615px;
    line-height: 28.8461538462px;
  }
  .detail-event-form__content__input label span {
    color: #ff0303;
  }
  .detail-event-form__content__input input {
    width: 96.1538461538%;
    height: 28.8461538462px;
    font-size: 13.4615384615px;
  }
  .detail-event-form__content__input input[name=postCode] {
    width: 96.1538461538%;
  }
  .detail-event-form__content__input textarea {
    height: 144.2307692308px;
  }
  .detail-event-form__content__input label[for=event_name] {
    margin-bottom: 0;
  }
  .detail-event-form__content__input:last-child {
    margin-bottom: 9.6153846154px;
  }
  .detail-event-form__content__input .event_time {
    gap: 9.6153846154px;
    font-size: 13.4615384615px;
  }
  .detail-event-form__content__input .event_time-item {
    gap: 9.6153846154px;
    flex-direction: column;
    align-items: start;
  }
  .detail-event-form__content__input .event_time-item > div {
    display: flex;
    gap: 9.6153846154px;
    flex-direction: column;
  }
  .detail-event-form__content__input .event_time-item select {
    width: 165.3846153846px;
    height: 28.8461538462px;
  }
  .detail-event-form__content__checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9.6153846154px;
    margin-bottom: 19.2307692308px;
  }
  .detail-event-form__content__checkbox label {
    font-size: 13.4615384615px;
  }
  .detail-event-form__content__checkbox input {
    width: 14.4230769231px;
    height: 14.4230769231px;
  }
  .detail-event-form__content__btn button {
    width: 278.8461538462px;
    height: 38.4615384615px;
    font-size: 15.3846153846px;
  }
}
.concept {
  margin-top: -25px;
}
.concept-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.main-thank {
  display: flex;
  justify-content: center;
  color: #000;
  text-align: center;
  letter-spacing: 0.16em;
}
.main-thank__title {
  font-size: 32px;
  margin-bottom: 50px;
  margin-top: 5px;
}
.main-thank__subtitle {
  font-size: 16px;
  margin-bottom: 159px;
  line-height: 2;
}
.main-thank__btn {
  display: flex;
  justify-content: center;
  margin-bottom: 407px;
}
.main-thank__btn a {
  width: 261px;
  height: 63px;
  background-color: #464646;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #444;
  transition: all 0.2s linear;
}
.main-thank__btn a:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}

@media screen and (max-width: 1439px) {
  .main-thank__title {
    font-size: 26.6666666667px;
    margin-bottom: 41.6666666667px;
    margin-top: 4.1666666667px;
  }
  .main-thank__subtitle {
    font-size: 13.3333333333px;
    margin-bottom: 132.5px;
    line-height: 1.6666666667;
  }
  .main-thank__btn {
    margin-bottom: 339.1666666667px;
  }
  .main-thank__btn a {
    width: 217.5px;
    height: 52.5px;
    font-size: 13.3333333333px;
  }
}
@media screen and (max-width: 1200px) {
  .main-thank__title {
    font-size: 22.2222222222px;
    margin-bottom: 34.7222222222px;
    margin-top: 3.4722222222px;
  }
  .main-thank__subtitle {
    font-size: 11.1111111111px;    
    margin-bottom: 110.4166666667px;
    line-height: 1.3888888889;
  }
  .main-thank__btn {
    margin-bottom: 282.6388888889px;
  }
  .main-thank__btn a {
    width: 181.25px;
    height: 43.75px;
    font-size: 11.1111111111px;
  }
}
/** Add custom styles here to override fixed.css file styles**/
/* button top link 404 page styles */
.top-link {
  /* add border add transition for smooth hover */
  border: 1px solid #444;
  transition: all 0.2s linear;
}

/* Add hover for top-link*/
.top-link:hover {
  background-color: #fff;
  border-color: #444;
  color: #444;
}

/* button reform page style */
.section-reform__link {
  /* add border add transition for smooth hover */
  transition: all 0.2s linear;
}

.section-reform__link:hover {
  background-color: #444;
  border-color: #fff;
  color: #fff;
}

/** Add custom styles here to override fixed.css file styles**/

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