body {
  color: #000;
  font-family: var(--font-notosans);
}

.container {
  margin: 0 auto;
  width: 83.7vw;
}

.heading__title {
  align-items: center;
  display: flex;
  opacity: 0;
  transform: translateY(20px);
  transition: .6s;
}

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

.heading__title span {
  font-size: 1.39vw;
  font-weight: 500;
  padding-left: 4.65vw;
}

.heading__lead {
  font-size: 1.2vw;
  margin-top: 1.62vw;
  opacity: 0;
  transform: translateY(20px);
  transition: .8s;
}

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

.heading__word {
  font-size: 1.39vw;
  line-height: 1.8;
  opacity: 0;
  position: relative;
  top: -.8vw;
  transform: translateY(20px);
  transition: .6s;
}

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

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

  .heading__title span {
    font-size: 15px;
    font-weight: 500;
  }

  .heading__lead {
    font-size: 15px;
    margin-top: calc(8px * 4);
    text-align: center;
  }
}

/* -------------------------------------------

    footer

------------------------------------------- */
.footer {
  padding: 6.5vw 0 1.86vw;
}

.footerLogo {
  text-align: center;
}

.footerLogo img {
  filter: blur(15px);
  height: auto;
  opacity: .2;
  transition: all .6s;
  width: 72vw;
}

.footerLogo.is-active img {
  filter: blur(0);
  opacity: 1;
  transition: all .6s;
}

.footerNav {
  margin: 8.37vw 0 0;
}

.footerNav__inner {
  display: grid;
  grid-template-columns: 35% auto;
}

.footerNav__list li {
  font-size: .93vw;
  font-weight: bold;
  letter-spacing: .1em;
}

.footerNav__list li:nth-child(n+2) {
  margin-top: 1.8vw;
}

.footerNav__list li a {
  color: #000;
}

.footerNav__unit {
  display: flex;
  justify-content: space-between;
}

.footerNav__unitBox--title {
  font-size: .93vw;
  font-weight: bold;
}

.footerNav__unitBox--link {
  font-size: 1.76vw;
  margin-top: .83vw;
}

.footerNav__unitBox--link a {
  color: #000;
}

.footerCopyright__inner {
  align-items: center;
  display: flex;
  display: grid;
  grid-template-columns: 35% auto;
  margin: 4.6vw 0 0;
}

.footerCopyright__word {
  font-size: 1vw;
}

.footerCopyright__list {
  align-items: center;
  column-gap: 2.79vw;
  display: flex;
  font-size: .93vw;
}

.footerCopyright__list li a {
  color: #000;
}

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

  .footerLogo img {
    width: 60vw;
  }

  .footerNav {
    margin: calc(8px * 8) 0 0;
  }

  .footerNav__inner {
    display: grid;
    grid-template-columns: 100%;
    row-gap: calc(8px * 7);
  }

  .footerNav__list li {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .1em;
    text-align: center;
  }

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

  .footerNav__unit {
    display: grid;
    grid-template-columns: 100%;
    row-gap: calc(8px * 4);
  }

  .footerNav__unitBox--title {
    font-size: 15px;
    text-align: center;
  }

  .footerNav__unitBox--link {
    font-size: 17px;
    margin-top: calc(8px * 1.5);
    text-align: center;
  }

  .footerCopyright__inner {
    align-items: center;
    display: grid;
    grid-template-columns: 100%;
    margin: calc(8px * 8) 0 0;
  }

  .footerCopyright__word {
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    margin-top: calc(8px * 4);
    order: 2;
    text-align: center;
  }

  .footerCopyright__list {
    flex-direction: column;
    font-size: 15px;
    row-gap: calc(8px * 3);
  }
}


/*========================
  Hamburger
========================*/

