@charset "UTF-8";
/*----------------
フォント読み込み 
----------------*/
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  margin: 0;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: visible;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html, body {
    overflow: visible;
  }
}

.inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 86.11%;
}

.inner--size-s {
  max-width: 1140px;
  margin: 0 auto;
  width: 79.16%;
}

.textCenter {
  text-align: center;
}

.en {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 89.333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 89.74%;
  }
  .inner--size-s {
    width: 89.74%;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
  .inner {
    width: 89.7%;
  }
  .inner--size-s {
    width: 89.7%;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInTrigger,
.fadeUpTrigger,
.fadeInLoadTrigger,
.fadeUpLoadTrigger {
  opacity: 0;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.change-time1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.change-time15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.change-time2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.change-time25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.l-left {
  margin-left: 0;
  margin-right: auto;
}

.l-right {
  margin-right: 0;
  margin-left: auto;
}

.bl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-flex__rowCenter {
  justify-content: center;
}

.bl-flex__leftAlignment {
  justify-content: flex-start;
}

.bl-flex__rightAlignment {
  justify-content: flex-end;
}

.bl-flex__topAlignment {
  align-items: flex-start;
}

.bl-flex__bottomAlignment {
  align-items: flex-start;
}

.bl-ttl__appearBlock {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  height: 90px;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .bl-ttl__appearBlock {
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__appearBlock {
    height: 43px;
  }
}

.char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 1;
  visibility: hidden; /* 👈 初期状態では非表示 */
}

@-webkit-keyframes floatUp {
  0% {
    transform: translateY(100%);
    visibility: visible; /* 👈 アニメーション開始時に表示 */
  }
  60% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(100%);
    visibility: visible; /* 👈 アニメーション開始時に表示 */
  }
  60% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}
.bl-ttl__en span {
  font-size: 90px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 1280px) {
  .bl-ttl__en span {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__en span {
    font-size: 43px;
  }
}
.bl-ttl__en.bl-ttl__en--en span {
  font-size: 70px;
}
@media screen and (max-width: 1280px) {
  .bl-ttl__en.bl-ttl__en--en span {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__en.bl-ttl__en--en span {
    font-size: 43px;
  }
}

.bl-ttl__en--wh {
  color: #FFFFFF;
}

.bl-ttl__ja {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 15px;
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .bl-ttl__ja {
    font-size: 28px;
    padding: 8px;
  }
}

.bl-ttl__ja--withBar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7.5px;
}
.bl-ttl__ja--withBar span {
  display: block;
  width: 29px;
  height: 1px;
  background-color: #FFFFFF;
}

.bl-sectionTtl__en {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  color: #3D2EE0;
}
@media screen and (max-width: 768px) {
  .bl-sectionTtl__en {
    font-size: 14px;
  }
}

.bl-sectionTtl__en--wh {
  color: #FFFFFF;
}

.bl-sectionTtl__ja {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.084em;
  margin-top: 10px;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .bl-sectionTtl__ja {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .bl-sectionTtl__ja {
    font-size: 24px;
    margin-top: 7px;
  }
}

.bl-sectionTtl__ja--wh {
  color: #FFFFFF;
}

.bl-ttl--enPage {
  font-size: 90px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .bl-ttl--enPage {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl--enPage {
    font-size: 43px;
  }
}
.bl-ttl--enPage span {
  color: #3D2EE0;
}

/*---------------------------
ページ共通
---------------------------*/
/*============= 背景白画像 ============*/
.bg-white {
  background-color: #FFFFFF;
  background-image: url(../../assets/images/top/background.jpg);
  background-repeat: repeat-y;
  background-size: 100% auto;
  position: relative;
  z-index: 3;
}

/*============= 下層FV ============*/
.underFv {
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .underFv {
    padding-top: 142px;
  }
}

.subTttl {
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0.078em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .subTttl {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
}

.leftDot {
  display: block;
  position: relative;
  padding-left: 39px;
}
.leftDot::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #3D2EE0;
  border-radius: 50%;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  z-index: 5;
}
.leftDot::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #3D2EE0;
  border-radius: 50%;
  top: 50%;
  left: 14px;
  transform: translateY(-50%) scale(1);
  transform-origin: center;
  opacity: 0.13;
  transition: all 0.5s;
  z-index: 4;
}

.leftDot--paleBlue::before {
  background-color: #3799E2;
}
.leftDot--paleBlue::after {
  background-color: #3799E2;
}

.leftDot--hover:hover::after {
  transform: translateY(-50%) scale(2.3);
  transform-origin: center;
  transition: all 0.5s;
}

.leftBar-ttl {
  margin-left: 32px;
  padding-left: 33px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.036em;
  line-height: 1;
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .leftBar-ttl {
    margin-left: 0;
    padding-left: 27px;
    font-size: 14px;
    margin-top: 19px;
  }
}
.leftBar-ttl::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 3px;
  background-color: #3D2EE0;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/*========= news一覧 ==========*/
.news-list {
  margin-top: 30px;
  border-top: 1px solid rgba(128, 128, 128, 0.4);
}

.news__item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(128, 128, 128, 0.4);
  transition: all 0.5s;
}
.news__item a:hover {
  opacity: 0.8;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .news__item a {
    flex-wrap: wrap;
  }
}

.news-date {
  letter-spacing: 0.07em;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .news-date {
    font-size: 16px;
  }
}

.news-category {
  padding: 5px 16px;
  line-height: 1;
  font-size: 12px;
  margin-left: 25px;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 20px;
  letter-spacing: 0.07em;
  width: 85px;
}

.news-category--navy {
  background-color: #3D2EE0;
}

.news-category--paleBlue {
  background-color: #3799E2;
}

.news-ttl {
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1.5;
  width: calc(100% - 210px);
}
@media screen and (max-width: 1024px) {
  .news-ttl {
    width: 100%;
    margin-top: 15px;
  }
}

/*========= 無限ループスライダー ==========*/
.loop-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.loop-slider__track {
  display: flex;
  -webkit-animation: scroll linear infinite;
          animation: scroll linear infinite;
}

.loop-slider__item {
  flex: 0 0 auto;
  padding: 0 2rem;
  font-size: 1.5rem;
  white-space: nowrap;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*======== 背景グラデーション ==========*/
.bg-gradient--toPaleBlue {
  background-image: linear-gradient(90deg, rgb(60, 39, 224), rgb(80, 202, 213));
}

.bg-gradient--toDarkBlue {
  background-image: linear-gradient(90deg, rgb(80, 202, 213), rgb(60, 39, 224));
}

.bg-gradient--toBottom-PaleBlue {
  background-image: linear-gradient(125deg, rgb(60, 39, 224), rgb(80, 202, 213));
}

.hoverDot {
  position: relative;
}
.hoverDot::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.hoverDot::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.3;
  transition: all 0.5s;
}
.hoverDot:hover::after {
  transform: translateY(-50%) scale(2.5);
  transition: all 0.5s;
}

.hoverDot--wh::before {
  background-color: #FFFFFF;
}
.hoverDot--wh::after {
  background-color: #FFFFFF;
}

.hoverDot--blue::before {
  background-color: #3D2EE0;
}
.hoverDot--blue::after {
  background-color: #3D2EE0;
}

.noCursor {
  pointer-events: none;
}

/*---------------------------
ヘッダー
---------------------------*/
.head {
  width: 19.16%;
  height: auto;
  position: fixed;
  top: 0;
  letter-spacing: 0;
  padding-left: 3.125%;
  padding-top: 22px;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .head {
    width: 100%;
    height: 70px;
    background-color: #000000;
    padding-left: 5.12%;
    padding-right: 5.12%;
    padding-top: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.head__logo {
  width: 100%;
  z-index: 9999;
  position: static;
}
@media screen and (max-width: 1024px) {
  .head__logo {
    top: -15px;
  }
}
.head__logo.js-changeColor .headLogo__wh {
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .head__logo.js-changeColor .headLogo__wh {
    opacity: 1;
  }
}
.head__logo.js-changeColor .headLogo__bk {
  opacity: 1;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .head__logo.js-changeColor .headLogo__bk {
    opacity: 0;
  }
}
.head__logo a {
  position: relative;
  display: block;
  width: 100%;
}
.head__logo a .headLogo__wh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: all 0.5s;
}
.head__logo a .headLogo__bk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .head__logo {
    width: 44.8%;
    max-width: 230px;
  }
}

.burger-nav {
  position: fixed;
  z-index: -1;
  opacity: 1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #000;
  transition: all 0.7s;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .burger-nav {
    left: 0;
    opacity: 0;
  }
}

.burger-nav.panelactive {
  opacity: 1;
  left: 0;
  z-index: 999;
  pointer-events: all;
}

@media screen and (max-width: 1024px) {
  .burger-nav__listWrap {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: calc(100vh - 97.5px - 88.1px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    overflow: scroll;
  }
}

.burger-nav.panelactive .burger-nav__listWrap {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1024px) {
  .burger-nav.panelactive .burger-nav__listWrap {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: calc(100vh - 97.5px - 88.1px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    overflow: scroll;
  }
}

/*ナビゲーション*/
.burger-nav .burger-nav__list {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-nav.panelactive .burger-nav__list {
  display: block;
}

/*リストのレイアウト設定*/
.burger-nav .burger-nav__item {
  list-style: none;
  text-align: center;
}

.burger-nav .burger-nav__item a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 100px;
  left: 3.125%;
  cursor: pointer;
  width: 40px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  .openbtn1 {
    position: relative;
    top: unset;
    left: unset;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 3px;
  border-radius: 2px;
}

.openbtn1 span:nth-of-type(1) {
  width: 100%;
  top: 0;
  background-color: #58ABFD;
}

.openbtn1 span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  background-color: #747474;
  width: 27px;
}

.openbtn1 span:nth-of-type(3) {
  bottom: 0;
  background-color: #3C27E0;
  width: 16px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
  background-color: #3C27E0;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
}

.burger__menu {
  margin-top: calc(80px + 16.6vh);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .burger__menu {
    display: block;
    margin-top: 100px;
  }
}

.burgerNav__list .burgerNav__item {
  position: relative;
  left: 0;
  opacity: 1;
  transition: none;
}
.burgerNav__list .burgerNav__item:not(:last-of-type) {
  margin-bottom: 3.77vh;
}
@media screen and (max-width: 1024px) {
  .burgerNav__list .burgerNav__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.burgerNav__list .burgerNav__item.burgerNav__item--pageDetailLink {
  margin-bottom: 3.33vh;
  border-top: unset;
}
@media screen and (max-width: 1024px) {
  .burgerNav__list .burgerNav__item.burgerNav__item--pageDetailLink {
    margin-bottom: 0;
    width: 50%;
    height: auto;
  }
  .burgerNav__list .burgerNav__item.burgerNav__item--pageDetailLink a {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .burgerNav__list .burgerNav__item.burgerNav__item--pageDetailLink.txtMax {
    width: 100%;
  }
}

.burgerNav__item.animate {
  transition: left 1s ease, opacity 1s ease;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .burgerNav__item {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.burgerNav__item a {
  color: #FFFFFF;
  line-height: 1;
  padding-left: 17px;
}
@media screen and (max-width: 1280px) {
  .burgerNav__item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .burgerNav__item a {
    padding: 17px 20px;
  }
}
.burgerNav__item a::before {
  width: 6px;
  height: 6px;
  left: 0;
  vertical-align: top;
}
.burgerNav__item.burgerNav__item--pageDetailLink {
  height: 14px;
}
.burgerNav__item.burgerNav__item--pageDetailLink a {
  font-size: 14px;
  color: #D5D5D5;
  line-height: 1;
  vertical-align: top;
}
@media screen and (max-width: 1280px) {
  .burgerNav__item.burgerNav__item--pageDetailLink a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .burgerNav__item.burgerNav__item--pageDetailLink a {
    font-size: 14px;
    padding: 17px 0 17px 17px;
  }
}

.burger__copy {
  margin-top: 60px;
  text-align: center;
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1;
}

.fv-btn--burger {
  z-index: 9999 !important;
  opacity: 0;
  transition: all 0.7s;
  top: 26px !important;
}
@media screen and (max-width: 1024px) {
  .fv-btn--burger {
    opacity: 1;
    top: unset !important;
  }
}

.burger-nav.panelactive .fv-btn--burger {
  -webkit-animation-name: burgerOpenBtnAnime;
          animation-name: burgerOpenBtnAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: unset !important;
          animation-delay: unset !important;
}
@media screen and (max-width: 1024px) {
  .burger-nav.panelactive .fv-btn--burger {
    -webkit-animation: unset;
            animation: unset;
  }
}

@-webkit-keyframes burgerOpenBtnAnime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes burgerOpenBtnAnime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.burger-bottom {
  position: absolute;
  bottom: 6.02vh;
  left: 6.94vw;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .burger-bottom {
    position: relative;
    bottom: unset;
    left: unset;
    margin-top: 100px;
  }
}

@media screen and (max-width: 1024px) {
  .burger-bottom--pc-tab1024 {
    display: none;
  }
}

.burger-bottom--tab1024-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger-bottom--tab1024-sp {
    display: block;
  }
}

.burger-logo {
  width: 22.2%;
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .burger-logo {
    width: 73%;
    max-width: 280px;
  }
}

.burger-address {
  font-size: 14px;
  color: #D5D5D5;
  margin-top: 20px;
  letter-spacing: 0.04em;
}

.burger-tel-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 23px;
  font-size: 14px;
  color: #D5D5D5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .burger__subNav {
    display: none;
  }
  .burger__subNav a {
    font-size: 12px;
  }
  /* マイナス（−）アイコン：縦線を非表示 */
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .burger__subNav a::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .burger__subNav .burgerNav__item--subNav:first-of-type {
    margin-top: 0;
  }
  .burger__subNav .burgerNav__item--subNav:last-of-type {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .burger__subNav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .burgerNav__item--open .burger__subNav {
    display: block;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .burgerNav__item--open .burger__subNav {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .burger__nav-expand {
    position: absolute;
    width: 18px;
    height: 18px;
    border: none;
    background: none;
    cursor: pointer;
    top: 15px;
    right: 0;
    z-index: 1000;
  }
}
@media screen and (max-width: 1024px) {
  .burger__nav-expand::before,
.burger__nav-expand::after {
    content: "";
    position: absolute;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
  }
}
@media screen and (max-width: 1024px) {
  .burger__nav-expand::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .burger__nav-expand::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .burgerNav__item--open .burger__nav-expand::after {
    opacity: 0;
  }
}
@media screen and (max-width: 1024px) {
  .burgerNav__item--hasSub a {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .burger__menu .burgerNav__list:last-of-type .burgerNav__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

@media screen and (max-width: 1024px) {
  .noClick {
    pointer-events: none;
  }
}
/* top修正分追記*/
.head__logo.head__logo--top {
  position: absolute;
  -webkit-animation-name: fvLogoTopAnime;
          animation-name: fvLogoTopAnime;
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  top: 0;
  transform: translateY(-100%);
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .head__logo.head__logo--top {
    position: relative;
    top: 0 !important;
    transform: unset !important;
  }
}

@-webkit-keyframes fvLogoTopAnime {
  0% {
    transform: translateY(-100%);
    top: 0;
  }
  100% {
    transform: translateY(0);
    top: 26px;
  }
}
@keyframes fvLogoTopAnime {
  0% {
    transform: translateY(-100%);
    top: 0;
  }
  100% {
    transform: translateY(0);
    top: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .head__logo--top {
    -webkit-animation-name: unset;
            animation-name: unset;
    top: 0 !important;
  }
}
.openbtn1.openbtn1--top {
  left: 0%;
  transform: translateX(-100%);
  -webkit-animation-name: fvBurgerAnime;
          animation-name: fvBurgerAnime;
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .openbtn1.openbtn1--top {
    position: fixed;
    top: unset;
    left: unset;
    right: 5.12% !important;
  }
}

@keyframes fvBurgerAnime {
  0% {
    left: 0%;
    transform: translateX(-100%);
  }
  100% {
    left: 3.125%;
    transform: translateY(0);
  }
}
@-webkit-keyframes fvBurgerAnime {
  0% {
    left: 0%;
    transform: translateX(-100%);
  }
  100% {
    left: 3.125%;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  .openbtn1 {
    -webkit-animation-name: unset;
            animation-name: unset;
    position: relative;
    top: unset;
    left: unset;
  }
}
/*=========================
フッター
=========================*/
.foot {
  padding: 110px 0 10px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .foot {
    padding: 80px 0 10px;
  }
}
.foot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  pointer-events: none;
}

.foot__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.foot__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .foot__bg img {
    width: 100%;
    height: 350vh;
  }
}

/*
.inner--foot{
    padding-right: 4%;   
    @include m.lg-down() {
    padding-right: 0;
    }
}*/
.foot__upper {
  position: relative;
  padding-bottom: 103.5px;
}
@media screen and (max-width: 1024px) {
  .foot__upper {
    padding-bottom: 0;
  }
}
.foot__upper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100vw;
  height: 1px;
  background-color: #FFFFFF;
}

.foot__dl-list {
  width: 39.5%;
  min-width: 350px;
}
@media screen and (max-width: 1024px) {
  .foot__dl-list {
    width: 100%;
    min-width: unset;
  }
}
.foot__dl-list .foot__dl-item:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .foot__dl-list .foot__dl-item:not(:first-of-type) {
    margin-top: 15px;
  }
}

.foot__dl-item {
  width: 100%;
}
.foot__dl-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1023.9px) {
  .foot__dl-item a:hover .foot__dl-icon {
    top: -5px;
    transition: all 0.5s;
  }
}

.foot__dl-txt {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #FFFFFF;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .foot__dl-txt {
    font-size: 16px;
    margin-right: 35px;
  }
}

.foot__dl-icon {
  width: 27px;
  transition: all 0.5s;
  top: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .foot__dl-icon {
    width: 20px;
  }
}

.foot__companyName {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 83px;
  letter-spacing: 0;
  line-height: 1.01;
  color: #FFFFFF;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .foot__companyName {
    font-size: 65px;
  }
}
@media screen and (max-width: 1024px) {
  .foot__companyName {
    position: relative;
    bottom: unset;
    right: unset;
    margin-top: 94px;
    font-weight: 500;
    font-size: 12vw;
  }
}

.foot__under {
  margin-top: 53px;
}
@media screen and (max-width: 768px) {
  .foot__under {
    margin-top: 120px;
  }
}

.foot__logo {
  width: 28.5%;
}
@media screen and (max-width: 1024px) {
  .foot__logo {
    width: 73%;
    max-width: 280px;
  }
}

.foot__menu {
  margin-top: 55.5px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .foot__menu {
    display: block;
    margin-top: 35px;
  }
}

.footNav__list .footNav__item:not(:last-of-type) {
  margin-bottom: 18px;
}
@media screen and (max-width: 1024px) {
  .footNav__list .footNav__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.footNav__list .footNav__item.footNav__item--pageDetailLink {
  margin-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  .footNav__list .footNav__item.footNav__item--pageDetailLink {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .footNav__list .footNav__item.footNav__item--pageDetailLink.txtMax {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .foot__menu .footNav__list:last-of-type .footNav__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

@media screen and (max-width: 1024px) {
  .footNav__item {
    position: relative;
  }
}
.footNav__item a {
  color: #FFFFFF;
  line-height: 1;
  padding-left: 17px;
}
@media screen and (max-width: 1280px) {
  .footNav__item a {
    font-size: 14px;
  }
}
.footNav__item a::before {
  width: 6px;
  height: 6px;
  left: 0;
  vertical-align: top;
}
@media screen and (max-width: 1024px) {
  .footNav__item a {
    padding: 20px 17px;
    display: block;
    position: relative;
  }
  .footNav__item a::after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 1px;
    background-color: #FFFFFF;
    opacity: 0.5;
    top: 0;
    left: 0;
    border-radius: 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .footNav__item a::after {
    width: 100%;
  }
}
.footNav__item.footNav__item--pageDetailLink {
  height: 14px;
}
@media screen and (max-width: 1024px) {
  .footNav__item.footNav__item--pageDetailLink {
    height: auto;
  }
}
.footNav__item.footNav__item--pageDetailLink a {
  font-size: 14px;
  color: #D5D5D5;
  line-height: 1;
  vertical-align: top;
}
@media screen and (max-width: 1280px) {
  .footNav__item.footNav__item--pageDetailLink a {
    font-size: 12pz;
  }
}
@media screen and (max-width: 1024px) {
  .footNav__item.footNav__item--pageDetailLink a {
    font-size: 14px;
    padding: 0 17px;
    margin-bottom: 28px;
  }
  .footNav__item.footNav__item--pageDetailLink a::after {
    display: none;
  }
}

.foot__copy {
  margin-top: 60px;
  text-align: center;
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .foot__copy {
    margin-top: 100px;
    font-size: 10px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 1024px) {
  .foot__subNav {
    display: none;
  }
  .foot__subNav a {
    font-size: 12px;
  }
  /* マイナス（−）アイコン：縦線を非表示 */
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .foot__subNav a::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .foot__subNav .footNav__item--subNav:first-of-type {
    margin-top: 0;
  }
  .foot__subNav .footNav__item--subNav:last-of-type {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .foot__subNav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .footNav__item--open .foot__subNav {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .foot__nav-expand {
    position: absolute;
    width: 18px;
    height: 18px;
    border: none;
    background: none;
    cursor: pointer;
    top: 19px;
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .foot__nav-expand::before,
.foot__nav-expand::after {
    content: "";
    position: absolute;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
  }
}
@media screen and (max-width: 1024px) {
  .foot__nav-expand::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .foot__nav-expand::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .footNav__item--open .foot__nav-expand::after {
    opacity: 0;
  }
}
/* top修正分追記*/
.foot--top::after {
  display: none;
}

.foot__upper--top::after {
  background-color: #333;
}

.foot__companyName--top {
  color: #333;
}

@media screen and (max-width: 1024px) {
  .foot__menu.foot__menu--top .footNav__list:last-of-type .footNav__item:last-child {
    border-bottom: 1px solid rgb(51, 51, 51);
  }
  .foot__nav-expand.foot__nav-expand--top::before,
.foot__nav-expand.foot__nav-expand--top::after {
    background-color: #333333;
  }
}
.footNav__list--top .footNav__item--top a::after {
  background-color: #333333;
}

.footNav__list--top .footNav__item--top.footNav__item.footNav__item--pageDetailLink a {
  color: #545454;
}

.footNav__item.footNav__item--top a {
  color: #333333;
  line-height: 1;
  padding-left: 17px;
}

@media screen and (max-width: 1024px) {
  .foot__menu .footNav__list:last-of-type .footNav__item.footNav__item--top:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .footNav__item--top a::after {
    background-color: #333333;
  }
}
.foot__copy--top {
  color: #333333;
}

@media screen and (max-width: 1024px) {
  .foot__menu .footNav__list:last-of-type .footNav__item.footNav__item--top:last-child {
    border-bottom: 1px solid rgb(51, 51, 51);
  }
}
.foot--en {
  padding-top: 150px;
}

/*---------------------------
TOPページ
---------------------------*/
.page-bg-movie {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -5;
}
.page-bg-movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*========== ローディング ============*/
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
}

.splash__movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.splash__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.splash__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.56%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .splash__content {
    flex-direction: column;
    gap: 69px;
  }
}

.splash-img {
  width: 15.9%;
  transition: opacity 1s ease;
}
@media screen and (max-width: 768px) {
  .splash-img {
    width: 31.5%;
    max-width: 200px;
  }
}

.splash-img.fade-out {
  opacity: 0;
  pointer-events: none;
}

.splash-txt {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.splash-txt .splash-txt__block:first-of-type {
  -webkit-animation-name: loadingFirstAnime;
          animation-name: loadingFirstAnime;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
.splash-txt .splash-txt__block:nth-of-type(2) {
  -webkit-animation-name: loadingSecondAnime;
          animation-name: loadingSecondAnime;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
.splash-txt .splash-txt__block:last-of-type {
  -webkit-animation-name: loadingThirdAnime;
          animation-name: loadingThirdAnime;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes loadingFirstAnime {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes loadingFirstAnime {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes loadingSecondAnime {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes loadingSecondAnime {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes loadingThirdAnime {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes loadingThirdAnime {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.splash-txt__block {
  position: relative;
  transform: scale(2);
  transform-origin: center;
  display: block;
  font-family: "Noto Serif JP", serif;
  color: #FFFFFF;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 6.11vw;
  letter-spacing: 0.156em;
  font-weight: 700;
  line-height: 1;
  padding-left: 50px;
  padding-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .splash-txt__block {
    margin: 0 auto;
    font-size: 34px;
    padding-left: 10px;
    padding-bottom: 10px;
  }
}
.splash-txt__block::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.55vw;
  background-color: #FFFFFF;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: left;
  left: 0;
  -webkit-animation-name: loadingBorderAnime;
          animation-name: loadingBorderAnime;
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes loadingBorderAnime {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes loadingBorderAnime {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  transition: z-index 1s ease;
}

#splash {
  position: fixed;
  z-index: 999;
  pointer-events: none; /* ←これ必要 */
}

#splash {
  position: fixed;
  z-index: 0; /* ←基本は常に後ろ */
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: z-index 1s ease;
}

/* 初回＆リロード時にアニメ実行 → 前面 */
#splash.is-playing {
  z-index: 999;
}

.splash-txt {
  transition: opacity 1s ease;
}
.splash-txt.fade-out {
  opacity: 0;
  pointer-events: none;
}

/*============= FV ============*/
.fv {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #000000;
}
.fv.fv--second-proposal {
  background-color: unset;
}

/*
.fv {
     &.fv--second-proposal{
  position: relative;
  z-index: 10; 
     }
}
     */
.fv-btn {
  width: 73%;
  height: auto;
  position: fixed;
  right: 3.81%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.77%;
  z-index: 99;
  -webkit-animation-name: fvBtnAnime;
          animation-name: fvBtnAnime;
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  top: -100%;
}
@media screen and (max-width: 1024px) {
  .fv-btn {
    width: 100%;
    position: relative;
    top: unset;
    right: unset;
    -webkit-animation-name: unset;
            animation-name: unset;
    top: 26px;
  }
}

.fv-btn--under {
  -webkit-animation-name: unset;
          animation-name: unset;
  top: 26px;
}
@media screen and (max-width: 1024px) {
  .fv-btn--under {
    display: none;
  }
}

@-webkit-keyframes fvBtnAnime {
  0% {
    top: -100%;
  }
  100% {
    top: 26px;
  }
}

@keyframes fvBtnAnime {
  0% {
    top: -100%;
  }
  100% {
    top: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .fv-btn--pc-tab1280 {
    display: none;
  }
}

.fv-btn--tab1024-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fv-btn--tab1024-sp {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .fv-btn--fv {
    display: none;
  }
}

.hoverDot--fv-btn {
  padding: 13px 25px 13px 51px;
  color: #FFFFFF;
  border-radius: 92px;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  font-size: 18px;
}
@media screen and (max-width: 1280px) {
  .hoverDot--fv-btn {
    padding: 13px 17px 13px 40px;
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .hoverDot--fv-btn {
    width: 100%;
    max-width: 400px;
    display: block;
    padding: 15px 0;
    text-align: center;
    margin: 0 auto 15px;
  }
}
.hoverDot--fv-btn::before {
  left: 25px;
}
@media screen and (max-width: 1024px) {
  .hoverDot--fv-btn::before {
    display: none;
  }
}
.hoverDot--fv-btn::after {
  left: 25px;
}
@media screen and (max-width: 1024px) {
  .hoverDot--fv-btn::after {
    display: none;
  }
}

.fv-btn__item--recruit .hoverDot--fv-btn {
  color: #3D2EE0;
  background-color: #FFFFFF;
}

.fv-movie {
  width: calc(100% - 235px);
  height: 87.44vh;
  position: fixed;
  top: 0;
  right: 0;
}
.fv-movie.js-full-size {
  width: 100%;
  height: 100%;
}
.fv-movie::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}
@media screen and (max-width: 1024px) {
  .fv-movie {
    width: 100%;
    height: 100%;
  }
}
.fv-movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv-menu {
  position: absolute;
  top: min(21vh, 195px);
  left: 2.7%;
  -webkit-animation-name: fvMenuAnime;
          animation-name: fvMenuAnime;
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  left: -100%;
}
@media screen and (max-width: 1024px) {
  .fv-menu {
    left: 2.7%;
    -webkit-animation-name: unset;
            animation-name: unset;
  }
}
.fv-menu .fv-menu__item:not(:last-of-type) {
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .fv-menu .fv-menu__item:not(:last-of-type) {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 15px;
  }
}
@media screen and (max-width: 1024px) {
  .fv-menu {
    position: relative;
    top: unset;
    left: unset;
    margin: 54px auto 0;
    width: 81.4%;
  }
}

@-webkit-keyframes fvMenuAnime {
  0% {
    left: -100%;
  }
  100% {
    left: 2.7%;
  }
}

@keyframes fvMenuAnime {
  0% {
    left: -100%;
  }
  100% {
    left: 2.7%;
  }
}
.fv-menu__item a {
  line-height: 1;
  display: block;
  padding: 5px 0;
  width: 171px;
  text-align: center;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  font-family: "Noto Serif JP", serif;
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .fv-menu__item a {
    width: 100%;
    max-width: 400px;
    padding: 13px 0;
  }
}
@media screen and (min-width: 1023.9px) {
  .fv-menu__item a:hover {
    background-color: #3D2EE0;
    transition: all 0.5s;
  }
}

.fv-menu--bk .fv-menu__item a {
  color: #333333;
  border: 1px solid #333333;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .fv-menu--bk .fv-menu__item a {
    width: 100%;
    max-width: 400px;
    padding: 13px 0;
  }
}
@media screen and (min-width: 1023.9px) {
  .fv-menu--bk .fv-menu__item a:hover {
    background-color: #3D2EE0;
    transition: all 0.5s;
    color: #FFFFFF;
  }
}

/* ロゴ */
.no-fv-animation .head__logo--top {
  -webkit-animation: none !important;
          animation: none !important;
  transform: translateY(0) !important;
  top: 26px !important;
}

/* ハンバーガーボタン */
.no-fv-animation .openbtn1--top {
  -webkit-animation: none !important;
          animation: none !important;
  transform: translateX(0) !important;
  left: 3.125% !important;
}

/* fv-btn */
.no-fv-animation .fv-btn {
  -webkit-animation: none !important;
          animation: none !important;
  top: 26px !important;
  right: 3.81% !important;
}

/* fv-menu */
.no-fv-animation .fv-menu {
  -webkit-animation: none !important;
          animation: none !important;
  left: 2.7% !important;
  top: min(21vh, 195px) !important;
  opacity: 1 !important;
}

/* burgerOpenBtn */
.no-fv-animation .fv-btn--burger {
  -webkit-animation: none !important;
          animation: none !important;
  opacity: 1 !important;
}

/*secondならこっち追記　ここまで*/
.fv-btn__item {
  position: relative;
}
.fv-btn__item a {
  z-index: 9;
}
.fv-btn__item:hover .fv-btn-subMenu {
  opacity: 1;
  pointer-events: all;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .fv-btn__item:hover .fv-btn-subMenu {
    max-height: 1000px;
    opacity: 1;
    margin-bottom: 30px;
    transition: all 1.5s;
    overflow: visible;
  }
}

.fv-btn-subMenu {
  position: absolute;
  top: 0;
  padding-top: 50px;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  pointer-events: none;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .fv-btn-subMenu {
    position: relative;
    top: 0;
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    margin-bottom: 0;
    transition: all 0.5s;
    max-width: 400px;
    margin: 0 auto;
  }
}
.fv-btn-subMenu::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-bottom: 14px solid #e2e7f2;
  border-top: 0;
}
@media screen and (max-width: 1024px) {
  .fv-btn-subMenu::after {
    top: 0;
  }
}
.fv-btn-subMenu .fv-btn-subMenu__item:not(:last-of-type) {
  border-bottom: 1px solid #A09AEC;
}

.fv-btn-subMenu__item {
  width: 100%;
}
.fv-btn-subMenu__item a {
  font-size: 13px;
  padding: 13px 0;
  text-align: center;
  display: block;
  width: 100%;
  background-color: #E2E7F2;
}

.fv-btn__item--keyword {
  width: 171px;
  height: auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .fv-btn__item--keyword {
    width: 100%;
    max-width: 400px;
    margin: 70px auto 0;
  }
}
.fv-btn__item--keyword input[type=text] {
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.028em;
  line-height: 1;
  padding-bottom: 7px;
  border-bottom: 0.5px solid #FFFFFF;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .fv-btn__item--keyword input[type=text] {
    font-size: 16px;
  }
}
.fv-btn__item--keyword .search-icon {
  pointer-events: none;
  position: absolute;
  width: 19px;
  height: 19px;
  right: 2px;
  top: 10px;
}
@media screen and (max-width: 1024px) {
  .fv-btn__item--keyword .search-icon {
    width: 29px;
    height: 29px;
    top: 5px;
  }
}
.fv-btn__item--keyword .search-icon img {
  display: block;
}

.fv-catchCopy {
  position: absolute;
  left: 2.7%;
  bottom: 2vh;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .fv-catchCopy {
    top: calc(50% - 40px);
    left: 50%;
    bottom: unset;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

.fv-catchCopy__block {
  font-size: 8vh;
  display: block;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .fv-catchCopy__block {
    font-size: min(8.46vw, 45px);
    width: 100%;
    text-align: center;
    line-height: 2;
  }
}

.fv-catchCopy__en {
  font-size: 2vw;
  letter-spacing: 0.031em;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: #FFFFFF;
  background-image: linear-gradient(90deg, rgb(255, 255, 255), rgb(80, 202, 213));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1024px) {
  .fv-catchCopy__en {
    width: 100%;
    font-size: 3.9vw;
    margin-top: 10px;
    display: block;
    text-align: center;
  }
}

.playBtn {
  position: absolute;
  right: 5.3%;
  bottom: 30px;
  z-index: 2;
  pointer-events: all;
}
.playBtn.js-disappear {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .playBtn {
    position: absolute;
    left: 50%;
    bottom: 24%;
    transform: translateX(-50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.playBtn a {
  font-size: 19px;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding: 14px 77px 14px 45px;
  background-color: #3D2EE0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .playBtn a {
    font-size: 14px;
    padding: 12px 65px 12px 35px;
  }
}
.playBtn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 11px solid #ffffff;
  border-right: 0;
}

.bl-ttl__appearBlock span.visible {
  opacity: 1;
  transform: translateY(0);
}

/*============= FV下 ============*/
.fv-bottom {
  padding: 200px 0 189px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .fv-bottom {
    padding: 78px 0 95px;
  }
}
.fv-bottom::before {
  content: "";
  position: absolute;
  top: 127px;
  left: 0;
  width: 36%;
  height: 7px;
  background-image: linear-gradient(90deg, rgb(60, 39, 224), rgb(80, 202, 213));
}
@media screen and (max-width: 1024px) {
  .fv-bottom::before {
    top: 47px;
    width: 39.7%;
    height: 4px;
  }
}
.fv-bottom::after {
  content: "";
  position: absolute;
  bottom: 104px;
  right: 0;
  width: 36%;
  height: 7px;
  background-image: linear-gradient(90deg, rgb(80, 202, 213), rgb(60, 39, 224));
}
@media screen and (max-width: 1024px) {
  .fv-bottom::after {
    bottom: 57px;
    width: 39.7%;
    height: 4px;
  }
}

.fv-bottom__message {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.129em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .fv-bottom__message {
    font-size: min(4.6vw, 23px);
    letter-spacing: 0.164em;
  }
}
.fv-bottom__message span {
  color: #3C27E0;
}

/*============= 三信建設工業について ============*/
.inner--top-about {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 9%;
}
@media screen and (max-width: 1024px) {
  .inner--top-about {
    display: block;
  }
}

.top-about__side-l {
  width: 561px;
}
@media screen and (max-width: 1024px) {
  .top-about__side-l {
    width: 100%;
  }
}

.subTtl--top-about {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .subTtl--top-about {
    margin-top: 45px;
  }
}

.normalDocs--top-about {
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-top: 45px;
}
@media screen and (max-width: 1024px) {
  .normalDocs--top-about {
    margin-top: 23px;
  }
}
@media screen and (max-width: 768px) {
  .normalDocs--top-about {
    font-size: 14px;
  }
}

.bl-btn--top-about {
  padding: 7px;
  width: 524px;
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .bl-btn--top-about {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .bl-btn--top-about {
    width: calc(100% - 9.4px);
  }
}
.bl-btn--top-about a {
  display: block;
  width: 100%;
  padding: 15px 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.056em;
  line-height: 1.5;
  text-align: center;
  color: #FFFFFF;
  background-image: linear-gradient(345deg, rgb(250, 225, 29), rgb(224, 148, 19));
  position: relative;
  border-radius: 48px;
}
@media screen and (max-width: 768px) {
  .bl-btn--top-about a {
    padding: 10px 0;
    font-size: 14px;
  }
}
.bl-btn--top-about a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  border-radius: 55px;
  border: 1px solid #F4CA1B;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: all 0.5s;
}
@media screen and (min-width: 1023.9px) {
  .bl-btn--top-about a:hover::after {
    width: calc(100% + 42px);
    height: calc(100% + 28px);
    transform-origin: center;
    transition: all 0.5s;
  }
}

.top-about__side-r {
  margin-top: 95px;
  width: calc(91% - 561px);
  aspect-ratio: 1/1.25;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .top-about__side-r {
    aspect-ratio: 1/1.5;
  }
}
.top-about__side-r img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transform: scale(1.1);
  transition: all 1.5s;
}
.top-about__side-r.js-size-change img {
  transform: scale(1);
  transition: all 1.5s;
}
@media screen and (max-width: 1024px) {
  .top-about__side-r {
    width: 100%;
    margin-top: 32px;
    aspect-ratio: 1/0.75;
  }
}

/*============= About下 ============*/
.top-underAbout {
  margin-top: -15px;
  width: 100%;
  aspect-ratio: 1/0.407;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-underAbout {
    margin-top: 93px;
    aspect-ratio: 1/0.64;
  }
}

.top-underNews__images {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-underNews__images .top-underNews__item:first-of-type {
  width: 25.2%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .top-underNews__images .top-underNews__item:first-of-type {
    width: 28.7%;
  }
}
.top-underNews__images .top-underNews__item:nth-of-type(2) {
  width: 19.37%;
  left: 36.1%;
  bottom: 4.6%;
}
@media screen and (max-width: 768px) {
  .top-underNews__images .top-underNews__item:nth-of-type(2) {
    width: 29.6%;
    bottom: 0;
    left: 20.25%;
  }
}
.top-underNews__images .top-underNews__item:nth-of-type(3) {
  width: 24.44%;
  top: 11.4%;
  right: 10.4%;
}
@media screen and (max-width: 768px) {
  .top-underNews__images .top-underNews__item:nth-of-type(3) {
    width: 35.8%;
    top: 0;
    right: 5.1%;
  }
}
.top-underNews__images .top-underNews__item:last-of-type {
  width: 19.72%;
  bottom: 0;
  right: 2.9%;
}
@media screen and (max-width: 768px) {
  .top-underNews__images .top-underNews__item:last-of-type {
    width: 30.31%;
    right: 0;
    bottom: 19.2%;
  }
}

.top-underNews__item {
  position: absolute;
}

.loop-slider-wrap--underAbout {
  position: absolute;
  top: 31.2%;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.loop-slider__item--top-underAbout {
  font-size: 59px;
  letter-spacing: 0.042em;
  line-height: 2;
  background-image: linear-gradient(100deg, rgb(60, 39, 224), rgb(80, 202, 213));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .loop-slider__item--top-underAbout {
    font-size: 31px;
  }
}

.top-underAbout {
  margin-top: -15px;
  width: 100%;
  aspect-ratio: 1/0.275;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-underAbout {
    aspect-ratio: 1/0.94;
  }
}

@media screen and (max-width: 1024px) {
  .top-underAbout {
    margin-top: 93px;
  }
}
.top-underNews__images {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .top-underNews__images {
    margin-top: 100px;
  }
}

.top-underNews__images .top-underNews__item:first-of-type {
  width: 24%;
  top: 5.4%;
  left: 0;
  aspect-ratio: 1/1.3;
  width: 12%;
  width: 16%;
}
@media screen and (max-width: 768px) {
  .top-underNews__images .top-underNews__item:first-of-type {
    width: 32%;
    top: 0;
  }
}

.top-underNews__images .top-underNews__item:nth-of-type(2) {
  width: 24%;
  left: 25.25%;
  bottom: 0;
  aspect-ratio: 1/1.3;
  width: 12%;
  width: 16%;
  left: 16.8%;
}
@media screen and (max-width: 768px) {
  .top-underNews__images .top-underNews__item:nth-of-type(2) {
    width: 32%;
    top: 5%;
    left: 33.9%;
    bottom: unset;
  }
}

.top-underNews__images .top-underNews__item:nth-of-type(3) {
  width: 24%;
  top: 5.4%;
  right: 25.25%;
  aspect-ratio: 1/1.3;
  width: 12.3%;
  width: 16%;
  left: 33.6%;
}
@media screen and (max-width: 768px) {
  .top-underNews__images .top-underNews__item:nth-of-type(3) {
    width: 32%;
    top: 0;
    right: 0;
    left: unset;
  }
}

.top-underNews__images .top-underNews__item:nth-of-type(4) {
  width: 24%;
  bottom: 0;
  right: 0;
  aspect-ratio: 1/1.3;
  width: 12.3%;
  width: 16%;
  left: 50.4%;
}
@media screen and (max-width: 768px) {
  .top-underNews__images .top-underNews__item:nth-of-type(4) {
    width: 32%;
    bottom: 5%;
    left: 0;
  }
}

.top-underNews__images .top-underNews__item:nth-of-type(5) {
  width: 24%;
  top: 5.4%;
  left: 0;
  aspect-ratio: 1/1.3;
  width: 12.3%;
  width: 16%;
  left: 67.2%;
}
@media screen and (max-width: 768px) {
  .top-underNews__images .top-underNews__item:nth-of-type(5) {
    width: 32%;
    left: 33.9%;
    top: unset;
    bottom: 0;
  }
}

.top-underNews__images .top-underNews__item:nth-of-type(6) {
  width: 24%;
  left: 25.25%;
  bottom: 0;
  aspect-ratio: 1/1.3;
  width: 12.3%;
  width: 16%;
  left: 84%;
}
@media screen and (max-width: 768px) {
  .top-underNews__images .top-underNews__item:nth-of-type(6) {
    width: 32%;
    bottom: 5%;
    right: 0;
    left: unset;
  }
}

.top-underNews__item {
  position: absolute;
}

.loop-slider-wrap--underAbout {
  position: absolute;
  /*top: 31.2%;*/
  top: -80px;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.loop-slider__item--top-underAbout {
  font-size: 59px;
  letter-spacing: 0.042em;
  line-height: 2;
  background-image: linear-gradient(100deg, rgb(60, 39, 224), rgb(80, 202, 213));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .loop-slider__item--top-underAbout {
    font-size: 31px;
  }
}
/*============= お知らせ ============*/
.top-news {
  margin-top: 115px;
}

.top-news__flex-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: -15px;
  gap: 10.8%;
}
@media screen and (max-width: 1024px) {
  .top-news__flex-wrap {
    margin-top: 63px;
  }
}

.top-news__side-l {
  width: 316px;
  margin-top: 107px;
}
@media screen and (max-width: 1024px) {
  .top-news__side-l {
    display: none;
  }
}

.top-news-link .top-news-link__item:last-of-type {
  margin-top: 55px;
}

.top-news-link__item a {
  padding-right: 20px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 1024px) {
  .top-news-link__item a {
    padding-right: 0;
    padding-bottom: 23.5px;
    flex-wrap: wrap;
  }
}
.top-news-link__item a::before {
  top: calc(50% - 7px);
}
.top-news-link__item a::after {
  top: calc(50% - 7px);
}

.top-news-link__ja {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.056em;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}

.top-news-link__en {
  font-size: 12px;
  letter-spacing: 0.024em;
  line-height: 1;
  color: #3D2EE0;
}

.top-news__side-r {
  width: calc(89.2% - 316px);
}
.top-news__side-r .top-news__block:not(:first-of-type) {
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .top-news__side-r {
    width: 100%;
  }
}

.top-news-genre {
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.056em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-news-genre {
    font-size: 20px;
  }
}

.news__item--top-news a {
  padding: 15px 6.33% 15px 3.54%;
}
@media screen and (max-width: 1024px) {
  .news__item--top-news a {
    padding: 25px 0;
  }
}

.news-category--top-news {
  margin-left: 15px;
  margin-right: 25px;
}

@media screen and (max-width: 1024px) {
  .bl-btn--top-news {
    padding: 3.2px;
    width: 73.7%;
    max-width: 320px;
    position: relative;
    margin: 42px auto 0;
  }
  .bl-btn--top-news a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.032em;
    line-height: 1;
    text-align: center;
    color: #FFFFFF;
    background-color: #3D2EE0;
    position: relative;
    border-radius: 48px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .bl-btn--top-news a {
    padding: 16px 0;
  }
}
@media screen and (max-width: 1024px) {
  .bl-btn--top-news a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 7px);
    height: calc(100% + 7px);
    border-radius: 48px;
    border: 1px solid #3D2EE0;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: all 0.5s;
  }
}
/*============= 工法別・目的別で探す ============*/
.top-method {
  margin-top: 168px;
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .top-method {
    margin-top: 97px;
    padding-bottom: 80px;
  }
}

.top-method__card {
  width: 90.26%;
  margin: 65px auto 0;
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  padding-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .top-method__card {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top-method__card {
    margin: 45px auto 0;
    padding-bottom: 33px;
  }
}

.top-method__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-method__img {
    aspect-ratio: 1/0.45;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
  }
}

.top-method__content {
  margin-top: 45px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4.6%;
}
@media screen and (max-width: 768px) {
  .top-method__content {
    margin-top: 25px;
    gap: 25px;
    flex-direction: column;
  }
}
.top-method__content .top-method__SearchBox:first-of-type {
  background-color: #3D2EE0;
}
.top-method__content .top-method__SearchBox:last-of-type {
  background-color: #3799E2;
}

.top-method__SearchBox {
  width: 41.2%;
}
@media screen and (max-width: 768px) {
  .top-method__SearchBox {
    width: 86.1%;
    margin-left: auto;
    margin-right: auto;
  }
}

.search-ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 13px 11.7%;
}
@media screen and (max-width: 768px) {
  .search-ttl {
    justify-content: space-between;
    padding: 10px 11.6%;
  }
}

.search-ttl__txt {
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  .search-ttl__txt {
    font-size: 16px;
  }
}

.search-ttl__search-glass {
  width: 25px;
}

.search__list .search__item:first-of-type {
  border-bottom: 1px solid #5A99C1;
}

.search__item {
  background-color: #F0F6FF;
}
.search__item a {
  display: block;
  padding: 20px 20px 20px 80px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.5s;
}
@media screen and (min-width: 1023.9px) {
  .search__item a:hover {
    opacity: 0.8;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 1024px) {
  .search__item a {
    font-size: 16px;
    padding: 14px 20px 14px 52px;
  }
}
.search__item a::after {
  left: 50px;
}
@media screen and (max-width: 1024px) {
  .search__item a::after {
    left: 35px;
  }
}
.search__item a::before {
  left: 50px;
}
@media screen and (max-width: 1024px) {
  .search__item a::before {
    left: 35px;
  }
}

.technology {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 6%;
  width: 90.26%;
  margin: 135px auto 0;
}
@media screen and (max-width: 1024px) {
  .technology {
    width: 100%;
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .technology {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}

.technology__item {
  width: 47%;
  position: relative;
  padding: 50px 0 35px;
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .technology__item {
    width: 100%;
    padding: 32px 0;
  }
}

.technology__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.technology__name {
  position: relative;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  .technology__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .technology__name {
    font-size: 16px;
  }
}

.technologu__btn {
  padding: 3.2px;
  width: 240px;
  position: relative;
  margin: 37px auto 0;
}
@media screen and (max-width: 768px) {
  .technologu__btn {
    width: 258px;
    margin-top: 25px;
  }
}
.technologu__btn a {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.032em;
  line-height: 1;
  text-align: center;
  color: #3D2EE0;
  background-color: #FFFFFF;
  position: relative;
  border-radius: 48px;
}
@media screen and (max-width: 1024px) {
  .technologu__btn a {
    padding: 16px 0;
  }
}
.technologu__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  border-radius: 48px;
  border: 1px solid #FFFFFF;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: all 0.5s;
}
@media screen and (min-width: 1023.9px) {
  .technologu__btn a:hover::after {
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    transform-origin: center;
    transition: all 0.5s;
  }
}

/*============= 採用情報 ============*/
.top-recruit {
  padding: 150px 0 120px;
  position: relative;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .top-recruit {
    padding: 65px 0 80px;
  }
}

.top-recruit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-recruit__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}

.inner--top-recruit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12%;
  padding-right: 4%;
}
@media screen and (max-width: 1024px) {
  .inner--top-recruit {
    display: block;
    padding-right: 0;
  }
}

.youtube-thumbnail {
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
  background-color: #000;
  overflow: hidden;
}

.youtube-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-position: center;
     object-position: center;
}

.youtube-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(196, 48, 43, 0.6);
  border-radius: 50%;
}

.youtube-play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid white;
}

.top-recruit__side-l {
  width: calc(88% - 600px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-recruit__side-l {
    width: 100%;
    margin-top: 40px;
  }
}
.top-recruit__side-l iframe {
  width: 100%;
  aspect-ratio: 1/0.64;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.75);
}

.top-recruit__side-r {
  width: 600px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-recruit__side-r {
    width: 100%;
  }
}

.top-recruit__interview-txt {
  margin-top: 7px;
  text-align: right;
  letter-spacing: 0.07em;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1024px) {
  .top-recruit__interview-txt {
    display: none;
  }
}

.subTtl--top-recruit {
  font-size: 32px;
  margin-top: 57px;
}
@media screen and (max-width: 768px) {
  .subTtl--top-recruit {
    font-size: 20px;
    margin-top: 37px;
  }
}

.normalDocs--top-recruit {
  font-size: 15px;
  margin-top: 23px;
}
@media screen and (max-width: 768px) {
  .normalDocs--top-recruit {
    font-size: 14px;
    margin-top: 20px;
  }
}

.top-recruit-link {
  margin-top: 33px;
  width: 65%;
}
@media screen and (max-width: 1024px) {
  .top-recruit-link {
    margin-top: 50px;
    width: 100%;
  }
}
.top-recruit-link a {
  padding-bottom: 30px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .top-recruit-link a {
    padding-bottom: 13px;
    padding-top: 13px;
  }
}
.top-recruit-link a::after {
  background-color: #BDB7FF;
  opacity: 0.65;
}
@media screen and (min-width: 1023.9px) {
  .top-recruit-link a:hover::after {
    transform: translateY(-50%) scale(2.55);
  }
}

.top-recruit-link__ja {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.056em;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}

.top-recruit-link__en {
  font-size: 12px;
  letter-spacing: 0.024em;
  line-height: 1;
  color: #3D2EE0;
}

/*============= 下部リンク ============*/
.top-Link {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .top-Link {
    padding-top: 60px;
  }
}

.top-link__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top-link__list {
    flex-direction: column;
  }
}

.top-link__item {
  width: 33.333%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-link__item {
    width: 100%;
  }
}
.top-link__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.63));
  z-index: 2;
  pointer-events: none;
}
.top-link__item a {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.869;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-link__item a {
    aspect-ratio: 1/0.59;
  }
}
.top-link__item a:hover .top-link__img img {
  transition: all 0.5s;
  transform: scale(1.1);
  transform-origin: center;
}
.top-link__item.top-link__item--en {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .top-link__item.top-link__item--en {
    width: 100%;
  }
}
.top-link__item.top-link__item--en .top-link__txt--enPage {
  font-size: max(1.2vw, 14px);
}

.top-link__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.top-link__img img {
  position: relative;
  transition: all 0.5s;
  transform: scale(1);
  transform-origin: center;
}

.top-link__txt {
  position: absolute;
  bottom: 5.7%;
  right: 10.2%;
  font-size: 23px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 600;
  color: #FFFFFF;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .top-link__txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-link__txt {
    font-size: 18px;
    right: 12%;
    bottom: 9%;
  }
}

/*============= 無限スライダーテキスト ============*/
.bottom-loopTxt {
  padding: 113px 0 85px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .bottom-loopTxt {
    padding: 45px 0;
  }
}

.loop-slider__item--bottom-loopTxt {
  font-size: 59px;
  letter-spacing: 0.042em;
  line-height: 2;
  background-image: linear-gradient(100deg, rgb(60, 39, 224), rgb(80, 202, 213));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .loop-slider__item--bottom-loopTxt {
    font-size: 30px;
  }
}

/* no-anime は body に付く前提 */
body.no-anime #splash {
  z-index: 0 !important;
  pointer-events: none !important;
}

/* --- アニメ無効モード --- */
body.no-anime #splash,
body.no-anime .splash-img,
body.no-anime .splash-txt,
body.no-anime .splash-txt__block,
body.no-anime .splash__movie video,
body.no-anime .head__logo--top,
body.no-anime .openbtn1--top,
body.no-anime .fv-btn,
body.no-anime .fv-menu {
  animation: none !important;
  -webkit-animation: none !important;
}

/* --- すべてアニメ終了後の見た目に初期位置固定 --- */
body.no-anime .head__logo--top {
  transform: translateY(0);
  top: 26px;
}
@media screen and (max-width: 1024px) {
  body.no-anime .head__logo--top {
    top: 0 !important;
  }
}

body.no-anime .openbtn1.openbtn1--top {
  left: 3.125%;
  transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  body.no-anime .openbtn1.openbtn1--top {
    left: unset !important;
    transform: unset !important;
    position: fixed !important;
    right: 5.12% !important;
  }
}

body.no-anime .fv-btn {
  top: 26px;
}

body.no-anime .fv-menu {
  left: 2.7%;
}

body.no-anime #splash {
  opacity: 1;
  pointer-events: none;
}

body.no-anime .splash-txt__block:first-of-type {
  transform: scale(1);
  opacity: 1;
}

body.no-anime .splash-txt .splash-txt__block:nth-of-type(2) {
  transform: scale(1);
  opacity: 1;
}

body.no-anime .splash-txt .splash-txt__block:last-of-type {
  transform: scale(1);
  opacity: 1;
}

body.no-anime .splash-txt .splash-txt__block::after {
  animation: none !important;
  -webkit-animation: none !important;
  transform: scale(1, 1);
}

.splash-txt__block--en {
  font-size: 3.61vw;
}
@media screen and (max-width: 768px) {
  .splash-txt__block--en {
    font-size: 5.8vw;
  }
}

.enPage-project-name {
  margin-top: 77px;
  padding: 0 28px 8px 35px;
  border-bottom: 1px solid #707070;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.enPage-project-name::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: 10px;
  transform: translate(0, -50%);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid #3C27E0;
}
.enPage-project-name::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: 13px;
  transform: translate(0, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #3C27E0;
}

.enPage-project-explain {
  position: absolute;
  bottom: 0;
  right: -22px;
  width: 866px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 15px;
}
@media screen and (max-width: 1024px) {
  .enPage-project-explain {
    width: 100%;
    right: 0;
    transform: translateY(50%);
  }
}
@media screen and (max-width: 768px) {
  .enPage-project-explain {
    position: relative;
    right: unset;
    transform: unset;
  }
}

.enPage-project-img {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .enPage-project-img {
    margin-bottom: 180px;
  }
}
@media screen and (max-width: 768px) {
  .enPage-project-img {
    margin-bottom: 80px;
  }
}

.enPage-project-explain__list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .enPage-project-explain__list {
    flex-direction: column;
    gap: 15px;
  }
}

.enPage-project-explain__item {
  width: calc(50% - 7.5px);
  padding-left: 19px;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.333;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .enPage-project-explain__item {
    width: 100%;
  }
}
.enPage-project-explain__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid #3C27E0;
}
.enPage-project-explain__item::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #3C27E0;
}

.oversea-project__list {
  margin-top: 105px;
}
.oversea-project__list .oversea-project__item:last-of-type {
  width: 1082px;
}
@media screen and (max-width: 1280px) {
  .oversea-project__list .oversea-project__item:last-of-type {
    width: 100%;
  }
}
.oversea-project__list .oversea-project__item:not(:first-of-type) {
  margin-top: 60px;
}
.oversea-project__list .oversea-project__item:nth-of-type(even) {
  margin-left: auto;
  margin-right: 0;
}

.oversea-project__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 910px;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .oversea-project__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .oversea-project__item {
    flex-direction: column;
    gap: 35px;
  }
}

.oversea-project__img {
  width: 350px;
}
@media screen and (max-width: 768px) {
  .oversea-project__img {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
  }
}

.oversea-project__txt {
  width: calc(100% - 370px);
}
@media screen and (max-width: 768px) {
  .oversea-project__txt {
    width: 100%;
  }
}

.oversea-project__name {
  font-size: 25px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.078em;
  line-height: 1.35;
  color: #3C2AE0;
}
@media screen and (max-width: 768px) {
  .oversea-project__name {
    font-size: 20px;
  }
}

.oversea-project__explain {
  margin-top: 12px;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 2;
}

.top-link__txt--enPage {
  text-align: right;
  line-height: 1.5;
}

.normalDocs--top-overseas {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .normalDocs--top-overseas {
    margin-top: 30px;
  }
}

.enPage-project-img--enCompany {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .enPage-project-img--enCompany {
    margin-top: 25px;
    margin-bottom: 0;
  }
}

.normalDocs--enCompany {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .normalDocs--enCompany {
    margin-top: 25px !important;
  }
}

.enPage-project-img--enCompany img {
  aspect-ratio: 1/0.5;
  -o-object-position: top 40% left 50%;
     object-position: top 40% left 50%;
}

/*==========================
companyページ
==========================*/
/*========== 会社情報 ==========*/
.company {
  margin-top: 86px;
}
@media screen and (max-width: 768px) {
  .company {
    margin-top: 40px;
  }
}

.inner--company {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12%;
}
@media screen and (max-width: 1024px) {
  .inner--company {
    gap: 10%;
  }
}
@media screen and (max-width: 768px) {
  .inner--company {
    display: block;
  }
}

.company__side-r {
  width: calc(88% - 190px);
  margin-top: -24px;
}
@media screen and (max-width: 1024px) {
  .company__side-r {
    width: calc(90% - 140px);
  }
}
@media screen and (max-width: 768px) {
  .company__side-r {
    width: 100%;
    margin-top: 0;
  }
}

.company-table {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company-table {
    margin-top: 32px;
  }
}

.company-table__body {
  display: block;
  width: 100%;
}

.company-table__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(128, 128, 128, 0.4);
}
@media screen and (max-width: 768px) {
  .company-table__row {
    display: block;
  }
}

.company-table__head {
  font-weight: 500;
  width: 228px;
  line-height: 1.5;
  padding: 17px 20px;
}
@media screen and (max-width: 768px) {
  .company-table__head {
    display: block;
    width: 100%;
    padding: 10px 0 0;
  }
}

.company-table__data {
  font-weight: 400;
  width: calc(100% - 228px);
  line-height: 1.5;
  padding: 17px 0;
}
@media screen and (max-width: 768px) {
  .company-table__data {
    display: block;
    width: 100%;
    padding: 3px 0 10px;
  }
}

/*========== 社長メッセージ ==========*/
.message {
  margin-top: 95px;
  padding: 70px 0 80px;
}
@media screen and (max-width: 768px) {
  .message {
    margin-top: 75px;
    padding: 86px 0 69px;
  }
}

@media screen and (max-width: 768px) {
  .message.bg-gradient--toPaleBlue {
    background-image: linear-gradient(180deg, rgb(60, 39, 224), rgb(80, 202, 213));
  }
}
.message-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 45px;
  gap: 6.3%;
}
@media screen and (max-width: 1024px) {
  .message-wrap {
    gap: 5%;
  }
}
@media screen and (max-width: 768px) {
  .message-wrap {
    display: block;
    margin-top: 32px;
  }
}

.message__img {
  width: 315px;
}
@media screen and (max-width: 768px) {
  .message__img {
    width: 100%;
  }
}

.message__detail {
  width: calc(93.7% - 315px);
  color: #FFFFFF;
  letter-spacing: 0.032em;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .message__detail {
    width: 100%;
    margin-top: 32px;
  }
}

.message-sign {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin-top: 33px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .message-sign {
    gap: 17px;
  }
}

.message-sign__head {
  color: #FFFFFF;
  letter-spacing: 0.036em;
  line-height: 1;
}

.message-sign__name {
  font-size: 22px;
  letter-spacing: 0.044em;
  line-height: 1;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .message-sign__name {
    font-size: 18px;
  }
}

/*========== 役員一覧 ==========*/
.member {
  padding: 143px 0;
}
@media screen and (max-width: 768px) {
  .member {
    padding: 56px 0 47px;
  }
}

.inner--member {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16%;
}
@media screen and (max-width: 1024px) {
  .inner--member {
    gap: 10%;
  }
}
@media screen and (max-width: 768px) {
  .inner--member {
    display: block;
  }
}

.member-table {
  width: calc(84% - 185px);
}
@media screen and (max-width: 1024px) {
  .member-table {
    width: calc(90% - 135px);
  }
}
@media screen and (max-width: 768px) {
  .member-table {
    width: 100%;
    margin-top: 50px;
  }
}

.member-table__body,
.member-table__row,
.member-table__head,
.member-table__data {
  display: block;
  width: 100%;
}

.member-table__body .member-table__row:not(:first-of-type) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .member-table__body .member-table__row:not(:first-of-type) {
    margin-top: 45px;
  }
}

.member-table__row {
  display: block;
  width: 100%;
}

.member-table__head {
  display: block;
  font-weight: 500;
  width: 100%;
  padding: 0 2.8% 12px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.4);
  line-height: 1;
  letter-spacing: 0.032em;
}
@media screen and (max-width: 768px) {
  .member-table__head {
    padding: 0 0 10px;
    font-size: 16px;
  }
}

.member-table__data {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 5.6% 0 2.8%;
}
@media screen and (max-width: 768px) {
  .member-table__data {
    display: block;
    padding: 10px 0 0;
  }
  .member-table__data .member-wrap:not(:first-of-type) {
    margin-top: 27px;
  }
}

.member__ttl {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.member__name {
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .member__name {
    font-size: 18px;
  }
}

.member__name--sie-s {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .member__name--sie-s {
    font-size: 16px;
  }
}

.member-wrap--subdivision {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .member-wrap--subdivision {
    display: block;
  }
}

.member-wrap__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 8.9%;
  width: 320px;
}
@media screen and (max-width: 1024px) {
  .member-wrap__detail {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .member-wrap__detail {
    display: block;
    width: 100%;
  }
}

.member__ttl-detail {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  width: 97px;
}
@media screen and (max-width: 1024px) {
  .member__ttl-detail {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .member__ttl-detail {
    width: 100%;
    margin-top: 5px;
    font-size: 14px;
  }
}

.member-table__data--subdivision {
  display: block;
}
.member-table__data--subdivision .member-wrap--subdivision:not(:first-of-type) {
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .member-table__data--subdivision .member-wrap--subdivision:not(:first-of-type) {
    margin-top: 35px;
  }
}

.member__name--subdivision {
  width: 140px;
}
@media screen and (max-width: 768px) {
  .member__name--subdivision {
    width: 100%;
  }
}

/*========== 沿革 ==========*/
.history {
  padding: 100px 0 125px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .history {
    padding: 56px 0 95px;
  }
}

.history-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: height 0.4s ease;
  z-index: -2;
}

.history-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -3;
}
.history-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.inner--history {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .inner--history {
    display: block;
  }
}

.history__side-r {
  width: calc(84% - 160px);
  max-width: calc(100% - 150px);
}
@media screen and (max-width: 768px) {
  .history__side-r {
    width: 100%;
    max-width: unset;
  }
}

.history__list {
  margin-top: 100px;
  position: relative;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
@media screen and (max-width: 768px) {
  .history__list {
    margin-top: 52px;
  }
}
.history__list::before {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 26px);
  background-color: #FFFFFF;
  left: 10.5px;
  top: 13px;
}
@media screen and (max-width: 768px) {
  .history__list::before {
    height: calc(100% - 56px);
  }
}
.history__list .history__item:not(:first-of-type) {
  margin-top: 40px;
}
.history__list.is-open {
  max-height: 9999px;
}

.history__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8%;
}
@media screen and (max-width: 768px) {
  .history__item {
    display: block;
  }
}

