@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

ol,
ul {
  list-style: none;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

body {
  background-color: #F2EAE1;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
}

.back-to-top {
  display: none;
}

footer {
  width: 100%;
  padding: 40px 0;
  box-shadow: 0 1px 6px #eeeeee;
  position: relative;
}
footer .footer_container {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
footer .footer_container .footer-title {
  display: flex;
  align-items: flex-start;
}
footer .footer_container .footer-title_link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 6px;
}
footer .footer_container .footer-title_link .aurens-logo {
  width: 88px;
  height: auto;
}
footer .footer_container .footer-title_link .span {
  font-size: 14px;
  color: #686868;
  line-height: 14px;
}
footer .footer_container .footer_nav {
  margin-bottom: 20px;
}
footer .footer_container .footer_nav .footer-nav_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  gap: 0 20px;
}
footer .footer_container .footer_nav .footer-nav_list .footer-nav_list-item a {
  font-size: 14px;
  font-weight: 900;
}
footer .footer_container .footer_nav .footer-privacy {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
footer .footer_container .footer_nav .footer-privacy a {
  font-size: 14px;
}
footer .copyr {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 12px;
}
footer button {
  display: inline-block;
  width: auto;
}
footer button a {
  height: 100%;
  display: inline-flex;
  text-align: center;
}
footer button a .button-left {
  width: 36px;
  line-height: 40px;
  height: 100%;
  background-color: #338CB7;
}
footer button a .button-left .contact-i::before {
  color: #fff;
}
footer button a .button-right {
  padding: 0 14px;
  height: 100%;
  background-color: #0070A6;
  color: #fff;
  font-size: 14px;
  line-height: 40px;
}

header {
  width: 100%;
  height: 67px;
  background-color: #ffffff;
  position: fixed;
  display: flex;
  top: 0;
  justify-content: space-between;
  box-shadow: 0 1px 10px #cfcfcf;
  z-index: 200;
}
header .header-title {
  display: flex;
  align-items: center;
  padding-left: 40px;
}
header .header-title_link {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2px 6px;
}
header .header-title_link .aurens-logo {
  width: 98px;
  height: auto;
}
header .header-title_link .span {
  font-size: 14px;
  color: #686868;
  line-height: 14px;
}
header .header-nav {
  display: flex;
}
header .header-nav #wrapper {
  display: flex;
  align-items: center;
}
header .header-nav #wrapper .header-nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 28px;
}
header .header-nav #wrapper .header-nav_list .header-nav_list-item a {
  font-size: 16px;
  font-weight: 900;
}
header .header-nav .header_mobile-right {
  display: flex;
}
header .header-nav .header_mobile-right .burger-btn {
  display: none;
}
header .header-nav .header_mobile-right a .header-contact {
  width: 134px;
  height: 100%;
  margin-left: 50px;
  background-color: #0070A6;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-nav .header_mobile-right a .header-contact .header-contact_container {
  display: flex;
  flex-direction: column;
}
header .header-nav .header_mobile-right a .header-contact .header-contact_container .header-contact_img {
  width: 30px;
  height: auto;
  display: inline;
  margin: 0 auto 8px;
}
header .header-nav .header_mobile-right a .header-contact .header-contact_container .header-contact_text {
  color: #ffffff;
  font-size: 12px;
}

