/* CSS Document */
header {
   background-image: linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(0, 0, 0, 0.05) calc(50% - 0.5px), rgba(0, 0, 0, 0.05) calc(50% + 0.5px), transparent calc(50% + 0.5px));
   margin: 0 100px;
   border-left: 1px solid rgba(0, 0, 0, 0.05);
   border-right: 1px solid rgba(0, 0, 0, 0.05);

}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-left: 15px;
  margin-right: 15px;
  padding: 20px 0;
  justify-content: space-between;
}

.h1block {
  display: flex;
  align-items: center;
}
.header__logo {
  width: 300px;
  height: auto;
}
.header__logo__text {
  font-size: 1.1rem;
  margin-left: 20px;
  margin-top: 15px;
}
@media screen and (max-width: 1200px) {
  .h1block {
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }
.header__logo__text {
  font-size: 1.0rem;
  margin-left: 20px;
  margin-top: -10px;
}
}

@media screen and (max-width: 768px) {
  .h1block {
    flex-direction:row;
    align-items: center;
    gap: 5px;
  }
 .header__logo__text {
  font-size: 0.8rem;
  margin-left: 5px;
  margin-top: 5px;
} 
}


.header__nav ul {
  display: flex;
  width: 430px;
  align-items: center;
  justify-content: end;
  flex-wrap: nowrap;
  gap: 20px;
}

.header__nav ul li {
  list-style: none;
  width: 50%;
}


  @media screen and (max-width: 768px) {

  /* ========================================
     ヘッダー
     ======================================== */
  header {
    position: fixed;
    width: 100%;
    height: 70px;
    background: var(--white-color);
    z-index: 100;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
  }
  .header__inner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-left: 10px;
    margin-right: 10px;
    padding: 15px 0;
  }

  .header__logo {
    width: 170px;
  }
  .header__nav  {
    display: none;
  }

  .header__nav ul {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .header__nav ul li {
    width: auto;
    flex: 1;
  }
  }

/* CSS Document */
.page-mv__section .mv-image {
  width: calc(100% + 110px);
  height: 50vh;
  position: relative;
  margin-top: 50px;
  background-size: cover;
  background-position: top right;
}

aside {
  width: 100px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1000;
}

aside .side_logo {
  width: 75px;
  position: absolute;
  top: 20px;
  left: 12px
}

.side.active .side_logo {
  display: none;
}
aside .side__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
aside .side_logo {
  display: none;
}
  /* サイドバー調整 */
  aside.side {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    width: 60px;
  }

  aside .side__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}
}



aside.active {
  z-index: 1100;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* サイドの数字ナビゲーション */
.section-numbers {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: #999;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family-obun);
}

.section-number:hover {
  color: var(--corporate-color);
  border-color: var(--corporate-color);
  background: rgba(170, 30, 58, 0.1);
}

.section-number.active {
  color: white;
  background: var(--corporate-color);
  border-color: var(--corporate-color);
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .section-numbers {
    left: -110px;
    bottom: 20px;
    transform: none;
    flex-direction: row;
    gap: 10px;
  }

  .section-number {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  
}

.right_side {
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100vh;
  z-index: 1000;
  padding-left: 25px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .right_side {
  display: none;
}
}




.wrapper {
 background-image: linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(0, 0, 0, 0.05) calc(50% - 0.5px), rgba(0, 0, 0, 0.05) calc(50% + 0.5px), transparent calc(50% + 0.5px));
 margin: 0 100px;
 border-left: 1px solid rgba(0, 0, 0, 0.05);
 border-right: 1px solid rgba(0, 0, 0, 0.05);
}
/* タブレット以下 */
@media screen and (max-width: 1024px) {
  :root {
    --font-base: 1.4rem;
    --font-sm: 1.2rem;
    --font-s: 1.0rem;
    --font-lg: 1.8rem;
    --font-xl: 2.8rem;
  }


  /* 基本レイアウト調整 */
  .wrapper {
    margin: 0 20px;
  }

  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    margin: 0;
    border: none;
  }
  }

