html {
  scroll-behavior: smooth;
}

body {
  background: var(--colorLightGray);
  color: var(--colorBase);
  font-family: var(--fontZenKakuGothicNew);
  font-size: var(--fontSize14);
}

.container {
  margin: 0 auto;
  max-width: 1245px;
  width: 100%;
}

.for-sp {
  display: none;
}

.js-scrollEvent {
  opacity: 0;
  transform: translateY(50px);
  transition: .8s;
}

.js-scrollEvent.is-active {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding-top: calc(8px * 10);
}

.main {
  overflow: hidden;
}

.notFound {
  padding: calc(8px * 20) 0;
}

.notFound__content--title {
  font-size: 48px;
  text-align: center;
}

.notFound__content--text {
  font-size: 18px;
  margin-top: calc(8px * 5);
  text-align: center;
}

@media screen and (max-width: 1245px) {
  .container {
    padding: 0 20px;
    width: auto;
  }

  .for-sp {
    display: block;
  }

  .section {
    padding-top: calc(8px * 5);
  }

  .notFound {
    padding: calc(8px * 15) 0;
  }

  .notFound__content--title {
    font-size: 32px;
  }

  .notFound__content--text {
    font-size: 16px;
  }
}


/* =========================================================

    header

========================================================== */
.header {
  background: #fff;
  height: 100px;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 900;
}

.header__inner {
  align-items: center;
  column-gap: 8%;
  display: flex;
  height: 100px;
  padding: 0 3.5%;
}

.headerLogo img {
  position: relative;
  top: -2px;
  width: 200px;
}

.header__in_inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.headerNav__list {
  column-gap: 50px;
  display: flex;
  font-size: 18px;
  font-weight: 500;
}

.headerNav__list li {
  position: relative;
}

.headerNav__list li a {
  color: var(--colorBase);
}

.headerNav__list > li > a.is-active::before {
  background: var(--colorDarkRed);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  content: "";
  height: 10px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: calc(-8px * 2);
  transition: .4s;
  width: 10px;
}

.headerButton__list {
  column-gap: 50px;
  display: flex;
}

.headerButton__listBox {
  text-align: center;
}

.headerButton__listBox--icon img {
  height: 35px;
  width: auto;
}

.headerButton__listBox--word {
  color: var(--colorBase);
  font-size: 14px;
  font-weight: 500;
  margin-top: calc(8px * .5);
}

.headerToggle {
  display: none;
}

.toggleMenu {
  display: none;
}

@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }

  .headerLogo img {
    width: 130px;
  }

  .header__inner {
    display: flex;
    height: 60px;
    justify-content: space-between;
    padding: 0 0 0 20px;
  }

  .headerNav__list {
    display: none;
  }

  .headerButton__list {
    display: none;
  }

  .header__in_inner {
    display: none;
  }

  .headerToggle {
    cursor: pointer;
    display: block;
    height: 60px;
    position: relative;
    width: 60px;
  }

  .headerToggle span {
    background: var(--colorBase);
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transition: .4s;
    width: 30px;
  }

  .headerToggle span:nth-of-type(1) {
    top: 34%;
  }

  .headerToggle span:nth-of-type(3) {
    top: 64%;
  }

  .is-active .headerToggle span:nth-of-type(1),
  .is-active .headerToggle span:nth-of-type(3) {
    top: 50%;
  }

  .is-active .headerToggle span:nth-of-type(1) {
    transform: rotate(45deg);
  }

  .is-active .headerToggle span:nth-of-type(2) {
    display: none;
  }

  .is-active .headerToggle span:nth-of-type(3) {
    transform: rotate(-45deg);
  }

  .toggleMenu {
    align-items: center;
    background: #fff;
    display: flex;
    height: calc(100vh - 60px);
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }

  .toggleMenuList li {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  }

  .toggleMenuList li:nth-child(n+2) {
    margin-top: calc(8px * 4);
  }

  .toggleMenuList li a {
    color: var(--colorBase);
  }

  .toggleMenuButton {
    margin-top: calc(8px * 5);
  }

  .toggleMenuButton__list {
    column-gap: calc(8px * 3);
    display: flex;
    justify-content: center;
  }

  .toggleMenuButton__listBox {
    text-align: center;
  }

  .toggleMenuButton__listBox--icon img {
    height: 30px;
    width: auto;
  }

  .toggleMenuButton__listBox--word {
    color: var(--colorBase);
    font-size: var(--fontSize14);
    margin-top: calc(8px * 1);
  }
}