@media screen and (max-width: 960px) {
  header {
    height: 60px;
    box-shadow: 0 1px 6px #eeeeee;
  }
  header .header-title {
    padding-left: 30px;
  }
  header .header-nav #wrapper {
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #fff;
  }
  header .header-nav #wrapper .header-nav_list {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  header .header-nav #wrapper .header-nav_list .header-nav_list-item {
    padding-bottom: 20px;
    border-left: none;
    border-bottom: 1px solid rgba(54, 54, 54, 0.2);
    margin-right: 0;
    margin-bottom: 40px;
  }
  header .header-nav #wrapper .header-nav_list .header-nav_list-item a {
    font-size: 16px;
    font-weight: 900;
  }
  header .header-nav #wrapper .header-nav_list .header-nav_list-item:first-child {
    border-bottom: 1px solid rgba(54, 54, 54, 0.2);
  }
  header .header-nav #wrapper.fade {
    visibility: visible;
    opacity: 1;
  }
  header .header-nav .header_mobile-right .burger-btn {
    display: block;
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 110;
    margin-top: 10px;
    border: none;
    background: unset;
  }
  header .header-nav .header_mobile-right .bar {
    width: 39px;
    height: 1px;
    display: block;
    position: absolute;
    background-color: #363636;
  }
  header .header-nav .header_mobile-right .bar_top {
    top: 10px;
  }
  header .header-nav .header_mobile-right .bar_mid {
    top: 50%;
  }
  header .header-nav .header_mobile-right .bar_bottom {
    bottom: 10px;
  }
  header .header-nav .header_mobile-right .burger-btn.close .bar_top {
    transform: translate(-50%, 10px) rotate(45deg);
    transition: transform 0.3s;
  }
  header .header-nav .header_mobile-right .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity 0.3s;
  }
  header .header-nav .header_mobile-right .burger-btn.close .bar_bottom {
    transform: translate(-50%, -8px) rotate(-45deg);
    transition: transform 0.3s;
  }
  header .header-nav .header_mobile-right a .header-contact {
    width: 120px;
    margin-left: 20px;
  }
  header .header-nav .header_mobile-right a .header-contact .header-contact_container {
    display: flex;
    flex-direction: column;
  }
  header .header-nav .header_mobile-right a .header-contact .header-contact_container .header-contact_img {
    width: 28px;
    height: 28px;
    margin: 0 auto 6px;
  }
  footer {
    padding: 30px 0;
  }
  footer .footer_container {
    width: 80%;
  }
  footer .footer_container .footer-title_link {
    gap: 6px;
  }
  footer .footer_container .footer-title_link .aurens-logo {
    width: 78px;
  }
  footer .footer_container .footer-title_link .span {
    font-size: 13px;
    line-height: 13px;
  }
  footer .footer_container .footer_nav .footer-nav_list {
    margin-bottom: 6px;
    gap: 0 16px;
  }
  footer .footer_container .footer_nav .footer-privacy {
    gap: 0 16px;
  }
  footer .footer_container .footer_nav .footer-privacy a {
    font-size: 13px;
  }
}
@media screen and (max-width: 520px) {
  header .header-title {
    padding-left: 20px;
  }
  header .header-title_link {
    flex-wrap: wrap;
  }
  header .header-title_link .aurens-logo {
    width: 90px;
  }
  header .header-title_link .span {
    font-size: 12px;
    line-height: 12px;
  }
  footer {
    padding: 20px 0;
  }
  footer .footer_container {
    width: 96%;
  }
  footer .footer_container .footer-title_link {
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer_container .footer-title_link .aurens-logo {
    width: 68px;
  }
  footer .footer_container .footer_nav {
    flex-basis: 50%;
  }
  footer .footer_container .footer_nav .footer-nav_list {
    margin-bottom: 2px;
    gap: 0 12px;
    flex-direction: column;
  }
  footer .footer_container .footer_nav .footer-privacy {
    gap: 0 12px;
  }
  footer .footer_container .footer_nav .footer-privacy a {
    font-size: 12px;
  }
}
#reduleTop {
  padding: 60px 0;
}
#reduleTop .page_top_btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 102px;
  height: 102px;
  background-color: unset;
  border: none;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #reduleTop .page_top_btn {
    right: 12px;
    width: 88px;
    height: 88px;
  }
}
#reduleTop .page_top_btn:hover {
  animation: katakata 0.64s steps(1) infinite alternate;
}
@keyframes katakata {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
#reduleTop #FV {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
#reduleTop #FV .content {
  display: flex;
  align-items: center;
  justify-content: center;
}
#reduleTop #FV .content__bg {
  background-color: #2C7E4F;
  width: 448px;
  height: 368px;
  position: absolute;
  bottom: 10px;
  right: 0;
  border-radius: 0 0 0 60px;
}
@media screen and (max-width: 1440px) {
  #reduleTop #FV .content__bg {
    width: 367px;
    height: 292px;
    bottom: 48px;
    border-radius: 0 0 0 50px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #FV .content__bg {
    width: 330px;
    height: 230px;
    bottom: 48px;
    border-radius: 0 0 0 40px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #FV .content__bg {
    width: 291px;
    height: 185px;
    bottom: 48px;
    border-radius: 0 0 0 30px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .content__bg {
    bottom: -8px;
  }
}
#reduleTop #FV .ttl {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  #reduleTop #FV .ttl {
    width: 47%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #FV .ttl {
    width: 320px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .ttl {
    margin-top: 140px;
  }
}
#reduleTop #FV .ttl__box {
  background: #fff;
  border-radius: 60px;
  width: 80%;
  height: 76vh;
  margin: 6% 0 10%;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1440px) {
  #reduleTop #FV .ttl__box {
    height: 68vh;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #FV .ttl__box {
    height: 61vh;
    border-radius: 50px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #FV .ttl__box {
    height: 53vh;
    border-radius: 40px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #FV .ttl__box {
    height: 72vh;
    align-content: center;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .ttl__box {
    width: 85%;
    height: 600px;
    margin: 60px 0;
  }
}
#reduleTop #FV .ttl__txt {
  font-size: 20px;
  letter-spacing: 0.1rem;
  line-height: 34px;
  text-align: left;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1440px) {
  #reduleTop #FV .ttl__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #FV .ttl__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #FV .ttl__txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #FV .ttl__txt {
    line-height: 30px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .ttl__txt {
    letter-spacing: unset;
    line-height: 26px;
    padding: 0 5%;
  }
}
#reduleTop #FV .deco__1 {
  width: clamp(18.75rem, 4.0049rem + 23.0168vw, 31.625rem);
  position: absolute;
  top: 16%;
  left: -10%;
}
@media screen and (max-width: 1024px) {
  #reduleTop #FV .deco__1 {
    width: 230px;
    top: 27%;
    left: -11%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #FV .deco__1 {
    top: -6%;
    left: -3%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .deco__1 {
    width: 216px;
  }
}
#reduleTop #FV .deco__1-2 {
  position: absolute;
  width: 78px;
  top: 34%;
  left: 19%;
}
@media screen and (max-width: 1440px) {
  #reduleTop #FV .deco__1-2 {
    width: 62.4px;
    top: 36%;
    left: 20%;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #FV .deco__1-2 {
    width: 46.8px;
    top: 36%;
    left: 21%;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #FV .deco__1-2 {
    width: 40px;
    top: 41%;
    left: 17%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #FV .deco__1-2 {
    top: 4%;
    left: 31%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .deco__1-2 {
    width: 32px;
    left: 49%;
  }
}
#reduleTop #FV .deco__2 {
  width: clamp(19.3125rem, 6.5rem + 20vw, 30.5rem);
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  #reduleTop #FV .deco__2 {
    width: 260px;
    bottom: -22%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #FV .deco__2 {
    bottom: -15%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .deco__2 {
    width: 220px;
    bottom: -16%;
  }
}
#reduleTop #FV .deco__2-1 {
  position: absolute;
  width: 78px;
  bottom: 22%;
  left: 40%;
}
@media screen and (max-width: 1440px) {
  #reduleTop #FV .deco__2-1 {
    width: 62.4px;
    bottom: 20%;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #FV .deco__2-1 {
    width: 46.8px;
    bottom: 24%;
    left: 41%;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #FV .deco__2-1 {
    width: 40px;
    bottom: 26%;
    left: 41%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #FV .deco__2-1 {
    bottom: 19%;
    left: 37%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .deco__2-1 {
    bottom: 11%;
    left: 29%;
  }
}
#reduleTop #FV .deco__2-2 {
  position: absolute;
  width: 78px;
  bottom: 18%;
  right: 35%;
}
@media screen and (max-width: 1440px) {
  #reduleTop #FV .deco__2-2 {
    width: 62.4px;
    bottom: 15%;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #FV .deco__2-2 {
    width: 46.8px;
    bottom: 20%;
    right: 37%;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #FV .deco__2-2 {
    width: 40px;
    bottom: 22%;
    right: 36%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #FV .deco__2-2 {
    bottom: 17%;
    right: 31%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .deco__2-2 {
    bottom: 10%;
    right: 27%;
  }
}
#reduleTop #FV .deco__3 {
  width: clamp(19.75rem, 5.5059rem + 22.2346vw, 32.1875rem);
  position: absolute;
  top: 20%;
  right: -10%;
}
@media screen and (max-width: 1024px) {
  #reduleTop #FV .deco__3 {
    top: 30%;
    width: 230px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #FV .deco__3 {
    top: 2%;
    right: -5%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .deco__3 {
    width: 195px;
    top: 21%;
    right: -8%;
  }
}
#reduleTop #FV .deco__3-1 {
  position: absolute;
  width: 78px;
  top: 24%;
  right: 5%;
}
@media screen and (max-width: 1440px) {
  #reduleTop #FV .deco__3-1 {
    width: 62.4px;
    top: 25%;
    right: 6%;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #FV .deco__3-1 {
    width: 46.8px;
    top: 26%;
    right: 6%;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #FV .deco__3-1 {
    width: 40px;
    top: 31%;
    right: 3%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #FV .deco__3-1 {
    top: 3%;
    right: 12%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #FV .deco__3-1 {
    width: 32px;
    top: 22%;
    right: 19%;
  }
}
@media (prefers-reduced-motion: reduce) {
  #reduleTop #FV .deco__1-2,
  #reduleTop #FV .deco__3-1 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
#reduleTop #FV {
  /* 共通アニメーション定義 */
}
#reduleTop #FV .deco__1-2,
#reduleTop #FV .deco__2-1,
#reduleTop #FV .deco__2-2,
#reduleTop #FV .deco__3-1 {
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
#reduleTop #FV {
  /* 吹き出しごとに遅延と揺れの方向を変える */
}
#reduleTop #FV .deco__1-2 {
  animation-delay: 0.1s;
}
#reduleTop #FV .deco__2-1 {
  animation-delay: 0.5s;
}
#reduleTop #FV .deco__2-2 {
  animation-delay: 0.7s;
}
#reduleTop #FV .deco__3-1 {
  animation-delay: 1s;
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-8deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) rotate(4deg);
  }
  80% {
    transform: scale(0.95) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
#reduleTop #FV {
  /* ===================================
  1行ずつフェードインするテキストアニメーション
  =================================== */
}
#reduleTop #FV .ttl__txt {
  display: block;
}
#reduleTop #FV .ttl__txt br {
  display: block;
  content: "";
}
#reduleTop #FV {
  /* span要素で各行を囲む場合 */
}
#reduleTop #FV .ttl__txt .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}
#reduleTop #FV .ttl__txt .line:nth-child(1) {
  animation-delay: 0s;
}
#reduleTop #FV .ttl__txt .line:nth-child(2) {
  animation-delay: 0.5s;
}
#reduleTop #FV .ttl__txt .line:nth-child(3) {
  animation-delay: 1s;
}
#reduleTop #FV .ttl__txt .line:nth-child(4) {
  animation-delay: 2s;
}
#reduleTop #FV {
  /* フェードインアニメーション */
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#reduleTop #FV {
  /* アクセシビリティ対応 - モーション軽減設定 */
}
@media (prefers-reduced-motion: reduce) {
  #reduleTop #FV .ttl__txt .line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
#reduleTop #feature {
  margin-top: 3%;
  padding-top: 5%;
  position: relative;
  overflow: hidden;
}
#reduleTop #feature .ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .ttl {
    font-size: 24px;
  }
}
#reduleTop #feature .ttl__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
#reduleTop #feature .about__outer {
  display: flex;
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .about__outer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5%;
  }
}
#reduleTop #feature .about__bg {
  background-color: #2C7E4F;
  width: 26%;
  height: 842px;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 0 60px 60px 0;
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .about__bg {
    height: 740px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .about__bg {
    width: 40%;
    height: 600px;
    border-radius: 0 50px 50px 0;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .about__bg {
    height: 20%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .about__bg {
    height: 17%;
  }
}
#reduleTop #feature .about__bg--ring {
  content: "";
  width: 812px;
  height: 1624px;
  background-image: url(../images/svg_ring.svg);
  background-image: url(../images/svg_ring.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 35%;
  left: 68%;
  z-index: -1;
  transform: scale(-1, 1);
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .about__bg--ring {
    width: 649.6px;
    height: 1299.2px;
    top: 40%;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .about__bg--ring {
    width: 487.2px;
    height: 974.4px;
    top: 154%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .about__bg--ring {
    width: 406px;
    height: 812px;
    top: 136%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .about__bg--ring {
    width: 324.8px;
    height: 649.6px;
    top: 150%;
  }
}
#reduleTop #feature .about__left {
  width: 52%;
  display: grid;
  justify-items: center;
  margin-top: 5%;
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .about__left {
    width: 100%;
    margin-top: 9%;
  }
}
#reduleTop #feature .about__right {
  width: 45%;
  align-content: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .about__right {
    width: 100%;
  }
}
#reduleTop #feature .about__wrap {
  background-color: #fff;
  border-radius: 60px;
  width: 75%;
  margin-left: 80px;
  padding: 40px 60px 80px;
  display: grid;
  justify-items: center;
  position: relative;
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .about__wrap {
    padding: 30px 50px 70px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .about__wrap {
    margin: unset;
    border-radius: 50px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .about__wrap {
    border-radius: 40px;
    margin-top: 5%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .about__wrap {
    border-radius: 30px;
    width: 85%;
    padding: 26px 32px 60px;
    margin-top: 20%;
  }
}
#reduleTop #feature .about__wrap::before {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -50px;
  left: -20px;
}
@media screen and (max-width: 1440px) {
  #reduleTop #feature .about__wrap::before {
    width: 153.6px;
    height: 89.6px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .about__wrap::before {
    width: 115.2px;
    height: 67.2px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .about__wrap::before {
    top: -22px;
    left: -16px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .about__wrap::before {
    top: -55px;
    left: 31px;
  }
}
#reduleTop #feature .about__ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1440px) {
  #reduleTop #feature .about__ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .about__ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .about__ttl {
    font-size: 24px;
  }
}
#reduleTop #feature .about__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .about__border {
    width: 48px;
  }
}
#reduleTop #feature .about__txt {
  font-size: 18px;
  letter-spacing: 0.1rem;
  line-height: 36px;
}
@media screen and (max-width: 1440px) {
  #reduleTop #feature .about__txt {
    line-height: 32px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .about__txt {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .about__txt {
    letter-spacing: 0.05em;
  }
}
#reduleTop #feature .features {
  font-size: 22px;
  position: relative;
  margin-top: 20%;
}
@media screen and (max-width: 1440px) {
  #reduleTop #feature .features {
    font-size: 20px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .features {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .features {
    margin: 20% auto;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .features {
    margin: 25% auto;
    width: 75%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .features {
    margin: 30% auto;
    width: 85%;
    font-size: 16px;
  }
}
#reduleTop #feature .features li:before {
  content: "";
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-image: url(../images/checkbox.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  #reduleTop #feature .features li:before {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .features li:before {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .features li:before {
    width: 34px;
    height: 34px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .features li:before {
    width: 30px;
    height: 30px;
  }
}
#reduleTop #feature .features__deco1 {
  width: 150px;
  position: absolute;
  top: 0;
  right: 18%;
}
@media screen and (max-width: 1440px) {
  #reduleTop #feature .features__deco1 {
    width: 120px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .features__deco1 {
    width: 105px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .features__deco1 {
    top: 100px;
    right: 19%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .features__deco1 {
    width: 75px;
    top: 80px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .features__deco1 {
    top: 50px;
    right: 17%;
  }
}
#reduleTop #feature .features__deco2 {
  width: 130px;
  position: absolute;
  top: -70px;
  right: 7%;
}
@media screen and (max-width: 1440px) {
  #reduleTop #feature .features__deco2 {
    width: 104px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .features__deco2 {
    width: 91px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .features__deco2 {
    top: 44px;
    right: 14%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .features__deco2 {
    width: 65px;
    top: 24px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .features__deco2 {
    top: -14px;
    right: 10%;
  }
}
#reduleTop #feature .features__list {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  line-height: 30px;
}
#reduleTop #feature .baseFeature {
  background-color: #fff;
  width: 90%;
  border-radius: 0 60px 60px 0;
  padding: 6% 6% 15%;
  margin-top: 300px;
  display: grid;
  justify-items: center;
  position: relative;
  margin-bottom: 6%;
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .baseFeature {
    margin-top: 250px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .baseFeature {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .baseFeature {
    margin-top: 100px;
    border-radius: 0 50px 50px 0;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .baseFeature {
    padding: 6% 6% 140px;
    border-radius: 0 40px 40px 0;
    margin-bottom: 12%;
  }
}
#reduleTop #feature .baseFeature::before {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 370px;
  right: -10%;
}
@media screen and (max-width: 1440px) {
  #reduleTop #feature .baseFeature::before {
    width: 153.6px;
    height: 89.6px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .baseFeature::before {
    width: 115.2px;
    height: 67.2px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .baseFeature::before {
    top: 84px;
    right: -7%;
  }
}
#reduleTop #feature .baseFeature::after {
  content: "";
  display: inline-block;
  width: 200px;
  height: 302px;
  background-image: url(../images/deco_3.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -118px;
  left: 27px;
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .baseFeature::after {
    width: 160px;
    height: 241.6px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .baseFeature::after {
    width: 140px;
    height: 211.4px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .baseFeature::after {
    width: 120px;
    height: 181.2px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .baseFeature::after {
    width: 100px;
    height: 151px;
  }
}
#reduleTop #feature .baseFeature__bg {
  background-color: #2C7E4F;
  width: 548px;
  height: 710px;
  position: absolute;
  top: -104px;
  right: -200px;
  border-radius: 60px 0 0 60px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .baseFeature__bg {
    border-radius: 50px 0 0 50px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .baseFeature__bg {
    height: 610px;
    top: -82px;
    border-radius: 40px 0 0 40px;
  }
}
#reduleTop #feature .baseFeature__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10% 6%;
  margin: 10% 0;
  padding-bottom: 100px;
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .baseFeature__box {
    margin: 10% 0 16%;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .baseFeature__box {
    gap: 6% 4%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .baseFeature__box {
    grid-template-columns: 1fr;
    gap: 5%;
    margin: 10% 0 600px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .baseFeature__box {
    margin: 10% 0 750px;
  }
}
#reduleTop #feature .baseFeature__box::after {
  content: "";
  display: inline-block;
  width: 302px;
  height: 302px;
  background-image: url(../images/deco_4.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -68px;
  right: -12%;
}
@media screen and (max-width: 1280px) {
  #reduleTop #feature .baseFeature__box::after {
    width: 241.6px;
    height: 241.6px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .baseFeature__box::after {
    width: 211.4px;
    height: 211.4px;
    bottom: -40px;
    right: -11%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #feature .baseFeature__box::after {
    right: -14%;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .baseFeature__box::after {
    width: 181.2px;
    height: 181.2px;
    right: -17%;
  }
}
#reduleTop #feature .baseFeature__name {
  color: #E3672D;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .baseFeature__name {
    font-size: 20px;
  }
}
#reduleTop #feature .baseFeature__name::before {
  content: "";
  width: 42px;
  height: 42px;
  background-color: rgba(251, 220, 49, 0.2588235294);
  border-radius: 50%;
  position: absolute;
  top: -18px;
  left: -18px;
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .baseFeature__name::before {
    width: 32px;
    height: 32px;
    top: -14px;
    left: -14px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #feature .baseFeature__name::before {
    width: 28px;
    height: 28px;
    top: -12px;
    left: -12px;
  }
}
#reduleTop #feature .baseFeature__icon {
  filter: brightness(0) saturate(100%) invert(42%) sepia(85%) saturate(2089%) hue-rotate(349deg) brightness(96%) contrast(89%);
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .baseFeature__icon {
    width: 32px;
    height: 32px;
  }
}
#reduleTop #feature .baseFeature__txt {
  font-size: 18px;
  letter-spacing: 0.1rem;
  line-height: 30px;
  margin: 10px 0;
}
@media screen and (max-width: 1024px) {
  #reduleTop #feature .baseFeature__txt {
    font-size: 16px;
  }
}
#reduleTop #feature {
  /* ===================================
  Feature Section Animations
  =================================== */
  /* 左側カードのアニメーション */
}
#reduleTop #feature .about__left {
  opacity: 0;
  transform: translate(-60px, 40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
#reduleTop #feature .about__left.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
#reduleTop #feature .about__wrap {
  position: relative;
  z-index: 10;
}
#reduleTop #feature {
  /* タイトルのアニメーション */
}
#reduleTop #feature .about__ttl {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}
#reduleTop #feature .about__left.is-visible .about__ttl {
  opacity: 1;
  transform: translateY(0);
}
#reduleTop #feature {
  /* テキストのアニメーション */
}
#reduleTop #feature .about__txt {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.5s;
}
#reduleTop #feature .about__left.is-visible .about__txt {
  opacity: 1;
  transform: translateY(0);
}
#reduleTop #feature {
  /* 右側のデコレーション画像の浮遊アニメーション */
}
#reduleTop #feature .features__deco--wrap {
  position: relative;
}
#reduleTop #feature .features__deco1,
#reduleTop #feature .features__deco2 {
  opacity: 0;
  animation: floatIn 1s ease-out forwards;
}
#reduleTop #feature .features__deco1 {
  animation-delay: 0.3s;
}
#reduleTop #feature .features__deco2 {
  animation-delay: 0.5s;
}
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#reduleTop #feature {
  /* デコレーション画像の継続的な浮遊効果 */
}
#reduleTop #feature .about__right.is-visible .features__deco1 {
  animation: floatIn 1s ease-out 0.3s forwards, float 3s ease-in-out 1.3s infinite;
}
#reduleTop #feature .about__right.is-visible .features__deco2 {
  animation: floatIn 1s ease-out 0.5s forwards, float 3s ease-in-out 1.8s infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