.history-year {
  font-size: 35px;
  color: #FFFFFF;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  padding-left: 50px;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .history-year {
    padding-left: 45px;
    font-size: 28px;
  }
}
.history-year::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
}
.history-year::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.history-detail {
  font-size: 18px;
  letter-spacing: 0.036em;
  font-family: "Noto Serif JP", serif;
  color: #FFFFFF;
  padding-left: 50px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .history-detail {
    font-size: 14px;
    padding-left: 45px;
    margin-top: 5px;
  }
}

.history__accordion-btn {
  width: 209px;
  padding: 13px 50px;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 70px auto 0 10%;
  border-radius: 92px;
  border: 1px solid #FFFFFF;
  font-family: "Noto Serif JP", serif;
  position: relative;
}
@media screen and (max-width: 768px) {
  .history__accordion-btn {
    margin: 52px auto 0;
  }
}
.history__accordion-btn::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 1.5px;
  background-color: #FFFFFF;
  border-radius: 3px;
  top: 50%;
  right: 23.5px;
  transform: translateY(-50%);
}
.history__accordion-btn::after {
  content: "";
  position: absolute;
  width: 1.5px;
  height: 13px;
  background-color: #FFFFFF;
  border-radius: 3px;
  top: 50%;
  right: 29.5px;
  transform: translateY(-50%);
}
.history__accordion-btn.is-open::after {
  height: 0;
}

