@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

strong, p, h1, h2, h3 {
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

html, body {
  height: 100%;
}

body {
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1c1d1e;
}

img {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.font-pp {
  font-family: "Poppins", sans-serif;
}

.font-os {
  font-family: "Oswald", sans-serif;
}

.main-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/main-bg.png) center top;
}
@media only screen and (min-width: 1921px) {
  .main-bg {
    background-size: cover;
  }
}
@media only screen and (max-width: 768px) {
  .main-bg {
    background: url(../images/main-bg-sp.png) center top;
    background-size: cover;
  }
}

.wrapper {
  display: flex;
}

.main-contents {
  position: relative;
  width: calc(100% - 200px);
}

section {
  padding-top: 80px;
}
section > h2 {
  position: relative;
  margin-left: 0.2em;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}
section > h2::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translate3d(-50%, 0, 0);
  width: 58px;
  height: 1px;
  background: #0093d0;
}
section .section-contents {
  margin: 60px auto 0;
  max-width: 800px;
  width: calc(100% - 60px);
}

.common-frame {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(99, 107, 112, 0.1);
  box-sizing: border-box;
  backdrop-filter: blur(4px);
}

.common-button {
  position: relative;
  border: solid 1px #1c1d1e;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 30px rgba(99, 107, 112, 0.3);
  z-index: 1;
}
.common-button::before, .common-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #7f8284;
  z-index: -2;
  transition: width 0.5s ease;
}
.common-button::before {
  transition-delay: 0.1s;
}
.common-button::after {
  background: #1c1d1e;
  z-index: -1;
  transition-delay: 0;
}
.common-button .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.common-button p {
  margin-left: 0.2em;
  letter-spacing: 0.2em;
  transition: color 0.5s;
}
.common-button:hover::before, .common-button:hover::after {
  width: 100%;
}
.common-button:hover::before {
  transition-delay: 0;
}
.common-button:hover::after {
  transition-delay: 0.2s;
}
.common-button:hover p {
  color: #fff;
}
.common-button.button-black {
  color: #fff;
  background: #1c1d1e;
}
.common-button.button-black::after {
  background: #fff;
}
.common-button.button-black .button-arrow {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate3d(0, -50%, 0);
  width: 15px;
  height: 18px;
}
.common-button.button-black .button-arrow svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(-1, 1);
  width: 9px;
  fill: #fff;
  transition: fill 0.3s, transform 0.5s;
}
.common-button.button-black .button-arrow svg:last-child {
  left: 6px;
  transition-delay: 0.1s;
}
.common-button.button-black:hover p {
  color: #1c1d1e;
}
.common-button.button-black:hover .button-arrow svg {
  fill: #1c1d1e;
  transform: scale(-1, 1) translate3d(8px, 0, 0) rotateX(360deg);
}

@media only screen and (min-width: 769px) {
  .page-top .wrapper {
    display: block;
    height: 100%;
  }
  .page-top .main-contents {
    width: 100%;
    height: calc(100% - 165px);
  }
}
.sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    height: 100%;
  }
  .main-contents {
    width: 100%;
    height: 100%;
  }
  .pc {
    display: none;
  }
  .page-top .main-contents {
    height: calc(100% - 105px);
  }
  section h2 {
    font-size: 45px;
  }
  section .section-contents {
    width: 90%;
  }
  .common-button.button-black .button-arrow {
    left: 10px;
    width: 20px;
    height: 25px;
  }
  .common-button.button-black .button-arrow svg {
    width: 13px;
  }
  .common-button.button-black .button-arrow svg:last-child {
    left: 6px;
  }
}
header {
  position: relative;
  padding: 30px 20px 0;
  width: 200px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(99, 107, 112, 0.1);
  box-sizing: border-box;
  backdrop-filter: blur(4px);
}
header h1 {
  transition: opacity 0.3s;
}
header h1:hover {
  opacity: 0.5;
}
header nav {
  margin-top: 50px;
}
header nav .menu-list .menu-item {
  width: 100%;
  height: 50px;
  letter-spacing: 0.2em;
  transition: font-weight 0.3s;
}
header nav .menu-list .menu-item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}
header nav .menu-list .menu-item a p {
  position: relative;
}
header nav .menu-list .menu-item a p::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translate3d(-50%, 0, 0);
  width: 0px;
  height: 1px;
  background: #0093d0;
  transition: width 0.3s ease;
}
header nav .menu-list .menu-item.active {
  font-weight: 700;
  pointer-events: none;
}
header nav .menu-list .menu-item.active a p::before {
  width: calc(100% + 10px);
}
header nav .menu-list .menu-item:hover {
  font-weight: 700;
}
header nav .menu-list .menu-item:hover a p::before {
  width: calc(100% + 10px);
}