#reduleTop #feature {
  /* チェックリストのアニメーション */
}
#reduleTop #feature .features__list {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  position: relative;
}
#reduleTop #feature {
  /* チェックマークのバウンスアニメーション */
}
#reduleTop #feature .features__list::before {
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#reduleTop #feature {
  /* リストが表示される順番に時間差をつける */
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(1)::before {
  transform: scale(1);
  transition-delay: 0.3s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(2)::before {
  transform: scale(1);
  transition-delay: 0.4s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(3)::before {
  transform: scale(1);
  transition-delay: 0.5s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(4)::before {
  transform: scale(1);
  transition-delay: 0.6s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(5)::before {
  transform: scale(1);
  transition-delay: 0.7s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(6) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
#reduleTop #feature .about__right.is-visible .features__list:nth-child(6)::before {
  transform: scale(1);
  transition-delay: 0.8s;
}
#reduleTop #feature {
  /* パフォーマンス最適化 */
}
#reduleTop #feature .about__left,
#reduleTop #feature .about__right,
#reduleTop #feature .features__list {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
#reduleTop #feature {
  /* レスポンシブ対応 - アニメーションの軽量化 */
}
@media (prefers-reduced-motion: reduce) {
  #reduleTop #feature .about__left,
  #reduleTop #feature .about__ttl,
  #reduleTop #feature .about__border,
  #reduleTop #feature .about__txt,
  #reduleTop #feature .features__deco1,
  #reduleTop #feature .features__deco2,
  #reduleTop #feature .features__list,
  #reduleTop #feature .features__list::before {
    animation: none !important;
    transition: none !important;
  }
  #reduleTop #feature .about__left.is-visible,
  #reduleTop #feature .about__left.is-visible .about__ttl,
  #reduleTop #feature .about__left.is-visible .about__txt,
  #reduleTop #feature .about__right.is-visible .features__list {
    opacity: 1;
    transform: none;
  }
  #reduleTop #feature .about__left.is-visible .about__border {
    width: 100%;
  }
  #reduleTop #feature .about__right.is-visible .features__list::before {
    transform: scale(1);
  }
}
#reduleTop #feature {
  /* ===================================
  Base Feature Section Animations
  =================================== */
  /* 基本機能カードの初期状態 */
}
#reduleTop #feature .baseFeature__wrap {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
#reduleTop #feature {
  /* スクロールで表示された状態 */
}
#reduleTop #feature .baseFeature__wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#reduleTop #feature {
  /* 各カードに時間差をつける（2列レイアウト対応） */
  /* 左列（奇数番目） */
}
#reduleTop #feature .baseFeature__wrap:nth-child(odd).is-visible {
  transition-delay: calc(var(--item-index, 0) * 0.1s);
}
#reduleTop #feature {
  /* 右列（偶数番目） */
}
#reduleTop #feature .baseFeature__wrap:nth-child(even).is-visible {
  transition-delay: calc(var(--item-index, 0) * 0.1s + 0.05s);
}
#reduleTop #feature {
  /* アイコンのアニメーション */
}
#reduleTop #feature .baseFeature__icon {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
#reduleTop #feature .baseFeature__wrap.is-visible .baseFeature__icon {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}
#reduleTop #feature {
  /* タイトルのアニメーション */
}
#reduleTop #feature .baseFeature__name {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
#reduleTop #feature .baseFeature__wrap.is-visible .baseFeature__name {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}
#reduleTop #feature {
  /* テキストのアニメーション */
}
#reduleTop #feature .baseFeature__txt {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
#reduleTop #feature .baseFeature__wrap.is-visible .baseFeature__txt {
  opacity: 1;
  transition-delay: 0.4s;
}
#reduleTop #feature {
  /* パフォーマンス最適化 */
}
#reduleTop #feature .baseFeature__wrap,
#reduleTop #feature .baseFeature__icon,
#reduleTop #feature .baseFeature__name,
#reduleTop #feature .baseFeature__txt {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
#reduleTop #feature {
  /* アクセシビリティ対応 - モーション軽減設定 */
}
@media (prefers-reduced-motion: reduce) {
  #reduleTop #feature .baseFeature__wrap,
  #reduleTop #feature .baseFeature__icon,
  #reduleTop #feature .baseFeature__name,
  #reduleTop #feature .baseFeature__txt {
    animation: none !important;
    transition: none !important;
  }
  #reduleTop #feature .baseFeature__wrap.is-visible,
  #reduleTop #feature .baseFeature__wrap.is-visible .baseFeature__icon,
  #reduleTop #feature .baseFeature__wrap.is-visible .baseFeature__name,
  #reduleTop #feature .baseFeature__wrap.is-visible .baseFeature__txt {
    opacity: 1;
    transform: none;
  }
}
#reduleTop #option {
  display: grid;
  justify-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #reduleTop #option {
    margin-top: 10%;
  }
}
#reduleTop #option::before {
  content: "";
  width: 812px;
  height: 1624px;
  background-image: url(../images/svg_ring.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 20%;
  right: 0;
}
@media screen and (max-width: 1280px) {
  #reduleTop #option::before {
    width: 649.6px;
    height: 1299.2px;
    top: 22%;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #option::before {
    width: 487.2px;
    height: 974.4px;
    top: auto;
    bottom: -40%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #option::before {
    width: 406px;
    height: 812px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #option::before {
    width: 324.8px;
    height: 649.6px;
  }
}
#reduleTop #option .ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  #reduleTop #option .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #option .ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #option .ttl {
    font-size: 24px;
  }
}
#reduleTop #option .ttl__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
#reduleTop #option .option__wrap {
  display: flex;
  gap: 5%;
  justify-content: center;
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  #reduleTop #option .option__wrap {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 100px;
  }
}
#reduleTop #option .option__wrap::before {
  content: "";
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -78px;
  right: 256px;
}
@media screen and (max-width: 1440px) {
  #reduleTop #option .option__wrap::before {
    width: 153.6px;
    height: 89.6px;
    right: 172px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #option .option__wrap::before {
    top: -57px;
    right: 99px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #option .option__wrap::before {
    width: 115.2px;
    height: 67.2px;
    top: 27px;
    right: 143px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #option .option__wrap::before {
    top: -37px;
    right: 96px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #option .option__wrap::before {
    top: -42px;
    right: 10px;
  }
}
#reduleTop #option .option__wrap::after {
  content: "";
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 77px;
  left: 135px;
}
@media screen and (max-width: 1440px) {
  #reduleTop #option .option__wrap::after {
    width: 153.6px;
    height: 89.6px;
    left: 54px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #option .option__wrap::after {
    left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #option .option__wrap::after {
    width: 115.2px;
    height: 67.2px;
    left: 110px;
    bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #option .option__wrap::after {
    left: 20px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #option .option__wrap::after {
    left: 8px;
    bottom: -90px;
  }
}
#reduleTop #option .option__card {
  background-color: #fff;
  width: 32%;
  border-radius: 60px;
  padding: 30px 40px 60px;
  display: grid;
  justify-items: center;
}
@media screen and (max-width: 1440px) {
  #reduleTop #option .option__card {
    width: 35%;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #option .option__card {
    width: 38%;
    border-radius: 54px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #option .option__card {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #option .option__card {
    width: 70%;
    border-radius: 40px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #option .option__card {
    width: 90%;
    border-radius: 30px;
    padding: 24px 36px 40px;
  }
}
#reduleTop #option .option__name {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  #reduleTop #option .option__name {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #option .option__name {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #option .option__name {
    margin-bottom: 24px;
  }
}
#reduleTop #option .option__img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  #reduleTop #option .option__img {
    height: 165px;
    border-radius: 18px;
  }
}
#reduleTop #option .option__txt {
  font-size: 18px;
  letter-spacing: 0.1rem;
  line-height: 32px;
  height: 240px;
}
@media screen and (max-width: 1280px) {
  #reduleTop #option .option__txt {
    font-size: 16px;
    height: 200px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #option .option__txt {
    line-height: 26px;
    height: 180px;
  }
}
#reduleTop #option .option__btn {
  color: #333;
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  background: #FBDC31;
  width: 270px;
  height: 66px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 1280px) {
  #reduleTop #option .option__btn {
    transform: scale(0.9);
  }
}
#reduleTop #option .option__btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -55%);
  transition: all 0.2s;
}
#reduleTop #option .option__btn::before {
  content: "";
  width: 290px;
  height: 66px;
  background-image: url(../images/btn_border.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -6px;
  left: -18px;
  transition: all 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  #reduleTop #option .option__btn:hover::before {
    top: 0;
    left: -10px;
  }
  #reduleTop #option .option__btn:hover span {
    transform: translate(-50%, -50%);
  }
}
#reduleTop #contacts {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 5% 0 7%;
  overflow: hidden;
  z-index: 1;
}
#reduleTop #contacts .ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #contacts .ttl {
    font-size: 24px;
  }
}
#reduleTop #contacts .ttl__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
#reduleTop #contacts .contact__contents {
  background-color: #fff;
  width: 80%;
  height: 730px;
  border-radius: 60px;
  display: grid;
  justify-items: center;
  padding: 3%;
  margin-top: 3%;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #reduleTop #contacts .contact__contents {
    height: 660px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .contact__contents {
    height: 570px;
    border-radius: 50px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #contacts .contact__contents {
    height: 490px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #contacts .contact__contents {
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #contacts .contact__contents {
    margin-bottom: 40px;
    border-radius: 30px;
  }
}
#reduleTop #contacts .contact__contents::after {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -50px;
  left: 50px;
}
@media screen and (max-width: 1440px) {
  #reduleTop #contacts .contact__contents::after {
    width: 153.6px;
    height: 89.6px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #contacts .contact__contents::after {
    width: 115.2px;
    height: 67.2px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #contacts .contact__contents::after {
    bottom: -25px;
  }
}
#reduleTop #contacts .contact__txt {
  font-size: 20px;
  margin: 4% 0;
  padding: 0 20px;
  letter-spacing: 0.1em;
  line-height: 26px;
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .contact__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #contacts .contact__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #contacts .contact__txt {
    margin: 32px 0;
  }
}
#reduleTop #contacts .contact__btn {
  color: #fff;
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  background: #E3672D;
  width: 448px;
  height: 134px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 1440px) {
  #reduleTop #contacts .contact__btn {
    width: 403.2px;
    height: 120.6px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .contact__btn {
    width: 371.84px;
    height: 111.22px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #contacts .contact__btn {
    width: 291.2px;
    height: 87.1px;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #contacts .contact__btn {
    width: 235px;
    height: 61px;
  }
}
#reduleTop #contacts .contact__btn span {
  color: #fff;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -55%);
  transition: all 0.2s;
}
#reduleTop #contacts .contact__btn::before {
  content: "";
  width: 451px;
  height: 134px;
  background-image: url(../images/btn_border_lg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -18px;
  left: -18px;
  transition: all 0.2s;
}
@media screen and (max-width: 1440px) {
  #reduleTop #contacts .contact__btn::before {
    width: 405.9px;
    height: 120.6px;
    top: -14px;
    left: -14px;
  }
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .contact__btn::before {
    width: 374.33px;
    height: 111.22px;
    top: -10px;
    left: -10px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #contacts .contact__btn::before {
    width: 293.15px;
    height: 87.1px;
    top: -8px;
    left: -8px;
  }
}
@media screen and (max-width: 480px) {
  #reduleTop #contacts .contact__btn::before {
    background-image: url(../images/btn_border_lgsp.svg);
    width: 235px;
    height: 65px;
  }
}
@media (hover: hover) and (pointer: fine) {
  #reduleTop #contacts .contact__btn:hover::before {
    top: 0;
    left: -3px;
  }
  #reduleTop #contacts .contact__btn:hover span {
    transform: translate(-50%, -50%);
  }
}
#reduleTop #contacts .contact__btn--wrap {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 5% 0;
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .contact__btn--wrap {
    gap: 7%;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #contacts .contact__btn--wrap {
    display: grid;
    gap: 32px;
  }
}
#reduleTop #contacts .address__wrap {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 3% 0;
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .address__wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #contacts .address__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #contacts .address__wrap {
    display: block;
    margin: 8% 0;
  }
}
#reduleTop #contacts .address__unit {
  text-align: left;
}
#reduleTop #contacts .address__border {
  border-right: 3px solid #2C7E4F;
  height: 44px;
}
@media screen and (max-width: 768px) {
  #reduleTop #contacts .address__border {
    border-right: none;
    height: unset;
    border-bottom: 3px solid #2C7E4F;
    width: 44px;
    margin: 0 auto 24px;
  }
}
#reduleTop #contacts .address__name {
  font-size: 20px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .address__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #contacts .address__name {
    font-size: 16px;
  }
}
#reduleTop #contacts .address__txt {
  margin: unset;
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .address__txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #contacts .address__txt {
    font-size: 13px;
  }
}
#reduleTop #contacts .address__box {
  height: 100px;
}
@media screen and (max-width: 1280px) {
  #reduleTop #contacts .address__box {
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  #reduleTop #contacts .address__box {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #reduleTop #contacts .address__box {
    height: unset;
    padding-bottom: 30px;
  }
}

