.loader {
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F8F2E5;
  opacity: 1;
  visibility: visible;
  z-index: 100;
  transition: all 0.5s;
}
.loader-text {
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
}
.loader-text p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.loader-text p img {
  width: max(35px, 2vw);
  opacity: 0;
}
@media screen and (max-width: 1240px) {
  .loader-text {
    font-size: max(20px, 1vw);
  }
}
.loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}
.loader #loaderSkip {
  color: #1C305E;
  font-size: 24px;
  background-color: transparent;
  border: none;
  position: absolute;
  bottom: 40px;
  right: 40px;
  padding-right: 20px;
}
.loader #loaderSkip::after {
  content: "";
  position: absolute;
  display: block;
  border-top: 2px solid #1C305E;
  border-right: 2px solid #1C305E;
  width: 10px;
  height: 10px;
  top: 55%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 899px) {
  .loader #loaderSkip #loaderSkip {
    font-size: 14px;
    bottom: 15px;
    right: 15px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media screen and (max-width: 899px) {
  html {
    scroll-padding-top: 60px;
  }
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #434243;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-size: 18px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 1240px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 899px) {
  body {
    font-size: 15px;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.header {
  position: absolute;
  width: 0;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  opacity: 1;
  transition: all 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1680px) {
  .header-inner {
    max-width: 1680px;
    margin: 0 auto;
  }
}
.header-logo {
  margin-left: 40px;
  margin-right: 7%;
  max-width: 210px;
  opacity: 0;
  transition: all 0.3s;
}
.header nav {
  width: 70%;
  max-width: 1040px;
}
.header nav ul {
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 40px;
}
.header nav ul li {
  width: 14.2857142857%;
}
.header nav ul li a {
  color: #1C305E;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 4px;
  line-height: 1;
  text-align: center;
  border-left: 1px solid #1C305E;
  height: 40px;
  width: 100%;
  cursor: pointer;
}
.header nav ul li a span {
  color: #434243;
  font-size: 10px;
  font-family: "BIZ UDPGothic", sans-serif;
}
@media screen and (max-width: 1240px) {
  .header nav ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .header nav ul li a {
    font-size: 12px;
  }
}
.header nav ul li p {
  transition: all 0.3s;
}
.header nav ul li:last-child a {
  border-right: 1px solid #1C305E;
}
.header nav ul li:hover p {
  text-decoration: underline;
}
.header.fadeOut {
  position: fixed;
  background-color: #F8F2E5;
  animation: fadeOutAnim 0.5s forwards;
}
.header.fadeIn {
  position: fixed;
  background-color: #F8F2E5;
  animation: fadeInAnim 0.5s forwards;
}
.header.fadeIn .header-logo {
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .header {
    background-color: #F8F2E5;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    transition: all 0.3s;
  }
  .header-inner {
    height: 80px;
    align-items: center;
    padding-left: 10px;
  }
  .header-logo {
    max-width: 150px;
    margin-top: 0;
    margin-left: 0;
    opacity: 1;
  }
  .header nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: #F8F2E5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .header nav ul {
    background-color: #fff;
    flex-direction: column;
    padding: 5px;
    height: 320px;
    overflow-y: scroll;
  }
  .header nav ul li {
    width: 100%;
  }
  .header nav ul li a {
    line-height: initial;
    text-align: left;
    border-left: none;
    border-top: 1px solid #000;
    height: auto;
    padding: 10px 5px;
    position: relative;
  }
  .header nav ul li a::after {
    content: "";
    position: absolute;
    background: url(/assets/img/header-arrow.svg) no-repeat center/100%;
    top: 50%;
    right: 10px;
    width: 15px;
    height: 10px;
    transform: translateY(-50%);
  }
  .header nav ul li a p {
    display: inline-block;
  }
}
@media screen and (max-width: 899px) and (max-width: 899px) {
  .header nav ul li:last-child a {
    border-right: none;
    border-bottom: 1px solid #000;
  }
}
@media screen and (max-width: 899px) {
  .header.is-open {
    background-color: #F8F2E5;
  }
  .header.is-open nav {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadeInAnim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOutAnim {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.hmbgr {
  display: none;
}
@media (max-width: 899px) {
  .hmbgr {
    display: block;
    background-color: #3E3A39;
    width: 80px;
    height: 80px;
    position: relative;
    padding: 25px 15px 20px;
    cursor: pointer;
  }
  .hmbgr-line {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    height: 16px;
    margin-bottom: 4px;
  }
  .hmbgr-line span {
    width: 25px;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s;
  }
}
.hmbgr p {
  color: #fff;
  font-size: 9px;
  font-family: "Noto Sans JP";
  letter-spacing: 0.8px;
  text-align: center;
}
.hmbgr.is-open .hmbgr-line span:nth-child(1) {
  width: 30px;
  transform: rotate(30deg) translate(4px, 9px);
}
.hmbgr.is-open .hmbgr-line span:nth-child(2) {
  display: none;
}
.hmbgr.is-open .hmbgr-line span:nth-child(3) {
  width: 30px;
  transform: rotate(-30deg) translate(3px, -5px);
}

#overlay {
  display: none;
}
@media screen and (max-width: 899px) {
  #overlay {
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  #overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.fixedBtn {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
}
.fixedBtn a {
  display: flex;
  height: 110px;
  gap: 8px;
}
.fixedBtn a.mailBtn {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 110px;
  background-color: #E9B959;
  border-radius: 5px 0 0 0;
}
.fixedBtn a.mailBtn span {
  color: #1C305E;
}
.fixedBtn a.mailBtn .icon {
  background-color: #1C305E;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.fixedBtn a.mailBtn .icon img {
  width: 18px;
}
.fixedBtn a.telBtn {
  align-items: center;
  background-color: #1C305E;
  border-radius: 0 0 0 5px;
  color: #fff;
  transform: translateX(168px);
  transition: all 0.5s;
}
.fixedBtn a.telBtn img {
  width: 25px;
}
.fixedBtn a.telBtn .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
  gap: 10px;
}
.fixedBtn a.telBtn .right {
  width: 160px;
  font-size: 13px;
}
.fixedBtn a.telBtn .right dl {
  display: flex;
}
.fixedBtn a.telBtn:hover {
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .fixedBtn {
    flex-direction: row;
    top: 0;
    right: 80px;
    transform: translateY(0);
  }
  .fixedBtn a {
    height: 80px;
    gap: 2px;
    font-size: 10px;
  }
  .fixedBtn a.mailBtn {
    border-radius: 0 0 0 5px;
    width: min(15vw, 70px);
  }
  .fixedBtn a.mailBtn .icon {
    width: 30px;
    height: 30px;
  }
  .fixedBtn a.mailBtn .icon img {
    width: 16px;
  }
  .fixedBtn a.telBtn {
    border-radius: 0;
    transform: translateX(0);
  }
  .fixedBtn a.telBtn .left {
    width: min(15vw, 70px);
  }
  .fixedBtn a.telBtn img {
    width: 16px;
  }
  .fixedBtn a.telBtn .right {
    display: none;
  }
}

.bg {
  overflow: hidden;
  padding-top: 120px;
  background-color: #F8F2E5;
}
@media screen and (max-width: 899px) {
  .bg {
    padding-top: 80px;
  }
}
.bg-white {
  background-color: #fff;
}

.headline {
  font-family: "BIZ UDPGothic", sans-serif;
  padding-left: 40px;
  position: relative;
  display: inline-block;
}
.headline p {
  color: #1C305E;
  font-size: 72px;
}
.headline span {
  color: #434243;
  letter-spacing: 6px;
  display: inline-block;
  font-size: 27px;
  border-top: 2px solid #1C305E;
  padding-top: 20px;
}
.headline img {
  position: absolute;
  right: -200px;
  top: 60%;
  transform: translateY(-50%);
  width: 80px;
}
@media screen and (max-width: 1240px) {
  .headline p {
    font-size: 48px;
  }
  .headline span {
    font-size: 18px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 899px) {
  .headline {
    padding-left: 10px;
  }
  .headline p {
    font-size: 38px;
  }
  .headline span {
    font-size: 15px;
  }
}

@media screen and (max-width: 899px) {
  main {
    padding-top: 60px;
  }
}

.mv {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}
.mv-catch {
  width: max(100% - 1040px, 30%);
  display: grid;
  place-items: center;
  position: relative;
  opacity: 0;
  transition: all 0.5s;
}
.mv-catch.is-loaded {
  opacity: 1;
}
.mv-catch-logo {
  position: absolute;
  max-width: 300px;
  width: 60%;
  left: 50%;
  top: -10px;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 1240px) {
  .mv-catch-logo {
    top: -5%;
  }
}
.mv-catch-inner {
  height: 400px;
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
}
.mv-catch-text {
  width: min(1.8vw, 26.5px);
}
.mv-catch-text:nth-child(2) {
  width: min(2.2vw, 31px);
}
.mv-catch-text:nth-child(3) {
  width: min(2.1vw, 30px);
}
.mv-slider {
  max-width: 1040px;
  width: 70%;
  position: relative;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s;
  pointer-events: none;
}
.mv-slider.is-loaded {
  opacity: 1;
  transform: translateX(0);
}
.mv-pen {
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));
  position: absolute;
  bottom: 80px;
  left: 0;
  transform: translateX(-80%);
  width: 23vw;
  max-width: 350px;
  z-index: 1;
}
.mv-item {
  overflow: hidden;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.mv-item img {
  transition: all 10s;
}
.mv-item.slick-active img {
  transform: scale(1.1);
}
.mv-item-text {
  position: absolute;
  bottom: 20px;
  left: 60%;
  height: 23px;
  width: initial;
}
@media screen and (max-width: 899px) {
  .mv {
    margin-top: 0;
    flex-direction: column;
  }
  .mv-catch {
    width: 100%;
    padding: 30px 0;
  }
  .mv-catch-logo {
    display: none;
  }
  .mv-catch-inner {
    display: flex;
    height: 180px;
    gap: 18px;
  }
  .mv-catch-text {
    width: 15px;
  }
  .mv-catch-text:nth-child(2) {
    width: 18px;
  }
  .mv-catch-text:nth-child(3) {
    width: 16.5px;
  }
  .mv-slider {
    width: 95%;
    margin-left: auto;
  }
  .mv-pen {
    width: 120px;
    top: -120px;
    left: 90px;
  }
  .mv-item-text {
    height: 14px;
    left: 45%;
  }
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 60px;
}
@media screen and (max-width: 1240px) {
  .wrapper {
    max-width: 980px;
    width: 90%;
  }
}
@media screen and (max-width: 899px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
  .wrapper > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.cta {
  background: linear-gradient(to bottom right, #FFE560, #F2BE59);
  color: #1C305E;
  padding: 40px 150px;
  margin-bottom: 40px;
  border-radius: 0 150px 0 150px;
  position: relative;
}
@media screen and (max-width: 1240px) {
  .cta {
    padding: 30px 80px;
  }
}
@media screen and (max-width: 899px) {
  .cta {
    border-radius: 0 100px 0 0;
    padding: 40px 25px 30px;
    margin-left: -15px;
  }
}
.cta-click {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  width: 150px;
  top: -50px;
  left: 15px;
}
.cta-click:hover {
  animation: click-here 1s forwards infinite;
}
@media screen and (max-width: 1240px) {
  .cta-click {
    width: 15%;
  }
}
@media screen and (max-width: 899px) {
  .cta-click {
    top: -7%;
    width: 20%;
    max-width: 100px;
  }
}
.cta-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.cta-top h3 {
  display: grid;
  width: 50%;
  max-width: 450px;
}
.cta-top p span {
  display: block;
}
.cta-top p span:first-child {
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
}
.cta-top p span:nth-child(2) {
  padding-top: 4px;
}
@media screen and (max-width: 1240px) {
  .cta-top h3 {
    font-size: 28px;
  }
  .cta-top p {
    font-size: 16px;
  }
}
@media screen and (max-width: 899px) {
  .cta-top {
    gap: 10px;
    flex-direction: column;
  }
  .cta-top h3 {
    min-width: 270px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
  }
  .cta-top p {
    display: flex;
    flex-wrap: wrap;
  }
  .cta-top p span {
    font-size: 12px;
  }
  .cta-top p span:first-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .cta-top p span:nth-child(2) {
    padding-top: 0;
  }
}
.cta-text {
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.cta-bottom {
  display: flex;
  row-gap: 20px;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.cta-bottom p {
  color: #1C305E;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
}
.cta-telNum a {
  color: #1C305E;
}
@media screen and (max-width: 1240px) {
  .cta-bottom p {
    font-size: 26px;
  }
}
@media screen and (max-width: 899px) {
  .cta-bottom {
    justify-content: center;
    gap: 16px 6px;
  }
  .cta-bottom p {
    font-size: 31px;
  }
}
.cta-button {
  border: 1px solid #000;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
}
.cta-button span {
  position: relative;
}
.cta-button span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cta-button.tel {
  width: 220px;
  padding: 15px 70px 15px 35px;
  color: #1C305E;
}
.cta-button.tel span::after {
  background: url(/assets/img/button-arrow.svg) no-repeat center/100%;
  width: 18px;
  height: 11px;
  right: -30px;
}
.cta-button.contact {
  padding: 15px 70px 15px 35px;
  width: 265px;
  color: #1C305E;
}
.cta-button.contact span::before {
  content: "";
  position: absolute;
  background-color: #434243;
  top: -16px;
  right: -12px;
  width: 1px;
  height: 38px;
}
.cta-button.contact span::after {
  background: url(/assets/img/button-mail.svg) no-repeat center/100%;
  width: 26px;
  height: 17px;
  right: -55px;
}
.cta-button:hover span {
  text-decoration: underline;
}
@media screen and (max-width: 1240px) {
  .cta-button.tel, .cta-button.contact {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cta-button.contact span::before {
    top: -11px;
    height: 30px;
  }
}
@media screen and (max-width: 899px) {
  .cta-button.tel {
    padding: 4px 25px 4px 10px;
    width: initial;
  }
  .cta-button.tel span::after {
    width: 12px;
    height: 10px;
    right: -15px;
  }
  .cta-button.contact {
    padding: 4px 70px 4px 30px;
    width: initial;
  }
  .cta-button.contact span::before {
    top: -4px;
    right: -20px;
    height: 20px;
  }
  .cta-button.contact span::after {
    width: 18px;
    height: 12px;
    right: -53px;
  }
}

@keyframes click-here {
  10% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  90% {
    transform: translateY(0);
  }
}
.about {
  position: relative;
  z-index: 1;
  letter-spacing: 1.8px;
}
.about-bg {
  position: absolute;
  width: initial;
  height: 1300px;
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(0.5);
  z-index: -1;
  transition: all 0.6s;
}
.about h3 {
  color: #1C305E;
  font-size: 48px;
  margin-top: 80px;
  margin-bottom: 60px;
  letter-spacing: 6px;
}
.about-intro {
  font-size: 19px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 20px;
}
.about-intro-text {
  line-height: 2;
  width: calc(100% - 385px);
}
.about-intro-text ul {
  margin: 6px 0;
}
.about-intro-text ul li {
  display: flex;
  align-items: start;
}
.about-img {
  width: 345px;
  border-radius: 30px;
  overflow: hidden;
}
.about-img.pc {
  display: initial;
}
@media screen and (max-width: 899px) {
  .about-img.pc {
    display: none;
  }
}
.about-img.sp {
  display: none;
}
@media screen and (max-width: 899px) {
  .about-img.sp {
    display: initial;
  }
}
.about-name {
  color: #1C305E;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
.about-name span {
  display: inline-block;
  letter-spacing: 8px;
}
.about-name span.small {
  padding-right: 30px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.8px;
  vertical-align: middle;
}
.about-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.about-profile li {
  line-height: 1.8;
}
.about-profile .title {
  padding-left: 25px;
  position: relative;
}
.about-profile .title::before {
  content: "";
  background-color: #1C305E;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media screen and (max-width: 1240px) {
  .about h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .about-intro {
    font-size: 16px;
  }
  .about-name {
    font-size: 28px;
  }
  .about-name span.small {
    font-size: 16px;
  }
  .about-profile .title {
    padding-left: 18px;
  }
  .about-profile .title::before {
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 899px) {
  .about::before {
    display: block;
    width: 140%;
    height: calc(100% + 200px);
    background-image: url(/assets/img/about-bg-sp.png);
    background-size: 140% 100%;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 1;
    visibility: visible;
  }
  .about-bg {
    display: none;
    visibility: hidden;
  }
  .about-bg--sp {
    display: block;
  }
  .about h3 {
    font-size: 6vw;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .about-intro {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .about-intro-text {
    width: 100%;
  }
  .about-intro p {
    width: 100%;
  }
  .about-img {
    width: 100%;
    max-width: 500px;
  }
  .about-name {
    font-size: 30px;
    display: flex;
    line-height: 1;
  }
  .about-name span {
    width: 170px;
  }
  .about-name span.small {
    line-height: 1.2;
    font-size: 13px;
    padding-right: 20px;
    width: calc(100% - 190px);
  }
  .about-profile {
    gap: 15px;
  }
  .about-profile .title {
    padding-left: 20px;
  }
  .about-profile .title::before {
    width: 15px;
    height: 15px;
  }
}

.works .headline img {
  width: 245px;
  right: -350px;
}
.works-list {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.works-text {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  position: absolute;
  bottom: 0;
  padding: 24px;
  min-height: 273px;
  z-index: 2;
  line-height: 1.6;
  letter-spacing: 2px;
}
.works-text .title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 4px;
}
.works li {
  width: calc((100% - 60px) / 3);
  overflow: hidden;
  position: relative;
}
.works li::before {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.7));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
}
.works li img {
  transition: all 0.6s;
  position: relative;
}
.works li img.pc {
  display: initial;
}
@media screen and (max-width: 899px) {
  .works li img.pc {
    display: none;
  }
}
.works li img.sp {
  display: none;
}
@media screen and (max-width: 899px) {
  .works li img.sp {
    display: initial;
  }
}
.works li:hover img {
  transform: scale(1.1);
}
.works li:first-child {
  border-radius: 30px 0 0 30px;
}
.works li:last-child {
  border-radius: 0 30px 30px 0;
}
.works-desc {
  color: #1C305E;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 1240px) {
  .works-text {
    padding: 10px 15px;
  }
  .works-text .title {
    font-size: 24px;
  }
  .works-desc {
    font-size: 15px;
  }
}
@media screen and (max-width: 899px) {
  .works .headline img {
    width: clamp(108px, 30vw, 160px);
    right: initial;
    left: 200px;
  }
  .works-list {
    flex-direction: column;
    gap: 20px;
  }
  .works-text {
    font-size: 15px;
    bottom: 10px;
    padding: 10px 25px;
    min-height: auto;
    opacity: 1;
  }
  .works-text .title {
    font-size: 24px;
  }
  .works li {
    width: 100%;
  }
  .works li:first-child {
    border-radius: 30px 30px 0 0;
  }
  .works li:last-child {
    border-radius: 0 0 30px 30px;
  }
  .works li::before {
    background: linear-gradient(rgba(0, 0, 0, 0) 10%, rgba(89, 90, 91, 0.6));
  }
  .works-desc {
    font-size: 15px;
    text-align: left;
    display: flex;
    align-items: center;
  }
  .works-desc span:first-child {
    width: 130px;
  }
  .works-desc span:nth-child(2) {
    width: calc(100% - 130px);
  }
}

.faq .headline img {
  width: 200px;
  right: -450px;
  top: 30%;
}
.faq-list {
  margin-top: -40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.faq-list li {
  position: relative;
  z-index: 2;
}
.faq-list li > img {
  position: absolute;
}
.faq-list li > img[src="/assets/img/faq-icon02.svg"] {
  width: 130px;
  bottom: 0;
  left: -220px;
}
.faq-list li > img[src="/assets/img/faq-icon03.svg"] {
  width: 200px;
  bottom: 20px;
  right: -450px;
}
.faq-list li > img[src="/assets/img/faq-icon04.svg"] {
  width: 175px;
  bottom: -40px;
  left: -200px;
}
.faq-list li > img[src="/assets/img/faq-icon05.svg"] {
  width: 175px;
  top: 40px;
  left: -400px;
}
.faq-list li > img[src="/assets/img/faq-icon06.svg"] {
  width: 300px;
  bottom: -20px;
  right: -500px;
}
.faq-list li > img[src="/assets/img/faq-icon07.svg"] {
  width: 245px;
  top: -20px;
  left: -330px;
}
.faq-list li .frame {
  position: absolute;
  border: 2px solid #1C305E;
  display: block;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.faq-list li:first-child {
  transform: translateX(20%);
}
.faq-list li:nth-child(2) {
  transform: translateX(-20%);
}
.faq-list li:nth-child(3) {
  transform: translateX(30%);
}
.faq-list li:nth-child(4) {
  transform: translateX(-25%);
}
.faq-card {
  border: 2px solid #1C305E;
  width: 760px;
  background-color: #fff;
  padding: 30px 40px;
}
.faq-question {
  color: #1C305E;
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 30px;
  padding-left: 110px;
  position: relative;
}
.faq-question br.sp {
  display: none;
}
@media screen and (max-width: 899px) {
  .faq-question br.sp {
    display: initial;
  }
}
.faq-question::before {
  content: "";
  background: url(/assets/img/faq-icon.svg) no-repeat center/100%;
  display: block;
  position: absolute;
  bottom: 35px;
  left: 0px;
  width: 92px;
  height: 83px;
}
@media screen and (max-width: 1240px) {
  .faq .headline img {
    right: -300px;
    top: 50%;
  }
  .faq-list {
    margin-top: 40px;
  }
  .faq-list li {
    width: 100%;
    transform: translateX(0) !important;
  }
  .faq-list li > img {
    position: absolute;
  }
  .faq-list li > img[src="/assets/img/faq-icon02.svg"] {
    left: -30%;
  }
  .faq-list li > img[src="/assets/img/faq-icon03.svg"] {
    right: -35%;
  }
  .faq-list li > img[src="/assets/img/faq-icon04.svg"] {
    display: none;
  }
  .faq-list li > img[src="/assets/img/faq-icon05.svg"] {
    left: -35%;
  }
  .faq-list li > img[src="/assets/img/faq-icon06.svg"] {
    right: -45%;
  }
  .faq-list li > img[src="/assets/img/faq-icon07.svg"] {
    left: -35%;
  }
  .faq-card {
    width: 100%;
  }
}
@media screen and (max-width: 899px) {
  .faq .headline img {
    width: clamp(108px, 30vw, 160px);
    right: initial;
    left: 200px;
    top: 50%;
  }
  .faq-list {
    gap: 26px;
  }
  .faq-list li > img {
    display: none;
  }
  .faq-card {
    width: 100%;
    padding: 15px 20px;
  }
  .faq-question {
    font-size: 18px;
    padding-bottom: 15px;
    padding-left: 60px;
  }
  .faq-question::before {
    width: 49px;
    height: 49px;
    top: -30px;
    bottom: 0;
  }
}
.faq-answer {
  line-height: 1.8;
  border-top: 1px dotted #000;
  letter-spacing: 1.8px;
  padding-top: 30px;
}

.profile {
  background-color: #1C305E;
  border-radius: 0 200px 0 0;
  padding: 80px 0 60px 80px;
  max-width: 1137px;
}
.profile .headline {
  display: inline-block;
  position: relative;
}
.profile .headline img {
  right: -150px;
}
.profile .headline p {
  color: #fff;
}
.profile .headline span {
  color: #fff;
  border-color: #fff;
}
.profile dl {
  margin-top: 40px;
  padding-left: 40px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 545px;
}
.profile dl dt {
  padding-left: 20px;
  line-height: 2;
  position: relative;
  border-bottom: 1px solid #fff;
  width: 167px;
  padding-bottom: 10px;
}
.profile dl dt::before {
  content: "";
  background-color: #F2BE59;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 19px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}
.profile dl dt:last-of-type {
  border: none;
}
.profile dl dd {
  color: #fff;
  line-height: 2;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  width: calc(100% - 167px);
}
.profile dl dd a.tel {
  color: #fff;
}
.profile dl dd:last-of-type {
  border: none;
}
@media screen and (max-width: 899px) {
  .profile {
    padding: 30px 0 20px 20px;
    border-radius: 0 80px 0 0;
    margin-right: 15px;
  }
  .profile .headline img {
    right: initial;
    left: 200px;
    width: clamp(50px, 15vw, 160px);
  }
  .profile dl {
    margin-top: 20px;
    padding-left: 0;
    padding-right: 20px;
    width: 100%;
  }
  .profile dl dt {
    padding-bottom: 8px;
    width: 105px;
  }
  .profile dl dt::before {
    content: "";
    left: 0;
    top: 15px;
    width: 12px;
    height: 12px;
  }
  .profile dl dd {
    padding-bottom: 8px;
    padding-left: 10px;
    width: calc(100% - 105px);
  }
}

.case .headline img {
  width: 245px;
  right: -300px;
}
.case-slider {
  margin-left: 50px;
  margin-bottom: 140px;
  margin-top: 30px;
}
.case-slider .slick-track {
  display: flex;
}
.case-slider-card {
  background-color: #fff;
  border: 2px solid #1C305E;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 20px;
  height: auto;
}
.case-slider-text {
  color: #1C305E;
  padding: 10px 20px 20px 20px;
}
.case-slider-desc {
  color: #434243;
  line-height: 1.8;
}
.case-slider-head {
  position: relative;
  display: inline-block;
}
.case-slider-head img {
  position: absolute;
  height: 78px;
  bottom: 0;
  right: -150px;
}
.case-slider-num {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 600;
  font-size: 28px;
}
.case-slider-num span {
  font-size: 32px;
  padding-left: 5px;
}
.case-slider-above {
  font-weight: 600;
  display: flex;
  align-items: center;
  margin: 10px 0;
  min-height: 95px;
}
.case-slider-above .marker {
  display: inline-block;
  margin: 3px 0;
  padding: 0 6px;
  background: linear-gradient(transparent 0%, #F2BE59 0%);
}
.case-slider .slick-prev, .case-slider .slick-next {
  width: 73px;
  height: 73px;
  position: absolute;
  top: -80px;
  transform: translateY(-50%);
  z-index: 1;
  border: none;
  transition: all 0.2s;
}
.case-slider .slick-prev.slick-disabled, .case-slider .slick-next.slick-disabled {
  opacity: 0;
  visibility: hidden;
}
.case-slider .slick-prev {
  background: url(/assets/img/arrow-prev.svg) no-repeat center/100%;
  right: 280px;
}
.case-slider .slick-next {
  background: url(/assets/img/arrow-next.svg) no-repeat center/100%;
  right: 150px;
}
@media screen and (max-width: 899px) {
  .case .wrapper {
    padding-bottom: 30px;
  }
  .case .headline img {
    width: clamp(120px, 30vw, 160px);
    right: initial;
    left: 200px;
  }
  .case-slider {
    margin-left: 20px;
    margin-bottom: 100px;
  }
  .case-slider-above {
    min-height: 70px;
  }
  .case-slider-head img {
    right: -100px;
    height: 60px;
  }
  .case-slider-num {
    font-size: 22px;
  }
  .case-slider-num span {
    font-size: 23px;
  }
  .case-slider .slick-prev, .case-slider .slick-next {
    top: initial;
    bottom: -80px;
    width: 43px;
    height: 43px;
  }
  .case-slider .slick-prev {
    right: calc(50% + 50px);
  }
  .case-slider .slick-next {
    right: calc(50% - 50px);
  }
}

.iframe iframe {
  width: 100%;
}

.price .headline img {
  width: 120px;
}
.price-container {
  height: 720px;
  border: 2px solid #1C305E;
  border-radius: 10px;
  overflow-y: scroll;
  margin-top: 50px;
}
.price-inner {
  background-color: #fff;
  padding: 20px;
}
.price table {
  font-family: "BIZ UDPGothic", sans-serif;
  border-spacing: 0;
}
.price table th {
  font-weight: normal;
}
.price table th:first-child {
  width: 44.7%;
}
.price table th:nth-child(2) {
  width: 13.8%;
}
.price table th:nth-child(3) {
  width: 41.5%;
}
.price-table {
  width: 100%;
}
.price-table > thead th {
  background-color: #1C305E;
  padding: 12px 15px;
  text-align: left;
  color: #fff;
}
.price-sub-table {
  padding: 15px 10px;
  margin: 0 auto 10px;
  width: 98%;
  border-collapse: collapse;
}
.price-sub-table.js-accordion {
  margin-bottom: 0;
}
.price-sub-table tr {
  border-bottom: 1px solid #1C305E;
}
.price-sub-table tr.sp {
  display: none;
}
.price-sub-table thead th {
  color: #1C305E;
  font-weight: 600;
}
.price-sub-table th {
  font-size: 21px;
  text-align: left;
  padding: 15px 0 10px 30px;
  position: relative;
}
.price-sub-table th::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #1C305E;
  top: 57%;
  left: 10px;
  transform: translateY(-50%);
}
.price-sub-table td {
  padding: 15px 10px 10px;
}
.price-sub-table td:first-child {
  width: 44.7%;
}
.price-sub-table td:nth-child(2) {
  width: 13.8%;
}
.price-sub-table td:nth-child(2) p {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.price-sub-table td:nth-child(3) {
  width: 41.5%;
}
.price-attention {
  font-size: 14px;
  margin-top: 10px;
  padding: 0 20px;
}
@media screen and (max-width: 1240px) {
  .price table th:first-child {
    width: 50%;
  }
  .price table th:nth-child(2) {
    width: 16%;
  }
  .price table th:nth-child(3) {
    width: 34%;
  }
  .price-sub-table th {
    font-size: 18px;
  }
}
@media screen and (max-width: 899px) {
  .price {
    padding-left: 0;
    padding-right: 0;
  }
  .price .headline img {
    width: clamp(100px, 10vw, 180px);
  }
  .price-container {
    border: none;
    border-radius: 0;
    margin-top: 30px;
    height: auto;
  }
  .price-inner {
    padding: 0;
    background-color: transparent;
  }
  .price-table > thead {
    display: none;
  }
  .price-sub-table {
    font-size: 12.5px;
    background-color: #fff;
  }
  .price-sub-table.js-accordion {
    margin-bottom: 0;
    margin-top: 10px;
  }
  .price-sub-table.js-accordion thead.is-open th::after {
    top: 35%;
    transform: rotate(180deg);
  }
  .price-sub-table thead tr {
    border: 1px solid #C1BBB9;
  }
  .price-sub-table thead th {
    font-size: 13px;
    padding-bottom: 15px;
  }
  .price-sub-table thead th::before {
    top: 50%;
  }
  .price-sub-table thead th::after {
    content: "";
    display: block;
    background: url(/assets/img/header-arrow.svg) no-repeat center/100%;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  .price-sub-table tbody tr {
    display: flex;
    margin: 10px;
  }
  .price-sub-table tbody tr.sp {
    display: flex;
    background-color: #1C305E;
    color: #fff;
  }
  .price-sub-table tbody tr th {
    font-size: 13px;
    padding: 8px 0 8px 10px;
  }
  .price-sub-table tbody tr th::before {
    display: none;
  }
  .price-sub-table tbody tr th:first-child {
    width: 69%;
  }
  .price-sub-table tbody tr th:nth-child(2) {
    width: 31%;
  }
  .price-sub-table tbody tr td {
    padding: 8px 0 8px 0;
  }
  .price-sub-table tbody tr td:first-child {
    width: 69%;
  }
  .price-sub-table tbody tr td:nth-child(2) {
    width: 31%;
  }
  .price-sub-table tbody tr td:last-child {
    display: none;
  }
  .price-sub-table.is-open tbody {
    height: auto;
  }
  .price-sub-wrapper {
    display: none;
  }
  .price-attention {
    font-size: 10px;
  }
}

.process .headline img {
  width: 205px;
  right: -270px;
}
.process-list {
  display: flex;
  margin-top: 60px;
  gap: 10px;
}
.process-list li {
  width: 25%;
}
.process-list li:first-child {
  width: 23%;
}
.process-list li:first-child .process-head {
  padding-left: 15px;
}
.process-list li:last-child {
  width: 27%;
}
.process-list li:last-child .process-head::before {
  display: none;
}
.process-head {
  background-color: #F2BE59;
  padding-left: 50px;
  position: relative;
}
.process-head::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 100%;
  right: -40px;
  border-left: 40px solid #F2BE59;
  border-top: 63px solid transparent;
  border-bottom: 63px solid transparent;
  z-index: 2;
}
.process-head::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 100%;
  top: 0;
  right: -50px;
  border-left: 40px solid #F8F2E5;
  border-top: 63px solid transparent;
  border-bottom: 63px solid transparent;
  z-index: 1;
}
.process-head-inner {
  display: flex;
  align-items: center;
  height: 126px;
  gap: 10px;
  color: #1C305E;
}
.process-head-inner span {
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 24px;
  font-weight: 600;
}
.process-head-inner p {
  font-size: 20px;
  font-weight: 600;
  width: calc(100% - 50px);
}
.process-head-inner p .pc {
  display: initial;
}
.process-desc {
  background-color: #fff;
  display: grid;
  place-items: center;
  border: 1px solid #F2BE59;
  max-width: 250px;
  padding: 20px;
  min-height: 186px;
  margin: -10px auto 0;
  position: relative;
}
.process-desc p {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.8;
}
@media screen and (max-width: 1240px) {
  .process-list {
    flex-direction: column;
    background-color: #F2BE59;
    padding: 20px;
    gap: 30px;
  }
  .process-list li {
    width: 100%;
  }
  .process-list li:first-child {
    width: 100%;
  }
  .process-list li:first-child .process-head {
    padding-left: 0;
  }
  .process-list li:last-child {
    width: 100%;
  }
  .process-list li:last-child .process-desc:before {
    display: none;
  }
  .process-list li:last-child .process-desc::after {
    display: none;
  }
  .process-head {
    background-color: transparent;
    padding-left: 0;
  }
  .process-head::before {
    display: none;
  }
  .process-head::after {
    display: none;
  }
  .process-head-inner {
    height: auto;
  }
  .process-head-inner p {
    font-size: 16px;
  }
  .process-head-inner p .pc {
    display: none;
  }
  .process-desc {
    min-height: initial;
    max-width: initial;
    width: calc(100% - 50px);
    margin: 10px 0 0 auto;
    place-items: initial;
    position: relative;
    border-radius: 10px;
  }
  .process-desc::before {
    content: "";
    display: block;
    position: absolute;
    width: 3px;
    height: calc(100% + 20px);
    background-color: #fff;
    left: -32px;
    top: -20px;
  }
  .process-desc::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    bottom: 0;
    transform: rotate(135deg);
    left: -40px;
  }
}
@media screen and (max-width: 899px) {
  .process .headline img {
    width: clamp(120px, 15vw, 180px);
    right: initial;
    left: 225px;
  }
  .process-desc p {
    font-size: 15px;
  }
}

.contact .headline img {
  width: 175px;
  right: -250px;
}
.contact-inner {
  margin: 40px auto 0;
  max-width: 850px;
}
.contact-text {
  line-height: 1.8;
  margin-bottom: 60px;
}
.contact .error-msg {
  margin-bottom: 60px;
  color: #F00;
}
.contact .form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.contact .form-group label {
  font-size: 25px;
  font-weight: 600;
  color: #1C305E;
}
.contact .form-group input, .contact .form-group textarea {
  width: 520px;
  min-height: 45px;
  border: 1px solid #434243;
  border-radius: 10px;
  padding: 15px;
  letter-spacing: 2px;
}
.contact .form-group input::-moz-placeholder, .contact .form-group textarea::-moz-placeholder {
  color: #D9D9D9;
}
.contact .form-group input::placeholder, .contact .form-group textarea::placeholder {
  color: #D9D9D9;
}
.contact .form-group input[type=tel] {
  font-family: "BIZ UDPGothic", sans-serif;
}
.contact .form-group input[type=submit] {
  color: #1C305E;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  border: none;
  border-radius: 30px;
  background-color: #F2BE59;
  margin: 120px auto 0;
  padding: 15px 0;
  width: 425px;
}
.contact .form-group input[type=submit]:hover {
  text-decoration: underline;
}
.contact-terms {
  border: 1px solid #434243;
  border-radius: 10px;
  height: 110px;
  overflow-y: scroll;
  width: 520px;
  margin-left: auto;
}
.contact-terms-inner {
  color: #1C305E;
  padding: 15px;
}
.contact-terms-inner dt {
  line-height: 1.2;
  border-left: 3px solid #1C305E;
  padding-left: 10px;
  margin-bottom: 5px;
}
.contact-terms-inner dd {
  font-size: 15px;
  margin-bottom: 20px;
  padding-left: 13px;
}
.contact-terms-inner .signature {
  border-left: 3px solid #1C305E;
  padding-left: 10px;
}
.contact .checkbox {
  width: 520px;
  margin-left: auto;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 1240px) {
  .contact .form-group label {
    font-size: 20px;
  }
  .contact .form-group input[type=submit] {
    font-size: 18px;
  }
}
@media screen and (max-width: 899px) {
  .contact .headline img {
    width: clamp(120px, 15vw, 180px);
    right: initial;
    left: 220px;
  }
  .contact .form-group {
    flex-direction: column;
  }
  .contact .form-group label {
    font-size: 18px;
  }
  .contact .form-group input, .contact .form-group textarea {
    width: 100%;
  }
  .contact .form-group input[type=submit] {
    font-size: 18px;
    max-width: 285px;
    margin-top: 60px;
    width: 100%;
  }
  .contact-terms {
    width: 100%;
  }
  .contact .checkbox {
    width: 100%;
  }
}

.footer {
  background-color: #1C305E;
  color: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 40px;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
.footer-logo {
  max-width: 250px;
}
.footer-nav {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-direction: column;
}
.footer-nav ul {
  display: flex;
  height: 30px;
  width: 870px;
}
.footer-nav ul li {
  width: 14.2857142857%;
  border-left: 1px solid #fff;
}
.footer-nav ul li:last-child {
  border-right: 1px solid #fff;
}
.footer-nav ul li:hover p {
  text-decoration: underline;
}
.footer-nav ul a {
  color: #fff;
  display: block;
  text-align: center;
  line-height: 0.8;
}
.footer-nav ul p {
  font-size: 16px;
}
.footer-nav ul span {
  font-size: 10px;
}
.footer small {
  font-size: 10px;
}
.footer small.pc {
  display: initial;
}
@media screen and (max-width: 899px) {
  .footer small.pc {
    display: none;
  }
}
.footer small.sp {
  display: none;
}
@media screen and (max-width: 899px) {
  .footer small.sp {
    display: initial;
  }
}
.footer small span {
  font-family: "BIZ UDPGothic", sans-serif;
}
.footer-address {
  display: none;
}
.footer-address p {
  color: #fff;
}
.footer-address p .tel {
  color: #fff;
}
@media screen and (max-width: 1240px) {
  .footer-inner {
    padding: 40px 0;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-logo {
    max-width: 150px;
  }
  .footer-nav {
    align-items: center;
    gap: 30px;
    width: 100%;
  }
  .footer-nav ul {
    width: 100%;
  }
}
@media screen and (max-width: 899px) {
  .footer-inner {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 40px;
  }
  .footer-nav {
    order: 1;
    width: 100%;
  }
  .footer-nav ul {
    flex-wrap: wrap;
    height: auto;
    row-gap: 20px;
    width: 100%;
  }
  .footer-nav ul li {
    width: max(80px, 25%);
  }
  .footer-nav ul li:nth-child(4) {
    border-right: 1px solid #fff;
  }
  .footer-nav ul p {
    font-size: 10px;
  }
  .footer-nav ul span {
    font-size: 7px;
  }
  .footer-logo {
    order: 2;
    max-width: 128px;
  }
  .footer-address {
    order: 3;
    width: calc(100% - 148px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-address p {
    font-size: 12.5px;
  }
  .footer small {
    font-size: 8px;
    width: 100%;
    text-align: left;
  }
  .footer small.sp {
    order: 4;
  }
}

#mail .header {
  background-color: #fff;
}
#mail .header.fadeOut, #mail .header .fadeIn {
  background-color: #fff;
}

.mail {
  padding-top: 90px;
  position: relative;
}
.mail-logo {
  position: absolute;
  max-width: 300px;
  width: max(60% - 840px, 18%);
  left: max(50% - 520px, 15%);
  top: 110px;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 1240px) {
  .mail-logo {
    top: calc(90px - 2.5%);
  }
}
@media screen and (max-width: 899px) {
  .mail-logo {
    display: none;
  }
}
.mail-h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}
.mail-container {
  color: #1C305E;
  margin: 100px auto 30px;
  max-width: 900px;
  width: 95%;
}
.mail-container form {
  border: 2px solid #1C305E;
  border-radius: 10px;
  overflow: hidden;
}
.mail-container table {
  width: 100%;
  border-collapse: collapse;
}
.mail-container table tr {
  border-bottom: 1px solid #1C305E;
  display: flex;
}
.mail-container table tr:last-child {
  border: none;
}
.mail-container table th {
  width: 35%;
  text-align: left;
  padding: 18px;
  background-color: #DBDCDC;
}
.mail-container table td {
  width: 65%;
  padding: 18px;
  word-break: break-word;
}
.mail-container table td.message {
  min-height: 240px;
}
.mail-button {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}
.mail-button input[type=submit], .mail-button button[type=button],.mail-button #submitform {
  font-size: 24px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 15px 0;
  max-width: 380px;
  width: 40%;
}
.mail-button input[type=submit]:hover, .mail-button button[type=button]:hover, .mail-button #submitform:hover {
  text-decoration: underline;
}
.mail-button input[type=submit], .mail-button #submitform {
  color: #1C305E;
  background-color: #F2BE59;
}
.mail-button button[type=button] {
  background-color: #1C305E;
  color: #fff;
}
.mail-icon {
  max-width: 150px;
  margin: 0 auto;
  width: 30%;
}
@media screen and (max-width: 899px) {
  .mail {
    padding-top: 0;
  }
  .mail-container {
    margin-top: 0;
  }
  .mail-button {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
  .mail-button input[type=submit], .mail-button button[type=button], .mail-button #submitform {
    font-size: 18px;
    max-width: 380px;
    width: 85%;
  }
}

.js-fadeup, .js-fadeup-order, .js-fadeup-about {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s;
}

.js-fadeup.on {
  opacity: 1;
  transform: translateY(0);
}

.about-bg.on {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.js-fadeup-about.on {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeup-order.on {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=styles.css.map */