@charset "UTF-8";
/*全ページ共通フォーマット
------------------------------------------------------*/
/* var　基本カラーなどあったら決めておく
----------------------------------------------------------*/
html {
  font-size: 100%;
  /*scroll-behavior: smooth;*/
}

main {
  max-width: 1600px;
  overflow-x: hidden; /*横スクロール禁止*/
  overflow: hidden;
}

main div,
main p {
  font-size: 1em;
  overflow-wrap: break-word; /*長い文字列も強制的に改行*/
}

/*レスポンシブ
------------------------------------------------------------*/
/*GoogleFont(Ozwald)
------------------------------------------------------------*/
.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  /*font-weight: 200-700;*/
  font-style: normal;
}

/* 共通共通フォーマット
----------------------------------------------------------*/
html {
  -ms-scroll-chaining: none;
      overscroll-behavior: none; /*スクロールが上下いっぱいを超えてもバウンドしない*/
}

body {
  width: 100%;
  background-color: #fff;
  color: black;
  font-weight: 400;
  line-height: 1.8;
  /*letter-spacing: 0.05em;*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*現行サイト通り*/
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

header {
  padding: 1.25em 3.125em;
  /*border:solid blue;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  -o-transition: transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
  pointer-events: none;
}
header.hide {
  -webkit-transform: translateX(-50%) translateY(-102%);
      -ms-transform: translateX(-50%) translateY(-102%);
          transform: translateX(-50%) translateY(-102%);
}

header.up-height {
  -webkit-transform: translateX(-50%) translateY(-102%);
      -ms-transform: translateX(-50%) translateY(-102%);
          transform: translateX(-50%) translateY(-102%);
}

.load-inner-area {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  -webkit-transition: opacity 1s ease-out;
  -o-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
  z-index: 100;
}

.load-inner-area.hide {
  pointer-events: none;
  opacity: 0;
}

.load-inner-area.remove {
  display: none;
}

.wrapper {
  margin: auto;
}

.header__logo {
  width: 4.78em;
  pointer-events: all;
}

.header-navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*width:40em;*/
  margin-top: 2.11em;
  pointer-events: all;
}

.header-navi ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.header-navi ul,
.header-navi li {
  line-height: 1;
}

.header-navi a,
.header-navi__share-title {
  color: #000;
  font-weight: 600;
  line-height: 1;
}

.header-navi a:hover {
  -webkit-animation-name: blink_animation;
          animation-name: blink_animation;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}
@-webkit-keyframes blink_animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink_animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header-navi__share {
  /*width:7.69em;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-navi__share ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*width:3.44em;*/
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-navi__share ul li:first-child {
  width: 1.06em;
  margin-right: 1.3em;
}
.header-navi__share ul li:first-child img {
  display: block;
}

.header-navi__share ul li:last-child {
  width: 1.225em;
}
.header-navi__share ul li:last-child img {
  display: block;
}

main {
  padding: 2em 1.5em;
  margin: 0 auto;
  background-color: #fff;
}

footer {
  margin: auto;
  padding: 0 3.125em 5em;
}

.footer-navis {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.25em;
}

.footer-navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 34.8em;
  margin-top: 2.25em;
  /*margin-bottom: 2.5em;*/
}

.footer-navi ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.footer-navi ul,
.footer-navi li {
  line-height: 1;
}

.footer-navi a,
.footer-navi__share-title {
  color: #000;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1;
}

footer a:hover {
  -webkit-animation-name: blink_animation;
          animation-name: blink_animation;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}
.footer__logo {
  width: 4.78em;
}

.footer-navis__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -0.5em;
}

.footer-related {
  margin-right: 5.5em;
}

.footer-archive ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  -webkit-column-gap: 3.5em;
     -moz-column-gap: 3.5em;
          column-gap: 3.5em;
}

.footer-related__title,
.footer-archive__title {
  font-size: 1.25em;
  font-weight: 500;
  margin-bottom: 1.4em;
  line-height: 1;
}

.footer__copyright {
  font-size: 0.875em;
  line-height: 1;
  position: absolute;
  bottom: 0;
}

@media screen and (min-width: 768.1px) and (max-width: 1600px) {
  html {
    font-size: 1vw; /*16px/1600pxヘッダーメニューのリンクボタンサイズ*/
  }
}