@media only screen and (min-width: 769px) {
  .page-top header {
    padding: 0;
    width: 100%;
    height: 60px;
  }
  .page-top header h1 {
    display: none;
  }
  .page-top header nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    height: 100%;
  }
  .page-top header nav .menu-list {
    display: flex;
    height: 100%;
  }
  .page-top header nav .menu-list .menu-item {
    width: auto;
    height: 100%;
  }
  .page-top header nav .menu-list .menu-item a {
    padding: 0 22px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 0 15px;
    width: 100%;
    height: 60px;
    z-index: 1000;
  }
  header h1 {
    margin-top: 13px;
    width: 166px;
  }
  header nav {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
  header nav .menu-list .menu-item p {
    margin-left: 0.2em;
  }
  header .menu-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
  }
  header .menu-button .menu-button-line-container {
    position: relative;
    width: 30px;
    height: 11px;
  }
  header .menu-button .menu-button-line-container .menu-button-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #0093d0;
  }
  header .menu-button .menu-button-line-container .menu-button-line:first-child {
    top: 0;
  }
  header .menu-button .menu-button-line-container .menu-button-line:last-child {
    bottom: 0;
  }
  header.open {
    height: 100vh;
  }
  header.open nav {
    display: block;
    margin: 0;
  }
  header.open nav .menu-list .menu-item {
    height: 60px;
  }
  header.open nav .menu-list .menu-item a {
    justify-content: center;
    font-size: 22px;
  }
}
footer {
  position: sticky;
  top: 100vh;
  margin-top: 150px;
  color: #fff;
  background: linear-gradient(to right, #0e3a84 0%, #050910 100%);
}
footer .top-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #1c1d1e;
  box-shadow: 0 0 30px rgba(99, 107, 112, 0.1);
  letter-spacing: 0.2em;
}
footer .top-button a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 100%;
}
footer .top-button .arrow {
  position: relative;
  width: 18px;
  height: 15px;
}
footer .top-button .arrow img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  transition: transform 0.5s ease;
}
footer .top-button .arrow img:last-child {
  top: 6px;
  transition-delay: 0.1s;
}
footer .top-button p {
  margin-left: 0.1em;
  transition: opacity 0.3s;
}
footer .top-button:hover .arrow img {
  transform: translate3d(-50%, -5px, 0) rotateY(360deg);
}
footer .top-button:hover p {
  opacity: 0.5;
}
footer .footer-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  height: 105px;
  box-sizing: border-box;
}
footer .footer-contents .privacypolicy {
  font-size: 13px;
  font-weight: 700;
}
footer .footer-contents .privacypolicy a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
footer .footer-contents .privacypolicy a:hover {
  opacity: 0.5;
}
footer .footer-contents .credit {
  margin-left: -0.2em;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.page-top footer {
  margin-top: 0;
}

.page-contact footer .top-button {
  bottom: 90px;
}

.mainvisual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.mainvisual img {
  max-width: 100%;
  width: auto;
}

@media only screen and (max-width: 768px) {
  .mainvisual {
    padding-top: 30px;
    box-sizing: border-box;
  }
  .mainvisual img {
    max-width: 286px;
  }
}
.news .news-container .news-list .news-item a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 30px 40px;
  box-sizing: border-box;
}
.news .news-container .news-list .news-item a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: calc(100% - 80px);
  height: 1px;
  background: #c4e2ee;
}
.news .news-container .news-list .news-item a .date {
  margin-bottom: 5px;
  font-size: 13px;
  letter-spacing: 0.2em;
  transition: opacity 0.3s;
}
.news .news-container .news-list .news-item a .title {
  line-height: 1.5em;
  transition: opacity 0.3s;
}
.news .news-container .news-list .news-item a .news-title-container {
  width: calc(100% - 60px);
}
.news .news-container .news-list .news-item a .news-arrow {
  position: relative;
  width: 60px;
  height: 100%;
}
.news .news-container .news-list .news-item a .news-arrow img {
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 14px;
  transition: transform 0.5s ease;
}
.news .news-container .news-list .news-item a .news-arrow img:first-child {
  left: calc(50% - 3px);
  transition-delay: 0.1s;
}
.news .news-container .news-list .news-item a .news-arrow img:last-child {
  left: calc(50% + 3px);
}
.news .news-container .news-list .news-item a:hover .date {
  opacity: 0.5;
}
.news .news-container .news-list .news-item a:hover .title {
  opacity: 0.5;
}
.news .news-container .news-list .news-item a:hover .news-arrow img {
  transform: translate3d(calc(-50% + 10px), -50%, 0) rotateX(360deg);
}
.news .news-container .news-list .news-item:last-child a::after {
  display: none;
}
.news .pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.news .pagination .common-button {
  padding-top: 0.1em;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
}
.news .pagination .common-button.active {
  color: #fff;
  background: #1c1d1e;
  pointer-events: none;
}
.news .pagination .common-button.off {
  opacity: 0.1;
  pointer-events: none;
}
.news .pagination .common-button img {
  width: 9px;
}
.news .pagination .num-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.news .pagination .num-container.sp {
  display: none;
}
.news .pagination .prev-button img {
  transform: scale(-1, 1);
}