.footer__contact {
  background-image: url(/assets/img/footer_contact_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .footer__contact {
    height: auto;
    padding: 50px 0;
    background-position: top center;
  } 
  
}

footer {
  position: relative;
  z-index: 10;
}

footer .container {
  max-width: 750px;
  width: 96%;
  display: flex;
}
.container .footer__contact__inner {
  width: calc(100% - 150px);
}

.container .footer__contact__title {
  font-size: 5.5rem;
  font-weight: 200;
  color: #e2ce98;
  line-height: 1;
  margin-bottom: 20px;
  font-family: var(--font-family-obun);
}
.container .footer__contact__text {
  font-size: 1.3rem;
  color: var(--white-color);
}
.container .footer__contact__btn {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: solid 1px var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* バウンス効果（色変化なし） */
.container .footer__contact__btn:hover {
  transform: scale(1.1);
  /* border-color は変更しない */
  /* border-width も変更しない */
}

.container .footer__contact__btn:active {
  transform: scale(0.95);
}

/* 矢印アニメーション */
.container .footer__contact__btn figure {
  position: relative;
  z-index: 3;
  margin: 0;
  width: 20px;
  height: 20px;
}

.container .footer__contact__btn figure img {
  opacity: 0;
  width: 20px;
  height: 20px;
}

.container .footer__contact__btn figure::before,
.container .footer__contact__btn figure::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(/assets/img/arrow_01.svg) no-repeat center;
  background-size: 20px;
  transition: all 0.4s ease;
}

.container .footer__contact__btn figure::before {
  opacity: 1;
  transform: translateX(0);
}

.container .footer__contact__btn figure::after {
  opacity: 0;
  transform: translateX(-30px);
}

.container .footer__contact__btn:hover figure::before {
  opacity: 0;
  transform: translateX(30px);
}

.container .footer__contact__btn:hover figure::after {
  opacity: 1;
  transform: translateX(0);
}



@media screen and (max-width: 768px) {
.container .footer__contact__title {
  text-align: center;
  font-size: 2.8rem;
}
  .container .footer__contact__text {
    font-size: 1.25rem;
  } 
.container .footer__contact__btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 40px auto 0 auto;
  border: solid 1px var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
}


.container .footer__contact__btn figure {
  width: 20px;
}
.container a {
  text-decoration: none;
}

.footer {
  background-color: var(--black-color);
  color: var(--white-color);
  padding:60px 0;
}

.footer .contact_btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
.footer .contact_btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
  
}

.footer__logo,.footer__copy {
  margin-left: 50px;
}

.footer__logo figure {
  width: 300px;

}

.corp__block__ttl {
  font-size: 1.4rem;
  margin-left: 25px;
  margin-top: 30px;
}

.corp__ttl {
  font-size: 1.4rem;
  margin-top: 10px;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__nav {
  max-width:150px;
  margin: 0 auto;
}
}

.footer__nav__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 1.4rem;
  text-decoration: none;
  width: 100%;
  flex-wrap: wrap;
}
.footer__nav__list > li {
  background-image: url(/assets/img/arrow_02.svg);
  background-repeat: no-repeat;
  background-position: left 20px top 6px;
  background-size: 6px;
  padding-left: 35px;
  width: 33%;
  margin-bottom: 40px;
}
#fullscreen-menu .footer__nav__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 1.4rem;
  text-decoration: none;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

#fullscreen-menu .footer__nav__list > li {
  background-repeat: no-repeat;
  background-position: left 0 top;
  background-size: 30px;
  padding-left: 45px;
  padding-top: 1px;
  font-size: 1.8rem;
}

#fullscreen-menu .footer__nav__list > li:nth-child(1) {
  background-image: url(/assets/img/mainnav_icon01.svg);
}
#fullscreen-menu .footer__nav__list > li:nth-child(2) {
  background-image: url(/assets/img/mainnav_icon02.svg);
}
#fullscreen-menu .footer__nav__list > li:nth-child(3) {
  background-image: url(/assets/img/mainnav_icon03.svg);
}

@media screen and (max-width: 768px) {
#fullscreen-menu .footer__nav__list {
  display: block;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 1.3rem;
  text-decoration: none;
  width: 155px;
  margin: 0 auto 60px auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__nav__list > li {
  width: 100%;
  margin-bottom: 20px;
}
  #fullscreen-menu .footer__nav__list > li {
  background-repeat: no-repeat;
  background-size: 25px;
  font-size: 1.6rem;
  margin-bottom: 30px;
  width: 100%;
}
  
}