/* =========================================================

    footer

========================================================== */
.footer {
  border-top: 1px solid #545454;
  margin: 0 2%;
  padding: calc(8px * 7) 0 calc(8px * 10);
}

.footerMain {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1040px;
  width: 100%;
}

.footerMainNav {
  column-gap: calc(8px * 10);
  display: flex;
}

.footerMainNav__list {
  font-size: var(--fontSize16);
  font-weight: 400;
}

.footerMainNav__list li a {
  position: relative;
}

.footerMainNav__list li a.is-active::before {
  background: #9f3324;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  height: 10px;
  left: calc(-8px * 2);
  margin-top: -5px;
  position: absolute;
  top: 50%;
  width: 8px;
}

.footerMainNav__list li:nth-child(n+2) {
  margin-top: calc(8px * 3);
}

.footerMainNav__list li a {
  color: var(--colorBase);
}

.footerOverview__logo {
  text-align: center;
}

.footerOverview__logo img {
  height: 60px;
  width: auto;
}

.footerOverview__logo {
  padding-bottom: calc(8px * 6);
}

.footerOverview__list {
  align-items: baseline;
  column-gap: calc(8px * 4);
  display: grid;
  grid-template-columns: 20% 75%;
}

.footerOverview__list:nth-child(n+3) {
  margin-top: calc(8px * 2);
}

.footerOverview__list--text {
  line-height: 1.6;
}

.footerOverview__list--text.is-borderLine {
  text-decoration: underline;
}

.footer__copyright {
  font-size: 14px;
  font-weight: 400;
  margin: calc(8px * 4) auto 0;
  max-width: 1040px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .footer {
    margin: 0 20px;
    padding: calc(8px * 4) 0 calc(22px * 5);
  }

  .footerMain {
    flex-wrap: wrap;
  }

  .footerMainNav {
    align-items: center;
    display: grid;
    grid-template-columns: 100%;
    row-gap: calc(8px * 3);
    width: 100%;
  }

  .footerMainNav__list {
    text-align: center;
    width: 100%;
  }

  .footerMainNav__list li:nth-child(n+2) {
    margin-top: calc(8px * 3);
  }

  .footerMainNav__list li a {
    color: var(--colorBase);
  }

  .footerOverview__logo {
    margin-top: calc(8px * 6);
  }

  .footerOverview__logo img {
    height: 35px;
  }

  .footerOverview__logo {
    padding-bottom: calc(8px * 4);
  }

  .footerOverview__list {
    grid-template-columns: 100%;
  }

  .footerOverview__list:nth-child(n+3) {
    margin-top: calc(8px * 3);
  }

  .footerOverview__list--text {
    margin-top: calc(8px * 1);
  }

  .footer__copyright {
    font-size: 12px;
    font-weight: 400;
    margin: calc(8px * 4) auto 0;
    max-width: 1040px;
    text-align: center;
  }
}



/* ------------------------------------------------------------------------
    fixBtn
------------------------------------------------------------------------ */
.fixBtn{
  display: none;
  background-color: rgba(240, 245, 184, .5);
  z-index: 9999;
  width: 100%;
  bottom: 0;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: fixed;
}
.fixBtn > a{
  font-weight: 600;
  background-color: #FFF;
  display: block;
  text-align: center;
  width: 48%;
  padding: 10px 20px;
  color: var(--colorBase);
  font-size: 14px;
}
.fixBtn > .fixBtn--nunber > img {
  height: auto;
  margin-right: 10px;
  width: 14px;
}
.fixBtn > .fixBtn--access > img {
  height: auto;
  margin-right: 10px;
  width: 26px;
}
@media screen and (max-width: 767px) {
  .fixBtn{
    display: flex;

  }
}