#kintai {
  padding: 60px 0;
}
#kintai .page_top_btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 102px;
  height: 102px;
  background-color: unset;
  border: none;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #kintai .page_top_btn {
    right: 12px;
    width: 88px;
    height: 88px;
  }
}
#kintai .page_top_btn:hover {
  animation: katakata 0.64s steps(1) infinite alternate;
}
@keyframes katakata {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
#kintai #FV {
  height: -moz-fit-content;
  height: fit-content;
}
#kintai #FV .content {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 1280px) {
  #kintai #FV .content {
    height: 700px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .content {
    height: 800px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .content {
    height: 660px;
  }
}
#kintai #FV .content::before {
  content: "";
  display: inline-block;
  width: 812px;
  height: 812px;
  background-image: url(../images/svg_halfring.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 200px;
  right: 448px;
}
@media screen and (max-width: 1440px) {
  #kintai #FV .content::before {
    width: 649.6px;
    height: 649.6px;
    top: 230px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .content::before {
    width: 487.2px;
    height: 487.2px;
    right: 388px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .content::before {
    width: 406px;
    height: 406px;
    right: 300px;
    top: 300px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .content::before {
    width: 324.8px;
    height: 324.8px;
    transform: scale(-1, 1);
    left: 0;
    top: 500px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .content::before {
    width: 243.6px;
    height: 243.6px;
    top: 425px;
  }
}
#kintai #FV .content__bg {
  background-color: #2C7E4F;
  width: 448px;
  height: 676px;
  margin: 0 0 0 auto;
  transform: translateY(-200px);
  border-radius: 60px 0 0 60px;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  #kintai #FV .content__bg {
    width: 388px;
    height: 588px;
    border-radius: 50px 0 0 50px;
    transform: translateY(-120px);
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .content__bg {
    width: 300px;
    height: 528px;
    border-radius: 40px 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .content__bg {
    width: 240px;
    height: 50%;
    top: 20%;
  }
}
@media screen and (max-width: 620px) {
  #kintai #FV .content__bg {
    top: 24%;
    border-radius: 32px 0 0 32px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .content__bg {
    width: 200px;
    top: 26%;
  }
}
#kintai #FV .ttl {
  width: 16%;
}
@media screen and (max-width: 1024px) {
  #kintai #FV .ttl {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .ttl {
    width: 24%;
  }
}
#kintai #FV .ttl__box {
  margin-top: 6%;
  margin-left: 10%;
  z-index: 10;
  position: relative;
}
#kintai #FV .ttl__box::before {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -25%;
  left: 14%;
}
@media screen and (max-width: 1440px) {
  #kintai #FV .ttl__box::before {
    width: 153.6px;
    height: 89.6px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .ttl__box::before {
    width: 134.4px;
    height: 78.4px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .ttl__box::before {
    width: 115.2px;
    height: 67.2px;
    top: -25%;
    left: 18%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .ttl__box::before {
    top: 80%;
    left: 68%;
  }
}
@media screen and (max-width: 620px) {
  #kintai #FV .ttl__box::before {
    top: 112%;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .ttl__box::before {
    top: 108%;
    left: 54%;
  }
}
#kintai #FV .ttl__txt {
  font-size: 20px;
  letter-spacing: 0.1rem;
  line-height: 34px;
}
@media screen and (max-width: 1280px) {
  #kintai #FV .ttl__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .ttl__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .ttl__txt {
    font-size: 14px;
    letter-spacing: 0;
  }
}
#kintai #FV .deco__1 {
  width: 394px;
  position: absolute;
  bottom: 120px;
  left: 112px;
  z-index: 11;
}
@media screen and (max-width: 1440px) {
  #kintai #FV .deco__1 {
    width: 315.2px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .deco__1 {
    bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .deco__1 {
    width: 275.8px;
    left: 66px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .deco__1 {
    width: 236.4px;
    bottom: 117px;
    z-index: 10;
  }
}
@media screen and (max-width: 620px) {
  #kintai #FV .deco__1 {
    width: 197px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .deco__1 {
    width: 157.6px;
    left: 36px;
  }
}
#kintai #FV .deco__1-1 {
  position: absolute;
  width: 75px;
  bottom: 452px;
  left: 79px;
  z-index: 11;
}
@media screen and (max-width: 1440px) {
  #kintai #FV .deco__1-1 {
    width: 67.5px;
    bottom: 382px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .deco__1-1 {
    width: 60px;
    bottom: 343px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .deco__1-1 {
    bottom: 310px;
    left: 42px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .deco__1-1 {
    width: 52.5px;
    bottom: 310px;
  }
}
@media screen and (max-width: 620px) {
  #kintai #FV .deco__1-1 {
    bottom: 280px;
    left: 36px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .deco__1-1 {
    width: 37.5px;
    bottom: 246px;
    left: 15px;
  }
}
#kintai #FV .deco__1-2 {
  position: absolute;
  width: 114px;
  bottom: 441px;
  left: 346px;
  transition: all 0.3s;
  z-index: 11;
}
@media screen and (max-width: 1440px) {
  #kintai #FV .deco__1-2 {
    width: 102.6px;
    bottom: 375px;
    left: 290px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .deco__1-2 {
    width: 91.2px;
    bottom: 335px;
    left: 298px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .deco__1-2 {
    bottom: 300px;
    left: 226px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .deco__1-2 {
    width: 79.8px;
    bottom: 305px;
    left: 200px;
  }
}
@media screen and (max-width: 620px) {
  #kintai #FV .deco__1-2 {
    bottom: 277px;
    left: 174px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .deco__1-2 {
    width: 57px;
    bottom: 243px;
    left: 123px;
  }
}
#kintai #FV .deco__1-3 {
  position: absolute;
  width: 104px;
  bottom: 496px;
  left: 440px;
  transition: all 0.3s;
  z-index: 11;
}
@media screen and (max-width: 1440px) {
  #kintai #FV .deco__1-3 {
    width: 93.6px;
    bottom: 428px;
    left: 366px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .deco__1-3 {
    width: 83.2px;
    bottom: 386px;
    left: 366px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .deco__1-3 {
    bottom: 349px;
    left: 291px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .deco__1-3 {
    width: 72.8px;
    bottom: 355px;
    left: 253px;
  }
}
@media screen and (max-width: 620px) {
  #kintai #FV .deco__1-3 {
    bottom: 250px;
    left: 240px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .deco__1-3 {
    width: 52px;
    bottom: 225px;
    left: 169px;
  }
}
#kintai #FV .deco__2 {
  width: 842px;
  height: 526px;
  position: absolute;
  top: 4%;
  right: 9%;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  #kintai #FV .deco__2 {
    width: 673.6px;
    height: 420.8px;
    top: 12%;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .deco__2 {
    width: 589.4px;
    height: 368.2px;
    top: 15%;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .deco__2 {
    width: 505.2px;
    height: 315.6px;
    top: 22%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .deco__2 {
    width: 421px;
    height: 263px;
    top: 27%;
    right: 4%;
  }
}
@media screen and (max-width: 620px) {
  #kintai #FV .deco__2 {
    width: 336.8px;
    height: 210.4px;
    top: 34%;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .deco__2 {
    top: 31%;
    right: 2%;
  }
}
#kintai #FV .deco__2-1 {
  position: absolute;
  width: 577px;
  height: 433px;
  top: 28%;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  #kintai #FV .deco__2-1 {
    width: 461.6px;
    height: 346.4px;
    top: 32%;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .deco__2-1 {
    width: 403.9px;
    height: 303.1px;
    top: 34%;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .deco__2-1 {
    width: 346.2px;
    height: 259.8px;
    top: 38%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .deco__2-1 {
    display: none;
  }
}
#kintai #FV {
  /* 共通アニメーション定義 */
}
#kintai #FV .deco__1-1,
#kintai #FV .deco__1-2,
#kintai #FV .deco__1-3 {
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
#kintai #FV {
  /* 吹き出しごとに遅延と揺れの方向を変える */
}
#kintai #FV .deco__1-1 {
  animation-delay: 0.1s;
}
#kintai #FV .deco__1-2 {
  animation-delay: 0.5s;
}
#kintai #FV .deco__1-3 {
  animation-delay: 0.7s;
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-8deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) rotate(4deg);
  }
  80% {
    transform: scale(0.95) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  #kintai #FV .deco__1-1,
  #kintai #FV .deco__1-2,
  #kintai #FV .deco__1-3 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
#kintai #FV {
  /* ===================================
  1行ずつフェードインするテキストアニメーション
  =================================== */
}
#kintai #FV .ttl__txt {
  display: block;
}
#kintai #FV .ttl__txt br {
  display: block;
  content: "";
}
#kintai #FV {
  /* span要素で各行を囲む場合 */
}
#kintai #FV .ttl__txt .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}
#kintai #FV .ttl__txt .line:nth-child(1) {
  animation-delay: 0s;
}
#kintai #FV .ttl__txt .line:nth-child(2) {
  animation-delay: 0.5s;
}
#kintai #FV .ttl__txt .line:nth-child(3) {
  animation-delay: 1s;
}
#kintai #FV .ttl__txt .line:nth-child(4) {
  animation-delay: 2s;
}
#kintai #FV {
  /* フェードインアニメーション */
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#kintai #FV {
  /* アクセシビリティ対応 - モーション軽減設定 */
}
@media (prefers-reduced-motion: reduce) {
  #kintai #FV .ttl__txt .line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
#kintai #FV .about__outer {
  background-color: #2C7E4F;
  width: 80%;
  padding: 100px 0;
  border-radius: 0 60px 60px 0;
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
}
@media screen and (max-width: 1440px) {
  #kintai #FV .about__outer {
    width: 85%;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .about__outer {
    padding: 80px 0;
    border-radius: 0 50px 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .about__outer {
    border-radius: 0 40px 40px 0;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .about__outer {
    width: 90%;
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .about__outer {
    width: 95%;
  }
}
#kintai #FV .about__wrap {
  background-color: #fff;
  border-radius: 60px;
  width: 75%;
  padding: 40px 60px 80px;
}
@media screen and (max-width: 1280px) {
  #kintai #FV .about__wrap {
    border-radius: 50px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .about__wrap {
    border-radius: 40px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .about__wrap {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .about__wrap {
    width: 85%;
    padding: 30px 20px 60px;
  }
}
#kintai #FV .about__wrap::before {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50px;
  left: -108px;
}
@media screen and (max-width: 1440px) {
  #kintai #FV .about__wrap::before {
    width: 153.6px;
    height: 89.6px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .about__wrap::before {
    left: -90px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .about__wrap::before {
    width: 115.2px;
    height: 67.2px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .about__wrap::before {
    top: 36px;
    left: -30px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .about__wrap::before {
    top: -41px;
    left: -8px;
  }
}
#kintai #FV .about__wrap::after {
  content: "";
  display: inline-block;
  width: 300px;
  height: 300px;
  background-image: url(../images/kintai/A_01_office_team2-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -48px;
  right: -154px;
}
@media screen and (max-width: 1280px) {
  #kintai #FV .about__wrap::after {
    width: 240px;
    height: 240px;
    right: -118px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .about__wrap::after {
    width: 210px;
    height: 210px;
    right: -102px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #FV .about__wrap::after {
    width: 180px;
    height: 180px;
    bottom: -26px;
    right: -88px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .about__wrap::after {
    width: 150px;
    height: 150px;
    bottom: -45px;
    right: -72px;
  }
}
#kintai #FV .about__pulse {
  width: 40px;
  height: auto;
  position: absolute;
  right: -67px;
  bottom: 222px;
}
@media screen and (max-width: 1280px) {
  #kintai #FV .about__pulse {
    width: 34px;
    right: -50px;
    bottom: 172px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #FV .about__pulse {
    width: 32px;
    right: -46px;
    bottom: 142px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .about__pulse {
    right: -42px;
    bottom: 90px;
  }
}
#kintai #FV .about__ttl {
  color: #E3672D;
  font-size: 34px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  #kintai #FV .about__ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #FV .about__ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #FV .about__ttl {
    font-size: 24px;
  }
}
#kintai #FV .about__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px auto 24px;
}
#kintai #FV .about__txt {
  font-size: 18px;
  letter-spacing: 0.1rem;
  line-height: 36px;
  margin-top: 5%;
}
@media screen and (max-width: 1024px) {
  #kintai #FV .about__txt {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 1px;
  }
}
#kintai #FV .about__wrap {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#kintai #FV .about__wrap::after {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.3s;
}
#kintai #FV .about__wrap.is-visible,
#kintai #FV .about__wrap.is-visible::after {
  opacity: 1;
  transform: translateY(0);
}
@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#kintai #FV .blink {
  animation: blinking 1s ease-in-out infinite alternate;
}
#kintai #feature {
  margin-top: 5%;
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  padding: 5% 0;
}
#kintai #feature::before {
  content: "";
  display: inline-block;
  width: 812px;
  height: 1624px;
  background-image: url(../images/svg_ring.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 220px;
  right: 0;
}
@media screen and (max-width: 1280px) {
  #kintai #feature::before {
    width: 649.6px;
    height: 1299.2px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #feature::before {
    width: 487.2px;
    height: 974.4px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature::before {
    width: 406px;
    height: 812px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #feature::before {
    width: 324.8px;
    height: 649.6px;
    top: 522px;
  }
}
#kintai #feature .ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  #kintai #feature .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #feature .ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #feature .ttl {
    font-size: 24px;
  }
}
#kintai #feature .ttl__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
#kintai #feature .feature__wrap, #kintai #feature .feature__wrap--left, #kintai #feature .feature__wrap--right {
  background-color: #fff;
  border-radius: 60px;
  display: grid;
  grid-template-columns: 30% 66%;
  gap: 4%;
  padding: 80px;
  width: 67%;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #kintai #feature .feature__wrap, #kintai #feature .feature__wrap--left, #kintai #feature .feature__wrap--right {
    border-radius: 50px;
    padding: 50px 40px;
    width: 70%;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #feature .feature__wrap, #kintai #feature .feature__wrap--left, #kintai #feature .feature__wrap--right {
    border-radius: 40px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #feature .feature__wrap, #kintai #feature .feature__wrap--left, #kintai #feature .feature__wrap--right {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__wrap, #kintai #feature .feature__wrap--left, #kintai #feature .feature__wrap--right {
    width: 90%;
    grid-template-columns: 1fr;
    padding: 60px 32px 100px;
  }
}
#kintai #feature .feature__wrap--right {
  margin: 60px 120px 60px auto;
}
#kintai #feature .feature__wrap--right::before {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 60px;
  left: -146px;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  #kintai #feature .feature__wrap--right::before {
    width: 153.6px;
    height: 89.6px;
    left: -115px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #feature .feature__wrap--right::before {
    bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #feature .feature__wrap--right::before {
    width: 115.2px;
    height: 67.2px;
    left: -84px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__wrap--right::before {
    right: 14px;
    left: auto;
    top: -41px;
  }
}
@media screen and (max-width: 1440px) {
  #kintai #feature .feature__wrap--right {
    margin: 60px 80px 60px auto;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #feature .feature__wrap--right {
    margin: 60px 40px 60px auto;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__wrap--right {
    margin: 90px auto;
  }
}
#kintai #feature .feature__wrap--left {
  margin: 60px auto 60px 120px;
}
#kintai #feature .feature__wrap--left::before {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 60px;
  right: -146px;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  #kintai #feature .feature__wrap--left::before {
    width: 153.6px;
    height: 89.6px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #feature .feature__wrap--left::before {
    right: -115px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #feature .feature__wrap--left::before {
    width: 115.2px;
    height: 67.2px;
    right: -84px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__wrap--left::before {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  #kintai #feature .feature__wrap--left {
    margin: 60px auto 60px 80px;
  }
}
@media screen and (max-width: 1440px) {
  #kintai #feature .feature__wrap--left {
    margin: 60px auto 60px 40px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__wrap--left {
    margin: 90px auto;
  }
}
#kintai #feature .feature__img {
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__img {
    width: 60%;
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  #kintai #feature .feature__img {
    width: 100%;
  }
}
#kintai #feature .feature__img--deco {
  width: 564px;
  height: 423px;
  position: absolute;
  top: 20%;
  right: 0%;
  z-index: 10;
}
@media screen and (max-width: 1440px) {
  #kintai #feature .feature__img--deco {
    width: 451.2px;
    height: 338.4px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #feature .feature__img--deco {
    width: 338.4px;
    height: 253.8px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #feature .feature__img--deco {
    width: 282px;
    height: 211.5px;
    top: 22%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__img--deco {
    top: 21%;
  }
}
#kintai #feature .feature__header {
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  #kintai #feature .feature__header {
    font-size: 26px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #feature .feature__header {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #feature .feature__header {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__header {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  #kintai #feature .feature__header {
    font-size: 18px;
  }
}
#kintai #feature .feature__border {
  width: 96px;
  border-bottom: 4px solid #2C7E4F;
  margin: 26px 0 40px;
}
@media screen and (max-width: 1024px) {
  #kintai #feature .feature__border {
    width: 78px;
    margin: 18px 0 32px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__border {
    margin: 18px auto 32px;
  }
}
#kintai #feature .feature__txt {
  letter-spacing: 0.1rem;
  line-height: 38px;
}
@media screen and (max-width: 1024px) {
  #kintai #feature .feature__txt {
    line-height: 34px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__txt {
    line-height: 30px;
  }
}
#kintai #feature .feature__deco1 {
  background-color: #2C7E4F;
  width: 600px;
  height: 840px;
  border-radius: 0 60px 60px 0;
  position: absolute;
  left: 0;
  top: 53%;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  #kintai #feature .feature__deco1 {
    width: 500px;
    height: 700px;
    border-radius: 0 50px 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #feature .feature__deco1 {
    width: 320px;
    height: 586px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__deco1 {
    top: 42%;
  }
}
@media screen and (max-width: 480px) {
  #kintai #feature .feature__deco1 {
    top: 43%;
  }
}
#kintai #feature .feature__deco1-1::before {
  content: "";
  width: 307px;
  height: 307px;
  background-image: url(../images/kintai/A_01_office_workshop1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 78px;
  top: 47%;
  z-index: 3;
}
@media screen and (max-width: 1440px) {
  #kintai #feature .feature__deco1-1::before {
    width: 245.6px;
    height: 245.6px;
    left: 52px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #feature .feature__deco1-1::before {
    width: 184.2px;
    height: 184.2px;
    top: 48%;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #feature .feature__deco1-1::before {
    width: 153.5px;
    height: 153.5px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #feature .feature__deco1-1::before {
    top: 40%;
  }
}
@media screen and (max-width: 480px) {
  #kintai #feature .feature__deco1-1::before {
    top: 41%;
  }
}
#kintai #feature .feature__deco2 {
  background-color: #2C7E4F;
  width: 690px;
  height: 330px;
  border-radius: 60px 0 0 60px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  #kintai #feature .feature__deco2 {
    width: 460px;
    height: 240px;
    border-radius: 50px 0 0 50px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #feature .feature__deco2 {
    width: 280px;
    height: 220px;
    bottom: 20px;
  }
}
#kintai #feature {
  /* 初期状態（非表示） */
}
#kintai #feature .feature__wrap--right,
#kintai #feature .feature__wrap--left,
#kintai #feature .feature__deco1 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#kintai #feature .feature__deco2 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.9s ease;
}
#kintai #feature .feature__deco3 {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 1.1s ease;
}
#kintai #feature {
  /* 表示状態 */
}
#kintai #feature .feature__wrap--right.is-visible,
#kintai #feature .feature__wrap--left.is-visible,
#kintai #feature .feature__deco1.is-visible,
#kintai #feature .feature__deco2.is-visible,
#kintai #feature .feature__deco3.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#kintai #feature {
  /* 左右で少し動きを変えたい場合 */
}
#kintai #feature .feature__wrap--left {
  transform: translateY(30px) translateX(-20px);
}
#kintai #feature .feature__wrap--left.is-visible {
  transform: translateY(0) translateX(0);
}
#kintai #pictures {
  display: grid;
  justify-items: center;
  margin: 5% 0;
  position: relative;
}
@media screen and (max-width: 1280px) {
  #kintai #pictures {
    margin: 7% 0;
  }
}
@media screen and (max-width: 480px) {
  #kintai #pictures {
    margin: 7% 0 15%;
  }
}
#kintai #pictures .ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  #kintai #pictures .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #pictures .ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #pictures .ttl {
    font-size: 24px;
  }
}
#kintai #pictures .ttl__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
#kintai #pictures .pictures {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 40px;
}
@media screen and (max-width: 1440px) {
  #kintai #pictures .pictures {
    border-radius: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #pictures .pictures {
    border-radius: 26px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #pictures .pictures {
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #pictures .pictures {
    border-radius: 18px;
  }
}
#kintai #pictures .pictures__outer {
  display: flex;
  margin: 5% 0;
}
@media screen and (max-width: 1024px) {
  #kintai #pictures .pictures__outer {
    display: grid;
    gap: 5%;
    padding-bottom: 50px;
  }
}
#kintai #pictures .pictures__wrap {
  display: grid;
  gap: 5%;
  align-content: center;
  justify-items: center;
}
#kintai #pictures .pictures__box, #kintai #pictures .pictures__box03, #kintai #pictures .pictures__box02, #kintai #pictures .pictures__box01 {
  background-color: #fff;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  #kintai #pictures .pictures__box, #kintai #pictures .pictures__box03, #kintai #pictures .pictures__box02, #kintai #pictures .pictures__box01 {
    border-radius: 40px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #pictures .pictures__box, #kintai #pictures .pictures__box03, #kintai #pictures .pictures__box02, #kintai #pictures .pictures__box01 {
    border-radius: 30px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #pictures .pictures__box, #kintai #pictures .pictures__box03, #kintai #pictures .pictures__box02, #kintai #pictures .pictures__box01 {
    border-radius: 24px;
    padding: 14px;
  }
}
#kintai #pictures .pictures__box01 {
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #kintai #pictures .pictures__box01 {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #pictures .pictures__box01 {
    width: 90%;
  }
}
#kintai #pictures .pictures__box02 {
  width: 85%;
}
@media screen and (max-width: 1024px) {
  #kintai #pictures .pictures__box02 {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #pictures .pictures__box02 {
    width: 90%;
  }
}
#kintai #pictures .pictures__box03 {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  #kintai #pictures .pictures__box03 {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #pictures .pictures__box03 {
    width: 90%;
  }
}
#kintai #pictures .pictures__deco::before {
  content: "";
  width: 730.8px;
  height: 1461.6px;
  background-image: url(../images/svg_ring.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 40%;
  left: 0;
  transform: scale(-1, 1);
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  #kintai #pictures .pictures__deco::before {
    width: 649.6px;
    height: 1299.2px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #pictures .pictures__deco::before {
    width: 487.2px;
    height: 974.4px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #pictures .pictures__deco::before {
    top: 68%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #pictures .pictures__deco::before {
    width: 406px;
    height: 812px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #pictures .pictures__deco::before {
    width: 324.8px;
    height: 649.6px;
    top: 522px;
  }
}
#kintai #contacts {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 5% 0 7%;
  overflow: hidden;
  z-index: 1;
}
#kintai #contacts .ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #contacts .ttl {
    font-size: 24px;
  }
}
#kintai #contacts .ttl__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
#kintai #contacts .contact__contents {
  background-color: #fff;
  width: 80%;
  height: 730px;
  border-radius: 60px;
  display: grid;
  justify-items: center;
  padding: 3%;
  margin-top: 3%;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #kintai #contacts .contact__contents {
    height: 660px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .contact__contents {
    height: 570px;
    border-radius: 50px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #contacts .contact__contents {
    height: 490px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #contacts .contact__contents {
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #contacts .contact__contents {
    margin-bottom: 40px;
    border-radius: 30px;
  }
}
#kintai #contacts .contact__contents::after {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -50px;
  left: 50px;
}
@media screen and (max-width: 1440px) {
  #kintai #contacts .contact__contents::after {
    width: 153.6px;
    height: 89.6px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #contacts .contact__contents::after {
    width: 115.2px;
    height: 67.2px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #contacts .contact__contents::after {
    bottom: -25px;
  }
}
#kintai #contacts .contact__txt {
  font-size: 20px;
  margin: 4% 0;
  padding: 0 20px;
  letter-spacing: 0.1em;
  line-height: 26px;
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .contact__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #contacts .contact__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #contacts .contact__txt {
    margin: 32px 0;
  }
}
#kintai #contacts .contact__btn {
  color: #fff;
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  background: #E3672D;
  width: 448px;
  height: 134px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 1440px) {
  #kintai #contacts .contact__btn {
    width: 403.2px;
    height: 120.6px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .contact__btn {
    width: 371.84px;
    height: 111.22px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #contacts .contact__btn {
    width: 291.2px;
    height: 87.1px;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #contacts .contact__btn {
    width: 235px;
    height: 61px;
  }
}
#kintai #contacts .contact__btn span {
  color: #fff;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -55%);
  transition: all 0.2s;
}
#kintai #contacts .contact__btn::before {
  content: "";
  width: 451px;
  height: 134px;
  background-image: url(../images/btn_border_lg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -18px;
  left: -18px;
  transition: all 0.2s;
}
@media screen and (max-width: 1440px) {
  #kintai #contacts .contact__btn::before {
    width: 405.9px;
    height: 120.6px;
    top: -14px;
    left: -14px;
  }
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .contact__btn::before {
    width: 374.33px;
    height: 111.22px;
    top: -10px;
    left: -10px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #contacts .contact__btn::before {
    width: 293.15px;
    height: 87.1px;
    top: -8px;
    left: -8px;
  }
}
@media screen and (max-width: 480px) {
  #kintai #contacts .contact__btn::before {
    background-image: url(../images/btn_border_lgsp.svg);
    width: 235px;
    height: 65px;
  }
}
@media (hover: hover) and (pointer: fine) {
  #kintai #contacts .contact__btn:hover::before {
    top: 0;
    left: -3px;
  }
  #kintai #contacts .contact__btn:hover span {
    transform: translate(-50%, -50%);
  }
}
#kintai #contacts .contact__btn--wrap {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 5% 0;
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .contact__btn--wrap {
    gap: 7%;
  }
}
@media screen and (max-width: 768px) {
  #kintai #contacts .contact__btn--wrap {
    display: grid;
    gap: 32px;
  }
}
#kintai #contacts .address__wrap {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 3% 0;
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .address__wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #contacts .address__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #contacts .address__wrap {
    display: block;
    margin: 8% 0;
  }
}
#kintai #contacts .address__unit {
  text-align: left;
}
#kintai #contacts .address__border {
  border-right: 3px solid #2C7E4F;
  height: 44px;
}
@media screen and (max-width: 768px) {
  #kintai #contacts .address__border {
    border-right: none;
    height: unset;
    border-bottom: 3px solid #2C7E4F;
    width: 44px;
    margin: 0 auto 24px;
  }
}
#kintai #contacts .address__name {
  font-size: 20px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .address__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #contacts .address__name {
    font-size: 16px;
  }
}
#kintai #contacts .address__txt {
  margin: unset;
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .address__txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #contacts .address__txt {
    font-size: 13px;
  }
}
#kintai #contacts .address__box {
  height: 100px;
}
@media screen and (max-width: 1280px) {
  #kintai #contacts .address__box {
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  #kintai #contacts .address__box {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #kintai #contacts .address__box {
    height: unset;
    padding-bottom: 30px;
  }
}

