@charset "UTF-8";
/*  _fonts.scss
    フォントを管理
------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Open+Sans:wght@300;400;500;600;700;800&family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap");
/*  _variables.scss
    変数を管理
------------------------ */
/*  ブレイクポイント
------------------------ */
@media screen and (max-width: 1079px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp {
    display: block;
  }
}

body {
  font-family: "use-SourceHanSansJP";
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1rem;
}

.futura {
  font-family: "futura-pt", sans-serif;
}

.Yu {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP";
  font-weight: 700;
}

.kozuka {
  font-family: kozuka-gothic-pr6n, sans-serif;
}

.bolder {
  font-weight: 800;
}

.bold {
  font-weight: bold;
}

.medium {
  font-weight: 500;
}

.normal {
  font-weight: normal;
}

/*  _common.scss
    共通部分を管理
------------------------ */
/*  @useと@forward
    このファイルの中で、mixinや変数を使う場合は、
    mixinや変数が定義されたファイルを@useで指定し、
    「as *」で使用場所を限定させないようにする。
------------------------ */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "futura-pt", serif;
  line-height: 1.2;
  color: black;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 146px;
}
@media screen and (max-width: 1690px) {
  body {
    padding-top: 142px;
  }
}
@media screen and (max-width: 1080px) {
  body {
    padding-top: 102px;
  }
}
@media screen and (max-width: 890px) {
  body {
    padding-top: 92px;
  }
}
@media screen and (max-width: 690px) {
  body {
    padding-top: 82px;
  }
}
@media screen and (max-width: 480px) {
  body {
    padding-top: 60px;
  }
}

a {
  text-decoration: none;
  color: black;
}

img {
  max-width: 100%;
}

h1 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.6rem;
}

.fv {
  text-align: center;
}

h2 {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 4rem;
  font-size: 8.7rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1690px) {
  h2 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 890px) {
  h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 3rem;
  }
}

/*  _header.scss
------------------------ */
.header-box {
  background-color: white;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
}
@media screen and (max-width: 1690px) {
  header {
    padding: 0 52px;
  }
}
@media screen and (max-width: 1080px) {
  header {
    padding: 0 65px;
  }
}
@media screen and (max-width: 890px) {
  header {
    padding: 0 50px;
  }
}
@media screen and (max-width: 690px) {
  header {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding: 0 30px;
  }
}
header h1 {
  line-height: 140px;
}
@media screen and (max-width: 1080px) {
  header h1 {
    line-height: 100px;
  }
}
@media screen and (max-width: 890px) {
  header h1 {
    line-height: 90px;
  }
}
@media screen and (max-width: 690px) {
  header h1 {
    line-height: 80px;
  }
}
@media screen and (max-width: 480px) {
  header h1 {
    line-height: 60px;
  }
}
header h1 a {
  font-size: 2rem;
  display: inline-block;
}
@media screen and (max-width: 1080px) {
  header h1 a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1690px) {
  header h1 a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 480px) {
  header h1 a {
    font-size: 13px;
    letter-spacing: 0.3rem;
  }
}
header .btn-wrap {
  position: relative;
  z-index: 9999;
}
header .btn-wrap img {
  height: 100px;
}
@media screen and (max-width: 1080px) {
  header .btn-wrap img {
    height: 60px;
  }
}
@media screen and (max-width: 690px) {
  header .btn-wrap img {
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  header .btn-wrap img {
    height: 33px;
  }
}
header .btn-wrap .active {
  display: none;
}
header .open .no-active {
  display: none;
}
header .open .active {
  display: block;
}

nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
  background-color: rgb(255, 255, 255);
}

/*OPEN時の動き*/
nav.open {
  display: block;
}

