/*=============================================
*
* 
*
=============================================*/
@keyframes rotateRight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*=============================================
*
* 
*
=============================================*/
body.no-scroll {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

p {
  font-size: 1.6rem;
  line-height: 1.8;
}

/*=============================================
*
* background
*
=============================================*/
.background-area {
  background: #a6cfeb;
  height: 100dvh;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 3s ease 0;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 700px) {
  .background-area {
    transition: all 1.5s ease 0s;
  }
}
.background-area.is-loaded {
  opacity: 1;
}
.background-area .background-img-1 {
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.background-area .background-video {
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 3s ease 0s;
  width: 100%;
  z-index: 1;
  transform: translateZ(0);
}
.background-area .background-video.is-loaded {
  opacity: 1;
}
.background-area .background-img {
  display: none;
}
.background-area #background-screen {
  height: 100dvh;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: all 0.3s;
  width: 100%;
  z-index: 2;
}
.background-area #background-screen.-none {
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
}
.background-area #background-screen.-black {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
.background-area #background-screen.-white {
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
.background-area #background-screen.-skyblue {
  background-color: rgba(138, 192, 220, 0.4);
  opacity: 1;
}
.background-area #background-screen.-skyblue-light {
  background-color: rgba(138, 192, 220, 0.1);
  opacity: 1;
}
.background-area #background-screen.-beige {
  background-color: rgba(248, 245, 241, 0.8);
  opacity: 1;
}
.background-area #background-screen.is-loaded {
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
}

/*=============================================
*
* hero
*
=============================================*/
.hero__inner {
  align-items: center;
  display: flex;
  height: 100dvh;
  justify-content: center;
  width: 100vw;
}

.hero__heading {
  color: #fff;
  font-size: 6.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 1.5em auto 2.1em;
  text-align: center;
  width: 100%;
}
.hero__heading.is-loaded {
  text-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1360px) {
  .hero__heading {
    padding: 0 30px;
  }
}
@media screen and (max-width: 700px) {
  .hero__heading {
    font-size: 3.5rem;
    max-width: 90vw;
    padding: 0;
  }
}
.hero__heading .sp-br {
  display: none;
}
@media screen and (max-width: 700px) {
  .hero__heading .sp-br {
    display: block;
  }
}

.hero__content-box {
  position: relative;
  width: 100%;
}

.hero__text {
  color: #fff;
  font-size: 20.4rem;
  font-weight: 500;
  line-height: 0.7;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}
.hero__text.is-loaded {
  opacity: 1;
}
.hero__text.-text-01 {
  animation: hero-text-scroll-left 20s linear infinite;
  text-align: left;
  left: 0;
}
.hero__text.-text-01 span {
  width: 100vw;
}
.hero__text.-text-02 {
  animation: hero-text-scroll-right 20s linear infinite;
  color: transparent;
  text-align: right;
  -webkit-text-stroke: 2px #fff;
}
@media screen and (max-width: 700px) {
  .hero__text.-text-02 {
    -webkit-text-stroke: 1px #fff;
  }
}
@media screen and (max-width: 700px) {
  .hero__text {
    font-size: 10rem;
    -webkit-text-stroke: 1px #fff;
  }
}

@keyframes hero-text-scroll-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes hero-text-scroll-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*=============================================
*
* to-next-content-btn
*
=============================================*/
.to-next-content-btn {
  bottom: 30px;
  max-width: 235px;
  opacity: 0;
  position: fixed;
  left: calc(50% - 117.5px);
  transform: scale(1.1);
  transition: all 0.6s;
  width: 171.86px;
  z-index: 10;
}
@media screen and (max-width: 700px) {
  .to-next-content-btn {
    bottom: 15px;
    left: calc(50% - 37.5px);
    max-width: 75px;
    right: 15px;
  }
  .to-next-content-btn.is-hidden {
    bottom: -166px;
  }
}
.is-loaded .to-next-content-btn {
  opacity: 1;
  transform: scale(1);
}
.to-next-content-btn.is-active {
  bottom: -30px;
  transform: scale(1.1) translateY(100%);
}
.to-next-content-btn .to-next-content-btn-img {
  display: block;
  height: 41.21px;
  left: calc(50% - 24px);
  opacity: 1;
  position: absolute;
  top: calc(50% - 20.5px);
  transition: all 0.2s;
  width: 48px;
  animation: fuwafuwa 2s infinite;
}
@media screen and (max-width: 700px) {
  .to-next-content-btn .to-next-content-btn-img {
    left: calc(50% - 10.5px);
    width: 21.43px;
  }
}
.is-loaded .to-next-content-btn .to-next-content-btn-img {
  opacity: 1;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(-2px);
    @media screen and (max-width: 700px) {
      .to-next-content-btn {
        transform: translateY(-1px);
      }
    }
  }
  70% {
    transform: translateY(5px);
    @media screen and (max-width: 700px) {
      .to-next-content-btn {
        transform: translateY(2px);
      }
    }
  }
  100% {
    transform: translateY(0px);
  }
}
.to-next-content-btn .to-next-content-btn-img-circle {
  height: 100%;
  animation: rotateRight 45s linear infinite;
  width: 100%;
}

