@charset "UTF-8";
header {
  display: inline-block;
  width: 100%;
  z-index: 500;
  position: fixed;
}
@media screen and (min-width: 1201px) {
  header {
    height: 60px;
    padding-top: 30px;
    top: 0;
  }
}
@media screen and (max-width: 1200px) {
  header {
    height: 150px;
    padding-top: 30px;
    top: 0;
  }
}
@media screen and (max-width: 750px) {
  header {
    padding-top: 5.55vw;
    top: 6.4vw;
  }
}
header .section-inner {
  z-index: 10;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1201px) {
  header .section-inner {
    width: 1200px;
    height: 50px;
    top: 0;
  }
}
@media screen and (max-width: 1200px) {
  header .section-inner {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 750px) {
  header .section-inner {
    width: 100%;
    padding: 0 4.8vw;
    box-sizing: border-box;
  }
}
header .section-inner .header-area {
  display: flex;
  justify-content: end;
}
@media screen and (min-width: 1201px) {
  header .section-inner .header-area {
    height: 50px;
  }
}
@media screen and (max-width: 1200px) {
  header .section-inner .header-area {
    height: 50px;
  }
}
header .section-inner .header-area .logo-main {
  z-index: 100;
  animation-name: slide-in;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  clip-path: inset(0);
  opacity: 0;
}
@media screen and (min-width: 1201px) {
  header .section-inner .header-area .logo-main {
    width: 9vw;
  }
}
@media screen and (max-width: 1200px) {
  header .section-inner .header-area .logo-main {
    width: 9vw;
  }
}
@media screen and (max-width: 750px) {
  header .section-inner .header-area .logo-main {
    width: 30.9vw;
    padding-top: 1.5vw;
  }
}
@keyframes slide-in {
  0% {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
header .section-inner .header-area .logo-main img {
  max-width: 100%;
}
header .section-inner .header-area nav {
  z-index: 15;
}
header .section-inner .header-area nav ul {
  text-align: right;
  list-style: none;
}
header .section-inner .header-area nav ul li {
  display: inline-block;
}
header .section-inner .header-area nav ul li a {
  position: relative;
  padding-right: 60px;
}
header .section-inner .header-area nav ul li a:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  right: 0;
  top: 50%;
  margin-top: -2px;
  background: url(../../img/icon-arrow-bottom.png) no-repeat;
  background-size: 100%;
}
header .section-inner .header-area nav ul li a .menu-text {
  font-size: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.1s 0s ease-in;
  padding-bottom: 2px;
}
header .section-inner .header-area nav ul li a .menu-text:hover {
  border-bottom: 2px #fff solid;
}
header .menu-modal-area {
  position: fixed;
  top: 90;
  left: 0;
  width: 100%;
  visibility: hidden;
}
header .menu-modal-area .white-box {
  height: 8.33vw;
  z-index: 10;
  width: 100%;
  background-color: white;
}
@media screen and (min-width: 1201px) {
  header .menu-modal-area .white-box {
    height: 100px;
  }
}
@media screen and (max-width: 1200px) {
  header .menu-modal-area .white-box {
    height: 100px;
  }
}
@media screen and (max-width: 750px) {
  header .menu-modal-area .white-box {
    height: 8.33vw;
  }
}
header .menu-modal-area .white-box .menu-modal {
  visibility: hidden;
  display: flex;
  position: absolute;
  justify-content: center;
  height: 4.166vw;
  z-index: 150;
  background-color: #f4f4f4;
  width: 100%;
  list-style: none;
}
header .menu-modal-area .white-box .menu-modal li {
  display: inline-block;
  position: relative;
  letter-spacing: 1.8px;
  padding-right: 20px;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
header .menu-modal-area .white-box .menu-modal li:before {
  line-height: 1.5vw;
  content: "/";
  background: none;
  position: absolute;
  top: 0px;
  right: -2px;
  color: #d8d8d8;
  font-size: 20px;
}
@media screen and (min-width: 1201px) {
  header .hamburgerMenuArea.mb-on {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  header .hamburgerMenuArea.mb-on {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  header .hamburgerMenuArea.mb-on {
    display: block;
  }
}
header .hamburgerMenuArea .hamburger-content {
  width: 100vw;
  height: 100vh;
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  background-color: #111;
  padding: 11.4vw 12.4vw;
  transform: translate(101vw, 0px);
  /*動き*/
  transition: all 0.6s;
}
header .hamburgerMenuArea .hamburger-content.panelactive {
  transform: translate(0px, 0px);
}
header .hamburgerMenuArea .hamburger-content ul {
  list-style: none;
}
header .hamburgerMenuArea .hamburger-content ul li {
  display: list-item;
  text-align: left;
  margin-bottom: 20px;
}
header .hamburgerMenuArea .hamburger-content ul li a {
  color: #fff;
  font-family: "akrobat";
  text-decoration: none;
  letter-spacing: 0.6vw;
  font-size: 7.46667vw;
}
@media screen and (max-width: 750px) {
  header .hamburgerBtn {
    position: fixed;
    top: 6.4vw;
    right: 4.8vw;
    width: 6.66vw;
    overflow: hidden;
    z-index: 500;
  }
}
header .hamburgerBtn span {
  background-color: #fff;
  transition: transform 0.3s;
}
@media screen and (max-width: 750px) {
  header .hamburgerBtn span {
    display: block;
    width: 100%;
    height: 0.53vw;
  }
}
header .hamburgerBtn span:nth-child(1) {
  margin-bottom: 2.13vw;
}
header .hamburgerBtn span:nth-child(2) {
  margin-bottom: 2.13vw;
}
header .hamburgerBtn.active span {
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  header .hamburgerBtn.active span {
    display: block;
    width: 100%;
    height: 0.53vw;
  }
}
header .hamburgerBtn.active span:nth-child(1) {
  margin-bottom: 2.13vw;
}
header .hamburgerBtn.active span:nth-child(2) {
  margin-bottom: 2.13vw;
  transform: translateX(2.6vw);
}
header .hamburgerBtn.active span:nth-child(3) {
  transform: translateX(5.4vw);
}

footer {
  overflow: hidden;
}
footer .top-area {
  background: url(../img/bg-footer.webp) no-repeat center center;
  height: 25vw;
  padding: 5vw 0;
}
@media screen and (min-width: 1201px) {
  footer .top-area {
    height: 360px;
    padding: 72px 0;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area {
    height: 25vw;
    padding: 5vw 0;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area {
    height: auto;
    padding: 10.66vw 4.8vw;
  }
}
footer .top-area .section-inner {
  padding: 0 8.3vw;
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner {
    display: block;
  }
}
footer .top-area .section-inner .card-area {
  background-color: #fff;
  box-shadow: 16px 16px 40px 0px rgba(0, 0, 0, 0.12);
  position: relative;
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner .card-area {
    width: 560px;
    height: 216px;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner .card-area {
    width: 38.88889vw;
    height: 15vw;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner .card-area {
    width: 100%;
    height: 50.66667vw;
    margin-bottom: 4.8vw;
  }
}
footer .top-area .section-inner .card-area a {
  position: relative;
  display: block;
  width: 100%;
  height: 150%;
  text-decoration: none;
  box-sizing: border-box;
  margin: 0;
  color: black;
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner .card-area a {
    padding: 6.4vw 5.6vw;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner .card-area a {
    padding: 2.22vw;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner .card-area a {
    padding: 6.4vw 5.6vw;
  }
}
footer .top-area .section-inner .card-area a .text-cat {
  margin: 0 auto;
  font-weight: bold;
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner .card-area a .text-cat {
    font-size: 13px;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner .card-area a .text-cat {
    font-size: 0.90278vw;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner .card-area a .text-cat {
    font-size: 3.2vw;
    letter-spacing: 0.26667vw;
  }
}
footer .top-area .section-inner .card-area a .title {
  font-family: "akrobat";
  font-weight: bold;
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner .card-area a .title {
    font-size: 32px;
    letter-spacing: 4px;
    margin: 24px 0;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner .card-area a .title {
    font-size: 2.22222vw;
    letter-spacing: 0.27778vw;
    margin: 1.666vw 0;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner .card-area a .title {
    font-size: 5.86667vw;
    letter-spacing: 0.90667vw;
    line-height: 6.93333vw;
  }
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner .card-area a .text-content {
    font-size: 14px;
    line-height: 28px;
    width: 440px;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner .card-area a .text-content {
    font-size: 0.97222vw;
    line-height: 1.94444vw;
    width: 30.55556vw;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner .card-area a .text-content {
    width: 100%;
    font-size: 3.2vw;
    line-height: 5.6vw;
  }
}
footer .bottom-area {
  padding: 4.72vw 0 3.68vw 0;
  position: relative;
  background-color: #111;
}

#mandate-top {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
#mandate-top .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#mandate-top .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mandate-top .bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
#mandate-top .title {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
#mandate-top .title h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  #mandate-top .title h1 {
    font-size: 32px;
  }
}
#mandate-top .title .subtitle {
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  #mandate-top .title .subtitle {
    font-size: 16px;
  }
}
#mandate-top .title .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 0.5s ease-out 1.2s forwards;
}
#mandate-top .title .scroll-indicator .mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 15px;
  position: relative;
}
#mandate-top .title .scroll-indicator .mouse::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}
#mandate-features {
  padding: 80px 0;
  background-color: #f8f9fa;
}
#mandate-features .features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#mandate-features .features-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out 0.5s forwards;
}
#mandate-features .features-container .features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  #mandate-features .features-container .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 750px) {
  #mandate-features .features-container .features-list {
    grid-template-columns: 1fr;
  }
}
#mandate-features .features-container .features-list .feature-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out forwards;
}
#mandate-features .features-container .features-list .feature-item:nth-child(1) {
  animation-delay: 0.7s;
}
#mandate-features .features-container .features-list .feature-item:nth-child(2) {
  animation-delay: 0.9s;
}
#mandate-features .features-container .features-list .feature-item:nth-child(3) {
  animation-delay: 1.1s;
}
#mandate-features .features-container .features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
#mandate-features .features-container .features-list .feature-item .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7ff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#mandate-features .features-container .features-list .feature-item .icon i {
  font-size: 2rem;
  color: #0066cc;
  transition: all 0.3s ease;
}
#mandate-features .features-container .features-list .feature-item:hover .icon {
  background: #0066cc;
}
#mandate-features .features-container .features-list .feature-item:hover .icon i {
  color: #fff;
}
#mandate-features .features-container .features-list .feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
  color: #333;
}
#mandate-features .features-container .features-list .feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
}

