@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ffffff;
  border-right: 2px solid #0a2054;
  border-left: 2px solid #0a2054;
  border-bottom: 2px solid #0a2054;
  width: 100%;
  max-width: 375px;
  z-index: 100;
}
.header > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header > .container > .box-logo {
  margin-right: 19px;
}
.header > .container > .box-logo > .link > .image {
  width: 69px;
  height: 43px;
}
.header > .container > .box-weather {
  padding-right: 19px;
  margin-right: 19px;
  border-right: 2px solid #0a2054;
}
.header > .container > .box-weather > .label,
.header > .container > .box-weather > .weather,
.header > .container > .box-weather > .temp {
  font-size: 14px;
}
.header > .container > .box-weather > .weather,
.header > .container > .box-weather > .temp {
  display: inline-block;
}
.header > .container > .box-weather > .temp {
  margin-right: 9px;
}
.header > .container > .box-date {
  padding-right: 19px;
  margin-right: 19px;
  border-right: 2px solid #0a2054;
}
.header > .container > .box-date > .year,
.header > .container > .box-date > .date {
  font-size: 14px;
}
.header > .container > .hamburger-menu {
  position: relative;
  width: 21px;
  height: 20px;
  z-index: 5;
  cursor: pointer;
}
.header > .container > .hamburger-menu > .line {
  position: absolute;
  left: 0;
  background-color: #0a2054;
  width: 100%;
  height: 2px;
}
.header > .container > .hamburger-menu > .line:first-child {
  top: 0;
}
.header > .container > .hamburger-menu > .line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header > .container > .hamburger-menu > .line:last-child {
  bottom: 0;
}
.header > .container > .hamburger-menu > .line.active {
  background-color: #ffffff;
}
.header > .container > .hamburger-menu > .line.active:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 11px;
}
.header > .container > .hamburger-menu > .line.active:nth-child(2) {
  display: none;
}
.header > .container > .hamburger-menu > .line.active:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 8px;
}
.header > .container > .menu-sp {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0a2054;
  width: 100%;
  height: 100vh;
  padding: 18px;
  z-index: 3;
}
.header > .container > .menu-sp > .list-menu > .menu {
  border-bottom: 2px solid #ffffff;
}
.header > .container > .menu-sp > .list-menu > .menu:first-child {
  border-bottom: 0;
  width: 78px;
  margin-bottom: 20px;
}
.header > .container > .menu-sp > .list-menu > .menu:first-child > .link {
  padding: 0 0 0 8px;
}
.header > .container > .menu-sp > .list-menu > .menu > .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  letter-spacing: 0.07em;
  padding: 24px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header > .container > .menu-sp > .list-menu > .menu > .link > .japanese {
  font-size: 12px;
  margin-left: 16px;
}
.header > .container > .menu-sp > .list-menu > .menu > .link:hover {
  background-color: #ffffff;
  color: #0a2054;
}
.header > .container > .menu-sp > .list-menu > .menu > .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  letter-spacing: 0.07em;
  padding: 24px 0 5px;
}
.header > .container > .menu-sp > .list-menu > .menu > .text > .japanese {
  font-size: 12px;
  margin-left: 16px;
}
.header > .container > .menu-sp > .list-menu > .menu > .list-works {
  margin: 12px 12px 24px;
}
.header > .container > .menu-sp > .list-menu > .menu > .list-works > .works {
  margin-bottom: 12px;
}
.header > .container > .menu-sp > .list-menu > .menu > .list-works > .works > .link {
  color: #ffffff;
  font-size: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header > .container > .menu-sp > .list-menu > .menu > .list-works > .works > .link:hover {
  background-color: #ffffff;
  color: #0a2054;
}
.header > .container > .menu-sp.active {
  display: block;
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.footer {
  background-color: #0a2054;
  padding: 47px 16px 41px;
}
.footer > .container > .logo {
  width: 114px;
  margin: 0 auto 33px;
}
.footer > .container > .copyright {
  color: #ffffff;
  font-size: 12px;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.07em;
}

body {
  font-family: "neue-haas-grotesk-display", "Zen Kaku Gothic New", sans-serif;
  color: #0a2054;
  font-weight: 600;
}
body.fixed {
  overflow: hidden;
}

img {
  width: 100%;
  vertical-align: top;
}

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

.background > .container > .image {
  visibility: inherit;
  position: fixed;
  inset: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px;
  border: none;
  margin: auto;
  display: block;
  width: 0px;
  height: 0px;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
}

.section-main {
  background-color: #efefef;
  border-right: 2px solid #0a2054;
  border-left: 2px solid #0a2054;
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
}

section {
  position: relative;
  border-top: 2px solid #0a2054;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #0a2054;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 0.07em;
  max-width: 342px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 8px;
}
.section-title > .japanese {
  display: inline-block;
  font-size: 14px;
  margin-left: 22px;
  letter-spacing: 0.02em;
}

.button {
  text-align: center;
}
.button > .link {
  border: 2px solid #0a2054;
  border-radius: 50px;
  background-color: #ffffff;
  display: inline-block;
  width: 100%;
  color: #0a2054;
  font-size: 11px;
  letter-spacing: 0.07em;
  padding: 9px 0 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button > .link:hover {
  background-color: #0a2054;
  color: #ffffff;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.fade-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1s cubic-bezier(0.42, 0, 0.21, 1);
  transition: all 1s cubic-bezier(0.42, 0, 0.21, 1);
}

.button-article {
  border: 2px solid #0a2054;
  border-radius: 50px;
  background-color: #ffffff;
  width: 100%;
  color: #0a2054;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.07em;
  padding: 9px 0 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button-article:hover {
  background-color: #0a2054;
  color: #ffffff;
}

.section-thinking {
  position: fixed;
  left: 0;
  top: 0;
  max-width: 33%;
  width: 100%;
  padding: 16px 0;
}
@media screen and (max-width: 820px) {
  .section-thinking {
    display: none;
  }
}
.section-thinking > .container {
  text-align: center;
  padding: 50px 24px;
}
.section-thinking > .container > .title {
  border: 2px solid #0a2054;
  border-radius: 50px;
  width: 241px;
  font-size: 24px;
  text-align: center;
  padding: 8px 0 9px;
  margin: 0 auto 40px;
}
.section-thinking > .container > .image {
  margin-bottom: 40px;
}
.section-thinking > .container > .image > img {
  max-width: 247px;
  height: auto;
}

.section-experiment {
  position: fixed;
  right: 0;
  top: 0;
  max-width: 33%;
  width: 100%;
  padding: 16px 0;
}
@media screen and (max-width: 820px) {
  .section-experiment {
    display: none;
  }
}
.section-experiment > .container {
  padding-top: 50px;
}
.section-experiment > .container > .title {
  border: 2px solid #0a2054;
  border-radius: 50px;
  width: 241px;
  font-size: 24px;
  text-align: center;
  padding: 8px 0 9px;
  margin: 0 auto 40px;
}
.section-experiment > .container > .image > img {
  height: auto;
}

.anchor-offset {
  position: absolute;
  height: 80px;
  top: -80px;
  visibility: hidden;
}