@media only screen and (max-width: 768px) {
  .news .news-container .news-list .news-item a {
    padding: 30px 0 30px 20px;
  }
  .news .news-container .news-list .news-item a::after {
    width: calc(100% - 40px);
  }
  .news .pagination .common-button {
    width: 60px;
    height: 60px;
  }
  .news .pagination .common-button img {
    width: 14px;
  }
  .news .pagination .num-container.pc {
    display: none;
  }
  .news .pagination .num-container.sp {
    display: flex;
    width: 160px;
    font-size: 20px;
  }
}
.article-container {
  padding: 30px 40px;
}
.article-container .article-title-container {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  box-sizing: border-box;
}
.article-container .article-title-container .date {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0.2em;
}
.article-container .article-title-container .title {
  font-size: 25px;
  line-height: 1.2em;
}
.article-container .article-title-container::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #c4e2ee;
}
.article-container .article-text p, .article-container .article-text h1, .article-container .article-text h2, .article-container .article-text h3, .article-container .article-text blockquote, .article-container .article-text .yt, .article-container .article-text img {
  margin-bottom: 20px;
}
.article-container .article-text p {
  line-height: 1.5em;
}
.article-container .article-text p a {
  font-weight: 900;
  color: #0093d0;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.article-container .article-text p a:hover {
  opacity: 0.5;
}
.article-container .article-text h1, .article-container .article-text h2, .article-container .article-text h3 {
  font-weight: 900;
  line-height: 1.2em;
}
.article-container .article-text h1 {
  font-size: 25px;
  color: #0093d0;
}
.article-container .article-text h2 {
  font-size: 20px;
}
.article-container .article-text h3 {
  font-size: 18px;
}
.article-container .article-text img {
  max-width: 100%;
  width: auto;
}
.article-container .article-text img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.article-container .article-text img.alignright {
  margin-left: auto;
}
.article-container .article-text .yt {
  position: relative;
  width: 100%;
}
.article-container .article-text .yt::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.article-container .article-text .yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.article-container .article-text blockquote {
  padding: 20px;
  background: #e8f6fb;
  box-sizing: border-box;
}
.article-container .article-text blockquote *:last-child {
  margin-bottom: 0;
}