.footer__nav__list .footer__subnav {
  margin-top: 15px;
}
.footer__nav__list .footer__subnav li {
  list-style: none;
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.6;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.footer__nav__list .footer__subnav li::before {
  content: "・ ";
}

#fullscreen-menu .footer__nav__list .footer__subnav {
  margin-top: 30px;
}


#fullscreen-menu .footer__nav__list .footer__subnav li {
  list-style: none;
  margin-top: 15px;
  font-size: 1.3rem;
}

#fullscreen-menu  .footer__nav__list .footer__subnav li::before {
  content: "・ ";
  color: var(--white-color);
}


.footer__nav__list a{
      color: var(--white-color);
}

.banner__block .banner__list {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 5px;
}

.footer__right__block {
  margin: 0 50px;
}

.footer__policy {
  margin: 10px 50px 0 0;
}

.footer__policy ul {
  display: flex;
  justify-content: end;
  align-items: center;
}

.footer__policy ul li {
  list-style: none;
  margin-left: 40px;
  font-size: 1.1rem;
}
.footer__policy ul li::before {
  content: "- ";
}

.footer__copy {
  font-size: 1.2rem;
  letter-spacing: 0.07em;
}

@media (max-width: 768px) {
    .footer {
    padding: 40px 0;
  }
}

  .footer__logo,
  .footer__copy {
    margin-left: 20px;
  }
  .footer__address__text {
      font-size: 1.3rem;
      margin-top: 10px;
    }

  @media (max-width: 768px) {
    .footer__logo,
  .footer__copy {
    margin-left: 0;
    text-align: center;
  }
  .footer__logo figure {
    width: 250px;
    margin: 0 auto;
  }
    .corp__block__ttl {
    margin-left: 0;
    margin-top: 20px;
  }

  .corp__ttl {
    font-size: 1.2rem;
  }

    
  .footer__address__text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 10px;
  }
  }


  .footer__right__block {
    margin: 30px 20px 0 20px;
  }

  .footer__nav__list {
    font-size: 1.2rem;
  }

  @media screen and (max-width: 768px) {
    .footer__nav__list {
    width: 300px;
    }

    .container .footer__contact__inner {
    width: 270px;
    margin: 0 auto;
  }
  


  .footer__nav__list .footer__subnav {
    margin-top: 10px;
    display: none;
  }

  .footer__nav__list .footer__subnav li {
    font-size: 1.0rem;
    margin-top: 5px;
  }


  .footer__policy {
    max-width:350px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .footer__policy ul {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer__policy ul li {
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 5px;
    font-size: 1.0rem;
  }

  .footer__copy {
    font-size: 1.0rem;
    margin-top: 8px;
  }

}


.page-mv__section {
  margin: 0 auto;
  padding: 90px 0 150px 0;
  position: relative;
  z-index: 5;
}
.page-mv__section .mv-ttl,
.page-mv__section .mv-text {
  margin-left: 15px;
}

.page-mv__section .mv-ttl h2 {
  font-size: 7rem;
  font-weight: 200;
  color: #a00025;
  line-height: 1;
  font-family: var(--font-family-obun);
  letter-spacing: 0.1em;
}

.page-mv__section .mv-ttl .h2sub {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-left: 8px;
}

.page-mv__section .mv-text p {
  margin-top: 15px;
  font-size: 2.2rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
    /* ========================================
     ページMVセクション
     ======================================== */
  .page-mv__section {
    padding: 110px 0 50px 0;
  }

  .page-mv__section .mv-ttl {
    margin-left: 10px;
    margin-bottom: 30px;
  }

  .page-mv__section .mv-ttl h2 {
    font-size: 4rem;
    line-height: 1.1;
  }

  .page-mv__section .mv-ttl .h2sub {
    font-size: 1.2rem;
    margin-left: 5px;
  }
  .page-mv__section .mv-text {
    margin-left: 10px;
    margin-bottom: 30px;
    position: relative;
  }
  .page-mv__section .mv-text p {
    font-size: 1.6rem;
    margin-top: 10px;

  }

  .page-mv__section .mv-image {
    width: calc(100% + 20px);
    height: 30vh;
    margin-top: 20px;
  }
  
}