/*=============================================
*
* news
*
=============================================*/
.news {
  background: rgba(22, 44, 66, 0.9);
  padding: 100px 0 60px;
}
@media screen and (max-width: 700px) {
  .news {
    padding: 40px 0;
  }
}

.news__inner {
  padding: 0;
}

.news__content-box {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 950px;
}
@media screen and (max-width: 1150px) {
  .news__content-box {
    padding: 0 16px;
  }
}

.news__heading-box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
  width: calc(16.7% + 10px);
}
@media screen and (max-width: 700px) {
  .news__heading-box {
    margin-bottom: 35px;
    width: 100%;
  }
}

.news__heading {
  color: #fff;
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  width: 100%;
}
@media screen and (max-width: 1150px) {
  .news__heading {
    font-size: 3.4rem;
  }
}

.news__heading-jp {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1150px) {
  .news__heading-jp {
    font-size: 1.4rem;
  }
}

.news__content {
  width: calc(77.27% - 10px);
}
@media screen and (max-width: 700px) {
  .news__content {
    width: 100%;
  }
}

.news__list {
  margin-bottom: 30px;
}

.news__list-item {
  border-bottom: 1px solid #bababa;
  padding: 20px 0;
  width: 100%;
}
.news__list-item:first-child {
  padding-top: 0;
}
.news__list-item:hover {
  opacity: 0.8;
}

.news__item-link {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.news__info-box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 700px) {
  .news__info-box {
    flex-direction: column;
    gap: 5px;
    justify-content: flex-start;
  }
}

.news__item-date {
  color: #f1f1f1;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  padding-right: 10px;
  position: relative;
  top: 3px;
}
@media screen and (max-width: 1150px) {
  .news__item-date {
    font-size: 1.4rem;
  }
}

.news__item-title {
  color: #fff;
  font-size: 1.9rem;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 250px);
}
@media screen and (max-width: 1150px) {
  .news__item-title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 700px) {
  .news__item-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
    width: calc(100% - 110px);
  }
}

.news__view-all-btn-box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.news__view-all-btn {
  background: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  display: inline-block;
  font-size: 2rem;
  line-height: 1;
  padding: 11.5px 45px 8px 40px;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .news__view-all-btn {
    font-size: 2rem;
    padding: 11.5px 45px 8px 40px;
  }
}
.news__view-all-btn:hover {
  opacity: 0.8;
}
.news__view-all-btn::after {
  background: url(../images/news/news__view-all-btn-arrow.svg) no-repeat center center/100%;
  bottom: 0;
  content: "";
  height: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  width: 10px;
}

/*=============================================
*
* about
*
=============================================*/
.about {
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: 110px 0;
  position: relative;
}

.about__inner {
  position: relative;
  z-index: 1;
}
.about__inner .content-box {
  padding-bottom: 0;
}

.about__back-text {
  color: #F9F9F9;
  display: block;
  font-size: 94rem;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 30%;
  transform: translate(-25%, calc(-50% - 100px)) rotate(-15deg);
  transition: all 2s ease 2s;
  z-index: -1;
}
.about__back-text.is-scrollin {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.about__content-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 25px;
  margin: 0 auto 80px;
  max-width: 1100px;
}
@media screen and (max-width: 1142px) {
  .about__content-box {
    margin: 0 auto 40px;
    padding: 0 16px;
  }
}

.about__heading-box {
  margin: 0 auto 30px;
  max-width: 1000px;
  position: relative;
  text-align: left;
}
.about__heading {
  font-size: 13rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 1142px) {
  .about__heading {
    font-size: 7rem;
  }
}
.about__heading.effect.fade-in.is-scrollin {
  color: #000;
}

.about__heading-jp {
  color: #999;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 1142px) {
  .about__heading-jp {
    font-size: 2rem;
    margin-bottom: 7px;
  }
}

.about__circle-img-box {
  position: absolute;
  left: -150px;
  top: -50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .about__circle-img-box {
    left: -110px;
    top: calc(50% - 110px);
    width: 220px;
  }
}
.about__circle-img-box .effect.fade-in.is-scrollin {
  left: 0;
  top: -50%;
  transform: translate(-50%, -50%);
}

.about__circle-svg-box {
  animation: rotateRight 40s linear infinite;
}
.about__circle-svg-box svg {
  width: 100%;
}
.about__circle-svg-box svg path {
  fill: #DEDEDE;
}

.about__greeting-text {
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .about__greeting-text {
    font-size: 1.6rem;
    margin: 0 auto 45px;
  }
}

@media screen and (max-width: 750px) {
  .about__greeting-content {
    width: 100%;
  }
}

.about__presidents-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .about__presidents-info {
    margin: 0 0 0 auto;
    width: 100%;
  }
}

.about__presidents-img {
  border-radius: 10px;
  max-width: 240px;
}
@media screen and (max-width: 700px) {
  .about__presidents-img {
    max-width: 200px;
  }
}

.about__presidents-name-box {
  padding: 10px 0 15px 0;
  text-align: right;
}

