@charset "UTF-8";
@font-face {
  font-family: "MyYuGothicM";
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* 游ゴシックMediumが存在しないWindows8.1用 */
}
@font-face {
  font-family: "MyYuGothicM";
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic Bold");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
}
/* カラー変数定義
-----------------------------------------------------------------*/
/* カラー変数定義
-----------------------------------------------------------------*/
/* .loading
-----------------------------------------------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  border: 5px solid var(--main_color);
}

.loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -64px);
  transform: translate(-50%, -64px);
  width: 300px;
}
.loading__logo path {
  opacity: 0;
  translate: 0 20px;
  fill: var(--main_color);
}
.loaded .loading__logo path {
  opacity: 1;
  translate: 0 0;
}
.loading__logo .logo1, .loading__logo .logo2, .loading__logo .logo3, .loading__logo .logo4, .loading__logo .logo5, .loading__logo .logo6, .loading__logo .logo7 {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.loading__logo .logo8, .loading__logo .logo9, .loading__logo .logo10, .loading__logo .logo11, .loading__logo .logo12, .loading__logo .logo13, .loading__logo .logo14 {
  -webkit-transition: all 0.4s ease 0.4s;
  transition: all 0.4s ease 0.4s;
}
.loading__logo .logo15 {
  -webkit-transition: all 0.4s ease 0.8s;
  transition: all 0.4s ease 0.8s;
}
.loading__logo .logo16 {
  -webkit-transition: all 0.4s ease 1.2s;
  transition: all 0.4s ease 1.2s;
}
@media print, screen and (max-width: 767px) {
  .loading__logo {
    width: 200px;
  }
}

.loading__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 40px);
  transform: translate(-50%, 40px);
  font-size: 16px;
  font-weight: bold;
  color: var(--main_color);
  letter-spacing: 0.05em;
  opacity: 0;
  translate: 0 20px;
  -webkit-transition: all 0.4s ease 1.6s;
  transition: all 0.4s ease 1.6s;
}
.loaded .loading__text {
  opacity: 1;
  translate: 0 0;
}
@media print, screen and (max-width: 767px) {
  .loading__text {
    text-align: center;
    font-size: 12px;
    width: 95%;
    -webkit-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
  }
}

/* .marquee
-----------------------------------------------------------------*/
.marquee {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--main_color);
  color: #FFFFFF;
  padding: 15px 0 0;
  white-space: nowrap;
  width: 100%;
  overflow-x: hidden;
}
.marquee span {
  font-family: "fot-tsukuardgothic-std", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  -webkit-animation: marqueeAnimation 90s linear infinite;
  animation: marqueeAnimation 90s linear infinite;
}

/* .header
-----------------------------------------------------------------*/
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--main_color);
}

.header__logo {
  padding: 30px 0;
  text-align: center;
  -webkit-transition: padding 0.2s ease 0s;
  transition: padding 0.2s ease 0s;
}
.header__logo svg {
  width: 140px;
  fill: #FFFFFF;
  -webkit-transition: width 0.2s ease 0s;
  transition: width 0.2s ease 0s;
}
@media print, screen and (min-width: 1025px) {
  .header__logo svg {
    width: 180px;
  }
}
.scrolled .header__logo {
  padding: 20px;
}
.scrolled .header__logo svg {
  width: 90px;
}

.header__menu {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 32px;
  height: 18px;
  cursor: pointer;
}
.header__menu i, .header__menu::before, .header__menu::after {
  display: block;
  position: absolute;
  left: 0;
  content: "";
  width: 32px;
  height: 2px;
  background-color: #FFFFFF;
}
.header__menu i {
  top: calc(50% - 1px);
}
.header__menu:before {
  top: 0;
}
.header__menu::after {
  bottom: 0;
}

.header__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 375px;
  height: 100%;
  background-color: #FFFFFF;
  text-align: center;
  overflow-y: scroll;
}
@media print, screen and (max-width: 767px) {
  .header__nav {
    width: 100%;
  }
}