#mandate-solutions {
  padding: 80px 0;
  background: #fff;
}
#mandate-solutions .content-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#mandate-solutions .content-main .main-title {
  text-align: center;
  margin-bottom: 60px;
}
#mandate-solutions .content-main .main-title h2 {
  font-size: 2.5rem;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out 0.5s forwards;
}
#mandate-solutions .content-main .content-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out forwards;
}
#mandate-solutions .content-main .content-row:nth-child(2) {
  animation-delay: 0.7s;
}
#mandate-solutions .content-main .content-row:nth-child(3) {
  animation-delay: 0.9s;
}
#mandate-solutions .content-main .content-row:nth-child(4) {
  animation-delay: 1.1s;
}
@media screen and (max-width: 1200px) {
  #mandate-solutions .content-main .content-row {
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
  }
}
#mandate-solutions .content-main .content-row .content-area.w-70 {
  width: 70%;
  padding: 0 30px;
}
@media screen and (max-width: 1200px) {
  #mandate-solutions .content-main .content-row .content-area.w-70 {
    width: 100%;
    padding: 20px 0;
  }
}
#mandate-solutions .content-main .content-row .content-area.w-30 {
  width: 30%;
}
@media screen and (max-width: 1200px) {
  #mandate-solutions .content-main .content-row .content-area.w-30 {
    width: 100%;
    margin-bottom: 20px;
  }
}
#mandate-solutions .content-main .content-row .content-area .text-box.right {
  text-align: right;
}
@media screen and (max-width: 1200px) {
  #mandate-solutions .content-main .content-row .content-area .text-box.right {
    text-align: center;
  }
}
#mandate-solutions .content-main .content-row .content-area .text-box .title {
  margin-bottom: 20px;
}
#mandate-solutions .content-main .content-row .content-area .text-box .title h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
#mandate-solutions .content-main .content-row .content-area .text-box .title h3.right {
  text-align: right;
}
@media screen and (max-width: 1200px) {
  #mandate-solutions .content-main .content-row .content-area .text-box .title h3.right {
    text-align: center;
  }
}
#mandate-solutions .content-main .content-row .content-area .text-box .title h3.right::after {
  right: 0;
  left: auto;
}
#mandate-solutions .content-main .content-row .content-area .text-box .title h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #0066cc;
  transition: all 0.3s ease;
}
#mandate-solutions .content-main .content-row .content-area .text-box .content span {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}
#mandate-solutions .content-main .content-row .content-area .img-area .content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
#mandate-solutions .content-main .content-row .content-area .img-area .content-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#mandate-process {
  padding: 80px 0;
  background-color: #f8f9fa;
}
#mandate-process .process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#mandate-process .process-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out 0.5s forwards;
}
#mandate-process .process-container .process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  #mandate-process .process-container .process-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 750px) {
  #mandate-process .process-container .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