.about__presidents-position {
  color: #B1B1B1;
  display: inline-block;
  font-size: 3.6rem;
  line-height: 1;
  text-align: left;
}

.about__presidents-name {
  display: inline-block;
  font-size: 3.6rem;
  line-height: 1;
  text-align: left;
}

.about__overview-box {
  margin: 0 auto 100px;
  max-width: 1100px;
}
@media screen and (max-width: 1142px) {
  .about__overview-box {
    padding: 0 16px;
  }
}

.about__overview-heading-box {
  margin: 0 auto 30px;
  padding: 20px 0;
  position: relative;
}
.about__overview-heading-box::after {
  background: #000;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: all 0.3s ease 1s;
  width: 75px;
}
@media screen and (max-width: 700px) {
  .about__overview-heading-box::after {
    height: 3px;
    width: 45px;
  }
}
.about__overview-heading-box.is-scrollin::after {
  opacity: 1;
}

.about__overview-box-heading {
  color: #000;
  font-size: 6.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 1142px) {
  .about__overview-box-heading {
    font-size: 4rem;
  }
}

.about__overview-box-heading-jp {
  color: #A2A2A2;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin-bottom: 10px;
  text-align: left;
}
@media screen and (max-width: 1142px) {
  .about__overview-box-heading-jp {
    font-size: 2rem;
  }
}

.about__overview-table-wrap {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .about__overview-table-wrap {
    flex-direction: column;
    width: 100%;
  }
}
.about__overview-table-wrap.-first-row > .about__overview-table {
  width: calc(50% - 20px);
}
@media screen and (max-width: 700px) {
  .about__overview-table-wrap.-first-row > .about__overview-table {
    width: 100%;
  }
}
.about__overview-table-wrap.-second-row {
  margin-top: 15px;
}
.about__overview-table-wrap.-second-row > .about__overview-table tr {
  border-bottom: 1px solid #cfcfcf;
}

.about__overview-table {
  border-collapse: collapse;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .about__overview-table {
    max-width: 100%;
    font-size: 1.2rem;
  }
}
.about__overview-table tr {
  border-bottom: 1px solid transparent;
}
.about__overview-table tr.effect.fade-in.is-scrollin {
  border-bottom: 1px solid #cfcfcf;
}
.about__overview-table th,
.about__overview-table td {
  line-height: 1.8;
  padding: 20px 16px;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 700px) {
  .about__overview-table th,
  .about__overview-table td {
    padding: 15px 8px;
  }
}
.about__overview-table th {
  font-size: 1.6rem;
  font-weight: 700;
  width: 28%;
}
@media screen and (max-width: 700px) {
  .about__overview-table th {
    font-size: 1.4rem;
  }
}
.about__overview-table td {
  font-size: 1.6rem;
  text-align: left;
  width: 72%;
}
@media screen and (max-width: 700px) {
  .about__overview-table td {
    font-size: 1.4rem;
  }
}
.about__overview-table tr:last-child th,
.about__overview-table tr:last-child td {
  border-bottom: none;
}

.about__overview-table-text {
  text-align: left;
}
@media screen and (max-width: 700px) {
  .about__overview-table-text {
    font-size: 1.4rem;
  }
}

/*=============================================
*
* slide-section
*
=============================================*/
#slide-section {
  background: #fff;
  padding: 9px 0 0;
}
@media screen and (max-width: 700px) {
  #slide-section {
    padding: 7px 0 0;
  }
}
#slide-section .inner {
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 40s infinite linear both;
}
@media screen and (max-width: 700px) {
  .scroll-infinity__list--left {
    animation: infinity-scroll-left 50s infinite linear both;
  }
}

.scroll-infinity__item {
  width: 16.6666666667vw;
}
@media screen and (max-width: 700px) {
  .scroll-infinity__item {
    width: 50vw;
  }
}

.scroll-infinity__item > img {
  width: 100%;
}

/*=============================================
*
* business 
*
=============================================*/
.business {
  background-color: rgba(228, 238, 243, 0.8);
  padding: 110px 0;
  position: relative;
}
@media screen and (max-width: 700px) {
  .business {
    padding: 55px 0;
  }
}

.business__back-text {
  color: transparent;
  display: block;
  font-size: 68rem;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-text-stroke: #036EB7 1px;
  transform: translate(-25%, calc(-50% + 100px));
  transition: all 2s ease 2s;
  z-index: 0;
}
.business__back-text.is-scrollin {
  opacity: 0.4;
  transform: translate(-50%, -50%);
}
.business__back-text {
  display: none;
}

.business__content-box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 80px;
  max-width: 1100px;
}
@media screen and (max-width: 1142px) {
  .business__content-box {
    padding: 0 16px;
  }
}
@media screen and (max-width: 700px) {
  .business__content-box {
    margin: 0 auto 20px;
  }
}

.business__content {
  width: calc(60% - 30px);
  z-index: 1;
}
@media screen and (max-width: 1142px) {
  .business__content {
    width: 100%;
  }
}