.header__navClose {
  position: absolute;
  top: 31px;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 32px;
  height: 12px;
  cursor: pointer;
}
.header__navClose::before, .header__navClose::after {
  display: block;
  position: absolute;
  left: 0;
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--main_color);
}
.header__navClose:before {
  top: calc(50% - 1px);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
.header__navClose::after {
  bottom: calc(50% - 1px);
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.header__navWrapper {
  position: relative;
  padding: 80px 0;
}

.header__navTitle {
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  color: var(--main_color);
}

.header__navSub {
  margin: 50px 20px 0;
  padding: 0 0 10px;
  border-bottom: 1px solid #BCC1C5;
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  color: var(--main_color);
}

.header__navList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 8px;
}

.header__navListNode {
  position: relative;
  width: calc(50% - 24px);
  margin: 25px 12px 0;
  border-radius: 10px;
  overflow: hidden;
}
.header__navListNode img {
  -webkit-transition: scale 1s ease 0s, -webkit-filter 1s ease 0s;
  transition: scale 1s ease 0s, -webkit-filter 1s ease 0s;
  transition: scale 1s ease 0s, filter 1s ease 0s;
  transition: scale 1s ease 0s, filter 1s ease 0s, -webkit-filter 1s ease 0s;
}
.header__navListNode.coming {
  background-color: #BCC1C5;
}
@media print, screen and (min-width: 1025px) {
  .header__navListNode a:hover img {
    scale: 1.05;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
}

.header__navListNo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 24px;
  color: #FFFFFF;
}
.header__navListNo span {
  font-size: 19px;
}

.header__navListName {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.1;
  color: #FFFFFF;
}
.header__navListName span {
  display: block;
  font-size: 10px;
}

.header__navListComing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  color: #FFFFFF;
}

/* .sideBar
-----------------------------------------------------------------*/
.sideBar {
  display: block;
}
@media print, screen and (max-width: 767px) {
  .sideBar {
    display: none;
  }
}

.sideBar__left {
  position: fixed;
  top: 50%;
  left: -17px;
  z-index: 5;
  translate: 0 -50%;
}
.sideBar__left svg {
  width: 120px;
  fill: var(--main_color);
  rotate: 90deg;
}

.sideBar__right {
  position: fixed;
  top: 50%;
  right: -95px;
  z-index: 5;
  translate: 0 -50%;
  rotate: 90deg;
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: var(--main_color);
  letter-spacing: 0.05em;
}

.sideBar__right--noicon {
  display: inline-block;
  font-size: 16px;
}

.sideBar__right--no {
  display: inline-block;
  font-size: 20px;
  margin: 0 6px 0 0;
}

.sideBar__right--contents {
  display: inline-block;
  font-size: 25px;
  margin: 0 6px 0 0;
}

.sideBar__right--style {
  display: inline-block;
  font-size: 18px;
}

/* .mainvisual
-----------------------------------------------------------------*/
.mainvisual {
  position: relative;
  z-index: 10;
  padding: 0 30px;
  background-color: var(--main_color);
  color: #FFFFFF;
}
@media print, screen and (max-width: 767px) {
  .mainvisual {
    padding: 0;
  }
}

.mainvisual__slider {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  border-radius: 15px;
}
@media print, screen and (max-width: 767px) {
  .mainvisual__slider {
    margin: 0 30px;
  }
}

.mainvisual__sliderNode img {
  width: 100%;
}