.back-button {
  margin: 60px auto 0;
  width: 250px;
  height: 40px;
}
.back-button::before, .back-button::after {
  left: initial;
  right: 0;
}

@media only screen and (max-width: 768px) {
  .article-container {
    padding: 30px 20px;
  }
  .article-container .article-title-container .title {
    font-size: 20px;
  }
  .article-container .article-text p {
    font-size: 14px;
  }
  .article-container .article-text h1 {
    font-size: 20px;
  }
  .article-container .article-text h2 {
    font-size: 18px;
  }
  .article-container .article-text h3 {
    font-size: 16px;
  }
  .back-button {
    width: 90%;
    height: 60px;
  }
  .back-button .inner p {
    font-size: 20px;
  }
}
.promotion {
  padding-bottom: 150px;
  overflow: hidden;
  box-sizing: border-box;
}
.promotion .age-container {
  margin-bottom: 30px;
}
.promotion .age-container .swiper-wrapper {
  gap: 10px;
}
.promotion .age-container .age-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 1;
  letter-spacing: 0.2em;
  height: 40px;
  cursor: pointer;
}
.promotion .age-container .age-tab p {
  margin-left: 0.4em;
}
.promotion .age-container .age-tab.swiper-slide-thumb-active {
  color: #fff;
  background: #1c1d1e;
}
.promotion .promotion-container {
  padding: 30px 40px;
}
.promotion .promotion-container .promotion-box.swiper-slide-active {
  display: block;
}
.promotion .promotion-container .promotion-box h3 {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}
.promotion .promotion-container .promotion-box h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c4e2ee;
}

.page-promotion footer {
  margin: 0;
}

.pro-list .pro-item {
  margin-bottom: 40px;
}
.pro-list .pro-item .title {
  margin-bottom: 3px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2em;
}
.pro-list .pro-item .content {
  margin-bottom: 10px;
  font-weight: 500;
}
.pro-list .pro-item .content a {
  font-weight: 900;
  color: #0093d0;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.pro-list .pro-item .content a:hover {
  opacity: 0.5;
}
.pro-list .pro-item img {
  max-width: 400px;
}

@media only screen and (max-width: 768px) {
  .promotion .section-contents {
    width: 100%;
    overflow: hidden;
  }
  .promotion .age-container {
    margin: 0 auto 30px;
    width: 90%;
  }
  .promotion .age-container .swiper-wrapper {
    gap: 0;
  }
  .promotion .age-container .age-tab {
    flex-shrink: 0;
    width: 144px;
    height: 60px;
  }
  .promotion .promotion-container {
    padding: 30px 20px;
    margin: 0 auto;
    width: 90%;
  }
  .page-promotion .promotion .section-contents {
    padding-bottom: 150px;
  }
  .page-promotion footer {
    margin-top: 0;
  }
  .pro-list .pro-item .title {
    font-size: 16px;
  }
  .pro-list .pro-item .content {
    font-size: 14px;
  }
}
.production .production-container {
  padding: 30px 40px;
}

@media only screen and (max-width: 768px) {
  .production .production-container {
    padding: 30px 20px;
  }
}
.company .company-container {
  padding: 0 40px 30px;
}
.company .company-container .company-item {
  padding: 30px 0;
  border-bottom: solid 1px #c4e2ee;
  box-sizing: border-box;
}
.company .company-container .company-item:last-child {
  position: relative;
  padding: 0;
  height: 84px;
  transition: height 0.8s ease;
  overflow: hidden;
}
.company .company-container .company-item:last-child .item-name {
  position: relative;
  padding: 30px 0;
  margin: 0;
  width: 100%;
  height: 84px;
  box-sizing: border-box;
  cursor: pointer;
}
.company .company-container .company-item:last-child .item-name::after {
  content: "";
  display: block;
  position: absolute;
  top: 38px;
  right: 10px;
  width: 18px;
  height: 9px;
  background: url(../images/company-arrow.svg);
  background-size: 100% 100%;
  transition: transform 0.3s ease;
}
.company .company-container .company-item:last-child .item-list {
  position: absolute;
  top: calc(35px + 1.2em);
  left: 0;
  opacity: 0;
  pointer-events: 0;
  transition: opacity 0.3s;
}
.company .company-container .company-item:last-child.open .item-name::after {
  transform: rotate(180deg);
}
.company .company-container .company-item:last-child.open .item-list {
  opacity: 1;
  pointer-events: initial;
}
.company .company-container .item-name {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 900;
}
.company .company-container .item-content {
  font-size: 15px;
  line-height: 1.5em;
}