.business__heading-box {
  position: relative;
  text-align: left;
}
.business__heading {
  font-size: 13rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  line-height: 1;
}
@media screen and (max-width: 1142px) {
  .business__heading {
    font-size: 7rem;
  }
}
.business__heading.effect.fade-in.is-scrollin {
  color: #000;
}

.business__heading-jp {
  color: #999;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin-bottom: 10px;
  text-align: left;
}
@media screen and (max-width: 1142px) {
  .business__heading-jp {
    font-size: 2rem;
    margin-bottom: 7px;
  }
}

.business__circle-img-box {
  position: absolute;
  left: -150px;
  top: -50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 700px) {
  .business__circle-img-box {
    left: -110px;
    top: calc(50% - 110px);
    width: 220px;
  }
}
.business__circle-img-box .effect.fade-in.is-scrollin {
  left: 0;
  top: -50%;
  transform: translate(-50%, -50%);
}

.business__circle-svg-box {
  animation: rotateRight 40s linear infinite;
}
.business__circle-svg-box svg {
  width: 100%;
}
.business__circle-svg-box svg path {
  fill: #cdcdcd;
}

.business__main-text {
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .business__main-text {
    font-size: 1.6rem;
    margin: 0 auto 45px;
  }
}

.business__img-area {
  position: relative;
  width: calc(40% - 30px);
  z-index: 1;
}
@media screen and (max-width: 1142px) {
  .business__img-area {
    margin: 0 auto 30px;
    width: 100%;
  }
}

.business__img {
  border-radius: 10px;
  max-width: 810px;
}
@media screen and (max-width: 1142px) {
  .business__img {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .business__img {
    max-width: 100%;
    width: 100%;
  }
}

.our-work__heading-box {
  margin: 0 auto 30px;
  padding: 20px 0;
  position: relative;
}
.our-work__heading-box:after {
  background: #000;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: all 0.3s ease 1s;
  width: 75px;
}
@media screen and (max-width: 700px) {
  .our-work__heading-box:after {
    height: 3px;
    width: 45px;
  }
}
.our-work__heading-box.is-scrollin::after {
  opacity: 1;
}

.our-work__heading {
  color: #000;
  font-size: 6.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 1142px) {
  .our-work__heading {
    font-size: 4rem;
  }
}

.our-work__heading-jp {
  color: #A2A2A2;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin-bottom: 10px;
  text-align: left;
}
@media screen and (max-width: 1142px) {
  .our-work__heading-jp {
    font-size: 2.4rem;
  }
}

.our-work {
  width: 100%;
}

.our-work-details {
  padding: 0 20px;
  overflow: visible;
}
@media screen and (max-width: 700px) {
  .our-work-details {
    padding: 0;
  }
}

.our-work__list {
  margin: 0 auto 50px;
}
.our-work__list-item {
  align-items: center;
  background: #fff;
  border-radius: 20px;
  margin: 0 auto 20px;
  overflow: hidden;
  padding: 15px 20px;
}
.our-work__list-item.-our-work-details-none {
  background: #fff;
  border-radius: 300px;
  overflow: hidden;
  padding: 15px 25px;
}
.our-work__list-item.-our-work-details-no-img {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
}

.our-work-detail__card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 15px 0 5px 0;
  position: relative;
}
@media screen and (max-width: 700px) {
  .our-work-detail__card {
    padding: 10px 0 0 0;
  }
}
.our-work-detail__card > .inner {
  position: relative;
  z-index: 1;
}
.our-work-detail__card > .inner .content-box {
  padding-bottom: 0;
}

.our-work-detail__img {
  aspect-ratio: 3/2;
  border-radius: 10px;
  height: auto;
  margin-bottom: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .our-work-detail__img {
    max-width: 100%;
  }
}

.our-work__list-info-box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.our-work__list-title {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1142px) {
  .our-work__list-title {
    font-size: 1.8rem;
  }
}

.our-work__list-date {
  color: #7D7D7D;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1142px) {
  .our-work__list-date {
    font-size: 1.8rem;
  }
}

.our-work-detail__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.our-work__list-content {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 1142px) {
  .our-work__list-content {
    font-size: 1.6rem;
  }
}
.our-work__list-content p {
  text-align: left;
}

.our-work-list__construction-date-box {
  text-align: right;
}