.mainvisual__sliderWrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.mainvisual__title {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
@media print, screen and (max-width: 767px) {
  .mainvisual__title {
    margin: 0 45px;
  }
}

.mainvisual__englishTitle {
  position: relative;
  margin-top: -18px;
  z-index: 2;
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s, -webkit-clip-path 0.8s ease 0s;
  transition: opacity 0.8s ease 0s, -webkit-clip-path 0.8s ease 0s;
  transition: clip-path 0.8s ease 0s, opacity 0.8s ease 0s;
  transition: clip-path 0.8s ease 0s, opacity 0.8s ease 0s, -webkit-clip-path 0.8s ease 0s;
}
.introEnd .mainvisual__englishTitle {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.mainvisual__englishTitle--noicon {
  font-size: 29px;
}

.mainvisual__englishTitle--no {
  font-size: 37px;
  letter-spacing: 0.14em;
}

.mainvisual__englishTitle--contents {
  font-size: 50px;
  margin: 0 5px 0 0;
}

.mainvisual__englishTitle--style {
  font-size: 34px;
}

.mainvisual__sub {
  display: inline-block;
  position: absolute;
  top: -20px;
  right: 10px;
  z-index: 2;
  padding: 12px 17px;
  border-radius: 25px;
  background-color: var(--sub_color);
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  -webkit-animation: kaiten 10s linear infinite;
  animation: kaiten 10s linear infinite;
}
@media print, screen and (max-width: 767px) {
  .mainvisual__sub {
    padding: 10px 12px;
    font-size: 12px;
  }
}

.mainvisual__mainTitle {
  margin: 35px 0 0;
  font-family: "fot-tsukuardgothic-std", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: -0.08em;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-transition: opacity 1.2s ease 0s, -webkit-clip-path 1.2s ease 0s;
  transition: opacity 1.2s ease 0s, -webkit-clip-path 1.2s ease 0s;
  transition: clip-path 1.2s ease 0s, opacity 1.2s ease 0s;
  transition: clip-path 1.2s ease 0s, opacity 1.2s ease 0s, -webkit-clip-path 1.2s ease 0s;
}
.introEnd .mainvisual__mainTitle {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.mainvisual__lead {
  max-width: 600px;
  margin: 35px auto 0;
  padding: 0 0 50px;
  line-height: 1.7;
}
@media print, screen and (max-width: 767px) {
  .mainvisual__lead {
    margin: 35px 45px 0;
  }
}

/* .section
-----------------------------------------------------------------*/
.section {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 100px 0 50px;
  text-align: center;
}
@media print, screen and (max-width: 480px) {
  .section {
    margin: 0;
  }
}

.section__title {
  display: inline-block;
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--main_color);
}

.section__name {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  margin: 25px 0 0;
}
.section__name a {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 5px;
}

.section__shop {
  font-size: 10px;
  font-weight: bold;
  line-height: 1.5;
  color: #000000;
  margin: 6px 20px 0;
}

.section__snsList {
  margin: 13px 0 0;
}

.section__snsListNode {
  display: inline-block;
  margin: 0 0 0 10px;
}
.section__snsListNode a {
  display: block;
  padding: 7px 15px 6px;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 30px;
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 10px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-transition: background-color 0.5s ease 0s, color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s, color 0.5s ease 0s;
}
.section__snsListNode:first-child {
  margin: 0;
}
@media print, screen and (min-width: 1025px) {
  .section__snsListNode a:hover {
    background-color: #FFFFFF;
    color: #000000;
  }
}

.section__height {
  font-size: 12px;
  font-weight: bold;
  color: #000000;
  margin: 25px 0 0;
}
.section__height span {
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 10px;
  padding: 2px 4px;
  margin: 0 5px 0 0;
  border-bottom: 1px solid #000000;
  vertical-align: middle;
}

.section__likes {
  font-size: 12px;
  font-weight: bold;
  color: #000000;
  margin: 18px 0 0;
}
.section__likes span {
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 10px;
  padding: 2px 4px;
  margin: 0 5px 0 0;
  border-bottom: 1px solid #000000;
  vertical-align: middle;
}

.section__sub {
  display: inline-block;
  border-radius: 25px;
  padding: 10px 30px 8px;
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  margin: 50px 0 0;
  background-color: var(--sub_color);
}
.section__sub.section__sub--sunny {
  background-color: #FF6E2E;
}
.section__sub.section__sub--rainy {
  background-color: #008CBE;
}

.section__mainImg {
  margin: 30px 20px 0;
}
.section__mainImg img {
  width: 100%;
}

.section__styleText {
  margin: 30px 20px 0;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.section__styleCredit {
  margin: 30px 20px 0;
  font-size: 13px;
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .section__styleCredit {
    font-size: 10px;
  }
}

.section__styleCreditList {
  margin: 8px 0 0;
  line-height: 1.8;
}
.section__styleCreditList:first-child {
  margin: 0;
}
.section__styleCreditList span {
  font-weight: bold;
}
.section__styleCreditList a {
  display: inline-block;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 2px 4px;
  margin: 0 0 0 5px;
  background-color: #000000;
  border: 1px solid #000000;
  text-align: center;
  line-height: 1;
  color: #FFFFFF;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: background-color 0.5s ease 0s, color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s, color 0.5s ease 0s;
}
@media print, screen and (min-width: 1025px) {
  .section__styleCreditList a:hover {
    background-color: #FFFFFF;
    color: #000000;
  }
}

.section__styleCreditList--text {
  margin: 20px 0 0;
  font-weight: bold;
}
.section__styleCreditList--text a {
  color: var(--main_color);
  text-decoration: underline;
}

.section__img {
  margin: 45px 0 0;
}
.section__img img {
  width: 100%;
}
.section__img + .section__sub {
  margin: 100px 0 0;
}

.section__comment {
  max-width: 400px;
  padding: 30px 40px;
  margin: 100px auto 0;
  border: 2px dotted var(--main_color);
  border-radius: 25px;
  text-align: center;
}
@media print, screen and (max-width: 480px) {
  .section__comment {
    margin: 100px 20px 0;
  }
}

.section__commentTitle {
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  color: var(--main_color);
}

.section__commentImg {
  margin: 25px 0 0;
  display: inline-block;
  width: 150px;
}
.section__commentImg img {
  width: 100%;
}

.section__commentText {
  margin: 25px 0 0;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

/* .commonBlock
-----------------------------------------------------------------*/
.commonBlock {
  max-width: 600px;
  margin: 0 auto;
}
@media print, screen and (max-width: 480px) {
  .commonBlock {
    margin: 0;
  }
}

/* .commonButton
-----------------------------------------------------------------*/
.commonButton {
  margin: 50px 20px 0;
  text-align: center;
}
.commonButton a {
  display: inline-block;
  padding: 20px 40px;
  border: 1px solid var(--main_color);
  border-radius: 5px;
  background-color: var(--main_color);
  background-image: url(../img/common/arrow.svg);
  background-repeat: no-repeat;
  background-position: 95% 37px;
  font-family: "fot-tsukuardgothic-std", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media print, screen and (min-width: 1025px) {
  .commonButton a:hover {
    background-color: #FFFFFF;
    color: var(--main_color);
  }
}

/* .aboutBlock
-----------------------------------------------------------------*/
.aboutBlock {
  max-width: 400px;
  margin: 50px auto 0;
  padding: 25px 20px;
  border-top: 2px dotted var(--main_color);
  border-bottom: 2px dotted var(--main_color);
  text-align: center;
}
@media print, screen and (max-width: 480px) {
  .aboutBlock {
    margin: 50px 20px 0;
  }
}

.aboutBlock__title {
  position: relative;
  display: inline-block;
  padding: 0 24px;
  font-family: "fot-tsukuardgothic-std", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: var(--main_color);
}
.aboutBlock__title svg {
  width: 24px;
  fill: var(--main_color);
  vertical-align: middle;
}

.aboutBlock__text {
  margin: 15px 0 0;
  line-height: 1.5;
  text-align: left;
}

/* .stylingBnr
-----------------------------------------------------------------*/
.stylingBnr {
  max-width: 400px;
  margin: 60px auto 0;
}
.stylingBnr a {
  position: relative;
  display: block;
  -webkit-transition: opacity 0.5s ease 0s;
  transition: opacity 0.5s ease 0s;
}
.stylingBnr a::after {
  display: block;
  content: "";
  position: absolute;
  top: -17px;
  right: -11px;
  width: 58px;
  height: 58px;
  background-image: url(../img/common/new_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-animation: rotateAnimation 1.2s steps(1, start) infinite;
  animation: rotateAnimation 1.2s steps(1, start) infinite;
}
@media print, screen and (min-width: 1025px) {
  .stylingBnr a:hover {
    opacity: 0.6;
  }
}
@media print, screen and (max-width: 480px) {
  .stylingBnr {
    margin: 60px 20px 0;
  }
}

/* .archiveBlock
-----------------------------------------------------------------*/
.archiveBlock {
  margin: 80px 0 0;
  text-align: center;
}

.archiveBlock__title {
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  color: var(--main_color);
}

.archiveBlock__sub {
  margin: 50px 20px 0;
  padding: 0 0 10px;
  border-bottom: 1px solid #BCC1C5;
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  color: var(--main_color);
}

.archiveBlock__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 8px;
}

.archiveBlock__listNode {
  position: relative;
  width: calc(50% - 24px);
  margin: 25px 12px 0;
  border-radius: 10px;
  overflow: hidden;
}
.archiveBlock__listNode img {
  -webkit-transition: scale 1s ease 0s, -webkit-filter 1s ease 0s;
  transition: scale 1s ease 0s, -webkit-filter 1s ease 0s;
  transition: scale 1s ease 0s, filter 1s ease 0s;
  transition: scale 1s ease 0s, filter 1s ease 0s, -webkit-filter 1s ease 0s;
}
.archiveBlock__listNode.coming {
  background-color: #BCC1C5;
}
@media print, screen and (min-width: 1025px) {
  .archiveBlock__listNode a:hover img {
    scale: 1.05;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
}

.archiveBlock__listNo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 24px;
  color: #FFFFFF;
}
.archiveBlock__listNo span {
  font-size: 19px;
}

.archiveBlock__listName {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.1;
  color: #FFFFFF;
}
.archiveBlock__listName span {
  display: block;
  font-size: 10px;
}

.archiveBlock__listComing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  color: #FFFFFF;
}

/* .shareBlock
-----------------------------------------------------------------*/
.shareBlock {
  margin: 80px 0;
  text-align: center;
}

.shareBlock__title {
  font-family: termina, "termina", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  color: var(--main_color);
}

.shareBlock__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px 0 0;
}

.shareBlock__listNode {
  margin: 0 18px;
}
.shareBlock__listNode a {
  -webkit-transition: opacity 0.5s ease 0s;
  transition: opacity 0.5s ease 0s;
}
.shareBlock__listNode svg {
  width: 22px;
  fill: var(--main_color);
}
.shareBlock__listNode:first-child svg {
  width: 18px;
}
@media print, screen and (min-width: 1025px) {
  .shareBlock__listNode a:hover {
    opacity: 0.6;
  }
}

/* .footer
-----------------------------------------------------------------*/
.footer {
  background-color: var(--main_color);
  padding: 40px 40px;
  color: #FFFFFF;
  text-align: center;
}

.footer___navLink {
  position: relative;
  display: inline-block;
  font-size: 12px;
  margin: 0 10px 15px 0;
  -webkit-transition: opacity 0.5s ease 0s;
  transition: opacity 0.5s ease 0s;
}
@media print, screen and (min-width: 1025px) {
  .footer___navLink:hover {
    opacity: 0.6;
  }
}

.footer___logo {
  margin: 40px 0 0;
}
.footer___logo svg {
  width: 70px;
  fill: #FFFFFF;
}

.footer__copyright {
  margin: 30px 0 0;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
}