@charset "UTF-8";
@font-face {
  font-family: "Futura";
  src: url("../fonts/futura/Futura PT Book.ttf");
}
html {
  scroll-padding-top: 6rem;
  height: 100%;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header {
  width: 100%;
  height: 100%;
}
.header__container {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.header__container--logo {
  margin: 20px 64px;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .header__container--logo {
    margin: 16px 20px;
  }
}
.header__container--logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .header__container--logo a {
    flex-direction: column;
  }
}
@media screen and (max-width: 800px) {
  .header__container--logo a {
    align-items: flex-start;
  }
}
.header__container--logo a img {
  width: 100%;
  max-width: 169px;
  margin-right: 24px;
}
@media screen and (max-width: 1300px) {
  .header__container--logo a img {
    max-width: 180px;
  }
}
@media screen and (max-width: 800px) {
  .header__container--logo a img {
    max-width: 140px;
  }
}
.header__container--logo a p {
  font-size: 11px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #B3AEA9;
}
@media screen and (max-width: 1300px) {
  .header__container--logo a p {
    font-size: 10px;
    padding-top: 5px;
  }
}
.header__container .siteimg {
  display: none;
}
.header__menu {
  width: 120px;
  height: 120px;
  border-bottom-left-radius: 85%;
  background: rgb(214, 232, 219);
  background: linear-gradient(230deg, rgba(214, 232, 219, 0.95) 0%, rgba(168, 222, 207, 0.95) 20%, rgba(156, 212, 226, 0.95) 100%);
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1300px) {
  .header__menu {
    width: 100px;
    height: 100px;
  }
}
.header__menu > p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #fff;
  opacity: 1;
  transition: 0.3s;
  position: fixed;
  width: 120px;
  height: 120px;
  text-align: center;
  padding: 40px;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .header__menu > p {
    padding: 30px;
  }
}
.header__menu > p:hover {
  opacity: 0.5;
}
.header__menu .closeMenu {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: none;
  z-index: 3;
  cursor: pointer;
}
.header__menu .closeMenu::after, .header__menu .closeMenu::before {
  position: absolute;
  left: 15px;
  content: " ";
  height: 40px;
  width: 2px;
  background-color: #fff;
}
.header__menu .closeMenu::before {
  transform: rotate(45deg);
}
.header__menu .closeMenu::after {
  transform: rotate(-45deg);
}
.header__menu--content {
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  overflow-y: auto;
}
.header__menu--content .containerBlock {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  column-gap: 100px;
}
@media screen and (max-width: 1000px) {
  .header__menu--content .containerBlock {
    grid-template-columns: auto 1fr;
  }
}
@media screen and (max-width: 620px) {
  .header__menu--content .containerBlock {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 40px;
  }
}
.header__menu--content .containerBlock .menuBlock {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .header__menu--content .containerBlock .menuBlock {
    margin-right: 0;
  }
}
.header__menu--content .containerBlock .menuBlock a {
  text-decoration: none;
  cursor: pointer;
}
.header__menu--content .containerBlock .menuBlock__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.header__menu--content .containerBlock .menuBlock__item--title {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
@media screen and (max-width: 1300px) {
  .header__menu--content .containerBlock .menuBlock__item--title {
    margin-bottom: 20px;
  }
}
.header__menu--content .containerBlock .menuBlock__item--title h2 {
  font-size: 32px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #fff;
}
@media screen and (max-width: 1300px) {
  .header__menu--content .containerBlock .menuBlock__item--title h2 {
    font-size: 24px;
  }
}
.header__menu--content .containerBlock .menuBlock__item--title p {
  font-size: 14px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #EEEEEE;
  padding-top: 12px;
}
@media screen and (max-width: 1300px) {
  .header__menu--content .containerBlock .menuBlock__item--title p {
    font-size: 12px;
    padding-top: 4px;
  }
}
.header__menu--content .containerBlock .menuBlock__item--sub {
  display: flex;
  margin-bottom: 32px;
  align-items: flex-end;
}
@media screen and (max-width: 1300px) {
  .header__menu--content .containerBlock .menuBlock__item--sub {
    margin-bottom: 16px;
  }
}
.header__menu--content .containerBlock .menuBlock__item--sub h3 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #fff;
}
@media screen and (max-width: 1300px) {
  .header__menu--content .containerBlock .menuBlock__item--sub h3 {
    font-size: 16px;
  }
}
.header__menu--content .containerBlock .menuBlock__item--sub p {
  font-size: 11px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #EEEEEE;
  padding-left: 10px;
}
@media screen and (max-width: 1300px) {
  .header__menu--content .containerBlock .menuBlock__item--sub p {
    font-size: 10px;
    padding-left: 8px;
  }
}
.header__menu--content .containerBlock .menuBlock__item--type {
  font-size: 12px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #EEEEEE;
  padding-bottom: 16px;
}
.header__menu--content .containerBlock .menuBlock__item--type.marginTop_32 {
  margin-top: 32px;
}
.header__menu--content .containerBlock .menuBlock__item--linkfaqcontact {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 1300px) {
  .header__menu--content .containerBlock .menuBlock__item--linkfaqcontact {
    margin-bottom: 24px;
  }
}
.header__menu--content .containerBlock .menuBlock__item--linkfaqcontact img {
  width: 100%;
  max-width: 16px;
}
.header__menu--content .containerBlock .menuBlock__item--linkfaqcontact p {
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin-left: 8px;
}
.header__menu--content .containerBlock .menuBlock__item--social {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1300px) {
  .header__menu--content .containerBlock .menuBlock__item--social {
    display: none;
  }
}
.header__menu--content .containerBlock .menuBlock__item--social p {
  font-size: 12px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #fff;
  letter-spacing: 1px;
  text-align: right;
}
.header__menu--content .containerBlock .menuBlock__item--social .socialmedia {
  display: flex;
  margin-top: 13px;
}
.header__menu--content .containerBlock .menuBlock__item--social .socialmedia a {
  margin-left: 24px;
  text-decoration: none;
  cursor: pointer;
}
.header__menu--content .containerBlock .menuBlock__item--social .socialmedia a i {
  font-size: 20px;
  color: #fff;
}

.expand {
  width: 200vw;
  height: 200vw;
  transition: all 1s ease;
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .expand {
    width: 200vh;
    height: 200vh;
  }
}