.our-work-list__construction-date {
  color: #7D7D7D;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-top: 5px;
  text-align: right;
}
@media screen and (max-width: 1142px) {
  .our-work-list__construction-date {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 650px) {
  .-our-work-details-no-img .our-work-list__construction-date {
    line-height: 1;
    margin-top: 0;
  }
}
.our-work-list__construction-date .eng {
  font-size: 1.9rem;
}
@media screen and (max-width: 1142px) {
  .our-work-list__construction-date .eng {
    font-size: 1.6rem;
  }
}

.our-work-list__construction-text {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-left: 5px;
}
@media screen and (max-width: 1142px) {
  .our-work-list__construction-text {
    font-size: 1.3rem;
  }
}

.our-work__view-all-btn-box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.our-work__view-all-btn {
  background: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  padding: 19.5px 85px 16px 80px;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .our-work__view-all-btn {
    font-size: 2rem;
    padding: 11.5px 45px 8px 40px;
  }
}
.our-work__view-all-btn:hover {
  opacity: 0.8;
}
.our-work__view-all-btn::after {
  background: url(../images/our-work/our-work__view-all-btn-arrow.svg) no-repeat center center/100%;
  bottom: 0;
  content: "";
  height: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  width: 16px;
}

/*=============================================
*
* swiper 
*
=============================================*/
.swiper-button-next,
.swiper-button-prev {
  background: #65A0C8;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 55px;
  width: 55px;
}
@media screen and (max-width: 700px) {
  .swiper-button-next,
  .swiper-button-prev {
    height: 35px;
    width: 35px;
  }
}
.swiper-button-next::after,
.swiper-button-prev::after {
  background: url(../images/swiper/swiper-arrow.svg) no-repeat center center/100%;
  content: "";
  display: block;
  height: 11.45448px;
  width: 6.3636px;
}

.swiper-button-next {
  right: -10px;
}
@media screen and (max-width: 700px) {
  .swiper-button-next {
    right: -15px;
  }
}

.swiper-button-prev {
  left: -10px;
}
@media screen and (max-width: 700px) {
  .swiper-button-prev {
    left: -15px;
  }
}
.swiper-button-prev::after {
  transform: scale(-1, 1);
}

/*=============================================
*
* access 
*
=============================================*/
.access {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 110px 0;
  position: relative;
}

.access__inner {
  position: relative;
}

.access__heading-box {
  margin: 0 auto 70px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .access__heading-box {
    margin-bottom: 35px;
  }
}

.access__heading {
  color: #000;
  display: flex;
  font-size: 6.7rem;
  justify-content: center;
  letter-spacing: 0.1rem;
  line-height: 1;
}
@media screen and (max-width: 1150px) {
  .access__heading {
    font-size: 5rem;
  }
}
.access__heading::before {
  color: transparent;
  bottom: 0;
  content: "ACCESS";
  mix-blend-mode: difference;
  padding-right: 10px;
  -webkit-text-stroke: #fff 1px;
}
.access__heading::after {
  color: transparent;
  bottom: 0;
  content: "ACCESS";
  mix-blend-mode: difference;
  padding-left: 10px;
  -webkit-text-stroke: #fff 1px;
}

.access__circle-img-box {
  position: absolute;
  left: calc(50% - 205px);
  top: calc(50% - 205px);
  transform: translateY(-50%);
  width: 410px;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .access__circle-img-box {
    left: calc(50% - 110px);
    top: calc(50% - 110px);
    width: 220px;
  }
}
.access__circle-img-box .effect.fade-in.is-scrollin {
  left: 0;
  top: -50%;
  transform: translate(-50%, -50%);
}

.access__circle-svg-box {
  animation: rotateRight 40s linear infinite;
}
.access__circle-svg-box * {
  fill: #ddd;
}

.access__map-box {
  margin: 0 auto 80px;
}
@media screen and (max-width: 700px) {
  .access__map-box {
    margin: 0 auto 40px;
    max-height: 400px;
  }
}
@media screen and (max-width: 700px) {
  .access__map-box iframe {
    max-height: 400px;
  }
}

.access__company-address-box {
  margin: 0 auto;
  max-width: 1100px;
  text-align: left;
}
@media screen and (max-width: 1142px) {
  .access__company-address-box {
    padding: 0 16px;
  }
}

.access__company-address {
  align-items: center;
  background: url(../images/access/access-marker-icon.svg) no-repeat left center;
  display: inline-flex;
  font-size: 2rem;
  margin-bottom: 30px;
  min-height: 31px;
  padding-left: 30px;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .access__company-address {
    font-size: 1.8rem;
  }
}

.access__company-route {
  display: inline-block;
}

.access__route-area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
}
@media screen and (max-width: 900px) {
  .access__route-area {
    flex-direction: column;
  }
}

.access__route-box {
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  padding: 25px 25px 25px;
}
@media screen and (max-width: 700px) {
  .access__route-box {
    padding: 16px;
  }
}