@media screen and (min-width: 769px) {
  .header-navi li {
    margin-right: 2.1em;
  }
  .header-navi li:nth-child(6) {
    margin-right: 3.6em;
  }
  .header-navi li:last-child {
    margin-right: 0;
  }
  .header-navi__share ul {
    margin-left: 1.4em;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    top: -0.93em;
    top: -1.2em;
  }
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 5.33vw; /*20px/375pxバーガーメニューのリンクボタンサイズ*/
  }
  .header-navi {
    display: none;
  }
  .header-navi a:hover {
    -webkit-animation: none;
            animation: none;
  }
  .header-navi__share {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-navi-sp {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 5;
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .header-navi-sp.show {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .header-navi-sp.show .header-menu-navi li {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  .header-navi-sp.remove .header-menu-navi li {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  .header-menu-navi {
    width: 100%;
    height: 100%;
    height: auto;
    padding: 43.9vw 8.9% 0.6em;
    padding: 0 8.9%;
    position: relative;
    top: 45%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-menu-navi ul.hide li {
    -webkit-transition: opacity 0.3s ease-out !important;
    -o-transition: opacity 0.3s ease-out !important;
    transition: opacity 0.3s ease-out !important;
  }
  .header-menu-navi li {
    font-size: 5.33vw;
    font-weight: bold;
    margin-bottom: 2vh;
    -webkit-transition: opacity 0.5s ease-out 1s, -webkit-transform 0.5s ease-out 1s;
    transition: opacity 0.5s ease-out 1s, -webkit-transform 0.5s ease-out 1s;
    -o-transition: transform 0.5s ease-out 1s, opacity 0.5s ease-out 1s;
    transition: transform 0.5s ease-out 1s, opacity 0.5s ease-out 1s;
    transition: transform 0.5s ease-out 1s, opacity 0.5s ease-out 1s, -webkit-transform 0.5s ease-out 1s;
    -webkit-transform: translateX(10%);
        -ms-transform: translateX(10%);
            transform: translateX(10%);
    opacity: 0;
  }
  .header-menu-navi li:nth-child(2) {
    -webkit-transition: opacity 0.5s ease-out 1.05s, -webkit-transform 0.5s ease-out 1.05s;
    transition: opacity 0.5s ease-out 1.05s, -webkit-transform 0.5s ease-out 1.05s;
    -o-transition: transform 0.5s ease-out 1.05s, opacity 0.5s ease-out 1.05s;
    transition: transform 0.5s ease-out 1.05s, opacity 0.5s ease-out 1.05s;
    transition: transform 0.5s ease-out 1.05s, opacity 0.5s ease-out 1.05s, -webkit-transform 0.5s ease-out 1.05s;
  }
  .header-menu-navi li:nth-child(3) {
    -webkit-transition: opacity 0.5s ease-out 1.1s, -webkit-transform 0.5s ease-out 1.1s;
    transition: opacity 0.5s ease-out 1.1s, -webkit-transform 0.5s ease-out 1.1s;
    -o-transition: transform 0.5s ease-out 1.1s, opacity 0.5s ease-out 1.1s;
    transition: transform 0.5s ease-out 1.1s, opacity 0.5s ease-out 1.1s;
    transition: transform 0.5s ease-out 1.1s, opacity 0.5s ease-out 1.1s, -webkit-transform 0.5s ease-out 1.1s;
  }
  .header-menu-navi li:nth-child(4) {
    -webkit-transition: opacity 0.5s ease-out 1.15s, -webkit-transform 0.5s ease-out 1.15s;
    transition: opacity 0.5s ease-out 1.15s, -webkit-transform 0.5s ease-out 1.15s;
    -o-transition: transform 0.5s ease-out 1.15s, opacity 0.5s ease-out 1.15s;
    transition: transform 0.5s ease-out 1.15s, opacity 0.5s ease-out 1.15s;
    transition: transform 0.5s ease-out 1.15s, opacity 0.5s ease-out 1.15s, -webkit-transform 0.5s ease-out 1.15s;
  }
  .header-menu-navi li:nth-child(5) {
    -webkit-transition: opacity 0.5s ease-out 1.2s, -webkit-transform 0.5s ease-out 1.2s;
    transition: opacity 0.5s ease-out 1.2s, -webkit-transform 0.5s ease-out 1.2s;
    -o-transition: transform 0.5s ease-out 1.2s, opacity 0.5s ease-out 1.2s;
    transition: transform 0.5s ease-out 1.2s, opacity 0.5s ease-out 1.2s;
    transition: transform 0.5s ease-out 1.2s, opacity 0.5s ease-out 1.2s, -webkit-transform 0.5s ease-out 1.2s;
  }
  .header-menu-navi li:nth-child(6) {
    -webkit-transition: opacity 0.5s ease-out 1.25s, -webkit-transform 0.5s ease-out 1.25s;
    transition: opacity 0.5s ease-out 1.25s, -webkit-transform 0.5s ease-out 1.25s;
    -o-transition: transform 0.5s ease-out 1.25s, opacity 0.5s ease-out 1.25s;
    transition: transform 0.5s ease-out 1.25s, opacity 0.5s ease-out 1.25s;
    transition: transform 0.5s ease-out 1.25s, opacity 0.5s ease-out 1.25s, -webkit-transform 0.5s ease-out 1.25s;
    margin-bottom: 10svh;
  }
  .header-menu-navi li:nth-child(7) {
    -webkit-transition: opacity 0.5s ease-out 1.3s, -webkit-transform 0.5s ease-out 1.3s;
    transition: opacity 0.5s ease-out 1.3s, -webkit-transform 0.5s ease-out 1.3s;
    -o-transition: transform 0.5s ease-out 1.3s, opacity 0.5s ease-out 1.3s;
    transition: transform 0.5s ease-out 1.3s, opacity 0.5s ease-out 1.3s;
    transition: transform 0.5s ease-out 1.3s, opacity 0.5s ease-out 1.3s, -webkit-transform 0.5s ease-out 1.3s;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  footer a:hover {
    -webkit-animation: none;
            animation: none;
  }
  .wrapper {
    overflow-y: hidden;
  }
  header {
    padding: 1em;
    display: block;
    height: 5.25em;
    overflow: hidden;
    -webkit-transition: height 0.3s ease-out, -webkit-transform 1s ease-out;
    transition: height 0.3s ease-out, -webkit-transform 1s ease-out;
    -o-transition: height 0.3s ease-out, transform 1s ease-out;
    transition: height 0.3s ease-out, transform 1s ease-out;
    transition: height 0.3s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
  }
  header::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    background-color: #fff;
    -webkit-transition: height 0.3s ease;
    -o-transition: height 0.3s ease;
    transition: height 0.3s ease;
  }
  /*header.open{
    height: 100lvh;
    background: #fff;
  }

  header.hide{
    height: 5.25em;
    background: #fff;
  }

   header.hide::before{

   }*/
  .burger {
    width: 6.93vw;
    height: 4.53vw;
    position: absolute;
    right: 5.4vw;
    top: 5.5vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    pointer-events: all;
  }
  .burger > div {
    background: #000;
    width: 100%;
    height: 0.66vw;
    height: 2px;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transition: -webkit-transform 0.15s ease-out;
    transition: -webkit-transform 0.15s ease-out;
    -o-transition: transform 0.15s ease-out;
    transition: transform 0.15s ease-out;
    transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
    position: absolute;
    top: 0;
  }
  .burger .burger__middle {
    top: 50%;
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .burger .burger__bottom {
    top: auto;
    bottom: 0;
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
  }
  header.open .burger__top {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 50%;
  }
  header.open .burger__bottom {
    -webkit-transform: translateY(-50%) scaleX(0.001) rotate(0deg);
        -ms-transform: translateY(-50%) scaleX(0.001) rotate(0deg);
            transform: translateY(-50%) scaleX(0.001) rotate(0deg);
  }
  header.open .burger__middle {
    -webkit-transform: scaleX(1) rotate(-45deg) translateX(-20%);
        -ms-transform: scaleX(1) rotate(-45deg) translateX(-20%);
            transform: scaleX(1) rotate(-45deg) translateX(-20%);
    top: auto;
    bottom: 115%;
  }
  .header__logo {
    width: 11.2vw;
    top: -3.2vw;
  }
  .header-navi {
    width: 100%;
    padding: 0.6em;
  }
  .header-navi ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-navi li {
    margin-bottom: calc((100svh - 19em) / 7);
  }
  .header-navi li.header-navi__links {
    margin-bottom: calc((100svh - 19em) / 7 + 1.5em);
  }
  .header-navi__share-title {
    font-size: 4.26vw;
    margin-right: 9.2vw;
  }
  .header-navi__share ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    /*width:3.97em;*/
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-navi__share ul img {
    display: block;
  }
  .header-navi__share ul li:first-child {
    width: 6.4vw;
    margin-right: 7vw;
    margin-bottom: 0;
  }
  .header-navi__share ul li:last-child {
    width: 7.46vw;
    margin-bottom: 0;
  }
  footer {
    width: 100%;
    overflow: hidden;
    padding: 1em;
    padding-bottom: 36.5vw;
  }
  .footer-navis {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-navi {
    display: none;
  }
  .footer__logo {
    width: 3.827em;
    margin-bottom: 2.4em;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
  .footer__logo.hide {
    opacity: 0;
  }
  .footer-navis__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-related__title,
.footer-archive__title {
    font-size: 1em;
    margin-bottom: 1.5em;
  }
  .footer-related li,
.footer-archive li {
    font-size: 3.73vw;
    margin-bottom: 0.7vw;
  }
  .footer-related {
    margin-bottom: 10vw;
    margin-right: 0;
  }
  .footer-archive ul {
    -webkit-column-gap: 1.55em;
       -moz-column-gap: 1.55em;
            column-gap: 1.55em;
  }
  .footer-archive {
    margin-bottom: 2.3vw;
  }
  .footer__copyright {
    font-size: 2.66vw;
    margin-bottom: 0;
    bottom: -14.7vw;
  }
}

@media screen and (max-width: 768px) and (max-width: 650px) {
  /*=70%*/
}

@media screen and (max-width: 768px) and (max-width: 575px) {
  /*=51%*/
}

@media screen and (max-width: 768px) and (max-width: 475px) {
  /*=25%*/
}

@media screen and (max-width: 768px) and (max-width: 410px) {
  /*=9%*/
}
/*# sourceMappingURL=common.css.map */