.menu {
  text-transform: uppercase;
}
.menu ul {
  list-style: none;
  margin: 0 auto;
  width: 90vw;
  max-width: 1500px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.menu ul a {
  display: block;
  height: auto;
}
.menu ul li {
  color: white;
  -webkit-text-stroke: 1px black;
  letter-spacing: -0.2rem;
  font-size: 3.5rem;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 850px;
  padding-right: 190px;
  margin: 0 auto;
}
@media screen and (max-width: 1690px) {
  .menu ul li {
    padding-right: 120px;
    max-width: 750px;
  }
}
@media screen and (max-width: 1080px) {
  .menu ul li {
    font-size: 3rem;
    max-width: 650px;
  }
}
@media screen and (max-width: 690px) {
  .menu ul li {
    font-size: 2rem;
    padding-right: 70px;
    max-width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .menu ul li {
    letter-spacing: -0.1rem;
    font-size: 1.3rem;
    max-width: 300px;
  }
}
.menu ul p {
  margin: 0;
}
.menu ul p:nth-child(2) img {
  width: 3.5rem;
}
@media screen and (max-width: 1080px) {
  .menu ul p:nth-child(2) img {
    width: 3rem;
  }
}
@media screen and (max-width: 690px) {
  .menu ul p:nth-child(2) img {
    width: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .menu ul p:nth-child(2) img {
    width: 1.3rem;
  }
}
.menu ul p:nth-child(2) .active {
  display: block;
}
.menu ul p:nth-child(2) img.none {
  display: none;
}
.menu ul p.padding-adj {
  padding: 0px 13px;
}
@media screen and (max-width: 1690px) {
  .menu ul p.padding-adj {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1080px) {
  .menu ul p.padding-adj {
    padding: 0 10px 0 8px;
  }
}
@media screen and (max-width: 690px) {
  .menu ul p.padding-adj {
    padding: 0 5px 0 3px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 480px) {
  .menu ul p.padding-adj {
    padding: 0 2px;
  }
}
.menu ul a li:hover {
  color: black;
}
.menu ul a li:hover p .active {
  display: none;
}
.menu ul a li:hover p img.none {
  display: block;
}

.tohome {
  text-transform: uppercase;
  font-size: 4rem;
  color: black;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  letter-spacing: -0.2rem;
  position: fixed;
  top: 190px;
  right: 63px;
}
.tohome a {
  display: inline-block;
}
@media screen and (max-width: 1690px) {
  .tohome {
    font-size: 3.5rem;
    right: 54px;
    top: 166px;
  }
}
@media screen and (max-width: 1080px) {
  .tohome {
    font-size: 2.6rem;
    top: 125px;
    right: 61px;
  }
}
@media screen and (max-width: 890px) {
  .tohome {
    font-size: 2.2rem;
    right: 53px;
    top: 125px;
  }
}
@media screen and (max-width: 690px) {
  .tohome {
    font-size: 2rem;
    top: 100px;
    right: 34px;
    letter-spacing: -0.1rem;
  }
}
@media screen and (max-width: 480px) {
  .tohome {
    font-size: 1.5rem;
    right: 26px;
    top: 85px;
  }
}

footer {
  text-align: center;
  font-size: 10px;
  font-family: "sofia-pro", sans-serif;
  font-weight: 600;
  padding: 2.5rem 0 3.5rem;
}
@media screen and (max-width: 480px) {
  footer {
    padding: 2.5rem 0 1.5rem;
  }
}

/* ------------------------ */
/* ------------------------ */
main {
  padding: 0 2%;
}
main .fv h2 {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 480px) {
  main .fv h2 {
    margin-bottom: 0.3rem;
  }
}
main .fv img {
  width: 80%;
  max-width: 1100px;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 690px) {
  main .fv img {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 480px) {
  main .fv img {
    margin-bottom: 12px;
  }
}
main .message {
  text-align: justify;
  line-height: 2.5rem;
  letter-spacing: 3px;
  font-size: 26px;
  position: relative;
}
@media screen and (max-width: 1690px) {
  main .message {
    font-size: 22px;
  }
}
@media screen and (max-width: 1080px) {
  main .message {
    font-size: 18px;
  }
}
@media screen and (max-width: 890px) {
  main .message {
    font-size: 1rem;
    padding: 0 2%;
  }
}
@media screen and (max-width: 480px) {
  main .message {
    margin-bottom: 25px;
    line-height: 2rem;
  }
}
main .message p {
  margin: 0px 5% 35px;
}
main .message p.margin-adj {
  text-align: center;
  margin-top: 10px;
}

.philosophy-message {
  display: none;
  z-index: -1000;
  position: absolute;
  top: 12%;
  right: 7%;
  width: 70px;
}
@media screen and (max-width: 1690px) {
  .philosophy-message {
    width: 50px;
  }
}
@media screen and (max-width: 1080px) {
  .philosophy-message {
    display: none;
  }
}/*# sourceMappingURL=philosophy.css.map */