.access__route-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 700px) {
  .access__route-heading {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.access__route-list > li {
  margin-bottom: 22px;
  padding-left: 18px;
  position: relative;
  text-align: left;
}
.access__route-list > li:last-child {
  margin-bottom: 0;
}
.access__route-list > li::before {
  content: "";
  display: block;
  background: #036EB7;
  border-radius: 50%;
  height: 8px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 8px;
}

.access__route-list-title {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 7px;
}
@media screen and (max-width: 700px) {
  .access__route-list-title {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
}

.access__route-list-text {
  font-size: 1.5rem;
  line-height: 1.7;
  margin: 0 0 0 10px;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .access__route-list-text {
    font-size: 1.4rem;
    margin-left: 6px;
  }
}
.access__route-list-text li {
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
}
.access__route-list-text li:last-child {
  margin-bottom: 0;
}
.access__route-list-text li::before {
  content: "";
  display: block;
  background: #444;
  border-radius: 50%;
  height: 4px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 4px;
}

/*=============================================
*
* recruit 
*
=============================================*/
.recruit {
  background-color: rgba(248, 245, 241, 0.9);
  padding: 110px 0;
}
@media screen and (max-width: 700px) {
  .recruit {
    padding: 55px 0;
  }
}

.recruit__back-text {
  color: #F9F9F9;
  display: block;
  font-size: 94rem;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-25%, calc(-50% - 100px)) rotate(-15deg);
  transition: all 2s ease 2s;
  z-index: -1;
}
.recruit__back-text.is-scrollin {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.recruit__content-box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 80px;
  max-width: 1100px;
}
@media screen and (max-width: 1142px) {
  .recruit__content-box {
    padding: 0 16px;
  }
}
@media screen and (max-width: 700px) {
  .recruit__content-box {
    margin: 0 auto 20px;
  }
}

.recruit__content {
  width: calc(100% - 550px);
}
@media screen and (max-width: 900px) {
  .recruit__content {
    width: calc(100% - 320px);
  }
}
@media screen and (max-width: 700px) {
  .recruit__content {
    width: 100%;
  }
}

.recruit__img-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  position: relative;
  width: 530px;
}
@media screen and (max-width: 900px) {
  .recruit__img-area {
    width: 300px;
  }
}
@media screen and (max-width: 700px) {
  .recruit__img-area {
    flex-direction: column-reverse;
    margin: 0 auto 30px;
    width: 100%;
  }
}

.recruit__img-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 420px;
}
@media screen and (max-width: 900px) {
  .recruit__img-list {
    width: 100%;
  }
}

.recruit__img {
  border-radius: 20px;
}

.recruit__message-text {
  background: #fff;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 1rem;
  line-height: 2.6;
  text-align: center;
  text-orientation: mixed;
  width: 75px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 900px) {
  .recruit__message-text {
    font-size: 1.8rem;
    height: calc(100% + 20px);
    padding: 15px 0;
    position: absolute;
    right: -20px;
    top: -15px;
    width: auto;
  }
}
@media screen and (max-width: 700px) {
  .recruit__message-text {
    border: none;
    border-bottom: 2px solid #000;
    border-top: 2px solid #000;
    font-size: 1.6rem;
    height: auto;
    line-height: 1.8;
    margin: 0 auto -25px;
    padding: 10px 15px;
    position: relative;
    right: 0;
    top: 0;
    writing-mode: horizontal-tb;
    width: calc(100% + 15px);
  }
}
.recruit__message-text.effect.fade-in.is-scrollin {
  transform: skewY(-10deg) rotate(5deg) translate(-25px, 0);
}
@media screen and (max-width: 700px) {
  .recruit__message-text.effect.fade-in.is-scrollin {
    transform: skewY(-5deg) rotate(2deg) translate(-7.5px, 0);
  }
}

.recruit__heading-box {
  margin: 0 auto 70px;
  max-width: 1000px;
  position: relative;
  text-align: left;
}
.recruit__heading {
  font-size: 13rem;
  font-weight: 500;
  letter-spacing: 1rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 1142px) {
  .recruit__heading {
    font-size: 7rem;
  }
}
.recruit__heading-jp {
  color: #999;
  font-size: 3rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 1142px) {
  .recruit__heading-jp {
    font-size: 2rem;
  }
}

.recruit__circle-img-box {
  position: absolute;
  left: -150px;
  top: -50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 700px) {
  .recruit__circle-img-box {
    left: -110px;
    top: calc(50% - 110px);
    width: 220px;
  }
}
.recruit__circle-img-box .effect.fade-in.is-scrollin {
  left: 0;
  top: -50%;
  transform: translate(-50%, -50%);
}

.recruit__circle-svg-box {
  animation: rotateRight 40s linear infinite;
}
.recruit__circle-svg-box svg {
  width: 100%;
}
.recruit__circle-svg-box svg path {
  fill: #DEDEDE;
}

.recruit__detail-table {
  border-collapse: collapse;
  margin: 0 auto 30px;
  width: 100%;
}
.recruit__detail-table th,
.recruit__detail-table td {
  border-bottom: 1px solid #cfcfcf;
  padding: 20px 16px;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 700px) {
  .recruit__detail-table th,
  .recruit__detail-table td {
    padding: 10px 8px;
  }
}
.recruit__detail-table th {
  font-size: 1.6rem;
  font-weight: 500;
  width: 28%;
}
@media screen and (max-width: 700px) {
  .recruit__detail-table th {
    font-size: 1.4rem;
    width: 38%;
  }
}
.recruit__detail-table td {
  font-size: 1.6rem;
  text-align: left;
  width: 72%;
}
@media screen and (max-width: 700px) {
  .recruit__detail-table td {
    font-size: 1.4rem;
    width: 62%;
  }
}
.recruit__detail-table tr:last-child th,
.recruit__detail-table tr:last-child td {
  border-bottom: none;
}

.recruit__contact-btn-box {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .recruit__contact-btn-box {
    text-align: center;
  }
}