#kyuyoMeisai {
  padding: 60px 0;
}
#kyuyoMeisai .page_top_btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 102px;
  height: 102px;
  background-color: unset;
  border: none;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai .page_top_btn {
    right: 12px;
    width: 88px;
    height: 88px;
  }
}
#kyuyoMeisai .page_top_btn:hover {
  animation: katakata 0.64s steps(1) infinite alternate;
}
@keyframes katakata {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
#kyuyoMeisai #FV {
  height: -moz-fit-content;
  height: fit-content;
}
#kyuyoMeisai #FV .content {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .content {
    height: 700px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .content {
    height: 800px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .content {
    height: 660px;
  }
}
#kyuyoMeisai #FV .content::before {
  content: "";
  display: inline-block;
  width: 812px;
  height: 812px;
  background-image: url(../images/svg_halfring.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 200px;
  right: 448px;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #FV .content::before {
    width: 649.6px;
    height: 649.6px;
    top: 230px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .content::before {
    width: 487.2px;
    height: 487.2px;
    right: 388px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .content::before {
    width: 406px;
    height: 406px;
    right: 300px;
    top: 300px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .content::before {
    width: 324.8px;
    height: 324.8px;
    transform: scale(-1, 1);
    left: 0;
    top: 500px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .content::before {
    width: 243.6px;
    height: 243.6px;
    top: 425px;
  }
}
#kyuyoMeisai #FV .content__bg {
  background-color: #2C7E4F;
  width: 448px;
  height: 676px;
  margin: 0 0 0 auto;
  transform: translateY(-200px);
  border-radius: 60px 0 0 60px;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .content__bg {
    width: 388px;
    height: 588px;
    border-radius: 50px 0 0 50px;
    transform: translateY(-120px);
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .content__bg {
    width: 300px;
    height: 528px;
    border-radius: 40px 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .content__bg {
    width: 240px;
    height: 50%;
    top: 20%;
  }
}
@media screen and (max-width: 620px) {
  #kyuyoMeisai #FV .content__bg {
    top: 24%;
    border-radius: 32px 0 0 32px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .content__bg {
    width: 200px;
    top: 26%;
  }
}
#kyuyoMeisai #FV .ttl {
  width: 16%;
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .ttl {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .ttl {
    width: 24%;
  }
}
#kyuyoMeisai #FV .ttl__box {
  margin-top: 6%;
  margin-left: 10%;
  z-index: 10;
  position: relative;
}
#kyuyoMeisai #FV .ttl__box::before {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -25%;
  left: 14%;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #FV .ttl__box::before {
    width: 153.6px;
    height: 89.6px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .ttl__box::before {
    width: 134.4px;
    height: 78.4px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .ttl__box::before {
    width: 115.2px;
    height: 67.2px;
    top: -25%;
    left: 18%;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .ttl__box::before {
    top: 80%;
    left: 68%;
  }
}
@media screen and (max-width: 620px) {
  #kyuyoMeisai #FV .ttl__box::before {
    top: 112%;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .ttl__box::before {
    top: 108%;
    left: 54%;
  }
}
#kyuyoMeisai #FV .ttl__txt {
  font-size: 20px;
  letter-spacing: 0.1rem;
  line-height: 34px;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .ttl__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .ttl__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .ttl__txt {
    font-size: 14px;
    letter-spacing: 0;
  }
}
#kyuyoMeisai #FV .deco__1 {
  width: 323px;
  position: absolute;
  bottom: 120px;
  left: 112px;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #FV .deco__1 {
    width: 258.4px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .deco__1 {
    left: 72px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .deco__1 {
    width: 226.1px;
    left: 56px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .deco__1 {
    width: 193.8px;
    bottom: 190px;
    left: 36px;
    z-index: 10;
  }
}
@media screen and (max-width: 620px) {
  #kyuyoMeisai #FV .deco__1 {
    width: 161.5px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .deco__1 {
    width: 129.2px;
    bottom: 152px;
    left: 18px;
  }
}
#kyuyoMeisai #FV .deco__1-1 {
  position: absolute;
  width: 114px;
  bottom: 440px;
  left: 202px;
  transition: all 0.3s;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #FV .deco__1-1 {
    width: 102.6px;
    bottom: 372px;
    left: 184px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .deco__1-1 {
    width: 91.2px;
    left: 154px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .deco__1-1 {
    bottom: 332px;
    left: 120px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .deco__1-1 {
    width: 79.8px;
    bottom: 386px;
    left: 86px;
  }
}
@media screen and (max-width: 620px) {
  #kyuyoMeisai #FV .deco__1-1 {
    bottom: 346px;
    left: 72px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .deco__1-1 {
    width: 57px;
    bottom: 275px;
    left: 54px;
    z-index: 12;
  }
}
#kyuyoMeisai #FV .deco__1-2 {
  position: absolute;
  width: 134px;
  bottom: 496px;
  left: 292px;
  transition: all 0.3s;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #FV .deco__1-2 {
    width: 120.6px;
    bottom: 428px;
    left: 260px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .deco__1-2 {
    width: 107.2px;
    bottom: 418px;
    left: 226px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .deco__1-2 {
    bottom: 370px;
    left: 180px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .deco__1-2 {
    width: 93.8px;
    bottom: 406px;
    left: 146px;
  }
}
@media screen and (max-width: 620px) {
  #kyuyoMeisai #FV .deco__1-2 {
    bottom: 384px;
    left: 120px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .deco__1-2 {
    width: 67px;
    bottom: 306px;
    left: 12px;
  }
}
#kyuyoMeisai #FV .deco__2 {
  width: 842px;
  height: 526px;
  position: absolute;
  top: 4%;
  right: 9%;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #FV .deco__2 {
    width: 673.6px;
    height: 420.8px;
    top: 12%;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .deco__2 {
    width: 589.4px;
    height: 368.2px;
    top: 15%;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .deco__2 {
    width: 505.2px;
    height: 315.6px;
    top: 22%;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .deco__2 {
    width: 421px;
    height: 263px;
    top: 27%;
    right: 4%;
  }
}
@media screen and (max-width: 620px) {
  #kyuyoMeisai #FV .deco__2 {
    width: 336.8px;
    height: 210.4px;
    top: 34%;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .deco__2 {
    top: 31%;
    right: 2%;
  }
}
#kyuyoMeisai #FV .deco__2-1 {
  position: absolute;
  width: 577px;
  height: 433px;
  top: 28%;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #FV .deco__2-1 {
    width: 461.6px;
    height: 346.4px;
    top: 32%;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .deco__2-1 {
    width: 403.9px;
    height: 303.1px;
    top: 34%;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .deco__2-1 {
    width: 346.2px;
    height: 259.8px;
    top: 38%;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .deco__2-1 {
    display: none;
  }
}
#kyuyoMeisai #FV {
  /* 共通アニメーション定義 */
}
#kyuyoMeisai #FV .deco__1-1,
#kyuyoMeisai #FV .deco__1-2 {
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
#kyuyoMeisai #FV {
  /* 吹き出しごとに遅延と揺れの方向を変える */
}
#kyuyoMeisai #FV .deco__1-1 {
  animation-delay: 0.1s;
}
#kyuyoMeisai #FV .deco__1-2 {
  animation-delay: 0.5s;
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-8deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) rotate(4deg);
  }
  80% {
    transform: scale(0.95) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
#kyuyoMeisai #FV {
  /* ===================================
  1行ずつフェードインするテキストアニメーション
  =================================== */
}
#kyuyoMeisai #FV .ttl__txt {
  display: block;
}
#kyuyoMeisai #FV .ttl__txt br {
  display: block;
  content: "";
}
#kyuyoMeisai #FV {
  /* span要素で各行を囲む場合 */
}
#kyuyoMeisai #FV .ttl__txt .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}
#kyuyoMeisai #FV .ttl__txt .line:nth-child(1) {
  animation-delay: 0s;
}
#kyuyoMeisai #FV .ttl__txt .line:nth-child(2) {
  animation-delay: 0.5s;
}
#kyuyoMeisai #FV .ttl__txt .line:nth-child(3) {
  animation-delay: 1s;
}
#kyuyoMeisai #FV .ttl__txt .line:nth-child(4) {
  animation-delay: 2s;
}
#kyuyoMeisai #FV {
  /* フェードインアニメーション */
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#kyuyoMeisai #FV {
  /* アクセシビリティ対応 - モーション軽減設定 */
}
@media (prefers-reduced-motion: reduce) {
  #kyuyoMeisai #FV .ttl__txt .line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
#kyuyoMeisai #FV .about__outer {
  background-color: #2C7E4F;
  width: 80%;
  padding: 100px 0;
  border-radius: 0 60px 60px 0;
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #FV .about__outer {
    width: 85%;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .about__outer {
    padding: 80px 0;
    border-radius: 0 50px 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .about__outer {
    border-radius: 0 40px 40px 0;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .about__outer {
    width: 90%;
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .about__outer {
    width: 95%;
  }
}
#kyuyoMeisai #FV .about__wrap {
  background-color: #fff;
  border-radius: 60px;
  width: 75%;
  padding: 40px 60px 80px;
  display: grid;
  justify-items: center;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .about__wrap {
    border-radius: 50px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .about__wrap {
    border-radius: 40px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .about__wrap {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .about__wrap {
    width: 85%;
    padding: 30px 20px 60px;
  }
}
#kyuyoMeisai #FV .about__wrap::before {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50px;
  left: -108px;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #FV .about__wrap::before {
    width: 153.6px;
    height: 89.6px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .about__wrap::before {
    left: -90px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .about__wrap::before {
    width: 115.2px;
    height: 67.2px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .about__wrap::before {
    top: 36px;
    left: -30px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .about__wrap::before {
    top: -41px;
    left: -8px;
  }
}
#kyuyoMeisai #FV .about__wrap::after {
  content: "";
  display: inline-block;
  width: 300px;
  height: 300px;
  background-image: url(../images/kintai/A_01_office_team2-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -48px;
  right: -154px;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .about__wrap::after {
    width: 240px;
    height: 240px;
    right: -118px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .about__wrap::after {
    width: 210px;
    height: 210px;
    right: -102px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #FV .about__wrap::after {
    width: 180px;
    height: 180px;
    bottom: -26px;
    right: -88px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .about__wrap::after {
    width: 150px;
    height: 150px;
    bottom: -45px;
    right: -72px;
  }
}
#kyuyoMeisai #FV .about__pulse {
  width: 40px;
  height: auto;
  position: absolute;
  right: -67px;
  bottom: 222px;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .about__pulse {
    width: 34px;
    right: -50px;
    bottom: 172px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .about__pulse {
    width: 32px;
    right: -46px;
    bottom: 142px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .about__pulse {
    right: -42px;
    bottom: 90px;
  }
}
#kyuyoMeisai #FV .about__ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .about__ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #FV .about__ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #FV .about__ttl {
    font-size: 24px;
  }
}
#kyuyoMeisai #FV .about__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
#kyuyoMeisai #FV .about__txt {
  font-size: 18px;
  letter-spacing: 0.1rem;
  line-height: 36px;
  margin-top: 5%;
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #FV .about__txt {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 1px;
  }
}
#kyuyoMeisai #FV .about__wrap {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#kyuyoMeisai #FV .about__wrap::after {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.3s;
}
#kyuyoMeisai #FV .about__wrap.is-visible,
#kyuyoMeisai #FV .about__wrap.is-visible::after {
  opacity: 1;
  transform: translateY(0);
}
@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#kyuyoMeisai #FV .blink {
  animation: blinking 1s ease-in-out infinite alternate;
}
#kyuyoMeisai #feature {
  margin-top: 5%;
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  padding: 5% 0;
}
#kyuyoMeisai #feature::before {
  content: "";
  display: inline-block;
  width: 812px;
  height: 1624px;
  background-image: url(../images/svg_ring.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 220px;
  right: 0;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #feature::before {
    width: 649.6px;
    height: 1299.2px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #feature::before {
    width: 487.2px;
    height: 974.4px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature::before {
    width: 406px;
    height: 812px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #feature::before {
    width: 324.8px;
    height: 649.6px;
    top: 522px;
  }
}
#kyuyoMeisai #feature .ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #feature .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #feature .ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #feature .ttl {
    font-size: 24px;
  }
}
#kyuyoMeisai #feature .ttl__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
#kyuyoMeisai #feature .feature__wrap, #kyuyoMeisai #feature .feature__wrap--left, #kyuyoMeisai #feature .feature__wrap--right {
  background-color: #fff;
  border-radius: 60px;
  display: grid;
  grid-template-columns: 30% 66%;
  gap: 4%;
  padding: 80px;
  width: 67%;
  position: relative;
  z-index: 8;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #feature .feature__wrap, #kyuyoMeisai #feature .feature__wrap--left, #kyuyoMeisai #feature .feature__wrap--right {
    border-radius: 50px;
    padding: 50px 40px;
    width: 70%;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #feature .feature__wrap, #kyuyoMeisai #feature .feature__wrap--left, #kyuyoMeisai #feature .feature__wrap--right {
    border-radius: 40px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__wrap, #kyuyoMeisai #feature .feature__wrap--left, #kyuyoMeisai #feature .feature__wrap--right {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__wrap, #kyuyoMeisai #feature .feature__wrap--left, #kyuyoMeisai #feature .feature__wrap--right {
    width: 90%;
    grid-template-columns: 1fr;
    padding: 60px 32px 100px;
  }
}
#kyuyoMeisai #feature .feature__wrap--right {
  margin: 60px 120px 60px auto;
}
#kyuyoMeisai #feature .feature__wrap--right::before {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 60px;
  left: -146px;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #feature .feature__wrap--right::before {
    width: 153.6px;
    height: 89.6px;
    left: -115px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #feature .feature__wrap--right::before {
    bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__wrap--right::before {
    width: 115.2px;
    height: 67.2px;
    left: -84px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__wrap--right::before {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #feature .feature__wrap--right {
    margin: 60px 80px 60px auto;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__wrap--right {
    margin: 60px 40px 60px auto;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__wrap--right {
    margin: 90px auto;
  }
}
#kyuyoMeisai #feature .feature__wrap--left {
  margin: 60px auto 60px 120px;
}
#kyuyoMeisai #feature .feature__wrap--left::before {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 60px;
  right: -146px;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #feature .feature__wrap--left::before {
    width: 153.6px;
    height: 89.6px;
    right: -115px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #feature .feature__wrap--left::before {
    top: 24px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__wrap--left::before {
    width: 115.2px;
    height: 67.2px;
    right: -84px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__wrap--left::before {
    right: 14px;
    left: auto;
    top: -41px;
  }
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #feature .feature__wrap--left {
    margin: 60px auto 60px 80px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__wrap--left {
    margin: 60px auto 60px 40px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__wrap--left {
    margin: 90px auto;
  }
}
#kyuyoMeisai #feature .feature__img {
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__img {
    width: 60%;
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #feature .feature__img {
    width: 100%;
  }
}
#kyuyoMeisai #feature .feature__img--deco {
  width: 505px;
  height: 379px;
  position: absolute;
  top: 23%;
  right: 2%;
  z-index: 10;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #feature .feature__img--deco {
    width: 404px;
    height: 303.2px;
    top: 25%;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #feature .feature__img--deco {
    width: 303px;
    height: 227.4px;
    top: 27%;
    right: 6%;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__img--deco {
    width: 252.5px;
    height: 189.5px;
    top: 31%;
    right: 2%;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__img--deco {
    top: 33%;
  }
}
#kyuyoMeisai #feature .feature__header {
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #feature .feature__header {
    font-size: 26px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #feature .feature__header {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__header {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__header {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #feature .feature__header {
    font-size: 18px;
  }
}
#kyuyoMeisai #feature .feature__border {
  width: 96px;
  border-bottom: 4px solid #2C7E4F;
  margin: 26px 0 40px;
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__border {
    width: 78px;
    margin: 18px 0 32px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__border {
    margin: 18px auto 32px;
  }
}
#kyuyoMeisai #feature .feature__txt {
  letter-spacing: 0.1rem;
  line-height: 38px;
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__txt {
    line-height: 34px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__txt {
    line-height: 30px;
  }
}
#kyuyoMeisai #feature .feature__deco1 {
  background-color: #2C7E4F;
  width: 600px;
  height: 840px;
  border-radius: 0 60px 60px 0;
  position: absolute;
  left: 0;
  top: 57%;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #feature .feature__deco1 {
    width: 430px;
    height: 620px;
    border-radius: 0 50px 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__deco1 {
    width: 320px;
    height: 586px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #feature .feature__deco1 {
    top: 69%;
    border-radius: 0 40px 40px 0;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #feature .feature__deco1 {
    width: 260px;
  }
}
#kyuyoMeisai #feature .feature__deco1::before {
  content: "";
  width: 294px;
  height: 221px;
  background-image: url(../images/kyuyo/22881152.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 34px;
  top: -221px;
  z-index: 3;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #feature .feature__deco1::before {
    width: 235.2px;
    height: 176.8px;
    left: 24px;
    top: -176.8px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #feature .feature__deco1::before {
    width: 176.4px;
    height: 132.6px;
    left: 12px;
    top: -132.6px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #feature .feature__deco1::before {
    width: 147px;
    height: 110.5px;
    top: -110.5px;
  }
}
#kyuyoMeisai #feature {
  /* 初期状態（非表示） */
}
#kyuyoMeisai #feature .feature__wrap--right,
#kyuyoMeisai #feature .feature__wrap--left,
#kyuyoMeisai #feature .feature__deco1 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#kyuyoMeisai #feature {
  /* 表示状態 */
}
#kyuyoMeisai #feature .feature__wrap--right.is-visible,
#kyuyoMeisai #feature .feature__wrap--left.is-visible,
#kyuyoMeisai #feature .feature__deco1.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#kyuyoMeisai #feature {
  /* 左右で少し動きを変えたい場合 */
}
#kyuyoMeisai #feature .feature__wrap--left {
  transform: translateY(30px) translateX(-20px);
}
#kyuyoMeisai #feature .feature__wrap--left.is-visible {
  transform: translateY(0) translateX(0);
}
#kyuyoMeisai #pictures {
  display: grid;
  justify-items: center;
  margin: 5% 0;
  position: relative;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #pictures {
    margin: 7% 0;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #pictures {
    margin: 7% 0 15%;
  }
}
#kyuyoMeisai #pictures .ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #pictures .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #pictures .ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #pictures .ttl {
    font-size: 24px;
  }
}
#kyuyoMeisai #pictures .ttl__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
#kyuyoMeisai #pictures .pictures {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 40px;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #pictures .pictures {
    border-radius: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #pictures .pictures {
    border-radius: 26px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #pictures .pictures {
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #pictures .pictures {
    border-radius: 18px;
  }
}
#kyuyoMeisai #pictures .pictures__outer {
  display: flex;
  margin: 5% 0;
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #pictures .pictures__outer {
    display: grid;
    gap: 5%;
  }
}
#kyuyoMeisai #pictures .pictures__wrap {
  display: flex;
  gap: 5%;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #pictures .pictures__wrap {
    flex-direction: column;
  }
}
#kyuyoMeisai #pictures .pictures__box, #kyuyoMeisai #pictures .pictures__box02, #kyuyoMeisai #pictures .pictures__box01, #kyuyoMeisai #kintai #pictures .pictures__box03, #kintai #kyuyoMeisai #pictures .pictures__box03 {
  background-color: #fff;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #pictures .pictures__box, #kyuyoMeisai #pictures .pictures__box02, #kyuyoMeisai #pictures .pictures__box01, #kyuyoMeisai #kintai #pictures .pictures__box03, #kintai #kyuyoMeisai #pictures .pictures__box03 {
    border-radius: 40px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #pictures .pictures__box, #kyuyoMeisai #pictures .pictures__box02, #kyuyoMeisai #pictures .pictures__box01, #kyuyoMeisai #kintai #pictures .pictures__box03, #kintai #kyuyoMeisai #pictures .pictures__box03 {
    border-radius: 30px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #pictures .pictures__box, #kyuyoMeisai #pictures .pictures__box02, #kyuyoMeisai #pictures .pictures__box01, #kyuyoMeisai #kintai #pictures .pictures__box03, #kintai #kyuyoMeisai #pictures .pictures__box03 {
    border-radius: 24px;
    padding: 14px;
  }
}
#kyuyoMeisai #pictures .pictures__box01 {
  width: 35%;
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #pictures .pictures__box01 {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #pictures .pictures__box01 {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #pictures .pictures__box01 {
    width: 90%;
  }
}
#kyuyoMeisai #pictures .pictures__box02 {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #pictures .pictures__box02 {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #pictures .pictures__box02 {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #pictures .pictures__box02 {
    width: 90%;
  }
}
#kyuyoMeisai #pictures .pictures__deco::before {
  content: "";
  width: 730.8px;
  height: 1461.6px;
  background-image: url(../images/svg_ring.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 40%;
  left: 0;
  transform: scale(-1, 1);
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #pictures .pictures__deco::before {
    width: 649.6px;
    height: 1299.2px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #pictures .pictures__deco::before {
    width: 487.2px;
    height: 974.4px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #pictures .pictures__deco::before {
    top: 68%;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #pictures .pictures__deco::before {
    width: 406px;
    height: 812px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #pictures .pictures__deco::before {
    width: 324.8px;
    height: 649.6px;
    top: 522px;
  }
}
#kyuyoMeisai #contacts {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 5% 0 7%;
  overflow: hidden;
  z-index: 1;
}
#kyuyoMeisai #contacts .ttl {
  color: #E3672D;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #contacts .ttl {
    font-size: 24px;
  }
}
#kyuyoMeisai #contacts .ttl__border {
  width: 66px;
  border-bottom: 4px solid #E3672D;
  margin: 10px 0 24px;
}
#kyuyoMeisai #contacts .contact__contents {
  background-color: #fff;
  width: 80%;
  height: 730px;
  border-radius: 60px;
  display: grid;
  justify-items: center;
  padding: 3%;
  margin-top: 3%;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #contacts .contact__contents {
    height: 660px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .contact__contents {
    height: 570px;
    border-radius: 50px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #contacts .contact__contents {
    height: 490px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #contacts .contact__contents {
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #contacts .contact__contents {
    margin-bottom: 40px;
    border-radius: 30px;
  }
}
#kyuyoMeisai #contacts .contact__contents::after {
  content: "";
  display: inline-block;
  width: 192px;
  height: 112px;
  background-image: url(../images/svg_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -50px;
  left: 50px;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #contacts .contact__contents::after {
    width: 153.6px;
    height: 89.6px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #contacts .contact__contents::after {
    width: 115.2px;
    height: 67.2px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #contacts .contact__contents::after {
    bottom: -25px;
  }
}
#kyuyoMeisai #contacts .contact__txt {
  font-size: 20px;
  margin: 4% 0;
  padding: 0 20px;
  letter-spacing: 0.1em;
  line-height: 26px;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .contact__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #contacts .contact__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #contacts .contact__txt {
    margin: 32px 0;
  }
}
#kyuyoMeisai #contacts .contact__btn {
  color: #fff;
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  background: #E3672D;
  width: 448px;
  height: 134px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #contacts .contact__btn {
    width: 403.2px;
    height: 120.6px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .contact__btn {
    width: 371.84px;
    height: 111.22px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #contacts .contact__btn {
    width: 291.2px;
    height: 87.1px;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #contacts .contact__btn {
    width: 235px;
    height: 61px;
  }
}
#kyuyoMeisai #contacts .contact__btn span {
  color: #fff;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -55%);
  transition: all 0.2s;
}
#kyuyoMeisai #contacts .contact__btn::before {
  content: "";
  width: 451px;
  height: 134px;
  background-image: url(../images/btn_border_lg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -18px;
  left: -18px;
  transition: all 0.2s;
}
@media screen and (max-width: 1440px) {
  #kyuyoMeisai #contacts .contact__btn::before {
    width: 405.9px;
    height: 120.6px;
    top: -14px;
    left: -14px;
  }
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .contact__btn::before {
    width: 374.33px;
    height: 111.22px;
    top: -10px;
    left: -10px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #contacts .contact__btn::before {
    width: 293.15px;
    height: 87.1px;
    top: -8px;
    left: -8px;
  }
}
@media screen and (max-width: 480px) {
  #kyuyoMeisai #contacts .contact__btn::before {
    background-image: url(../images/btn_border_lgsp.svg);
    width: 235px;
    height: 65px;
  }
}
@media (hover: hover) and (pointer: fine) {
  #kyuyoMeisai #contacts .contact__btn:hover::before {
    top: 0;
    left: -3px;
  }
  #kyuyoMeisai #contacts .contact__btn:hover span {
    transform: translate(-50%, -50%);
  }
}
#kyuyoMeisai #contacts .contact__btn--wrap {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 5% 0;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .contact__btn--wrap {
    gap: 7%;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #contacts .contact__btn--wrap {
    display: grid;
    gap: 32px;
  }
}
#kyuyoMeisai #contacts .address__wrap {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 3% 0;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .address__wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #contacts .address__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #contacts .address__wrap {
    display: block;
    margin: 8% 0;
  }
}
#kyuyoMeisai #contacts .address__unit {
  text-align: left;
}
#kyuyoMeisai #contacts .address__border {
  border-right: 3px solid #2C7E4F;
  height: 44px;
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #contacts .address__border {
    border-right: none;
    height: unset;
    border-bottom: 3px solid #2C7E4F;
    width: 44px;
    margin: 0 auto 24px;
  }
}
#kyuyoMeisai #contacts .address__name {
  font-size: 20px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .address__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #contacts .address__name {
    font-size: 16px;
  }
}
#kyuyoMeisai #contacts .address__txt {
  margin: unset;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .address__txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #contacts .address__txt {
    font-size: 13px;
  }
}
#kyuyoMeisai #contacts .address__box {
  height: 100px;
}
@media screen and (max-width: 1280px) {
  #kyuyoMeisai #contacts .address__box {
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  #kyuyoMeisai #contacts .address__box {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #kyuyoMeisai #contacts .address__box {
    height: unset;
    padding-bottom: 30px;
  }
}/*# sourceMappingURL=redule_ware.css.map */