@media only screen and (max-width: 768px) {
  .company .company-container {
    padding: 0 20px 30px;
  }
  .company .company-container .company-item:last-child {
    height: 76px;
  }
  .company .company-container .company-item:last-child .item-name {
    height: 76px;
  }
  .company .company-container .company-item:last-child .item-name::after {
    top: 34px;
  }
  .company .company-container .company-item:last-child .item-list {
    top: calc(65px + 1.2em);
  }
  .company .company-container .item-name {
    font-size: 16px;
  }
  .company .company-container .item-content {
    font-size: 14px;
  }
}
.recruit .occupation-container .occupation-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.2em;
  height: 40px;
  font-weight: 700;
  letter-spacing: 0.2em;
  box-sizing: border-box;
  cursor: pointer;
}
.recruit .occupation-container .occupation-tab.swiper-slide-thumb-active {
  color: #fff;
  background: #1c1d1e;
  pointer-events: none;
}
.recruit .recruit-container {
  padding: 30px 40px;
  margin-top: 60px;
}
.recruit .recruit-container h3 {
  padding-bottom: 30px;
  font-size: 25px;
  color: #0093d0;
  font-weight: 900;
  border-bottom: solid 1px #c4e2ee;
  box-sizing: border-box;
}
.recruit .recruit-container .recruit-text h4 {
  margin: 30px 0 5px;
  font-size: 18px;
  font-weight: 900;
}
.recruit .recruit-container .recruit-text p {
  line-height: 1.5em;
}
.recruit .recruit-container .off {
  min-height: 400px;
}
.recruit .recruit-container .off .recruit-text {
  padding-top: 30px;
}
.recruit .recruit-container .off .recruit-text h4, .recruit .recruit-container .off .recruit-text p {
  display: none;
}
.recruit .recruit-container .off .recruit-text::after {
  content: "現在募集は受け付けておりません";
}