.recruit__to-contact-form-btn {
  background: #2B2B2B;
  border: none;
  color: #fff;
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 700;
  padding: 24px 80px;
  position: relative;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .recruit__to-contact-form-btn {
    font-size: 1.8rem;
    padding: 24px 0;
    width: 100%;
  }
}
.recruit__to-contact-form-btn:hover {
  opacity: 0.9;
}
.recruit__to-contact-form-btn::after {
  background: url(../images/recruit/recruit__to-contact-form-btn-arrow.svg) no-repeat center center/9px #fff;
  border-radius: 50%;
  content: "";
  height: 29px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 29px;
}

/*=============================================
*
* contact
*
=============================================*/
.contact {
  padding: 110px 0;
  position: relative;
}
.contact > .inner {
  position: relative;
  z-index: 1;
}
.contact > .inner .content-box {
  padding-bottom: 0;
}

.contact__form-box {
  background: #fff;
  border-radius: 30px;
  margin: 0 auto;
  max-width: 800px;
  padding: 45px 30px;
}

.contact__form-text {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.8;
  margin: 0 auto 40px;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .contact__form-text {
    font-size: 1.6rem;
    margin: 0 auto 45px;
  }
}

.contact__heading-box {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  text-align: left;
}
.contact__heading {
  color: #fff;
  font-size: 13rem;
  font-weight: 500;
  letter-spacing: 1rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contact__heading {
    font-size: 7rem;
  }
}
.contact__heading-jp {
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 1142px) {
  .contact__heading-jp {
    font-size: 2.4rem;
  }
}

.contact__circle-img-box {
  position: absolute;
  left: -150px;
  top: -50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 700px) {
  .contact__circle-img-box {
    left: -110px;
    top: calc(50% - 110px);
    width: 220px;
  }
}
.contact__circle-img-box .effect.fade-in.is-scrollin {
  left: 0;
  top: -50%;
  transform: translate(-50%, -50%);
}

.contact__circle-svg-box {
  animation: rotateRight 40s linear infinite;
}
.contact__circle-svg-box svg {
  width: 100%;
}
.contact__circle-svg-box svg path {
  fill: #fff;
  opacity: 0.6;
}

.contact__form-table {
  border-collapse: collapse;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 700px) {
  .contact__form-table {
    margin: 0 auto 20px;
  }
}
.contact__form-table th,
.contact__form-table td {
  border-bottom: 1px solid #cfcfcf;
  padding: 18px 14px;
  text-align: left;
  vertical-align: top;
  font-size: 1.6rem;
}
@media screen and (max-width: 700px) {
  .contact__form-table th,
  .contact__form-table td {
    padding: 10px 6px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 650px) {
  .contact__form-table th,
  .contact__form-table td {
    border: none;
    padding: 5px 0;
  }
}
.contact__form-table th {
  width: 28%;
  font-weight: 700;
  color: #222;
}
@media screen and (max-width: 700px) {
  .contact__form-table th {
    width: 38%;
  }
}
@media screen and (max-width: 650px) {
  .contact__form-table th {
    display: block;
    width: 100%;
  }
}
.contact__form-table th p {
  text-align: left;
}
.contact__form-table th label {
  font-weight: 700;
}
.contact__form-table th label em {
  color: #FF5B60;
  font-style: normal;
  font-size: 1.2em;
  margin-left: 0.2em;
}
.contact__form-table td {
  width: 72%;
}
@media screen and (max-width: 700px) {
  .contact__form-table td {
    width: 62%;
  }
}
@media screen and (max-width: 650px) {
  .contact__form-table td {
    display: block;
    padding-top: 0;
    width: 100%;
  }
}
.contact__form-table tr:last-child th,
.contact__form-table tr:last-child td {
  border-bottom: none;
}
.contact__form-table input[type=text],
.contact__form-table input[type=email],
.contact__form-table textarea,
.contact__form-table select {
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  font-size: 1.6rem;
  max-width: 100%;
  padding: 10px 12px;
  text-align: left;
  transition: border-color 0.2s;
  width: 100%;
}
.contact__form-table input[type=text]:focus,
.contact__form-table input[type=email]:focus,
.contact__form-table textarea:focus,
.contact__form-table select:focus {
  border-color: #65A0C8;
  outline: none;
}
@media screen and (max-width: 700px) {
  .contact__form-table input[type=text],
  .contact__form-table input[type=email],
  .contact__form-table textarea,
  .contact__form-table select {
    font-size: 1.6rem;
    padding: 8px 8px;
  }
}
.contact__form-table textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__form-table select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/contact/select-arrow.svg) no-repeat right 12px center #fff;
  padding-right: 36px;
}
@media screen and (max-width: 700px) {
  .contact__form-table select {
    background-size: 11px;
  }
}
.contact__form-table .wpcf7-not-valid-tip {
  text-align: left;
}