.header {
  box-sizing: border-box;
  display: flex;
  height: 50px;
  justify-content: end;
  left: 0;
  padding: 0 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.pageHeader {
  left: 0;
  padding: 2vw;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

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

.pageHeaderLogo img {
  height: auto;
  width: 11vw;
}

.navbar__hamburger {
  display: none;
  height: 25px;
  opacity: 0;
  position: relative;
  transition: .3s ease-out;
  visibility: hidden;
  width: 25px;
}

.pageHeader .navbar__hamburger {
  display: block;
}

.show.navbar__hamburger {
  opacity: 1;
  visibility: visible;
}

.navbar__hamburger::after {
  background: #f0efea;
  border-radius: 50%;
  content: "";
  height: 40px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  z-index: -1;
}

.navbar__hamburger span {
  background: #000;
  height: 2px;
  position: absolute;
  transition: .3s ease-in-out;
  width: 100%;
}

.navbar__hamburger span:nth-child(1) {
  left: 0;
  top: 4px;
}

.drawerOpen .navbar__hamburger span:nth-child(1) {
  transform: translate(0px, 7px) rotate(45deg);
}

.navbar__hamburger span:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.drawerOpen .navbar__hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.navbar__hamburger span:nth-child(3) {
  bottom: 4px;
  left: 0;
}

.drawerOpen .navbar__hamburger span:nth-child(3) {
  transform: translate(0px, -7px) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .pageHeader {
    padding: 16px;
  }

  .pageHeaderLogo img {
    width: 140px;
  }
}

/*========================
  NavDrawer
========================*/

.navdrawer {
  align-items: center;
  background: rgba(240, 239, 234, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  width: 100vw;
  z-index: -1;
}

.navdrawer__nav {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin: 0 auto;
  width: fit-content;
}

.navdrawer__nav a {
  border-bottom: 1px solid rgba(0, 0, 0, .4);
  color: #000;
  font-family: var(--font-notosans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.6;
  opacity: 0;
  padding: 0 20px 16px;
  text-align: center;
  transform: translateY(50px);
  visibility: hidden;
}

#js-headHamburger {
	display: none;
}


@media screen and (max-width: 1080px) {
  .navbar__logo img {
    max-width: 150px;
  }

  .navbar {
    height: 60px;
  }

  .navbar__list {
    display: none;
  }

  .navbar__hamburger {
    align-self: center;
    display: block;
  }

  .navbar__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1230px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 550px) {
  .navbar__logo img {
    max-width: 120px;
  }

  .navbar__inner {
    padding: 0;
  }
	
	#js-headHamburger {
		display: block;
	}
}


.page {
  background: #f0efea;
  padding: calc(8px * 20) 0 calc(8px * 20);
}

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

.page .sectionTitle {
  font-size: 40px;
  margin-bottom: calc(8px * 5);
}

.page .container h2 {
  font-size: 24px;
  line-height: 1.5;
  margin-top: calc(8px * 5);
}

.page .container h4 {
  font-size: 18px;
  line-height: 1.5;
}

.page .container p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: calc(8px * 3);
}

.page .has-fixed-layout {
  margin-top: calc(8px * 4);
}

.page .has-fixed-layout td {
  font-size: 15px;
  line-height: 1.8;
  padding: calc(8px * 2);
  vertical-align: top;
}

.page .wp-block-list {
  font-size: 15px;
  line-height: 1.8;
  margin-top: calc(8px * 3);
}

.page .wp-block-list li {
  padding-left: 1em;
  text-indent: -1em;
}

.page .wp-block-list li:nth-child(n+2) {
  margin-top: calc(8px * 2);
}

@media screen and (max-width: 767px) {
  .page {
    padding: calc(8px* 14) 0 calc(8px* 12);
  }

  .page .sectionTitle {
    font-size: 24px;
    margin-bottom: calc(8px * 5);
  }
  .page .container h2,
  .page .container h3 {
    font-size: 18px;
    margin-top: calc(8px * 4);
  }

  .page .container h4 {
    font-size: 16px;
  }

  .page .container p {
    font-size: 14px;
    margin-top: calc(8px * 3);
  }
}