#mandate-process .process-container .process-list::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0066cc;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  #mandate-process .process-container .process-list::before {
    display: none;
  }
}
#mandate-process .process-container .process-list .process-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out forwards;
  position: relative;
  z-index: 2;
}
#mandate-process .process-container .process-list .process-item:nth-child(1) {
  animation-delay: 0.7s;
}
#mandate-process .process-container .process-list .process-item:nth-child(2) {
  animation-delay: 0.9s;
}
#mandate-process .process-container .process-list .process-item:nth-child(3) {
  animation-delay: 1.1s;
}
#mandate-process .process-container .process-list .process-item:nth-child(4) {
  animation-delay: 1.3s;
}
#mandate-process .process-container .process-list .process-item:nth-child(5) {
  animation-delay: 1.5s;
}
#mandate-process .process-container .process-list .process-item .number {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0066cc;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}
#mandate-process .process-container .process-list .process-item .number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 102, 204, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease;
}
#mandate-process .process-container .process-list .process-item:hover .number {
  transform: scale(1.1);
}
#mandate-process .process-container .process-list .process-item:hover .number::before {
  transform: translate(-50%, -50%) scale(1.2);
}
#mandate-process .process-container .process-list .process-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}
#mandate-process .process-container .process-list .process-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

#mandate-contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #0066cc, #004999);
  position: relative;
  overflow: hidden;
}
#mandate-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/reservation/contact-bg.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.1;
}
#mandate-contact .contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
#mandate-contact .contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out 0.5s forwards;
}
#mandate-contact .contact-container .contact-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out 0.7s forwards;
}
#mandate-contact .contact-container .contact-button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out 0.9s forwards;
}
#mandate-contact .contact-container .contact-button .btn-contact {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #0066cc;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#mandate-contact .contact-container .contact-button .btn-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 102, 204, 0.1);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
#mandate-contact .contact-container .contact-button .btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
#mandate-contact .contact-container .contact-button .btn-contact:hover::before {
  transform: translateX(0);
}
#mandate-contact .contact-container .contact-button .btn-contact span {
  position: relative;
  padding-right: 30px;
}
#mandate-contact .contact-container .contact-button .btn-contact span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 2px;
  background: #0066cc;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