/*========== 部支店網 ==========*/
.branch {
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .branch {
    margin-top: 52px;
  }
}

.inner--branch {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 13%;
}
@media screen and (max-width: 1024px) {
  .inner--branch {
    display: block;
  }
}

.branch__list {
  width: calc(87% - 185px);
}
@media screen and (max-width: 1024px) {
  .branch__list {
    width: 100%;
    margin-top: 50px;
  }
}
.branch__list .branch__item:not(:first-of-type) {
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .branch__list .branch__item:not(:first-of-type) {
    margin-top: 31px;
  }
}

.accordion-content {
  display: none;
  transition: all 0.3s ease;
}

.accordion-content.open {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 54px;
  gap: 4%;
}
@media screen and (max-width: 1024px) {
  .accordion-content.open {
    flex-direction: column-reverse;
    padding-bottom: 30px;
  }
}

.accordion-ttl--branch {
  width: 100%;
  padding: 0 2.8% 12px;
  border-bottom: 2px solid rgba(61, 46, 224, 0.4);
  font-size: 18px;
  letter-spacing: 0.036em;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .accordion-ttl--branch {
    padding: 0 3.1% 12px;
  }
}
@media screen and (max-width: 768px) {
  .accordion-ttl--branch {
    font-size: 16px;
  }
}

.accordion-ttl {
  position: relative;
  padding-right: 1.5em; /* アイコン分の余白 */
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .accordion-ttl {
    font-size: 16px;
  }
}

.accordion-ttl::before {
  content: "";
  width: 18.5px;
  height: 2px;
  background-color: #3D2EE0;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-ttl::after {
  content: "";
  width: 18.5px;
  height: 2px;
  background-color: #3D2EE0;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-ttl.is-open::after {
  transform: translateY(-50%) rotate(0);
  transition: transform 0.3s ease;
}

.branch-content {
  padding: 30px 2.8% 0;
}
@media screen and (max-width: 768px) {
  .branch-content {
    padding: 25px 3.1% 0;
  }
}

.branch-content__side-l {
  width: 341px;
}
@media screen and (max-width: 1024px) {
  .branch-content__side-l {
    width: 100%;
    margin-top: 31px;
  }
}

.branch-content__side-r {
  width: calc(96% - 341px);
  aspect-ratio: 1/0.63;
}
@media screen and (max-width: 1024px) {
  .branch-content__side-r {
    width: 100%;
  }
}
.branch-content__side-r iframe {
  width: 100%;
  height: 100%;
}
.branch-content__side-r img {
  height: 100%;
  width: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .branch-content__side-r img {
    margin: 0 auto;
  }
}

.branch-content__side-r--mainOffice {
  aspect-ratio: 1/1.36;
}
@media screen and (max-width: 1024px) {
  .branch-content__side-r--mainOffice {
    aspect-ratio: 1/0.63;
    width: 100%;
  }
}

.branch-address {
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1.7;
}

.branchDetail-list {
  width: 100%;
}
.branchDetail-list .branchDetail-item {
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.4);
}
.branchDetail-list .branchDetail-item:not(:first-of-type) {
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .branchDetail-list .branchDetail-item:not(:first-of-type) {
    margin-top: 23px;
  }
}

.branchDetail-list--mainOffice {
  margin-top: 54px;
}

.branchDetail-item {
  width: 100%;
}

.branchName {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.028em;
  line-height: 1.7;
  padding-bottom: 5px;
}

.branchName--withBorder {
  border-bottom: 1px solid rgba(128, 128, 128, 0.4);
}

.branch-contact {
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1.7;
  margin-top: 5px;
}
.branch-contact a {
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1.7;
}

.branchDetail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4%;
}
@media screen and (max-width: 1024px) {
  .branchDetail-item {
    flex-direction: column-reverse;
    gap: 0;
  }
}

.branchDetail-item.branchDetail-item--mainOffice {
  display: block;
  border-bottom: unset;
  padding-bottom: 0 !important;
}

.branch-access {
  padding: 11px 15px;
  font-size: 12px;
  letter-spacing: 0.028em;
  line-height: 1.7;
  margin-top: 27px;
  border: 1px solid rgba(112, 112, 112, 0.4);
}
@media screen and (max-width: 1024px) {
  .branch-access {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (max-width: 768px) {
  .branch-access {
    margin-top: 25px;
  }
}

.branchDetail-list--salesOffice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .branchDetail-list--salesOffice {
    align-items: stretch;
    gap: 5%;
  }
}
.branchDetail-list--salesOffice .branchDetail-item {
  width: 50%;
  padding-bottom: 0;
  display: block;
  border-bottom: unset;
  margin-top: unset !important;
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .branchDetail-list--salesOffice .branchDetail-item {
    width: 47.5%;
  }
}
.branchDetail-list--salesOffice .branchDetail-item .branchName {
  width: 290px;
}
@media screen and (max-width: 768px) {
  .branchDetail-list--salesOffice .branchDetail-item .branchName {
    width: 100%;
  }
}

/*========== グループ会社 ==========*/
.group {
  margin-top: 180px;
  padding: 80px 0 130px;
}
@media screen and (max-width: 768px) {
  .group {
    margin-top: 108px;
    padding: 60px 0 76px;
  }
}

.inner--group {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5.8%;
}
@media screen and (max-width: 768px) {
  .inner--group {
    display: block;
  }
}

.group__list {
  margin-top: 70px;
  width: calc(94.2% - 275px);
}
@media screen and (max-width: 1024px) {
  .group__list {
    width: calc(94.2% - 215px);
  }
}
@media screen and (max-width: 768px) {
  .group__list {
    width: 100%;
    margin-top: 30px;
  }
}
.group__list .group__item:not(:first-of-type) {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .group__list .group__item:not(:first-of-type) {
    margin-top: 40px;
  }
}

.group__item {
  color: #FFFFFF;
}

.groupName {
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0 2.8% 12px;
}
@media screen and (max-width: 768px) {
  .groupName {
    font-size: 16px;
    padding: 0 0 10px;
  }
}

.groupCompany-list {
  padding: 25px 2.8% 0;
}
@media screen and (max-width: 768px) {
  .groupCompany-list {
    padding: 0;
  }
}
.groupCompany-list .groupCompany-item:not(:first-of-type) {
  margin-top: 48px;
}

@media screen and (max-width: 768px) {
  .groupCompany-link {
    margin-top: 15px;
  }
}
.groupCompany-link a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.groupCompany-name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.048em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .groupCompany-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .groupCompany-name {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .groupCompany-item--spTop-margin {
    margin-top: 15px;
  }
}
.groupCompany-linkIcon {
  width: 22px;
  height: 17px;
  position: relative;
}
.groupCompany-linkIcon img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.groupCompany-address {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .groupCompany-address {
    margin-top: 8px;
  }
}

.member-wrap--top {
  width: 180px;
}

.member__ttlーoutline {
  width: 180px;
}

.member__ttl-detail {
  width: 180px;
}

.member__name--subdivision {
  width: 180px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .member__name--subdivision {
    margin-top: 5px;
  }
}

/*==========================
newsページ
==========================*/
/*========== カテゴリ ==========*/
.inner--newsRelease {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8.5%;
  margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .inner--newsRelease {
    display: block;
    margin-top: 45px;
  }
}

.scroll-area {
  height: 100vh;
  overflow-y: auto;
}

.newsRelease-category {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .newsRelease-category {
    position: relative;
    top: unset;
    left: unset;
  }
}

.newsRelease-category__ttl {
  color: #FFFFFF;
  width: 153px;
  text-align: center;
  background-color: #3C27E0;
  letter-spacing: 0.07em;
  line-height: 1;
  padding: 5px 0;
  border-radius: 14px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .newsRelease-category__ttl {
    display: none;
  }
}

.news-list--newsRelease {
  display: block;
  width: calc(91.5% - 153px);
}
@media screen and (max-width: 768px) {
  .news-list--newsRelease {
    width: 100%;
    margin-top: 27px;
  }
}

.news-list--members {
  width: 100%;
  margin-top: 50px;
}

.members-side-r {
  width: calc(91.5% - 153px);
}
@media screen and (max-width: 768px) {
  .members-side-r {
    width: 100%;
    margin-top: 27px;
  }
}

.newsRelease-category__list {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .newsRelease-category__list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.8%;
  }
}
.newsRelease-category__list .newsRelease-category__item {
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .newsRelease-category__list .newsRelease-category__item {
    width: 32.06%;
  }
}
.newsRelease-category__list .newsRelease-category__item:not(:first-of-type) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .newsRelease-category__list .newsRelease-category__item:not(:first-of-type) {
    margin-top: 0;
  }
}
.newsRelease-category__list .newsRelease-category__item a {
  padding-left: 39px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .newsRelease-category__list .newsRelease-category__item a {
    display: block;
    width: 100%;
    color: #3D2EE0;
    background-color: #FFFFFF;
    text-align: center;
    border: 1px solid #3D2EE0;
    padding-left: 0;
    border-radius: 50px;
    padding: 15px 0;
    font-weight: 700;
    line-height: 1;
  }
  .newsRelease-category__list .newsRelease-category__item a::before {
    display: none;
  }
}

.newsRelease-category__item--current a {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .newsRelease-category__item--current a {
    color: #FFFFFF !important;
    background-color: #3D2EE0 !important;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .news-list--newsRelease {
    border-top: unset;
  }
}
.news-list--newsRelease .news__item--newsRelease {
  /*&:first-of-type{
      a{
          border-top: 1px solid rgba(128, 128, 128 , .4);
      }
  @include m.mq-down() {
      border-top: unset;
  }
  }*/
}

.news__item--newsRelease a {
  border-bottom: 1px solid rgba(128, 128, 128, 0.4);
  display: block;
  padding: 45px 0;
}
@media screen and (max-width: 768px) {
  .news__item--newsRelease a {
    padding: 35px 0;
  }
}

.news-list__upper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .news-list__upper {
    gap: 18px;
  }
}

.news-ttl--newsRelease {
  width: 100%;
  margin-top: 15px;
}

/*========== ページネーション ==========*/
.pageNation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6%;
  margin-top: 105px;
  padding-bottom: 157px;
}
@media screen and (max-width: 768px) {
  .pageNation {
    gap: 3.6%;
  }
}

.pageNum {
  position: relative;
  list-style: none;
}
.pageNum a {
  font-size: 18px;
  width: 42px;
  height: 42px;
  display: block;
  line-height: 42px;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
}

.prev::after {
  content: "";
  position: absolute;
  width: 7.5px;
  height: 7.5px;
  top: 50%;
  left: 52%;
  border-bottom: 1.5px solid #707070;
  border-left: 1.5px solid #707070;
  transform: translate(-50%, -50%) rotate(45deg);
}

.next::after {
  content: "";
  position: absolute;
  width: 7.5px;
  height: 7.5px;
  top: 50%;
  left: 48%;
  border-bottom: 1.5px solid #707070;
  border-right: 1.5px solid #707070;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pageNum--dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.pageNum--dot span {
  display: block;
  width: 4px;
  height: 4px;
  background-color: #333333;
}

.members-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .members-list {
    margin-top: 70px;
  }
}

.members-list__item a {
  display: block;
  padding: 10px 20px;
  color: #FFFFFF;
  line-height: 1;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .members-list__item a {
    padding: 20px;
    font-size: 16px;
  }
}

/*==========================
partnerページ
==========================*/
/*========== 会社情報 ==========*/
.partner-overview {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .partner-overview {
    margin-top: 35px;
  }
}

.partner-overview__txt {
  padding: 27px 4%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .partner-overview__txt {
    padding: 18px 5.2%;
  }
}

.partner-news {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .partner-news {
    margin-top: 65px;
  }
}

.inner--partner-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 9.6%;
}
@media screen and (max-width: 768px) {
  .inner--partner-wrap {
    display: block;
  }
}

.partner__side-r {
  width: calc(90.4% - 230px);
}
@media screen and (max-width: 1024px) {
  .partner__side-r {
    width: calc(90.4% - 165px);
  }
}
@media screen and (max-width: 768px) {
  .partner__side-r {
    width: 100%;
  }
}

.partner-ttl {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 0 32px 11px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.4);
  margin-top: 27px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .partner-ttl {
    font-size: 16px;
    padding: 0 0 14px;
    margin-bottom: 15px;
    margin-top: 37px;
  }
}

.partner-txt {
  letter-spacing: 0.032em;
  line-height: 1.75;
  padding: 0 32px;
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .partner-txt {
    margin-top: 15px;
    padding: 0;
  }
}

.partner-documents {
  margin-top: 174px;
  margin-bottom: 188px;
}
@media screen and (max-width: 768px) {
  .partner-documents {
    margin-top: 72px;
    margin-bottom: 144px;
  }
}

.partner-txt--underSubTtl {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .partner-txt--underSubTtl {
    margin-top: 8px;
  }
}

.partner-file {
  margin-left: 32px;
}
@media screen and (max-width: 768px) {
  .partner-file {
    margin-left: 0;
  }
}
.partner-file a {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.partner-file__name {
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1.3;
  text-decoration: underline;
  color: #3D2EE0;
}
@media screen and (max-width: 768px) {
  .partner-file__name {
    margin-right: 7px;
  }
}

.designatedInvoice {
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .designatedInvoice {
    margin-top: 45px;
  }
}

.partner-file__icon {
  width: 23px;
}

.others {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .others {
    margin-top: 45px;
  }
}

/*=========================
CONTACTページ
=========================*/
.contact-wrap {
  margin-top: 70px;
  margin-bottom: 165px;
}
@media screen and (max-width: 768px) {
  .contact-wrap {
    margin-top: 31px;
    margin-bottom: 126px;
  }
}

.contactCard {
  padding: 61px 30px 127px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .contactCard {
    padding: 35px 7% 90px;
  }
}

.contactForm-ttl {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .contactForm-ttl {
    font-size: 18px;
  }
}

.contactForm {
  margin: 80px auto 0;
  width: 86%;
  padding-right: 9.5%;
}
@media screen and (max-width: 1024px) {
  .contactForm {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .contactForm {
    margin: 46px auto 0;
  }
}

.formDl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3.5%;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .formDl {
    display: block;
  }
}
.formDl.formDl-flexStart {
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .formDl.formDl-flexStart {
    display: block;
  }
}

.formDt {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .formDt {
    width: 100%;
    justify-content: flex-start;
  }
}

.formTtl {
  font-weight: 700;
  color: #333333;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .formTtl {
    text-align: left;
  }
}

.formRequired {
  font-size: 12px;
  padding: 4px 10px;
  line-height: 1;
  color: #FFFFFF;
  border-radius: 3px;
  background-color: #3D2EE0;
  font-weight: 600;
}

.noRequired {
  width: 43.46px;
}

.formDd {
  width: calc(95.8% - 250px);
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .formDd {
    width: 100%;
  }
}

.radioBtn-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

input[type=radio] {
  position: relative;
  width: 22px;
  height: 22px;
  background-color: #FFFFFF;
  border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 12px;
  border: 2px solid #707070;
}
@media screen and (max-width: 1024px) {
  input[type=radio] {
    margin-right: 15px;
  }
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13.5px;
  height: 13.5px;
  border-radius: 50%;
  background: #3D2EE0;
  content: "";
}

.radioBtn {
  margin-right: 8.7%;
  color: #333333;
}
.radioBtn:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .radioBtn {
    margin-right: 13px;
  }
  .radioBtn:last-of-type {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .radioBtn-wrap__contactMethod {
    display: block;
  }
}
input[type=text],
input[type=email],
textarea {
  background-color: #F2F2F2;
  padding: 6px 20px;
  color: #333333;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
textarea {
    padding: 10px 20px;
  }
}

textarea {
  height: 206px;
  background-color: #F2F2F2;
  padding: 6px 20px;
}
@media screen and (max-width: 768px) {
  textarea {
    height: 216px;
    padding: 10px 20px;
  }
}

::-moz-placeholder {
  color: #A3AFAC;
}

::placeholder {
  color: #A3AFAC;
}

input[type=text].postCode {
  width: 183px;
  margin-right: 11px;
}
@media screen and (max-width: 768px) {
  input[type=text].postCode {
    margin-right: 15px;
    width: 120px;
  }
}

.prefectures {
  width: 183px !important;
}
@media screen and (max-width: 1024px) {
  .prefectures {
    width: 120px !important;
  }
}

.formAdress__upper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.restAddress {
  margin-top: 10px;
}

.restAddress-annotation {
  color: #808080;
  font-size: 11px;
  line-height: 1;
  display: block;
  margin-top: 3px;
}

.formDl--addressWrap {
  align-items: flex-start;
}
.formDl--addressWrap .formTtl {
  margin-top: 15px;
}

input[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: -2px;
  left: 6px;
  transform: rotate(50deg);
  width: 6px;
  height: 14px;
  border-right: 2px solid #3D2EE0;
  border-bottom: 2px solid #3D2EE0;
  content: "";
}

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 40px;
  color: #333333;
}

.form--policyLink {
  text-decoration: underline;
}

.submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  transition: all 0.3s;
  pointer-events: all;
}

.submitBtn {
  width: 235px;
  padding: 19.5px 0;
  font-size: 18px;
  color: #FFFFFF;
  background-color: #3D2EE0;
  line-height: 1;
  text-align: center;
  transition: all 0.5s;
  opacity: 1;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .submitBtn {
    width: 203px;
    padding: 13px 0;
  }
}
.submitBtn:hover {
  opacity: 0.8;
  transition: all 0.5s;
}

/*=========================
THANKSページ
=========================*/
.thanks-wrap {
  margin-top: 120px;
  padding-bottom: 195px;
}
@media screen and (max-width: 768px) {
  .thanks-wrap {
    margin-top: 58px;
    padding-bottom: 130px;
  }
}

.thanks-txt {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .thanks-txt {
    font-size: 14px;
    line-height: 2.28;
  }
}

.toTop-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 105px auto 0;
}
@media screen and (max-width: 768px) {
  .toTop-btn {
    margin: 72px auto 0;
  }
}
.toTop-btn a {
  font-size: 18px;
  text-align: center;
  line-height: 1;
  padding: 20px 0;
  display: block;
  width: 278px;
  background-color: #3D2EE0;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .toTop-btn a {
    padding: 15px 0;
    width: 203px;
  }
}

/*=========================
POLICYページ
=========================*/
.policy-wrap {
  margin-top: 70px;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .policy-wrap {
    margin-top: 31px;
    padding-bottom: 85px;
  }
}

.policyCard {
  background-color: #FFFFFF;
  box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.16);
}

.policyCard--policy {
  padding: 45px 4% 42px;
}
@media screen and (max-width: 768px) {
  .policyCard--policy {
    padding: 35px 4%;
  }
}

.policy-txt {
  letter-spacing: 0.032em;
  line-height: 1.5;
}

.policySign {
  margin-top: 20px;
  letter-spacing: 0.032em;
  line-height: 1.5;
  text-align: right;
}

.policyCard--purpose {
  padding: 50px 4% 68px;
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .policyCard--purpose {
    padding: 30px 4% 45px;
  }
}

.policy-ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 12.5px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.4);
}
@media screen and (max-width: 768px) {
  .policy-ttl {
    font-size: 16px;
    padding-bottom: 10px;
  }
}

.policy-txt--underTtl {
  margin-top: 23.5px;
}
@media screen and (max-width: 768px) {
  .policy-txt--underTtl {
    margin-top: 10px;
  }
}

.policy-mainBusiness {
  margin-top: 47px;
}
@media screen and (max-width: 768px) {
  .policy-mainBusiness {
    margin-top: 40px;
  }
}

.leftBar-ttl--policy {
  font-size: 16px;
  margin-left: 0;
}

.policy-window {
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .policy-window {
    margin-top: 40px;
  }
}

.technique-categoryExplain {
  display: none;
}

.technique-categoryExplain.is-active {
  display: block;
}

.technique-categoryDetail {
  display: none;
}

.technique-categoryDetail.is-active {
  display: block;
}

.techniques {
  margin-top: 57px;
}

.techniques__list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 28px 11px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .techniques__list {
    gap: 35px 16px;
  }
}

.techniques__item {
  width: calc(33% - 7.33px);
  cursor: pointer;
}
.techniques__item.current .technique-name {
  font-weight: 900;
}
.techniques__item.current .technique-name::before {
  height: 5px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .techniques__item.current .technique-name::before {
    height: 4px;
  }
}
@media screen and (max-width: 768px) {
  .techniques__item.current .technique-name::before {
    width: 18px;
  }
}
@media screen and (max-width: 768px) {
  .techniques__item {
    width: calc(50% - 8px);
  }
}
.techniques__item:hover img {
  transform: translate(-50%, -50%) scale(1.1);
  transition: all 0.5s;
}

.technique-image {
  width: 100%;
  aspect-ratio: 1/0.549;
  position: relative;
  overflow: hidden;
}
.technique-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.technique-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.056em;
  line-height: 1.5;
  margin-top: 8px;
  padding-left: 24px;
  position: relative;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1024px) {
  .technique-name {
    font-size: 14px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .technique-name {
    padding-left: 25px;
  }
}
.technique-name::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 3px;
  background-color: #3D2EE0;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .technique-name::before {
    width: 13px;
    height: 2px;
  }
}
@media screen and (max-width: 768px) {
  .technique-name::before {
    width: 18px;
  }
}

.technique-txt {
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1.5;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .technique-txt {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .technique-txt {
    margin-top: 7px;
  }
}

.technique-search {
  margin-top: 85px;
  padding-bottom: 140px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.22%;
}
@media screen and (max-width: 768px) {
  .technique-search {
    margin-top: 73px;
    display: block;
    padding-bottom: 123px;
  }
}

.technique-category-wrap {
  width: 236px;
}
@media screen and (max-width: 768px) {
  .technique-category-wrap {
    width: 100%;
  }
}

.technique-category-ttl {
  color: #FFFFFF;
  padding: 6px 60px;
  line-height: 1;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #3D2EE0;
  font-family: "Noto Serif JP", serif;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .technique-category-ttl {
    color: #333333;
    background-color: unset;
    padding-left: 26px;
    position: relative;
    text-align: left;
    font-weight: 700;
  }
  .technique-category-ttl::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: #3D2EE0;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .only-sp--categorySelect {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: relative;
  }
  .only-sp--categorySelect::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #3D2EE0;
    border-right: 1px solid #3D2EE0;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
  }
  .technique-categorySelect {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 11px 37px;
    display: block;
    width: 252px;
    border: 1px solid #3D2EE0;
    border-radius: 24px;
    font-family: "Noto Serif JP", serif;
  }
}
.technique-categoryList {
  margin-top: 30px;
}
.technique-categoryList .technique-categoryItem {
  padding-left: 39px;
  position: relative;
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
  cursor: pointer;
}
.technique-categoryList .technique-categoryItem.current {
  font-weight: 900;
}
.technique-categoryList .technique-categoryItem.current::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 9px;
  height: 9px;
  background-color: #3D2EE0;
  border-radius: 50%;
  transform: translateY(-50%);
}
.technique-categoryList .technique-categoryItem:not(:first-of-type) {
  margin-top: 15px;
}

.categoryExplain-wrap {
  width: calc(96.78% - 236px);
}
@media screen and (max-width: 768px) {
  .categoryExplain-wrap {
    width: 100%;
    margin-top: 20px;
  }
}

.technique-categoryExplain__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .technique-categoryExplain__list {
    gap: 12px;
  }
}

.technique-categoryExplain__item {
  font-size: 14px;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  padding: 10px 33px;
  border: 2px solid rgba(61, 46, 224, 0.8);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .technique-categoryExplain__item {
    font-weight: 700;
  }
}
.technique-categoryExplain__item.current {
  color: #FFFFFF;
  background-color: #3C27E0;
  border: 2px solid #3C27E0;
}
.technique-categoryExplain__item.current::after {
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
.technique-categoryExplain__item::after {
  content: "";
  position: absolute;
  width: 6.5px;
  height: 6.5px;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(-45deg);
  pointer-events: none;
}

.technique-categoryDetail-box {
  margin-top: 36px;
  padding: 35px 4.9% 47px;
  background-color: #FFFFFF;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .technique-categoryDetail-box {
    margin-top: 26px;
    padding: 25px 4.2% 49px;
  }
}

.technique-ttl {
  padding-left: 26px;
  position: relative;
}
.technique-ttl a {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-decoration: underline;
  opacity: 1;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .technique-ttl a {
    font-size: 20px;
  }
}
.technique-ttl a:hover {
  opacity: 0.8;
  transition: all 0.5s;
}
.technique-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 3px;
  background-color: #3D2EE0;
  transform: translateY(-50%);
}

.technique-categoryDetail-link {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .technique-categoryDetail-link {
    margin-top: 36px;
  }
}
.technique-categoryDetail-link .technique-categoryDetail-link__item:not(:first-of-type) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .technique-categoryDetail-link .technique-categoryDetail-link__item:not(:first-of-type) {
    margin-top: 20px;
  }
}
.technique-categoryDetail-link .technique-categoryDetail-link__item.technique-categoryDetail-link__item--lower {
  margin-left: 25px;
}
.technique-categoryDetail-link .technique-categoryDetail-link__item.technique-categoryDetail-link__item--lower::before {
  display: none;
}

.technique-categoryDetail-link__item {
  padding-left: 24px;
  position: relative;
  line-height: 1.3;
  font-weight: 500;
}
.technique-categoryDetail-link__item a {
  line-height: 1.3;
  text-decoration: underline;
  font-weight: 500;
  opacity: 1;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .technique-categoryDetail-link__item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .technique-categoryDetail-link__item a {
    font-size: 13px;
  }
}
.technique-categoryDetail-link__item a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.technique-categoryDetail-link__item::before {
  content: "・";
  color: #3D2EE0;
  position: absolute;
  font-size: 16px;
  left: 0;
  top: 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .technique-categoryDetail-link__item::before {
    font-size: 14px;
  }
}

.technique-categoryDetail-link--imageLink {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 50px 5.3%;
}
@media screen and (max-width: 768px) {
  .technique-categoryDetail-link--imageLink {
    display: block;
  }
}
.technique-categoryDetail-link--imageLink .technique-categoryDetail-link__item--imageLink:not(:first-of-type) {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .technique-categoryDetail-link--imageLink .technique-categoryDetail-link__item--imageLink:not(:first-of-type) {
    margin-top: 25px;
  }
}

.technique-categoryDetail-link-img {
  aspect-ratio: 1/0.563;
}

.technique-categoryDetail-link__item--imageLink {
  padding-left: 0;
  width: 47.35%;
}
@media screen and (max-width: 768px) {
  .technique-categoryDetail-link__item--imageLink {
    width: 100%;
  }
}
.technique-categoryDetail-link__item--imageLink::before {
  display: none;
}

.technique-categoryDetail-link-txt {
  margin-top: 10px;
}

/*==========================
目的から探す
==========================*/
.inner--techniques {
  position: relative;
}

.techniques-illust {
  width: 100%;
  aspect-ratio: 1/0.561;
  position: relative;
}
@media screen and (max-width: 768px) {
  .techniques-illust {
    overflow-x: scroll;
    aspect-ratio: unset;
    position: absolute;
    top: 0;
    left: 0;
  aspect-ratio: 1/0.73;
  }
}

.techniques-illust__img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .techniques-illust__img {
    width: 805px;
    aspect-ratio: 1/0.73;
  }
}

.techniques-illust__name-list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list {
    width: 805px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:first-of-type {
  padding: 11px 1.8em 11px 1em;
  top: 40.4%;
  left: 1.22%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:first-of-type {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:first-of-type {
    padding: 3px 20px 3px 12px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:nth-of-type(2) {
  padding: 11px 2.048em;
  top: 20.7%;
  left: 13.22%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(2) {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(2) {
    padding: 3px 26px 3px 15px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:nth-of-type(3) {
  padding: 11px 1.73em 11px 0.77em;
  top: 47.5%;
  left: 14.77%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(3) {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(3) {
    padding: 3px 19px 3px 8px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:nth-of-type(4) {
  padding: 11px 2.79em 11px 3em;
  top: 29.7%;
  left: 22.3%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(4) {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(4) {
    padding: 3px 31px 3px 20px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:nth-of-type(5) {
  padding: 11px 2.29em 11px 2.35em;
  bottom: 37.3%;
  left: 29.8%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(5) {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(5) {
    padding: 3px 25px 3px 16px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:nth-of-type(6) {
  padding: 11px 2.79em 11px 1.92em;
  bottom: 48.64%;
  left: 36.3%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(6) {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(6) {
    padding: 3px 28px 3px 23px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:nth-of-type(7) {
  padding: 11px 2.9em 11px 2.78em;
  top: 37.8%;
  right: 38%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(7) {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(7) {
    padding: 3px 23px 3px 16px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:nth-of-type(8) {
  padding: 11px 2.7em 11px 2.28em;
  bottom: 46.4%;
  right: 30.1%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(8) {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(8) {
    padding: 3px 23px 3px 16px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:nth-of-type(9) {
  padding: 11px 2.23em 11px 1.78em;
  top: 23.8%;
  right: 31.96%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(9) {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(9) {
    padding: 3px 22px 3px 11px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:nth-of-type(10) {
  padding: 11px 1.98em 11px 1.64em;
  bottom: 16.6%;
  right: 19%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(10) {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(10) {
    padding: 3px 21px 3px 10px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:nth-of-type(11) {
  padding: 11px 2.85em 11px 2.85em;
  top: 30.6%;
  right: 20%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(11) {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:nth-of-type(11) {
    padding: 3px 21px 3px 10px;
  }
}
.techniques-illust__name-list .techniques-illust__name-item:last-of-type {
  padding: 11px 2.85em 11px 2.85em;
  top: 22%;
  right: 0.8%;
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-list .techniques-illust__name-item:last-of-type {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-illust__name-list .techniques-illust__name-item:last-of-type {
    padding: 3px 27px 3px 18px;
  }
}

.techniques-illust__name-item {
  font-size: 14px;
  line-height: 1;
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 3px solid rgba(61, 46, 224, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .techniques-illust__name-item {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .techniques-illust__name-item {
    font-size: 10px;
  }
}
.techniques-illust__name-item::after {
  content: "";
  position: absolute;
  width: 6.5px;
  height: 6.5px;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 13px;
}
.techniques-illust__name-item.current {
  color: #FFFFFF;
  background-color: rgba(61, 46, 224, 0.8);
  border: 3px solid rgba(255, 255, 255, 0.8);
}
.techniques-illust__name-item.current::after {
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}

@media screen and (max-width: 768px) {
  .techniques-scrollfixed-wrap {
    width: 100%;
    /*
    position: relative;
    height: 450px;
    */
    position: relative;
    z-index: 1;
    pointer-events: none;
/*     aspect-ratio: 1/0.56; */
	  aspect-ratio: 1 / 0.73;
        /* top: 50%; */
        /* transform: translateY(-50%); */
  }
}
.techniques-scrollAnnounce {
  display: none;
}
@media screen and (max-width: 768px) {
  .techniques-scrollAnnounce {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 181px;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
}

/*=========================
工法紹介詳細
==========================*/
.techniqueDetail-explainList__item {
  display: none;
}

.techniqueDetail-explainList__item.is-active {
  display: block;
}

.underFv-technique-wrap {
  padding-right: 3.1%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px 6.8%;
}
@media screen and (max-width: 1024px) {
  .underFv-technique-wrap {
    display: block;
    padding-right: 0;
  }
}

.underFv-technique-wrap__side-l {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.technique-promise {
  display: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 430px;
  max-width: 560px;
  padding: 18px 0 17px;
  background-color: #F0F6FF;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1024px) {
  .technique-promise {
    margin: 40px auto;
    min-width: unset;
    max-width: unset;
    width: 450px;
  }
}
@media screen and (max-width: 768px) {
  .technique-promise {
    width: 100%;
    max-width: 450px;
  }
}

.technique-promise-ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  background-image: linear-gradient(90deg, rgb(80, 202, 213), rgb(60, 39, 224));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .technique-promise-ttl {
    font-size: 18px;
  }
}

.technique-promise__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 18px;
}
.technique-promise__list .technique-promise__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #5A99C1;
  opacity: 0.5;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.technique-promise__item {
  padding: 0 5.3%;
  position: relative;
}

.technique-promise-icon {
  width: 30px;
  margin: 0 auto;
}

.technique-promise-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  margin-top: 5px;
  color: #5A99C1;
}
@media screen and (max-width: 768px) {
  .technique-promise-name {
    font-size: 16px;
    margin-top: 12px;
  }
}

.technique-promise-detail {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.028em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .technique-promise-detail {
    font-size: 10px;
  }
}

.technique-categoryLink {
  margin-top: 40px;
  padding: 0 6.94%;
  background-color: #3C27E0;
}
@media screen and (max-width: 768px) {
  .technique-categoryLink {
    padding: 0;
  }
}

.technique-categoryLink__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .technique-categoryLink__list {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1px;
  }
}

@media screen and (max-width: 768px) {
  .technique-categoryLink__item {
    width: calc(25% - 0.75px);
  }
}
.technique-categoryLink__item a {
  display: block;
  font-size: clamp(14px, 1.25vw, 20px);
  color: #FFFFFF;
  letter-spacing: 0.027em;
  line-height: 1;
  padding: 17px 1.52vw;
}
@media screen and (max-width: 1024px) {
  .technique-categoryLink__item a {
    font-size: 11px;
    padding: 14px 12px;
    border-bottom: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    text-align: center;
    height: 100%;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.technique-categoryLink__item.technique-categoryLink__item--current a {
  color: #3C27E0;
  background-color: #B4E2FF;
  pointer-events: none;
}

.techniques-mainExplain {
  margin-top: 41px;
}

.inner--techniques-mainExplain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5%;
}
@media screen and (max-width: 768px) {
  .inner--techniques-mainExplain {
    display: block;
  }
}

.techniques-mainExplain__side-l {
  width: 49.5%;
}
@media screen and (max-width: 768px) {
  .techniques-mainExplain__side-l {
    width: 100%;
  }
}

.techniques-mainExplain__side-r {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .techniques-mainExplain__side-r {
    width: 100%;
    margin-top: 33px;
  }
}

.techniques-mainExplain-ttl__size-s {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #3C27E0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .techniques-mainExplain-ttl__size-s {
    font-size: 16px;
  }
}

.techniques-mainExplain-ttl__size-l {
  font-size: 63px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .techniques-mainExplain-ttl__size-l {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-mainExplain-ttl__size-l {
    font-size: 34px;
    margin-top: 15px;
  }
}

.techniques-mainExplain-txt {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.53;
  letter-spacing: 0.032em;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .techniques-mainExplain-txt {
    font-size: 17px;
    margin-top: 20px;
  }
}

.techniquesDetail {
  margin-top: 60px;
  position: relative;
}

.techniquesDetail-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .techniquesDetail-tab {
    width: 100%;
    gap: 3px;
    margin: 0 auto;
    padding: 0 5.1%;
    border-bottom: 2px solid #3C27E0;
    position: -webkit-sticky;
    position: sticky;
    align-items: stretch;
    top: 100px;
    left: 0;
  }
}

.techniquesDetail-tab__item {
  width: 18.5%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
  background-color: #3C27E0;
  padding: 20px 5px;
}
@media screen and (max-width: 1280px) {
  .techniquesDetail-tab__item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .techniquesDetail-tab__item {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .techniquesDetail-tab__item {
    width: calc(25% - 2.25px);
    padding: 13.5px 5px;
    text-align: center;
    border-bottom: 2px solid #3C27E0;
  }
}
.techniquesDetail-tab__item.current {
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid #3C27E0;
  border-bottom: unset;
}

.techniquesDetail-tab__item--2lines {
  padding: 11px 5px;
}
@media screen and (max-width: 768px) {
  .techniquesDetail-tab__item--2lines {
    padding: 8px 5px;
  }
}

.techniqueDetail-explainList {
  background-color: #FFFFFF;
  border-top: 2px solid #3C27E0;
  margin-top: -2px;
}

.techniqueDetail-firstBlock {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5%;
}
@media screen and (max-width: 768px) {
  .techniqueDetail-firstBlock {
    margin-top: 57px;
    display: block;
  }
}

.techniqueDetail-firstBlock__side-l {
  /*padding-left: 4.8%;*/
  width: 100%;
}
@media screen and (max-width: 768px) {
  .techniqueDetail-firstBlock__side-l {
    width: 100%;
    padding-left: 0;
  }
}

.techniqueDetail-name {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.084em;
  line-height: 1.3;
  padding-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .techniqueDetail-name {
    font-size: 24px;
    padding: 0 12px 12px;
  }
}
.techniqueDetail-name::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(90deg, rgb(80, 202, 213), rgb(60, 39, 224));
  bottom: 0;
  left: 0;
}

.normalDocs--techniqueDetail {
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .normalDocs--techniqueDetail {
    margin-top: 20px;
  }
}

.normalDocs--techniqueDetail__keyword {
  display: block;
  font-weight: 700;
}

.techniqueDetail-firstBlock__side-r {
  width: 41.2%;
}
@media screen and (max-width: 768px) {
  .techniqueDetail-firstBlock__side-r {
    width: 100%;
    margin-top: 30px;
  }
}

.techniqueDetail-constructionMethod {
  margin-top: 74px;
  margin-bottom: 193px;
}
@media screen and (max-width: 768px) {
  .techniqueDetail-constructionMethod {
    margin-bottom: 115px;
  }
}
.techniqueDetail-constructionMethod .techniqueDetail-constructionMethod__item:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .techniqueDetail-constructionMethod .techniqueDetail-constructionMethod__item:not(:first-of-type) {
    margin-top: 20px;
  }
}

.techniqueDetail-constructionMethod__item {
  padding: 35px 4.16% 77px;
  background-color: #F0F6FF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .techniqueDetail-constructionMethod__item {
    padding: 26px 4.5% 46px;
  }
}

.constructionMethod-name-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  padding: 0 7px 15px;
  border-bottom: 4px solid #B4E2FF;
}
@media screen and (max-width: 768px) {
  .constructionMethod-name-wrap {
    display: block;
    padding: 0 0 10px;
    border-bottom: 3px solid #B4E2FF;
  }
}

.constructionMethod-name {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.028em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .constructionMethod-name {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
}

.constructionMethod-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-icon {
    gap: 7px;
    margin-top: 10px;
  }
}

.constructionMethod-icon__item {
  width: 34px;
  height: auto;
}

.constructionMethod-image-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8.5%;
  width: 89.2%;
  margin: 35px auto 0;
}
@media screen and (max-width: 768px) {
  .constructionMethod-image-wrap {
    display: block;
    width: 100%;
    margin: 25px auto 0;
  }
}

.constructionMethod-image {
  width: 32.5%;
  aspect-ratio: 1/0.7;
}
@media screen and (max-width: 768px) {
  .constructionMethod-image {
    width: 100%;
  }
}

.constructionMethod-purpose {
  width: 59%;
}
@media screen and (max-width: 768px) {
  .constructionMethod-purpose {
    width: 100%;
    margin-top: 31px;
  }
}

.constructionMethod-purpose__ttl {
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .constructionMethod-purpose__ttl {
    font-size: 16px;
  }
}

.constructionMethod-purpose__list {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-purpose__list {
    margin-top: 10px;
  }
}
.constructionMethod-purpose__item {
  padding-left: 13px;
  position: relative;
  line-height: 1.5;
}
.constructionMethod-purpose__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.constructionMethod-card {
  border-radius: 15px;
  background-color: #FFFFFF;
  border: 1px solid #3C27E0;
  width: 89.2%;
  margin: 0 auto;
  padding: 25px 4.6% 37px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-card {
    width: 100%;
  }
}

.constructionMethod-card--overview {
  margin-top: 30px;
}

.constructionMethod-card-ttl__ja {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  background-image: linear-gradient(90deg, rgb(80, 202, 213), rgb(60, 39, 224));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.constructionMethod-card-ttl__ja--bk {
  background-image: linear-gradient(90deg, rgb(33, 33, 33), rgb(33, 33, 33));
  margin-bottom: 20px;
}

.constructionMethod-card-ttl__ja--second-wrap {
  margin-top: 50px;
}

.constructionMethod-card-ttl__en {
  font-size: 13px;
  letter-spacing: 0.038em;
  color: rgba(3, 3, 3, 0.4);
  margin-top: 5px;
  line-height: 1;
  font-weight: 500;
}

.constructionMethod-detail__center-subTtl {
  text-align: center;
  font-weight: 700;
  margin-top: 30px;
}

.scroll-img-annotation {
  margin-top: 10px;
  font-size: 14px;
}

.normalDocs--overview {
  font-weight: 500;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .normalDocs--overview {
    font-size: 12px;
  }
}

.normalDocs--overview__under-txt {
  margin-top: 10px;
  display: block;
}

.constructionMethod-card--features {
  margin-top: 15px;
}

.constructionMethod__features-list {
  margin-top: 21px;
}
@media screen and (max-width: 768px) {
  .constructionMethod__features-list {
    margin-top: 17px;
  }
}
.constructionMethod__features-list .constructionMethod__features-item:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .constructionMethod__features-list .constructionMethod__features-item:not(:first-of-type) {
    margin-top: 14px;
  }
}

.constructionMethod__features-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14.5px;
}
@media screen and (max-width: 768px) {
  .constructionMethod__features-item {
    gap: 5px;
  }
}

.constructionMethod__features-check {
  width: 21px;
  height: 21px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .constructionMethod__features-check {
    width: 13px;
    height: 13px;
    margin-top: 4px;
  }
}
.constructionMethod__features-check img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .constructionMethod__features-check img {
    width: 13px;
    height: 13px;
  }
}

.constructionMethod__features-txt {
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .constructionMethod__features-txt {
    width: calc(100% - 20px);
  }
}

.bl-btn--constructionMethod {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 53px auto 0;
}
@media screen and (max-width: 768px) {
  .bl-btn--constructionMethod {
    margin: 38px auto 0;
  }
}
.bl-btn--constructionMethod a {
  display: block;
  padding: 17px 0;
  width: 237px;
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  border-radius: 92px;
  position: relative;
}
.bl-btn--constructionMethod a::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  pointer-events: none;
}
.bl-btn--constructionMethod a::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border: 0.5px solid #FFFFFF;
  border-radius: 50%;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  pointer-events: none;
  transform-origin: center;
  transition: all 0.5s;
}
.bl-btn--constructionMethod a:hover::after {
  transform: translateY(-50%) scale(1.5);
  transform-origin: center;
  transition: all 0.5s;
}

/*=========================
工法詳細
==========================*/
/*パンくず*/
.breadcrumb-block {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .breadcrumb-block {
    margin-top: 13px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    gap: 26px;
  }
}
.breadcrumb .breadcrumb__item {
  position: relative;
}
.breadcrumb .breadcrumb__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #3D2EE0;
  border-right: 1px solid #3D2EE0;
  top: 50%;
  right: -15px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb__item:not(:last-of-type)::after {
    width: 5px;
    height: 5px;
  }
}

.breadcrumb__item {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item {
    font-size: 10px;
  }
}
.breadcrumb__item a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item a {
    font-size: 10px;
  }
}

.constructionMethod-detail {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail {
    margin-top: 40px;
  }
}
.constructionMethod-detail .constructionMethod-detailCard:not(:first-of-type) {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail .constructionMethod-detailCard:not(:first-of-type) {
    margin-top: 30px;
  }
}

.constructionMethod-detailCard {
  padding: 41px 4.16% 55px;
  background-color: #F0F6FF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .constructionMethod-detailCard {
    padding: 26px 5.1% 31px;
  }
}

.constructionMethod-detail-name {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 4px solid #B4E2FF;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-name {
    font-size: 20px;
    padding-bottom: 12px;
  }
}

.constructionMethod-detail-overview {
  margin-top: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6.9%;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-overview {
    margin-top: 20px;
    display: block;
  }
}

.constructionMethod-detail-overview__side-l {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-overview__side-l {
    width: 100%;
    margin-bottom: 20px;
  }
}
.constructionMethod-detail-overview__side-l img {
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.constructionMethod-detail-overview__side-r--reverse {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-overview__side-r--reverse {
    width: 100%;
  }
}

.constructionMethod-detail-overview__side-l--ict-v-jet img {
  max-height: unset;
}

.constructionMethod-detail-overview__side-l--column {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-overview__side-l--column {
    margin-bottom: 30px;
  }
}

.constructionMethod-detail-overview__side-l--v-jet {
  width: 31.1%;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-overview__side-l--v-jet {
    width: 100%;
  }
}

.constructionMethod-detail-overview--column {
  flex-direction: column-reverse;
}

.constructionMethod-detail-overview__side-r--column {
  width: 100%;
}

.constructionMethod-detail-overview__side-r--v-jet {
  width: 62%;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-overview__side-r--v-jet {
    width: 100%;
    margin-top: 45px;
  }
}

.constructionMethod-card-ttl--constructionMethod-detail {
  padding-bottom: 10px;
  border-bottom: 2px solid #B4E2FF;
}

.normalDocs--constructionMethod-detail {
  line-height: 1.5;
  padding-right: 7%;
}
@media screen and (max-width: 768px) {
  .normalDocs--constructionMethod-detail {
    padding-right: 0;
    line-height: 1.75;
    font-size: 12px;
  }
}

.constructionMethod-detail-feature {
  margin-top: 65px;
}

.constructionMethod-card-ttl--constructionMethod-detail-feature {
  padding-left: 10px;
}

.constructionMethod-detail-feature__list {
  padding-left: 20px;
  margin-top: 10px;
}
.constructionMethod-detail-feature__list .constructionMethod-detail-feature__item:not(:first-of-type) {
  margin-top: 14px;
}
.constructionMethod-detail-feature__list .constructionMethod-detail-feature__item.constructionMethod-detail-feature__item--aohon:not(:first-of-type) {
  margin-top: 0;
}

.constructionMethod-detail-feature__item {
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-feature__item {
    font-size: 12px;
    line-height: 1.75;
  }
}
.constructionMethod-detail-feature__item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
}
.constructionMethod-detail-feature__item.constructionMethod-detail-feature__item--smallHeading {
  margin-top: 50px !important;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-feature__item.constructionMethod-detail-feature__item--smallHeading {
    margin-top: 30px !important;
  }
}
.constructionMethod-detail-feature__item.constructionMethod-detail-feature__item--smallHeading::before {
  content: "○";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
}

.constructionMethod-detail-feature__item--aohon {
  padding: 20px 0;
  border-bottom: 1px solid #333333;
}
.constructionMethod-detail-feature__item--aohon::before {
  display: none;
}
.constructionMethod-detail-feature__item--aohon .constructionMethod-detail-feature__item__txt {
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-feature__item--aohon .constructionMethod-detail-feature__item__txt {
    padding-left: 0;
  }
}
.constructionMethod-detail-feature__item--aohon .constructionMethod-detail-feature__item__txt::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% + 40px);
  background-color: #333;
  top: -20px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-feature__item--aohon .constructionMethod-detail-feature__item__txt::before {
    display: none;
  }
}

.constructionMethod-detail-feature__item--flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-feature__item--flex {
    display: block;
  }
}
.constructionMethod-detail-feature__item--flex.constructionMethod-detail-feature__item--aohon {
  justify-content: flex-end;
  flex-direction: row-reverse;
  align-items: stretch;
}
.constructionMethod-detail-feature__item--flex.constructionMethod-detail-feature__item--aohon .constructionMethod-detail-feature__item__img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-feature__item--flex.constructionMethod-detail-feature__item--aohon .constructionMethod-detail-feature__item__img {
    margin-top: 20px;
  }
}

.constructionMethod-detail-feature__item__txt {
  width: 500px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-feature__item__txt {
    width: 100%;
  }
}

.constructionMethod-detail-feature__item__img {
  width: calc(100% - 520px);
  max-height: 300px;
}
.constructionMethod-detail-feature__item__img img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 300px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail-feature__item__img {
    width: 100%;
  }
}

.constructionMethod-detail__cardList {
  margin-top: 70px;
}
.constructionMethod-detail__cardList .constructionMethod-detail__cardItem:not(:first-of-type) {
  margin-top: 30px;
}

.constructionMethod-detail__cardItem {
  padding: 40px 5% 55px;
  background-color: #FFFFFF;
  border-radius: 15px;
  border: 1px solid #3C27E0;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail__cardItem {
    padding: 26px 4.7% 29px;
  }
}

.constructionMethod-detail__ttl {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 47px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail__ttl {
    font-size: 18px;
    margin-bottom: 21px;
  }
}

.constructionMethod-detail__cardImg--subsequent {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail__cardImg--subsequent {
    margin-top: 21px;
  }
}

.constructionMethod-detail__cardImg--topSpace {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail__cardImg--topSpace {
    margin-top: 21px;
  }
}

.constructionMethod-detailCard__accordionBox {
  display: none;
}

.constructionMethod-detailCard__accordionBox.is-open {
  display: block;
}

.accordion-open {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 30px auto 0;
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .accordion-open {
    margin-top: 37px;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .accordion-open {
    font-size: 18px;
  }
}
.accordion-open::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translate(-100%, -50%);
  width: 24px;
  height: 24px;
  border: 1px solid #333333;
}

@media screen and (max-width: 768px) {
  .accordion-open::before {
    width: 30px;
    height: 30px;
  }
}
.accordion-open::after {
  content: "+";
  position: absolute;
  font-size: 23px;
  color: #333333;
  line-height: 1;
  top: 50%;
  left: -18.5px;
  transform: translate(-100%, -53%);
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .accordion-open::after {
    font-size: 30px;
    left: -20.5px;
  }
}
.accordion-open.is-open::after {
  content: "−";
  position: absolute;
  font-size: 23px;
  color: #333333;
  line-height: 1;
  top: 50%;
  left: -18.5px;
  transform: translate(-100%, -53%);
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .accordion-open.is-open::after {
    font-size: 30px;
    left: -20.5px;
  }
}
.return-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 116px auto 263px;
}
@media screen and (max-width: 768px) {
  .return-btn {
    margin: 60px auto 82px;
  }
}
.return-btn a {
  font-size: 20px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #333333;
}

@media screen and (max-width: 768px) {
  .constructionMethod-detail__cardItem-scroll-wrap {
    position: relative;
    width: 100%;
    /*height: 471px;*/
    min-height: 190px;
  }
  .constructionMethod-detail__cardImg-wrap {
    /*position: absolute;*/
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    overflow-y: visible;
  }
  .constructionMethod-detail__cardImg-wrap .constructionMethod-detail__cardImg {
    width: 906px;
    height: auto;
  }
}
.constructionMethod-detail__cardImg--flex-wrap {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 30px;
}
.constructionMethod-detail__cardImg--flex-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail__cardImg--flex-wrap {
    flex-direction: column;
    align-items: center;
  }
}

.constructionMethod-detail__cardImg__flex-item--half {
  width: calc(50% - 15px);
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail__cardImg__flex-item--half {
    width: 100%;
  }
}
.constructionMethod-detail__cardImg__flex-item--half.constructionMethod-detail__cardImg__flex-item--halfSize {
  max-width: unset;
}

.constructionMethod-detail__cardImg__flex-item--trio {
  width: calc(33% - 10px);
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail__cardImg__flex-item--trio {
    width: 100%;
  }
}

.top-margin {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .top-margin {
    margin-top: 15px;
  }
}

.yakuekiSystem-explain {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .yakuekiSystem-explain {
    flex-direction: column;
  }
}

.normalDocs--yakuekiSystem {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .normalDocs--yakuekiSystem {
    width: 100%;
  }
}

.yakuekiSystem-explain__img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .yakuekiSystem-explain__img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

.yakuekiSystem-flexList {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 20px;
}
.yakuekiSystem-flexList .yakuekiSystem-flexList__item:first-of-type {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .yakuekiSystem-flexList {
    flex-direction: column;
  }
}

.will__systemTtl {
  font-weight: 700;
}

.constructionMethod-detail-overview--rowReverse {
  flex-direction: row-reverse;
}

.constructionMethod-detail__cardImg__flex-item--trio--adjustSize {
  width: 23%;
  margin-left: 2%;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  .constructionMethod-detail__cardImg__flex-item--trio--adjustSize {
    width: 100%;
    max-width: 280px;
    margin-left: 0;
  }
}

.techniques-mainExplain-ttl__size-l--groundAnchor {
  font-size: 55px;
}
@media screen and (max-width: 1024px) {
  .techniques-mainExplain-ttl__size-l--groundAnchor {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .techniques-mainExplain-ttl__size-l--groundAnchor {
    font-size: 34px;
  }
}

.kakuhan-flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .kakuhan-flex {
    display: block;
  }
}

.soilnailing--toCite {
  font-size: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .soilnailing--toCite {
    width: 100%;
  }
}

.pageLinks {
  margin-top: 75px;
  padding: 25px 0;
  background-color: #F0F6FF;
}

.pageLinks__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 3.5%;
}
@media screen and (max-width: 768px) {
  .pageLinks__list {
    display: block;
  }
  .pageLinks__list .pageLinks__item:not(:first-of-type) {
    margin-top: 17px;
  }
}

.pageLinks__item a {
  font-weight: 700;
  line-height: 1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  padding: 15px 42px 30px;
  position: relative;
  border-radius: 35px;
  background-color: #FFFFFF;
  border: 2px solid #3C27E0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .pageLinks__item a {
    text-align: center;
    margin: 0 auto;
    line-height: 1.5;
    border-radius: 50px;
    width: 81.7%;
  }
}
.pageLinks__item a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 1.5px solid #3C27E0;
  border-right: 1.5px solid #3C27E0;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.technologies {
  margin-top: 73px;
}

.technologies-mainTtl {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .technologies-mainTtl {
    font-size: 18px;
  }
}

.technology-table {
  margin-top: 45px;
  display: block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .technology-table {
    margin-top: 34px;
  }
}

.technoligy-table__body {
  display: flex;
  gap: 4px;
  width: 100%;
  flex-direction: column;
}

.technology-table__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .technology-table__row {
    gap: 3px;
  }
}
.technology-table__row .technology-table__head:last-of-type {
  width: calc(100% - 496px);
}
@media screen and (max-width: 1024px) {
  .technology-table__row .technology-table__head:last-of-type {
    width: calc(57.2% - 6px);
  }
}
.technology-table__row .technology-table__data:last-of-type {
  width: calc(100% - 496px);
}
@media screen and (max-width: 1024px) {
  .technology-table__row .technology-table__data:last-of-type {
    width: calc(57.2% - 6px);
  }
}
.technology-table__row .technology-table__data:nth-of-type(2) {
  background-color: #F0F6FF;
}

.technology-table__head {
  width: 244px;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #3D2EE0;
  font-weight: 400;
  text-align: center;
  padding: 16px 10px;
  letter-spacing: 0.029em;
}
@media screen and (max-width: 1024px) {
  .technology-table__head {
    width: 21.4%;
    padding: 16px 0px;
  }
}
@media screen and (max-width: 768px) {
  .technology-table__head {
    padding: 11px 0px;
    font-size: 12px;
  }
}

.technology-table__data {
  width: 244px;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  padding: 16px 0;
  background-color: #FFFFFF;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.029em;
}
@media screen and (max-width: 1024px) {
  .technology-table__data {
    width: 21.4%;
    padding: 11px 9px;
    justify-content: flex-start;
    text-align: left;
    font-size: 11px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .technology-table__data {
    padding: 11px 7px;
  }
}
.technology-table__data a {
  text-decoration: underline;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .technology-table__data a {
    line-height: 1.5;
    font-size: 11px;
  }
}

.technologies__list .technologies__item:not(:first-of-type) {
  margin-top: 123px;
}
@media screen and (max-width: 1024px) {
  .technologies__list .technologies__item:not(:first-of-type) {
    margin-top: 70px;
  }
}
.technologies__list .technologies__item:last-of-type {
  padding-bottom: 286px;
}
@media screen and (max-width: 1024px) {
  .technologies__list .technologies__item:last-of-type {
    padding-bottom: 135px;
  }
}

#registration .technology-table__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #registration .technology-table__row {
    gap: 3px;
  }
}
#registration .technology-table__row .technology-table__head:last-of-type {
  width: calc(100% - 744px);
}
@media screen and (max-width: 1024px) {
  #registration .technology-table__row .technology-table__head:last-of-type {
    width: calc(35.8% - 9px);
  }
}
#registration .technology-table__row .technology-table__data:last-of-type {
  width: calc(100% - 744px);
}
@media screen and (max-width: 1024px) {
  #registration .technology-table__row .technology-table__data:last-of-type {
    width: calc(35.8% - 9px);
  }
}

#improvement .technology-table__head {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  #improvement .technology-table__head {
    width: 21.4%;
  }
}
#improvement .technology-table__head:last-of-type {
  width: calc(100% - 608px);
}
@media screen and (max-width: 1024px) {
  #improvement .technology-table__head:last-of-type {
    width: calc(35.8% - 6px);
  }
}
#improvement .technology-table__data {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  #improvement .technology-table__data {
    width: 21.4%;
  }
}
#improvement .technology-table__data:last-of-type {
  width: calc(100% - 608px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  #improvement .technology-table__data:last-of-type {
    width: calc(35.8% - 6px);
  }
}
#improvement .technology-table__data span {
  display: block;
  text-align: center;
  color: rgba(51, 51, 51, 0.7);
  font-size: 12px;
}

.technology-img {
  width: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.technology-img img {
  width: 81.3%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 1/0.65;
}
@media screen and (max-width: 1024px) {
  .technology-img img {
    width: 100%;
    aspect-ratio: 1/1.05;
  }
}

.manageable-item {
  padding-left: 10px;
  position: relative;
  text-align: left;
}
.manageable-item::after {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

/*============ タイトル部分 ============*/
.bl-specialPage-ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.bl-specialPage-ttl__ja {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .bl-specialPage-ttl__ja {
    font-size: 14px;
  }
}

.bl-specialPage-ttl__en {
  line-height: 1;
  margin-top: 20px;
  font-size: 75px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .bl-specialPage-ttl__en {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .bl-specialPage-ttl__en {
    font-size: 47px;
  }
}
.bl-specialPage-ttl__en span {
  color: #3C27E0;
}

@media screen and (max-width: 1024px) {
  .head--specialPage {
    background-color: transparent;
  }
}

/*============ FV ============*/
.specialPage-fv {
  background-image: linear-gradient(180deg, rgb(82, 242, 230), rgb(60, 39, 223));
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: auto;
  padding: 0 0 122px;
}

.fv-upper {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 127px 0 0;
}

#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#canvas-container__sp canvas {
  width: 100%;
  height: auto; /* 高さはJSの設定に従う */
  display: block; /* 不要な余白回避 */
}

.specialPage-fv__content-wrap {
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  -webkit-animation-name: specialPageAnime;
          animation-name: specialPageAnime;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes specialPageAnime {
  0% {
    opacity: 0;
    top: calc(50% + 50px);
  }
  100% {
    opacity: 100%;
    top: 50%;
  }
}

@keyframes specialPageAnime {
  0% {
    opacity: 0;
    top: calc(50% + 50px);
  }
  100% {
    opacity: 100%;
    top: 50%;
  }
}
.specialPage-mainTxt {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.specialPage-mainTxt__size-l {
  font-family: "Raleway", sans-serif;
  font-size: min(29vw, 450px);
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  color: #FFFFFF;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .specialPage-mainTxt__size-l {
    font-size: 199px;
  }
}

.specialPage-mainTxt__size-m {
  font-family: "Raleway", sans-serif;
  font-size: min(9.3vw, 144px);
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .specialPage-mainTxt__size-m {
    font-size: 63px;
  }
}

.specialPage-mainTxt__size-s {
  font-family: "Raleway", sans-serif;
  font-size: min(5.7vw, 89px);
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .specialPage-mainTxt__size-s {
    font-size: 39px;
  }
}

.specialPage-fv__txt {
  font-size: clamp(18px, 1.25vw, 23px);
  color: #FFFFFF;
  margin: 20px auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .specialPage-fv__txt {
    font-size: 14px;
    text-align: center;
    margin: 17vh auto 0;
  }
}

.specialPage-fv__img {
  width: 32.4%;
  margin: 101px auto 0;
}
@media screen and (max-width: 768px) {
  .specialPage-fv__img {
    margin-top: 60px;
    width: 60%;
  }
}

.specialPage-fv__singleCircle {
  position: absolute;
  width: 47%;
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
  transform: translate(31.5%, -60%);
  z-index: 0;
}
.specialPage-fv__singleCircle span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}

.specialPage-fv__doubleCircle {
  position: absolute;
  left: 0;
  bottom: 18.3%;
  width: 48.8%;
  aspect-ratio: 1/1.15;
  transform: translateX(-23.4%);
  z-index: 0;
}
.specialPage-fv__doubleCircle span {
  display: block;
  width: 94.8%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  opacity: 0.6;
  position: absolute;
}
.specialPage-fv__doubleCircle span:first-of-type {
  top: 0;
  left: 0;
}
.specialPage-fv__doubleCircle span:last-of-type {
  bottom: 0;
  right: 0;
}

/*============ 代表挨拶 ============*/
.specialPage-message {
  padding-top: 106px;
}
@media screen and (max-width: 768px) {
  .specialPage-message {
    padding-top: 70px;
  }
}

.specialPage-message__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5.8%;
}
@media screen and (max-width: 1024px) {
  .specialPage-message__wrap {
    flex-direction: column-reverse;
    margin-top: 20px;
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .normalDocs__specialPage-message {
    line-height: 1.7;
  }
}
.specialPage-message__side-l {
  width: 640px;
  margin-top: 56px;
}
@media screen and (max-width: 1024px) {
  .specialPage-message__side-l {
    margin-top: 36px;
    width: 100%;
  }
}

.specialPage-message-date {
  font-size: 14px;
  margin-top: 35px;
  letter-spacing: 0.028em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .specialPage-message-date {
    font-size: 12px;
    margin-top: 20px;
  }
}

.specialPage-message__sign-wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}

.specialPage-message-sign {
  margin-top: 3px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}

.specialPage-message-sign__companyName {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .specialPage-message-sign__companyName {
    font-size: 12px;
  }
}

.specialPage-message-sign__companyTitle {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .specialPage-message-sign__companyTitle {
    font-size: 12px;
  }
}

.specialPage-message-sign__name {
  margin-top: 5px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.048em;
}
@media screen and (max-width: 768px) {
  .specialPage-message-sign__name {
    font-size: 18px;
  }
}

.specialPage-message__side-r {
  width: calc(94.2% - 640px);
}
@media screen and (max-width: 1024px) {
  .specialPage-message__side-r {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

/*============ 設備導入の歴史 ============*/
.equipment {
  margin-top: 197px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .equipment {
    margin-top: 95px;
    padding-bottom: 88px;
  }
}

.equipment-swiper {
  margin-top: 50px;
  padding-left: 6.9%;
}
@media screen and (max-width: 768px) {
  .equipment-swiper {
    padding-left: 5.1%;
  }
}

.equipment__list {
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .equipment__list {
    padding-bottom: 0;
  }
}

.equipment__item {
  padding: 12px 1.83% 47px 5.3%;
  width: 926px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-image: linear-gradient(180deg, rgb(245, 245, 245), rgb(255, 255, 255));
}
@media screen and (max-width: 1024px) {
  .equipment__item {
    width: 80%;
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 768px) {
  .equipment__item {
    width: 100%;
    padding: 12px 5% 35px;
  }
}

.equipment-year {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: -5.3%;
}
@media screen and (max-width: 768px) {
  .equipment-year {
    margin-left: -5%;
    align-items: flex-end;
  }
}

.equipment-year__num {
  font-size: 112px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.7;
  color: #4574E2;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .equipment-year__num {
    font-size: 55px;
  }
}

.equipment-year__unit {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 10px;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .equipment-year__unit {
    font-size: 15px;
  }
}

.equipment-detail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 5%;
}
@media screen and (max-width: 1024px) {
  .equipment-detail {
    align-items: center;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .equipment-detail {
    align-items: flex-start;
  }
}

.equipment-detail__list {
  padding-left: 20px;
  margin-top: 45px;
  position: relative;
  width: 57.7%;
}
@media screen and (max-width: 1024px) {
  .equipment-detail__list {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .equipment-detail__list {
    width: 100%;
  }
}
.equipment-detail__list .equipment-detail__item:not(:first-of-type) {
  margin-top: 10px;
}
.equipment-detail__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(60, 40, 224));
}

.equipment-detail-year {
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1;
  font-weight: 600;
  color: #3C27E0;
}

.equipment-detail-explain__item {
  padding-left: 16px;
  position: relative;
  font-weight: 600;
  line-height: 1.5;
}
.equipment-detail-explain__item span {
  color: #3C27E0;
}
@media screen and (max-width: 1024px) {
  .equipment-detail-explain__item {
    font-size: 14px;
  }
}
.equipment-detail-explain__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.equipment-event {
  width: 37.3%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: linear-gradient(180deg, rgb(82, 242, 230), rgb(60, 39, 223));
  padding: 30px 0 23px;
}
@media screen and (max-width: 1024px) {
  .equipment-event {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .equipment-event {
    width: 65%;
    min-width: 230px;
    margin: 30px auto 0;
    aspect-ratio: 1/1;
    padding: 38px 0;
    position: relative;
  }
}

.equipment-event__ttl {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.028em;
  line-height: 1;
  padding: 5px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  color: #3C27E0;
}
@media screen and (max-width: 1024px) {
  .equipment-event__ttl {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .equipment-event__ttl {
    font-size: 14px;
  }
}

.equipment-event__list {
  margin: 22px auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .equipment-event__list {
    width: 65%;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .equipment-event__list {
    max-width: 160px;
    height: auto;
    overflow: scroll;
    max-height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.equipment-event__list .equipment-event__item:not(:first-of-type) {
  margin-top: 10px;
}

.equipment-event__item {
  padding-left: 19px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.028em;
  position: relative;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .equipment-event__item {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .equipment-event__item {
    font-size: 14px;
  }
}
.equipment-event__item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
  border-radius: 50%;
  opacity: 0.3;
  left: 0;
  top: 5px;
}
.equipment-event__item::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #FFFFFF;
  border-radius: 50%;
  left: 4px;
  top: 9px;
}

.equipment-image {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .equipment-image {
    margin-top: 85px;
    gap: 4px;
  }
}

.equipment-image__item {
  width: calc(33.33% - 10.66px);
  aspect-ratio: 1/0.7;
}
@media screen and (max-width: 768px) {
  .equipment-image__item {
    width: calc(33.33% - 2.66px);
  }
}

.equipment-swiper {
  width: 100%;
  overflow: hidden;
}

.equipment__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-bottom: 100px;
}

.equipment__item {
  width: 100%; /* SPデフォルト */
  box-sizing: border-box;
}

/* PCで固定幅926pxに */
@media (min-width: 1025px) {
  .equipment__item {
    width: 926px !important;
  }
}
/* スクロールバーのベース */
.swiper-scrollbar {
  width: 79.2% !important;
  height: 61px !important;
  background-color: rgba(255, 255, 55, 0);
  position: relative;
  z-index: 1;
}
.swiper-scrollbar::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #CECECE;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.swiper-scrollbar {
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .swiper-scrollbar {
    display: none;
  }
}

.swiper-scrollbar-drag {
  position: relative;
  background-color: rgba(255, 255, 255, 0);
  z-index: 3;
  cursor: pointer;
}
.swiper-scrollbar-drag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 61px;
  height: 61px;
  background-image: url(../../assets/images/70th/tsumami.png);
  background-size: cover;
}

.foot--specialPage {
  border-radius: 20px 20px 0 0;
  background-image: linear-gradient(180deg, rgb(82, 242, 230), rgb(60, 39, 223));
}
.foot--specialPage::after {
  display: none;
}

.foot__toTop a {
  font-size: 18px;
  padding-left: 24px;
  position: relative;
  color: #FFFFFF;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .foot__toTop a {
    display: none;
  }
}
.foot__toTop a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.foot__toTop a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #FFFFFF;
  border-radius: 50%;
}

.foot__logo--specialPage {
  margin-left: auto;
  margin-right: auto;
  margin-top: 105px;
}

.foot__copy--specialPage {
  margin-top: 18px;
}

@media screen and (max-width: 1024px) {
  .foot__companyName--specialPage {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .scroll-infinity {
    position: absolute;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
  }
  @-webkit-keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  @keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
    gap: 20px;
  }
  .scroll-infinity__list {
    display: flex;
    align-items: stretch;
    list-style: none;
    gap: 20px;
  }
  .scroll-infinity__list--left {
    -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
            animation: infinity-scroll-left 40s infinite linear 0.5s both;
  }
  .scroll-infinity__item {
    width: 66.6666666667vw;
  }
  .scroll-infinity__item > img {
    width: 100%;
  }
}

/* ================================================
ここからwp追記
================================================ */
.error-page__content{
		padding: 150px 0;
		margin-top: 80px;
		background-color: #fff;
	  font-family: "Jost", sans-serif;
		position: relative;
		z-index: 3;
		color: #0A3165;
	}
	
	.error-page__ttl{
	    font-size: 40px;
	    font-weight: 700;
	}
	@media screen and (max-width: 768px) {
		.error-page__content{
		margin-top: 50px;
	}
	
		.error-page__ttl{
			font-size: 30px;
			font-weight: 700;
		}
	}

.wpcf7-spinner{
display: none!important;
}

.contactForm--confirm {
	padding-right: 0;
}

.contactForm--confirm .submit-wrap{
	margin-top: 80px!important;
}

.submit-wrap{
display: flex;
align-items: center;
justify-content: center;
}

@media screen and (max-width: 768px) {
	.contactForm--confirm{
	padding-right: 0;
}
.contactForm--confirm .submit-wrap{
	margin-top: 50px!important;
}

.submit-wrap{
	flex-direction: column;
	gap: 30px;
}
}

.news__item a{
pointer-events: none;
}

/* 検索フォームのスタイル */
.search-form {
}

.search-form-wrapper {
    position: relative;
    margin: 0 auto;
}
.search-form-wrapper_mx {
    margin: 20px 0;
}
.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    box-sizing: border-box;
}

.search-word {
    font-size: 20px;
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 0;
    line-height: 1;
}

.search-button:hover {
    opacity: 0.7;
}
.search-title {
    color: #3c2ddf;
    padding-left: 10px;
    font-weight: 700;
}
.search-results,
.search-no-results,
.search-empty {
    min-height: 400px;
}
.search-results-list {
    margin: 20px 0;
}
.search-result-item {
    border-bottom: 1px solid rgba(128, 128, 128, 0.4);
    padding: 25px 0;
    font-size: 18px;
    color: #3c2ddf;
}
.search-result-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.search-results-list p {
    padding-left: 10px;
    color: #333333;
    font-size: 14px;
    
}
.search-result-item:hover{
    background: rgba(128, 128, 128, 0.1);
}