.contact__content-box {
  margin: 0 auto 40px;
}
@media screen and (max-width: 850px) {
  .contact__content-box {
    padding: 0 16px;
  }
}
.contact__content-box.is-active {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.contact__form-submit-btn-box {
  text-align: center;
  margin: 40px 0 0;
}
.contact__form-submit-btn-box .wpcf7-submit,
.contact__form-submit-btn-box .contact__form-submit-btn {
  background: #65A0C8;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 16px 60px;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.contact__form-submit-btn-box .wpcf7-submit:hover, .contact__form-submit-btn-box .wpcf7-submit:focus,
.contact__form-submit-btn-box .contact__form-submit-btn:hover,
.contact__form-submit-btn-box .contact__form-submit-btn:focus {
  background: #4179a6;
  opacity: 0.9;
}
@media screen and (max-width: 700px) {
  .contact__form-submit-btn-box .wpcf7-submit,
  .contact__form-submit-btn-box .contact__form-submit-btn {
    font-size: 1.3rem;
    padding: 12px 30px;
  }
}

.contact-form__form-table + .contact-form__btn-box {
  margin: 10px auto 40px;
}

.contact-form__btn-email,
.contact-form__confirm-btn {
  background: url(../images/contact/contact-btn-check-icon.svg) no-repeat left 15px center #000;
  border-radius: 100px;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto;
  max-width: 320px;
  min-width: 164px;
  padding: 21px 20px 20px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.contact-form__btn-email:hover,
.contact-form__confirm-btn:hover {
  background-color: #65A0C8;
  color: #fff;
  text-decoration: none;
}
.contact-form__btn-email.is-disabled, .contact-form__btn-email:disabled,
.contact-form__confirm-btn.is-disabled,
.contact-form__confirm-btn:disabled {
  background-color: #EDEDED;
  color: #aaa;
  pointer-events: none;
}
.contact-form__btn-email.is-disabled:hover, .contact-form__btn-email:disabled:hover,
.contact-form__confirm-btn.is-disabled:hover,
.contact-form__confirm-btn:disabled:hover {
  background-color: #EDEDED;
  color: #000;
}

.contact-form__submit-btn {
  background: url(../images/contact/contact-btn-submit-icon.svg) no-repeat left 15px center #000;
  border-radius: 100px;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto;
  max-width: 320px;
  min-width: 164px;
  padding: 21px 20px 20px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.contact-form__submit-btn:hover {
  background-color: #65A0C8;
  color: #fff;
  text-decoration: none;
}
.contact-form__submit-btn.is-disabled, .contact-form__submit-btn:disabled {
  background-color: #EDEDED;
  color: #aaa;
  pointer-events: none;
}
.contact-form__submit-btn.is-disabled:hover, .contact-form__submit-btn:disabled:hover {
  background-color: #EDEDED;
  color: #000;
}

.contact-form-modal__error-text {
  background: #ffd4d4;
  border: 1px solid #ff5b60;
  border-radius: 10px;
  display: none;
  line-height: 1.8;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .contact-form-modal__error-text {
    font-size: 1.6rem;
  }
}
.contact-form-modal__error-text.is-active {
  display: block;
}

.contact-form-modal__success-text {
  background: #d4ffd4;
  border: 1px solid #5bff60;
  border-radius: 10px;
  display: none;
  line-height: 1.8;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .contact-form-modal__success-text {
    font-size: 1.6rem;
  }
}
.contact-form-modal__success-text.is-active {
  display: block;
}

/*=============================================
*
* modal
*
=============================================*/
.contact-form-modal {
  align-items: center;
  display: flex;
  height: 100dvh;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.5s;
  visibility: hidden;
  width: 100%;
  z-index: 9999;
}
@supports not (height: 100dvh) {
  .contact-form-modal {
    height: 100vh;
    width: 100vw;
  }
}
.contact-form-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.contact-form-modal__back {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.contact-form-modal.is-active .contact-form-modal__content-box {
  opacity: 1;
}
.contact-form-modal__close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form-modal__close-btn:hover {
  color: #FF8383;
}
.contact-form-modal h4 {
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .contact-form-modal__content-box {
    width: 90%;
    padding: 15px;
  }
}

.contact-form-modal__content-box {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-height: calc(100% - 60px);
  max-width: 850px;
  opacity: 0;
  overflow-y: auto;
  padding: 20px;
  position: relative;
  transition: all 0.3s;
  width: 100%;
}
.contact-form-modal.is-active .contact-form-modal__content-box {
  opacity: 1;
}

.contact-success-modal {
  align-items: center;
  display: flex;
  height: 100dvh;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.5s;
  visibility: hidden;
  width: 100vw;
  z-index: 9999;
}
@supports not (height: 100dvh) {
  .contact-success-modal {
    height: 100dvh;
    width: 100vw;
  }
}
.contact-success-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.contact-success-modal__back {
  background: rgba(0, 0, 0, 0.7);
  height: 100dvh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100vw;
}

.contact-success-modal__content-box {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  padding: 30px 20px 20px 20px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 700px) {
  .contact-success-modal__content-box {
    padding: 16px;
  }
}

.contact-success-modal__inner {
  margin-bottom: 20px;
}

.contact-success-modal__success-title {
  color: #036EB7;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-success-modal__success-text {
  color: #222;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: left;
}

.contact-success__modal-close-btn-box {
  text-align: center;
}

.contact-success__modal-close-btn {
  background: #65A0C8;
  border: none;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 12px 40px;
  transition: background 0.3s, opacity 0.3s;
}
.contact-success__modal-close-btn:hover {
  background: #4179a6;
  opacity: 0.9;
}