#mandate-contact .contact-container .contact-button .btn-contact:hover span::after {
  right: -5px;
}

@font-face {
  font-family: "akrobat";
  src: url("../fonts/akrobat/Akrobat-ExtraBold.eot");
  src: url("../fonts/akrobat/Akrobat-ExtraBold.eot?iefix") format("eot"), url("../fonts/akrobat/Akrobat-ExtraBold.woff") format("woff"), url("../fonts/akrobat/Akrobat-ExtraBold.ttf") format("truetype");
}
@media screen and (max-width: 750px) {
  .mb-none {
    display: none !important;
  }
}
@media screen and (min-width: 1201px) {
  .mb-none {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .mb-none {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .mb-none {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .mb-on {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .mb-on {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .mb-on {
    display: block;
  }
}

body {
  margin: 0;
  padding: 0;
}

section {
  position: relative;
}

h1 {
  font-size: 42px; /* タイトルの大きさ */
  margin: 0;
  white-space: nowrap; /* 強制的に改行を防ぐ */
  opacity: 0; /* 初期状態は非表示 */
  transform: translateY(20px); /* 初期位置を少し下に */
  animation: fadeIn 0.5s ease-out 0.4s forwards; /* フェードインとともに上にスライドする */
}

@keyframes slideIn {
  0% {
    width: 0;
  }
  100% {
    width: 60%;
    color: white;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1201px) {
  .section-inner {
    width: 1200px;
  }
}
@media screen and (max-width: 1200px) {
  .section-inner {
    width: 700px;
  }
}
@media screen and (max-width: 750px) {
  .section-inner {
    width: 100vw;
  }
}/*# sourceMappingURL=mandate-style.css.map */