@media only screen and (max-width: 768px) {
  .recruit .occupation-container .occupation-tab {
    height: 60px;
    font-size: 20px;
  }
  .recruit .recruit-container {
    padding: 30px 20px;
  }
}
.contact .contact-container {
  padding: 30px 40px;
}
.contact .contact-container .contact-text {
  border-bottom: solid 1px #c4e2ee;
  box-sizing: border-box;
}
.contact .contact-container .contact-text p {
  margin-bottom: 30px;
  line-height: 1.5em;
}
.contact .contact-container .contact-text p .required {
  color: #ff5aa0;
}
.contact .contact-container .contact-form {
  margin: 0 auto;
  max-width: 390px;
  width: 100%;
}
.contact .contact-container .contact-form label, .contact .contact-container .contact-form input {
  display: block;
}
.contact .contact-container .contact-form label {
  margin: 30px 0 10px;
  font-size: 18px;
  font-weight: 900;
}
.contact .contact-container .contact-form label.required::after {
  content: "*";
  color: #ff5aa0;
}
.contact .contact-container .contact-form input, .contact .contact-container .contact-form .select, .contact .contact-container .contact-form textarea {
  padding: 0 15px;
  width: 100%;
  height: 40px;
  border: solid 1px #1c1d1e;
  border-radius: 0;
  box-sizing: border-box;
}
.contact .contact-container .contact-form .select {
  position: relative;
  padding: 0;
  border: none;
  transition: height 0.3s ease;
}
.contact .contact-container .contact-form .select .clickboard {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.contact .contact-container .contact-form .select::before {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  right: 10px;
  width: 18px;
  height: 9px;
  background: url(../images/contact-arrow.svg);
  background-size: 100% 100%;
  z-index: 8;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.contact .contact-container .contact-form .select::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #1c1d1e;
  pointer-events: none;
  z-index: 10;
}
.contact .contact-container .contact-form .select .wpcf7-form-control-wrap {
  display: block;
  position: static;
}
.contact .contact-container .contact-form .select input {
  display: none;
  pointer-events: none;
}
.contact .contact-container .contact-form .select label, .contact .contact-container .contact-form .select .wpcf7-list-item {
  display: flex;
  align-items: center;
  position: absolute;
  top: 1px;
  left: 1px;
  padding-left: 15px;
  margin: 0;
  width: 100%;
  height: 40px;
  font-size: 15px;
  font-weight: 400;
  background: #fff;
  box-sizing: border-box;
  z-index: 1;
  transition: top 0.3s ease;
}
.contact .contact-container .contact-form .select label:hover, .contact .contact-container .contact-form .select .wpcf7-list-item:hover {
  background: #c4e2ee;
}
.contact .contact-container .contact-form .select label.active, .contact .contact-container .contact-form .select .wpcf7-list-item.active {
  z-index: 5;
}
.contact .contact-container .contact-form .select.open {
  height: 160px;
}
.contact .contact-container .contact-form .select.open .clickboard {
  pointer-events: none;
}
.contact .contact-container .contact-form .select.open .wpcf7-list-item:nth-of-type(2) {
  top: 40px;
}
.contact .contact-container .contact-form .select.open .wpcf7-list-item:nth-of-type(3) {
  top: 80px;
}
.contact .contact-container .contact-form .select.open .wpcf7-list-item:nth-of-type(4) {
  top: 120px;
}
.contact .contact-container .contact-form .select.open::before {
  transform: rotate(180deg);
}
.contact .contact-container .contact-form .select.open #inquiry + label {
  top: 40px;
}
.contact .contact-container .contact-form .select.open #consultation + label {
  top: 80px;
}
.contact .contact-container .contact-form .select.open #other + label {
  top: 120px;
}
.contact .contact-container .contact-form textarea {
  padding: 10px 15px;
  min-height: 250px;
}
.contact .submit-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}
.contact .submit-container > p {
  max-width: 390px;
  width: 100%;
}
.contact .submit-check input {
  display: none;
}
.contact .submit-check .checkmark {
  position: relative;
  width: 20px;
  height: 20px;
  border: solid 1px #1c1d1e;
  box-sizing: border-box;
}
.contact .submit-check .checkmark::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../images/checkmark.svg);
  background-size: 100% 100%;
  opacity: 0;
}
.contact .submit-check label .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact .submit-check input[type=checkbox]:checked + .wpcf7-list-item-label .checkmark::before {
  opacity: 1;
}
.contact .submit-button {
  padding-left: 0.2em;
  max-width: 390px;
  width: 100%;
  height: 40px;
  font-weight: 700;
  letter-spacing: 0.2em;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.contact .submit-button:hover {
  background: #fff;
  color: #1c1d1e;
}

.wpcf7 .wpcf7-submit:disabled:hover {
  background: #1c1d1e;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .contact .contact-container {
    padding: 30px 20px;
  }
  .contact .contact-container .contact-text p {
    font-size: 14px;
  }
  .contact .contact-container .contact-form label {
    font-size: 16px;
  }
  .contact .contact-container .contact-form input, .contact .contact-container .contact-form textarea {
    font-size: 16px;
  }
  .contact .submit-button {
    height: 60px;
    font-size: 18px;
  }
}
.privacy .privacy-container {
  padding: 30px 40px;
  box-sizing: border-box;
}
.privacy .privacy-container p {
  line-height: 1.5em;
  margin-bottom: 30px;
  word-wrap: break-word;
}
.privacy .privacy-container p a {
  font-weight: 900;
  color: #0093d0;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .privacy .privacy-container {
    padding: 30px 20px;
  }
  .privacy .privacy-container p {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */