@charset "UTF-8";
/*font-family*/
/*color*/
/*font-size*/
/**transition**/
/**見出し**/
/**サブタイトル**/
/**スクロールアニメーション**/
/**hover-border-bottom**/
.footer__wrap {
  position: relative;
}
.footer__wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: -1;
}

.hybrid a:hover .hover-arrow {
  opacity: 1;
  visibility: visible;
}
.hybrid a:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.hybrid__btn {
  width: 82%;
  height: 228px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width:1100px) {
  .hybrid__btn {
    width: 90%;
  }
}
@media screen and (max-width:760px) {
  .hybrid__btn {
    width: 92%;
    height: 142px;
  }
}
.hybrid__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.hybrid__btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: scale(1.005);
          transform: scale(1.005);
  transition: transform 0.7s cubic-bezier(0.43, 0.05, 0.17, 1), -webkit-transform 0.7s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.hybrid__text__box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.hybrid__text {
  font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  color: #fff;
  letter-spacing: 0.2em;
}
@media screen and (max-width:760px) {
  .hybrid__text {
    font-size: 16px;
  }
}

.hover-arrow {
  opacity: 0;
  visibility: hidden;
  width: 64px;
  height: 64px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  -webkit-transition: opacity 0.4s cubic-bezier(0.43, 0.05, 0.17, 1), visibility 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.4s cubic-bezier(0.43, 0.05, 0.17, 1), visibility 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.hover-arrow__triangle {
  border-top: 64px solid transparent;
  border-right: 64px solid #e63736;
}
.hover-arrow__arrow {
  width: 80px;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 20px;
  left: -40px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.5, 0.43, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.5, 0.43, 1);
  transition: transform 0.4s cubic-bezier(0.16, 0.5, 0.43, 1);
  transition: transform 0.4s cubic-bezier(0.16, 0.5, 0.43, 1), -webkit-transform 0.4s cubic-bezier(0.16, 0.5, 0.43, 1);
  -webkit-animation: HoverArrow 0.7s infinite alternate forwards running;
          animation: HoverArrow 0.7s infinite alternate forwards running;
}
.hover-arrow__arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

@-webkit-keyframes HoverArrow {
  0% {
    left: -40px;
  }
  100% {
    left: -27px;
  }
}

@keyframes HoverArrow {
  0% {
    left: -40px;
  }
  100% {
    left: -27px;
  }
}
.footer__about {
  margin-top: 104px;
}
@media screen and (max-width:760px) {
  .footer__about {
    margin-top: 40px;
  }
}
@media screen and (max-width:1100px) {
  .footer__about__inner {
    width: 90%;
    margin: 0 auto;
  }
}
.footer__about__title {
  font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  color: #898989;
  letter-spacing: 0.2em;
  text-align: center;
}
.footer__about .about__top__nav {
  display: grid;
  grid-template-columns: 212px 212px 212px 212px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 36px;
  margin-top: 62px;
  margin-bottom: 68px;
}
@media screen and (max-width:1100px) {
  .footer__about .about__top__nav {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3%;
    margin-bottom: 7%;
  }
}
@media screen and (max-width:760px) {
  .footer__about .about__top__nav {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
    margin-bottom: 12%;
  }
}
.footer__about .about__top__nav li:nth-child(3) img {
  margin-left: 8px;
}
.footer__about .about__top__nav li a {
  height: 203px;
  display: block;
  padding: 32px 6px;
  border: 1px solid #000;
  -webkit-transition: background-color 0.5s cubic-bezier(0.43, 0.05, 0.17, 1), border 0.5s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: background-color 0.5s cubic-bezier(0.43, 0.05, 0.17, 1), border 0.5s cubic-bezier(0.43, 0.05, 0.17, 1);
  position: relative;
}
@media screen and (max-width:760px) {
  .footer__about .about__top__nav li a {
    padding: 0 6px;
    height: 140px;
  }
}
.footer__about .about__top__nav li a:hover {
  background-color: #e63736;
  border: 1px solid transparent;
}
.footer__about .about__top__nav li a:hover p {
  color: #fff;
}
.footer__about .about__top__nav li a:hover .about__top__img_01 {
  opacity: 0;
  visibility: hidden;
}
.footer__about .about__top__nav li a:hover .about__top__img_02 {
  opacity: 1;
  visibility: visible;
}
.footer__about .about__top__nav li img {
  display: block;
  margin: 0 auto;
  -webkit-transition: all 0.5s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: all 0.5s cubic-bezier(0.43, 0.05, 0.17, 1);
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width:760px) {
  .footer__about .about__top__nav li img {
    top: 46%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 68px;
  }
}
.footer__about .about__top__nav li .about__top__img_02 {
  opacity: 0;
  visibility: hidden;
}
.footer__about .about__top__nav li p {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 120px;
  -webkit-transition: color 0.1s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: color 0.1s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (max-width:760px) {
  .footer__about .about__top__nav li p {
    margin-top: 107px;
  }
}
.footer__about .about__bottom__nav {
  display: grid;
  grid-template-columns: 279px 279px 279px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 60px;
}
@media screen and (max-width:1100px) {
  .footer__about .about__bottom__nav {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8% 3%;
  }
}
@media screen and (max-width:1000px) {
	.footer {
		margin-bottom:24px;
	}
  .footer__about .about__bottom__nav {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width:760px) {
  .footer__about .about__bottom__nav {
    grid-template-columns: 1fr;
    gap: 2%;
  }
}
.footer__about .about__bottom__nav li {
  height: 80px;
}
@media screen and (max-width:760px) {
  .footer__about .about__bottom__nav li {
    height: 56px;
  }
}
.footer__about .about__bottom__nav li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  border: 1px solid #000;
  -webkit-transition: background-color 0.5s cubic-bezier(0.43, 0.05, 0.17, 1), border 0.5s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: background-color 0.5s cubic-bezier(0.43, 0.05, 0.17, 1), border 0.5s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.footer__about .about__bottom__nav li a:hover {
  background-color: #e63736;
  border: 1px solid transparent;
}
.footer__about .about__bottom__nav li a:hover p {
  color: #fff;
}
.footer__about .about__bottom__nav li a p {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  letter-spacing: 0.1em;
  -webkit-transition: color 0.1s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: color 0.1s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.footer__about .about__bottom__nav li a span {
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.footer {
  background-color: #e63736;
  margin-top: 172px;
  padding-bottom: 32px;
}
@media screen and (max-width:1100px) {
  .footer {
    margin-top: 230px;
  }
}
@media screen and (max-width:1000px) {
  .footer {
    margin-top: 294px;
  }
}
@media screen and (max-width:760px) {
  .footer {
    padding-bottom: 72px;
    margin-top: 200px;
  }
}
.footer__triangle {
  position: relative;
}
.footer__triangle::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50vw 100px 50vw;
  border-color: transparent transparent #e63736 transparent;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
}
@media screen and (max-width:760px) {
  .footer__triangle::before {
    border-width: 0 50vw 62px 50vw;
  }
}
.footer__triangle #PageTopButton {
  position: absolute;
  top: -80px;
  left: 49.28%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: PageTop 0.7s infinite alternate forwards running;
          animation: PageTop 0.7s infinite alternate forwards running;
}
@media screen and (max-width:760px) {
  .footer__triangle #PageTopButton {
    left: 48.7%;
    top: -46px;
  }
}
@media screen and (max-width:500px) {
  .footer__triangle #PageTopButton {
    left: 48.1%;
  }
}
.footer__triangle .footer__logo {
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width:760px) {
  .footer__triangle .footer__logo {
    width: 318px;
    top: 0;
  }
}
@media screen and (max-width:400px) {
  .footer__triangle .footer__logo {
    width: 77%;
  }
}
.footer__triangle .footer__logo a {
  display: block;
}
.footer__triangle .footer__logo a img {
  width: 100%;
  height: 55.74px;
}
.footer__inner {
  width: 82%;
  max-width: 1260px;
  margin: 0 auto;
}
@media screen and (max-width:1400px) {
  .footer__inner {
    width: 89%;
  }
}
@media screen and (max-width:1100px) {
  .footer__inner {
    width: 92%;
  }
}
@media screen and (max-width:1000px) {
  .footer__left {
    text-align: center;
  }
}
.footer__box {
  padding-top: 82px;
  display: grid;
  grid-template-columns: 364px 1fr;
  gap: 8%;
}
@media screen and (max-width:1200px) {
  .footer__box {
    gap: 3%;
  }
}
@media screen and (max-width:1000px) {
  .footer__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width:760px) {
  .footer__box {
    padding-top: 92px;
  }
}
.footer__left__info p {
  color: #fff;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  letter-spacing: 0.1em;
}
.footer__left__info p:nth-child(2) {
  margin: 7px 0;
}
.footer__left__info p a {
  color: #fff;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  letter-spacing: 0.1em;
  position: relative;
}
.footer__left__info p a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), visibility 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), -webkit-transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), visibility 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), -webkit-transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), visibility 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), visibility 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), -webkit-transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.footer__left__info p a:hover::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.footer__left__tel a {
  width: 260px;
  height: 60px;
  border: 2px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  margin: 28px 0 16px;
  -webkit-transition: background-color 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), color 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: background-color 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), color 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (max-width:1000px) {
  .footer__left__tel a {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__left__tel a:hover {
  background-color: #fff;
  color: #e63736;
}
.footer__left__tel__text {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer__left__tel__button {
  margin: 24px 0 72px;
}
@media screen and (max-width:1000px) {
  .footer__left__tel__button {
    margin-bottom: 42px;
  }
}
.footer__left__tel__button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (max-width:1000px) {
  .footer__left__tel__button a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__left__tel__button a:hover {
  opacity: 0.67;
}
.footer__left__tel__button a p {
  font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  -webkit-text-stroke: 2px #fff;
  color: #fff;
  letter-spacing: 0.1em;
  padding-left: 8px;
}
.footer__left__contact {
  margin-bottom: 16px;
}
.footer__left__contact a {
  font-size: 15px;
  color: #e63736;
  width: 260px;
  height: 60px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  -webkit-transition: background-color 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), color 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), border 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: background-color 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), color 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), border 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (max-width:1000px) {
  .footer__left__contact a {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__left__contact a:hover {
  border-color: #fff;
  background-color: #e63736;
  color: #fff;
}
.footer__left__sns {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width:1000px) {
  .footer__left__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 42px;
    margin-top: 28px;
  }
}
.footer__left__sns a {
  display: block;
  margin-right: 16px;
  -webkit-transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.footer__left__sns a:hover {
  opacity: 0.67;
}
@media screen and (max-width:1000px) {
  .footer__right {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width:760px) {
  .footer__right {
    width: 100%;
  }
}
.footer__nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 46px;
}
@media screen and (max-width:760px) {
  .footer__nav__top {
    display: block;
  }
}
.footer__nav__top li:nth-child(even) {
  margin: 0 10%;
}
@media screen and (max-width:760px) {
  .footer__nav__top li:nth-child(even) {
    margin: 7% 0;
  }
}
.footer__nav__center__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width:760px) {
  .footer__nav__center__box {
    display: block;
  }
}
@media screen and (max-width:1100px) {
  .footer__nav__center__box li:nth-child(2) {
    margin: 0 24px;
  }
}
@media screen and (max-width:760px) {
  .footer__nav__center__box li:nth-child(2) {
    margin: 7% 0;
  }
}
.footer__nav__center .footer__nav__title {
  margin-bottom: 24px;
}
.footer__nav__center__list {
  border-left: 4px solid #fff;
  padding-left: 14px;
}
.footer__nav__center__list li:nth-child(even) {
  margin: 32px 0;
}
.footer__nav li a {
  color: #fff;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  letter-spacing: 0.01em;
  position: relative;
}
.footer__nav li a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), visibility 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), -webkit-transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), visibility 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), -webkit-transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), visibility 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), visibility 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), -webkit-transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.footer__nav li a:hover::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.footer__nav__title a {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem) !important;
  letter-spacing: 0.1em !important;
}
.footer__nav__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 14px;
}
@media screen and (max-width:760px) {
  .footer__nav__bottom {
    display: block;
    margin-top: 7%;
  }
}
.footer__nav__bottom li:nth-child(2) {
  margin-left: 7%;
}
@media screen and (max-width:760px) {
  .footer__nav__bottom li:nth-child(2) {
    margin: 7% 0 0;
  }
}

.copy-light {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.005em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-top: 56px;
}
.copy-light span {
  font-size: 18px;
  padding-right: 4px;
  padding-left: 1px;
}

@-webkit-keyframes PageTop {
  0% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}

@keyframes PageTop {
  0% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
/*# sourceMappingURL=common.css.map */