/* =====================================
reset
------------------------------------- */
* {
  margin: 0;
  border: none;
  padding: 0;
}

/* redifine "Yu Mincho" */
@font-face {
  font-family: "Yu Mincho";
  font-weight: 400;
  font-style: normal;
  src: local("Yu Mincho Medium");
  font-display: swap;
}

@font-face {
  font-family: "Yu Mincho";
  font-weight: 700;
  font-style: normal;
  src: local("Yu Mincho Bold");
  font-display: swap;
}

/* License: https://www.nichiban.co.jp/100th/font/Tangerine/OFL.txt */
@font-face {
  font-family: Tangerine;
  font-weight: 400;
  font-style: normal;
  src: local(Tangerine), url("/100th/font/Tangerine/Regular.woff2") format("woff2"), url("/100th/font/Tangerine/Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: Tangerine;
  font-weight: 700;
  font-style: normal;
  src: local(Tangerine), url("/100th/font/Tangerine/Bold.woff2") format("woff2"), url("/100th/font/Tangerine/Bold.woff") format("woff");
  font-display: swap;
}

/* =====================================
base
------------------------------------- */
*,
*::before,
*::after {
  box-sizing: inherit;
}

*::before,
*::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html {
  box-sizing: border-box;
  background-color: #fff;
  color: #333;
  font-size: 10px;
  font-family: "Yu Mincho", YuMincho, Arial, serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;
  line-height: 1.625;
  font-size: 1.6em;
  font-feature-settings: "kern", "palt";
  letter-spacing: .075em;
  word-wrap: break-word;
}

aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

button {
  color: inherit;
  font: inherit;
  text-shadow: inherit;
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
dt {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  border: none;
}

strong,
em,
b,
i {
  font-style: normal;
}

strong,
em,
b {
  font-weight: bold;
}

strong {
  color: #e60012;
}

h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  text-decoration: underline;
}

/* =====================================
structure
------------------------------------- */
/* ===========================
page
--------------------------- */
#page {
  position: relative;
  overflow: hidden;
}

/* ===========================
header
--------------------------- */
#header > .inner {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1300px;
  min-height: 80px;
  margin: 0 auto;
  padding: 0 10px;
}

#header .logo-company,
#header .logo-100th {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#header .logo-company {
  left: 10px;
  width: 148px;
}

#header .logo-100th {
  right: 10px;
  width: 64px;
}

#header .nav-section {
  line-height: 1.25;
  margin: 0 84px 0 164px;
  font-size: 1.6rem;
  letter-spacing: .03125em;
}

#header .nav-section > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

#header .nav-section > ul > li {
  margin: 0 20px;
  padding-top: 10px;
}

#header .nav-section > ul > li > a {
  position: relative;
  display: block;
  min-width: 76px;
  overflow: hidden;
  padding: 4px 0 16px 0;
  text-decoration: none;
  text-align: center;
  transition: color 200ms;
}

#header .nav-section > ul > li > a::before, #header .nav-section > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  height: 11px;
}

#header .nav-section > ul > li > a::before {
  width: 76px;
  margin-left: -38px;
  background: transparent url(/100th/img/nav-ribbon-01.png) no-repeat 50% 50%;
  background-size: cover;
}

#header .nav-section > ul > li > a::after {
  width: 90px;
  margin-left: -45px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 5%, #fff 100%);
  transition: margin-left 800ms;
}

#header .nav-section > ul > li > a:hover, #header .nav-section > ul > li > a:focus, #header .nav-section > ul > li > a:active {
  color: #e60012;
}

#header .nav-section > ul > li > a:hover::after, #header .nav-section > ul > li > a:focus::after, #header .nav-section > ul > li > a:active::after {
  margin-left: 31px;
  will-change: margin-left;
}

.ie #header .nav-section {
  margin-top: 15px;
}

@media only screen and (max-width: 980px) {
  #header .logo-company {
    width: 124px;
  }
  #header .logo-100th {
    width: 54px;
  }
  #header .nav-section {
    width: 100%;
    margin: 0 64px 0 133px;
    font-size: 1.4rem;
  }
  #header .nav-section > ul {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  #header .nav-section > ul > li {
    margin: 0;
  }
}

@media only screen and (max-width: 735px) {
  #header > .inner {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    min-height: 60px;
  }
  .ie #header > .inner {
    height: 60px;
  }
  #header .logo-company {
    width: 111px;
    position: static;
    transform: translateY(0);
  }
  #header .logo-100th {
    display: none;
  }
  #header .nav-section {
    width: auto;
    margin: 0 5px 0 0;
  }
  #header .nav-section > ul > li {
    display: none;
  }
  #header .nav-section > ul > li:last-child {
    display: block;
  }
}

/* ===========================
footer
--------------------------- */
.static #footer .backtotop {
  position: absolute;
  bottom: 50px;
}

#footer > .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2.5em 10px 2em 10px;
}

#footer .backtotop {
  position: fixed;
  right: 40px;
  bottom: -60px;
  z-index: 99;
  transition: bottom 800ms;
}

#footer .backtotop > a {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 2px solid #e60012;
  border-radius: 50%;
  background-color: #e60012;
  transition: background-color 200ms;
}

#footer .backtotop > a::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  width: 25px;
  height: 15px;
  background: transparent url(/100th/img/arrow-top-01.png) no-repeat 50% 0;
  background-size: cover;
  transform: translate(-50%, -50%);
}

#footer .backtotop > a > span {
  position: absolute;
  top: -999em;
  left: -999em;
}

#footer .backtotop > a:hover, #footer .backtotop > a:focus, #footer .backtotop > a:active {
  background-color: #fff;
}

#footer .backtotop > a:hover::before, #footer .backtotop > a:focus::before, #footer .backtotop > a:active::before {
  background-position: 50% 100%;
}

#footer .backtotop.rise {
  bottom: 50px;
}

#footer .sns {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

#footer .sns > li {
  display: -webkit-flex;
  display: flex;
  margin: 0 5px;
}

#footer .sns > li.facebook iframe {
  width: 61px;
  height: 20px;
}

#footer .sns + .copyright {
  margin-top: 2em;
}

#footer .copyright {
  text-align: center;
}

#footer .copyright small {
  font-size: 1.4rem;
  letter-spacing: .025em;
}

@media only screen and (max-width: 735px) {
  .static #footer .backtotop {
    position: static;
  }
  #footer > .inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.25em 10px;
  }
  #footer .backtotop {
    position: static;
    margin: -1.25em -10px 20px -10px;
  }
  #footer .backtotop > a {
    width: 100%;
    height: 50px;
    border-radius: 0;
  }
  #footer .backtotop > a::before {
    transform: translate(-50%, -50%) scale(1);
    transition: transform 200ms;
  }
  #footer .backtotop > a:hover, #footer .backtotop > a:focus, #footer .backtotop > a:active {
    background-color: #e60012;
    transform: none;
  }
  #footer .backtotop > a:hover::before, #footer .backtotop > a:focus::before, #footer .backtotop > a:active::before {
    background-position: 50% 0;
    transform: translate(-50%, -50%) scale(1.25);
  }
  #footer .sns + .copyright {
    margin-top: .75em;
  }
  #footer .copyright small {
    font-size: 1rem;
  }
}

/* =====================================
module
------------------------------------- */
.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: .5em !important;
}

.mt-2 {
  margin-top: 1em !important;
}

.mt-3 {
  margin-top: 1.5em !important;
}

.mt-4 {
  margin-top: 2em !important;
}

.mt-5 {
  margin-top: 2.5em !important;
}

.mt-6 {
  margin-top: 3em !important;
}

.mt-7 {
  margin-top: 3.5em !important;
}

.mt-8 {
  margin-top: 4em !important;
}

.mt-9 {
  margin-top: 4.5em !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 10px !important;
}

.mr-2 {
  margin-right: 20px !important;
}

.mr-3 {
  margin-right: 30px !important;
}

.mr-4 {
  margin-right: 40px !important;
}

.mr-5 {
  margin-right: 50px !important;
}

.mr-6 {
  margin-right: 60px !important;
}

.mr-7 {
  margin-right: 70px !important;
}

.mr-8 {
  margin-right: 80px !important;
}

.mr-9 {
  margin-right: 90px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: .5em !important;
}

.mb-2 {
  margin-bottom: 1em !important;
}

.mb-3 {
  margin-bottom: 1.5em !important;
}

.mb-4 {
  margin-bottom: 2em !important;
}

.mb-5 {
  margin-bottom: 2.5em !important;
}

.mb-6 {
  margin-bottom: 3em !important;
}

.mb-7 {
  margin-bottom: 3.5em !important;
}

.mb-8 {
  margin-bottom: 4em !important;
}

.mb-9 {
  margin-bottom: 4.5em !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 10px !important;
}

.ml-2 {
  margin-left: 20px !important;
}

.ml-3 {
  margin-left: 30px !important;
}

.ml-4 {
  margin-left: 40px !important;
}

.ml-5 {
  margin-left: 50px !important;
}

.ml-6 {
  margin-left: 60px !important;
}

.ml-7 {
  margin-left: 70px !important;
}

.ml-8 {
  margin-left: 80px !important;
}

.ml-9 {
  margin-left: 90px !important;
}

.ta-l, .ta-l th, .ta-l td {
  text-align: left !important;
}

.ta-c, .ta-c th, .ta-c td {
  text-align: center !important;
}

.ta-r, .ta-r th, .ta-r td {
  text-align: right !important;
}

.va-t, .va-t th, .va-t td {
  vertical-align: top !important;
}

.va-m, .va-m th, .va-m td {
  vertical-align: middle !important;
}

.va-b, .va-b th, .va-b td {
  vertical-align: bottom !important;
}

.w5 {
  width: 5%;
}

.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w40 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.cursive {
  font-family: Tangerine, cursive;
}

.hr-ribbon {
  position: relative;
  max-width: 1280px;
  height: 256px;
  margin: 10px auto;
}

.static .hr-ribbon > div {
  height: 256px;
  opacity: 1;
}

.hr-ribbon > div {
  position: absolute;
  top: 0;
  width: 50%;
  height: 0;
  background-repeat: no-repeat;
  background-size: auto 256px;
  opacity: 0;
  transition: height 800ms, opacity 800ms;
}

.hr-ribbon.ribbon-01 > div {
  right: 50%;
  background-image: url(/100th/img/hr-ribbon-01.png);
  background-position: 100% 0;
}

.hr-ribbon.ribbon-02 > div {
  left: 50%;
  background-image: url(/100th/img/hr-ribbon-02.png);
  background-position: 0 0;
}

.hr-ribbon.show > div {
  height: 256px;
  opacity: 1;
}

@media only screen and (max-width: 980px) {
  .hr-ribbon {
    height: 204px;
  }
  .static .hr-ribbon > div {
    height: 204px;
  }
  .hr-ribbon > div {
    background-size: auto 204px;
  }
  .hr-ribbon.show > div {
    height: 204px;
  }
}

@media only screen and (max-width: 735px) {
  .hr-ribbon {
    height: 152px;
  }
  .static .hr-ribbon > div {
    height: 152px;
  }
  .hr-ribbon > div {
    background-size: auto 152px;
  }
  .hr-ribbon.show > div {
    height: 152px;
  }
}

@media only screen and (max-width: 480px) {
  .hr-ribbon {
    height: 100px;
  }
  .static .hr-ribbon > div {
    height: 100px;
  }
  .hr-ribbon > div {
    background-size: auto 100px;
  }
  .hr-ribbon.show > div {
    height: 100px;
  }
}

/* ===========================
hero
--------------------------- */
#hero {
  position: relative;
  margin-bottom: 5px;
}

#hero::before, #hero::after {
  content: "";
  position: absolute;
  top: 47.5%;
  left: 50%;
  display: block;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 800ms;
  will-change: opacity, transform;
}

#hero::before {
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-top: 3px solid #e60012;
  border-left: 3px solid #e60012;
  -webkit-animation: loadingRotate 2.4s infinite linear;
  animation: loadingRotate 2.4s infinite linear;
}

#hero::after {
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border-right: 2px solid #e60012;
  border-bottom: 2px solid #e60012;
  -webkit-animation: loadingRotate 1.3s infinite linear;
  animation: loadingRotate 1.3s infinite linear;
}

.static #hero .stage {
  background: #fff url(/100th/img/hero-bg.jpg) repeat-x 50% 50%;
  background-size: contain;
}

.static #hero .stage .hdg {
  opacity: 1;
}

.static #hero .stage .hdg::after {
  content: "";
  position: absolute;
  top: 57.75%;
  left: 26%;
  z-index: 3;
  width: 72.52252%;
  height: 108.55856%;
  background-image: url(/100th/img/hero-ribbon.png);
  background-size: cover;
}

#hero .stage {
  position: relative;
  width: 100%;
  height: 50vw;
  max-height: 960px;
}

#hero .stage > span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  background: #fff url(/100th/img/hero-bg.jpg) repeat-x 0 50%;
  background-size: contain;
  opacity: 0;
  transition: opacity 4000ms 1600ms;
}

#hero .stage .hdg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 27.75vw;
  max-width: 444px;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 1600ms 200ms;
}

#hero .stage .hdg > span {
  position: absolute;
  top: 57.75%;
  left: 26%;
  z-index: 3;
  display: block;
  width: 72.52252%;
  height: 0;
  background-image: url(/100th/img/hero-ribbon.png);
  background-size: cover;
  opacity: 0;
  transition: height 1600ms 1200ms, opacity 800ms 1200ms;
}

#hero .ui {
  max-width: 1300px;
  margin: 0 auto;
  padding: .25em 10px;
  text-align: right;
  opacity: 0;
  transition: opacity 800ms 3200ms;
}

#hero .ui > button {
  position: relative;
  display: inline-block;
  width: 4.75em;
  padding: .25em 5px .25em 22px;
  background-color: transparent;
  font-size: 1.4rem;
  text-align: center;
  transition: color 200ms;
}

#hero .ui > button:hover, #hero .ui > button:focus, #hero .ui > button:active {
  color: #e60012;
}

#hero .ui > button::before, #hero .ui > button::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 5px;
  display: none;
  transform: translateY(-50%);
}

#hero .ui > button::before {
  width: 10px;
  height: 12px;
  border-left: 3px solid #e60012;
  border-right: 3px solid #e60012;
  margin-left: 1px;
}

#hero .ui > button::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #e60012;
}

#hero .ui > button[aria-pressed="false"]::before {
  display: block;
}

#hero .ui > button[aria-pressed="true"]::after {
  display: block;
}

#hero.loading::before, #hero.loading::after {
  opacity: 1;
}

#hero.mgr .stage > span {
  opacity: 1;
  -webkit-animation: merryGoRound 60s infinite linear;
  animation: merryGoRound 60s infinite linear;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  will-change: background-position;
}

#hero.mgr .stage .hdg {
  opacity: 1;
}

#hero.mgr .stage .hdg > span {
  height: 108.55856%;
  opacity: 1;
}

#hero.mgr .stage.play > span {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

#hero.mgr .ui {
  opacity: 1;
}

@-webkit-keyframes merryGoRound {
  0% {
    background-position: 0   50%;
  }
  100% {
    background-position: -100vw 50%;
  }
}

@keyframes merryGoRound {
  0% {
    background-position: 0   50%;
  }
  100% {
    background-position: -100vw 50%;
  }
}

@-webkit-keyframes loadingRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loadingRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 1920px) {
  .static #hero .stage {
    background-size: cover;
  }
  #hero .stage > span {
    background-size: cover;
  }
}

@media only screen and (max-width: 980px) {
  #hero .stage {
    height: 60vw;
  }
  #hero .stage .hdg {
    width: 34vw;
  }
  #hero.mgr .stage > span {
    -webkit-animation-duration: 50s;
    animation-duration: 50s;
  }
  @-webkit-keyframes merryGoRound {
    0% {
      background-position: 0   50%;
    }
    100% {
      background-position: -120vw 50%;
    }
  }
  @keyframes merryGoRound {
    0% {
      background-position: 0   50%;
    }
    100% {
      background-position: -120vw 50%;
    }
  }
}

@media only screen and (max-width: 735px) {
  #hero {
    margin-bottom: 10px;
  }
  #hero .stage {
    height: 81vw;
  }
  #hero .stage .hdg {
    width: 47vw;
  }
  #hero .ui > button {
    margin-right: 15px;
  }
  #hero.mgr .stage > span {
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
  }
  @-webkit-keyframes merryGoRound {
    0% {
      background-position: 0   50%;
    }
    100% {
      background-position: -162vw 50%;
    }
  }
  @keyframes merryGoRound {
    0% {
      background-position: 0   50%;
    }
    100% {
      background-position: -162vw 50%;
    }
  }
}

@media only screen and (max-width: 480px) {
  #hero {
    margin-bottom: 0;
  }
  #hero .stage {
    height: 102vw;
  }
  #hero .stage .hdg {
    width: 59vw;
  }
  #hero.mgr .stage > span {
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
  }
  @-webkit-keyframes merryGoRound {
    0% {
      background-position: 0   50%;
    }
    100% {
      background-position: -204vw 50%;
    }
  }
  @keyframes merryGoRound {
    0% {
      background-position: 0   50%;
    }
    100% {
      background-position: -204vw 50%;
    }
  }
}

/* ===========================
greeting
--------------------------- */
#greeting {
  max-width: 1070px;
  margin: 0 auto;
  padding: 20px 30px;
}

#greeting > .inner {
  position: relative;
  padding-top: 62.37624%;
}

#greeting .text1,
#greeting .text2,
#greeting .img {
  position: absolute;
}

#greeting .text1 {
  top: 0;
  left: 0;
  width: 31.68317%;
}

#greeting .text2 {
  left: 0;
  bottom: 0;
  width: 41.58419%;
}

#greeting .img {
  top: 0;
  right: 0;
  width: 51.48515%;
}

@media only screen and (max-width: 735px) {
  #greeting > .inner {
    position: static;
    padding-top: 0;
  }
  #greeting .text1,
  #greeting .text2,
  #greeting .img {
    position: static;
    width: 100%;
  }
  #greeting .text2 {
    margin-top: 40px;
  }
  #greeting .img {
    margin-top: 20px;
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  #greeting .text1 {
    width: 75%;
  }
}

/* ===========================
memories
--------------------------- */
#memories > .inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 30px;
}

#memories > .inner .hdg {
  padding: .5em 0;
  color: #000;
  font-size: 3.8rem;
  text-align: center;
}

#memories > .inner .lead {
  max-width: 780px;
  line-height: 1.75;
  margin: 0 auto 1.5em auto;
  font-size: 2rem;
}

#memories .carousel {
  overflow: hidden;
}

#memories .carousel > .inner {
  position: relative;
  max-width: calc(864px + 16vw);
  margin: 0 auto;
  padding: 0 8vw;
}

#memories .carousel .content {
  margin-bottom: 30px;
  opacity: 0;
  transition: opacity 800ms;
}

#memories .carousel .content > ul {
  z-index: 1;
}

#memories .carousel .content > ul > li {
  width: 100%;
}

#memories .carousel .content > ul > li > a {
  display: block;
  text-decoration: none;
}

#memories .carousel .content > ul > li > a > .img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #fff;
}

#memories .carousel .content > ul > li > a > .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border: 6px solid #e60012;
  opacity: 0;
  transition: opacity 800ms;
}

#memories .carousel .content > ul > li > a > .img img {
  transition: opacity 800ms, transform 400ms;
}

#memories .carousel .content > ul > li > a > .text {
  position: relative;
  display: block;
  min-height: 110px;
  padding-top: 50px;
  color: #e60012;
  text-align: center;
}

#memories .carousel .content > ul > li > a > .text .badge {
  position: absolute;
  top: -51px;
  left: 50%;
  display: block;
  width: 96px;
  height: 96px;
  line-height: 2.25;
  border: 2px solid #e60012;
  border-radius: 50%;
  padding-right: .125em;
  background-color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: .025em;
  transform: translateX(-50%);
  transition: background-color 200ms, color 200ms;
}

#memories .carousel .content > ul > li > a > .text .badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #e60012;
  border-bottom: 2px solid #e60012;
  background-color: #fff;
  transform: translateX(-50%) rotate(45deg) skew(10deg, 10deg);
  transition: background-color 200ms;
}

#memories .carousel .content > ul > li > a > .text .badge > span {
  font-size: 150%;
  font-weight: normal;
}

#memories .carousel .content > ul > li > a > .text .title {
  position: relative;
  display: inline-block;
  padding: .125em;
  font-size: 3.2rem;
}

#memories .carousel .content > ul > li > a > .text .title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border-bottom: 2px solid #e60012;
  transition: opacity 400ms;
}

#memories .carousel .content > ul > li > a:hover > .img img, #memories .carousel .content > ul > li > a:focus > .img img, #memories .carousel .content > ul > li > a:active > .img img {
  opacity: .7;
  transform: scale(1.05);
  will-change: opacity, transform;
}

#memories .carousel .content > ul > li > a:hover > .text .badge, #memories .carousel .content > ul > li > a:focus > .text .badge, #memories .carousel .content > ul > li > a:active > .text .badge {
  background-color: #e60012;
  color: #fff;
  will-change: background-color, color;
}

#memories .carousel .content > ul > li > a:hover > .text .badge::after, #memories .carousel .content > ul > li > a:focus > .text .badge::after, #memories .carousel .content > ul > li > a:active > .text .badge::after {
  background-color: #e60012;
  will-change: background-color;
}

#memories .carousel .content > ul > li > a:hover > .text .title::after, #memories .carousel .content > ul > li > a:focus > .text .title::after, #memories .carousel .content > ul > li > a:active > .text .title::after {
  opacity: 0;
  will-change: opacity;
}

#memories .carousel .content > ul > li.current > a > .img::after {
  opacity: 1;
  will-change: opacity;
}

#memories .carousel .ui {
  display: none;
  opacity: 0;
  transition: opacity 800ms;
}

#memories .carousel .ui > .next,
#memories .carousel .ui > .prev {
  position: absolute;
  top: calc(50% - 55px);
  z-index: 2;
}

#memories .carousel .ui > .next > button,
#memories .carousel .ui > .prev > button {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 2px solid #e60012;
  border-radius: 50%;
  background-color: #e60012;
  transform: translateY(-50%);
  transition: background-color 200ms;
}

#memories .carousel .ui > .next > button::before,
#memories .carousel .ui > .prev > button::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 15px;
  height: 25px;
  background: transparent none no-repeat 0 50%;
  background-size: cover;
  transform: translate(-50%, -50%);
}

#memories .carousel .ui > .next > button span,
#memories .carousel .ui > .prev > button span {
  position: absolute;
  top: -999em;
  left: -999em;
}

#memories .carousel .ui > .next > button:hover, #memories .carousel .ui > .next > button:focus, #memories .carousel .ui > .next > button:active,
#memories .carousel .ui > .prev > button:hover,
#memories .carousel .ui > .prev > button:focus,
#memories .carousel .ui > .prev > button:active {
  background-color: #fff;
  will-change: background-color;
}

#memories .carousel .ui > .next > button:hover::before, #memories .carousel .ui > .next > button:focus::before, #memories .carousel .ui > .next > button:active::before,
#memories .carousel .ui > .prev > button:hover::before,
#memories .carousel .ui > .prev > button:focus::before,
#memories .carousel .ui > .prev > button:active::before {
  background-position: 100% 50%;
}

#memories .carousel .ui > .next {
  right: calc(8vw - 21px);
}

#memories .carousel .ui > .next > button::before {
  left: 52%;
  background-image: url(/100th/img/arrow-right-01.png);
}

#memories .carousel .ui > .prev {
  left: calc(8vw - 21px);
}

#memories .carousel .ui > .prev > button::before {
  left: 48%;
  background-image: url(/100th/img/arrow-left-01.png);
}

.static #memories .carousel .content {
  opacity: 1;
}

.static #memories .carousel .content > ul > li + li {
  margin-top: 45px;
}

#memories .carousel.ready .content {
  position: relative;
}

#memories .carousel.ready .content::before, #memories .carousel.ready .content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 50vw;
}

#memories .carousel.ready .content::before {
  left: -50vw;
}

#memories .carousel.ready .content::after {
  right: -50vw;
}

#memories .carousel.ready .content > ul {
  position: relative;
  display: -webkit-flex;
  display: flex;
  transition: left 800ms;
  will-change: left;
}

#memories .carousel.ready .ui {
  display: block;
}

#memories .carousel.show .content,
#memories .carousel.show .ui {
  opacity: 1;
  will-change: opacity;
}

#memories .carousel.static .content > ul {
  transition: none;
}

@media only screen and (max-width: 980px) {
  #memories > .inner .hdg {
    font-size: 3.4rem;
  }
  #memories > .inner .lead {
    font-size: 1.8rem;
  }
  #memories .carousel .content {
    margin-bottom: 25px;
  }
  #memories .carousel .content > ul > li > a > .text {
    min-height: 104px;
  }
  #memories .carousel .content > ul > li > a > .text .badge {
    top: -46px;
    width: 86px;
    height: 86px;
    font-size: 2.4rem;
  }
  #memories .carousel .content > ul > li > a > .text .title {
    font-size: 2.8rem;
  }
  #memories .carousel .ui > .next,
  #memories .carousel .ui > .prev {
    top: calc(50% - 52px);
  }
  .static #memories .carousel .content > ul > li + li {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 735px) {
  #memories > .inner .hdg {
    font-size: 2.8rem;
  }
  #memories > .inner .lead {
    margin-bottom: 1.75em;
    font-size: 1.6rem;
  }
  #memories .carousel .content {
    margin-bottom: 20px;
  }
  #memories .carousel .content > ul > li > a > .text {
    min-height: 84px;
    padding-top: 42px;
  }
  #memories .carousel .content > ul > li > a > .text .badge {
    top: -41px;
    width: 76px;
    height: 76px;
    font-size: 2rem;
  }
  #memories .carousel .content > ul > li > a > .text .badge::after {
    bottom: -7px;
    width: 12px;
    height: 12px;
  }
  #memories .carousel .content > ul > li > a > .text .title {
    font-size: 2.2rem;
  }
  #memories .carousel .content > ul > li > a > .text .title::after {
    border-bottom-width: 1px;
  }
  #memories .carousel .ui > .next,
  #memories .carousel .ui > .prev {
    top: calc(50% - 42px);
  }
  #memories .carousel .ui > .next > button,
  #memories .carousel .ui > .prev > button {
    width: 34px;
    height: 34px;
  }
  #memories .carousel .ui > .next > button::before,
  #memories .carousel .ui > .prev > button::before {
    width: 12px;
    height: 20px;
  }
  #memories .carousel .ui > .next {
    right: calc(8vw - 14px);
  }
  #memories .carousel .ui > .next > button::before {
    left: 54%;
  }
  #memories .carousel .ui > .prev {
    left: calc(8vw - 14px);
  }
  #memories .carousel .ui > .prev > button::before {
    left: 46%;
  }
  .static #memories .carousel .content > ul > li + li {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 480px) {
  #memories > .inner .hdg {
    font-size: 2.4rem;
  }
  #memories > .inner .lead {
    font-size: 1.4rem;
  }
  #memories .carousel .content {
    margin-bottom: 15px;
  }
  #memories .carousel .content > ul > li > a > .text {
    min-height: 72px;
    padding-top: 38px;
  }
  #memories .carousel .content > ul > li > a > .text .badge {
    top: -36px;
    width: 66px;
    height: 66px;
    font-size: 1.8rem;
  }
  #memories .carousel .content > ul > li > a > .text .badge::after {
    bottom: -6px;
    width: 10px;
    height: 10px;
  }
  #memories .carousel .content > ul > li > a > .text .title {
    font-size: 1.8rem;
  }
  #memories .carousel .ui > .next,
  #memories .carousel .ui > .prev {
    top: calc(50% - 36px);
  }
  .static #memories .carousel .content > ul > li + li {
    margin-top: 30px;
  }
}

/* ===========================
history
--------------------------- */
#history > .inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 30px;
}

#history > .inner > .hdg {
  padding: .5em 0;
  color: #000;
  font-size: 3.8rem;
  text-align: center;
}

#history > .inner > .lead {
  max-width: 920px;
  line-height: 1.75;
  margin: 0 auto 2em auto;
  font-size: 2rem;
}

#history .period {
  padding-bottom: 50px;
}

#history .period > .hdg {
  position: relative;
  line-height: .8;
  margin-bottom: .25em;
  color: #dd121c;
  font-size: 12rem;
  text-align: center;
}

#history .period > .hdg::before, #history .period > .hdg::after {
  content: "";
  position: absolute;
  top: 57.5%;
  left: 0;
  right: 0;
  z-index: 1;
  display: block;
  border-top: 1px solid #dd121c;
}

#history .period > .hdg::before {
  margin-top: -2px;
}

#history .period > .hdg::after {
  margin-top: 2px;
}

#history .period > .hdg > span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 20px;
  background-color: #fff;
}

#history .period > .hdg > span::first-letter {
  font-size: 125%;
}

#history .period > .point {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 80px;
}

#history .period > .point > .col {
  position: relative;
  width: 50%;
}

#history .period > .point > .col:nth-child(1) {
  padding-top: 24px;
}

#history .period > .point > .col:nth-child(2) {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

#history .period > .point > .col > .hdg {
  position: absolute;
  top: 0;
  z-index: 2;
  display: block;
  width: 26.071428571%;
  margin-top: 20px;
  background: transparent url(/100th/img/history-bg-01.png) no-repeat 50% 50%;
  background-size: cover;
  color: #dd121c;
  font-size: 4.5rem;
  text-align: center;
  opacity: 0;
  transition: margin-top 800ms 400ms, opacity 800ms 400ms;
}

#history .period > .point > .col > .hdg::before {
  content: "";
  display: block;
  padding-top: 100%;
}

#history .period > .point > .col > .hdg > span {
  position: absolute;
  top: 45%;
  left: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
}

#history .period > .point > .col > .img {
  position: relative;
  top: 20px;
  z-index: 1;
  display: block;
  opacity: 0;
  transition: top 800ms, opacity 800ms;
}

.static #history .period > .point > .col > .hdg,
.static #history .period > .point > .col > .img {
  opacity: 1;
}

#history .period > .point > .col > .lead,
#history .period > .point > .col > .text {
  margin-bottom: 0;
  font-size: 1.6rem;
}

#history .period > .point > .col > .lead {
  margin-top: 1.25em;
}

#history .period > .point > .col > .lead > b {
  display: block;
  margin-top: .125em;
  color: #dd121c;
  font-size: 2.8rem;
  font-weight: normal;
}

#history .period > .point > .col > .lead + .text {
  margin-top: 1.5em;
}

#history .period > .point > .col > .text {
  margin-left: 30px;
}

#history .period > .point.point-01 {
  -webkit-flex-direction: row;
  flex-direction: row;
}

#history .period > .point.point-01 > .col:first-child {
  padding-right: 60px;
}

#history .period > .point.point-01 > .col > .hdg {
  right: 36px;
}

#history .period > .point.point-02 {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

#history .period > .point.point-02 > .col:first-child {
  padding-left: 60px;
}

#history .period > .point.point-02 > .col > .hdg {
  left: 36px;
}

#history .period > .point.show > .col > .hdg,
#history .period > .point.show > .col > .img {
  opacity: 1;
}

#history .period > .point.show > .col > .hdg {
  margin-top: 0;
}

#history .period > .point.show > .col > .img {
  top: 0;
}

@media only screen and (max-width: 980px) {
  #history > .inner > .hdg {
    font-size: 3.4rem;
  }
  #history > .inner > .lead {
    margin-bottom: 1.5em;
    font-size: 1.8rem;
  }
  #history .period {
    padding-bottom: 40px;
  }
  #history .period > .hdg {
    font-size: 10rem;
  }
  #history .period > .point {
    margin: 0 30px;
  }
  #history .period > .point + .point {
    margin-top: 20px;
  }
  #history .period > .point > .col > .hdg {
    font-size: 3rem;
  }
  #history .period > .point > .col > .lead > b {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 735px) {
  #history > .inner {
    padding: 0 20px;
  }
  #history > .inner > .hdg {
    font-size: 2.8rem;
  }
  #history > .inner > .lead {
    margin-bottom: 1.25em;
    font-size: 1.6rem;
  }
  #history .period {
    padding-bottom: 35px;
  }
  #history .period > .hdg {
    margin: 0 -20px .25em -20px;
    font-size: 8rem;
  }
  #history .period > .point {
    display: block;
    margin: 0;
  }
  #history .period > .point + .point {
    margin-top: 40px;
  }
  #history .period > .point > .col {
    width: auto;
  }
  #history .period > .point > .col:nth-child(1) {
    max-width: 372px;
    margin: 0 auto;
    padding-top: 0;
  }
  #history .period > .point > .col:nth-child(2) {
    display: block;
  }
  #history .period > .point > .col > .hdg {
    top: -12px;
    font-size: 2.8rem;
  }
  #history .period > .point > .col > .lead,
  #history .period > .point > .col > .text {
    text-align: left;
  }
  #history .period > .point > .col > .lead {
    font-size: 1.4rem;
  }
  #history .period > .point > .col > .lead > b {
    font-size: 1.8rem;
  }
  #history .period > .point > .col > .lead + .text {
    margin-top: 1.25em;
  }
  #history .period > .point > .col > .text {
    margin-left: 0;
    font-size: 1.2rem;
  }
  #history .period > .point.point-01 > .col:first-child {
    padding-right: 0;
  }
  #history .period > .point.point-01 > .col > .hdg {
    right: -12px;
  }
  #history .period > .point.point-02 > .col:first-child {
    padding-left: 0;
  }
  #history .period > .point.point-02 > .col > .hdg {
    left: -12px;
  }
}

@media only screen and (max-width: 480px) {
  #history > .inner > .hdg {
    font-size: 2.4rem;
  }
  #history > .inner > .lead {
    font-size: 1.4rem;
  }
  #history .period > .hdg {
    font-size: 6rem;
  }
  #history .period > .point > .col:nth-child(1) {
    max-width: 248px;
  }
  #history .period > .point > .col > .hdg {
    width: 29.43548%;
    font-size: 2.4rem;
  }
}

/* ===========================
movie
--------------------------- */
#movie > .inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 30px;
}

#movie > .inner .hdg {
  padding: .25em 0 .75em 0;
  color: #000;
  font-size: 3.8rem;
  text-align: center;
}

#movie > .inner .youtube {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -2.34375% 1.875em -2.34375%;
}

#movie > .inner .youtube > li {
  width: calc(50% - (2.34375% * 2));
  margin: 0 2.34375% 1.875em 2.34375%;
}

#movie > .inner .youtube > li > div {
  position: relative;
  padding-top: 56.25%;
}

#movie > .inner .youtube > li > div > iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  width: 100%;
  height: 100%;
}

#movie > .inner .youtube > li > div > iframe[title] {
  display: block;
}

@media only screen and (max-width: 980px) {
  #movie > .inner .hdg {
    font-size: 3.4rem;
  }
}

@media only screen and (max-width: 735px) {
  #movie > .inner .hdg {
    font-size: 2.8rem;
  }
  #movie > .inner .youtube {
    display: block;
    margin: 0 0 1.875em 0;
  }
  #movie > .inner .youtube > li {
    width: auto;
    margin: 0;
  }
  #movie > .inner .youtube > li + li {
    margin-top: .375em;
  }
}

@media only screen and (max-width: 480px) {
  #movie > .inner .hdg {
    font-size: 2.4rem;
  }
}

/* ===========================
tomorrow
--------------------------- */
.static #tomorrow > .stage .hdg::before, .static #tomorrow > .stage .hdg::after {
  content: "";
  position: absolute;
  display: block;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.static #tomorrow > .stage .hdg::before {
  top: -610%;
  left: -95%;
  width: 125%;
  height: 972.72727%;
  background-image: url(/100th/img/tomorrow-ribbon-01.png);
}

.static #tomorrow > .stage .hdg::after {
  top: 490%;
  left: -45%;
  width: 237.27273%;
  height: 627.27273%;
  background-image: url(/100th/img/tomorrow-ribbon-02.png);
}

#tomorrow > .stage {
  position: relative;
  width: 100%;
  height: 50vw;
  max-height: 800px;
  background: transparent url(/100th/img/tomorrow-bg.jpg) no-repeat 100% 100%;
  background-size: cover;
}

#tomorrow > .stage .hdg {
  position: absolute;
  top: 31%;
  left: 50%;
  width: 27.5vw;
  max-width: 440px;
  height: 2.75vw;
  max-height: 44px;
  transform: translateX(-50%);
}

#tomorrow > .stage .hdg > img {
  transform: scale(1);
  transform-origin: 50% 0;
  transition: transform 200ms;
  will-change: transform;
}

#tomorrow > .stage .hdg > .ribbon-01,
#tomorrow > .stage .hdg > .ribbon-02 {
  position: absolute;
  display: block;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

#tomorrow > .stage .hdg > .ribbon-01 {
  top: -610%;
  left: -95%;
  width: 125%;
  height: 0;
  background-image: url(/100th/img/tomorrow-ribbon-01.png);
  opacity: 0;
  transition: height 1600ms ease-in, opacity 800ms;
}

#tomorrow > .stage .hdg > .ribbon-02 {
  top: 490%;
  left: -45%;
  width: 0;
  height: 627.27273%;
  background-image: url(/100th/img/tomorrow-ribbon-02.png);
  opacity: 0;
  transition: width 1600ms 2000ms, opacity 800ms 2000ms;
}

#tomorrow > .stage.show .hdg > .ribbon-01 {
  height: 972.72727%;
  opacity: 1;
  will-change: height, opacity;
}

#tomorrow > .stage.show .hdg > .ribbon-02 {
  width: 237.27273%;
  opacity: 1;
  will-change: width, opacity;
}

#tomorrow > .link > .inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 60px 30px;
}

#tomorrow > .link .product {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -16px;
}

#tomorrow > .link .product > li {
  width: 230px;
  margin: 16px;
}

#tomorrow > .link .product > li > a {
  display: block;
  transition: opacity 200ms;
}

#tomorrow > .link .product > li > a:hover, #tomorrow > .link .product > li > a:focus, #tomorrow > .link .product > li > a:active {
  opacity: .7;
}

#tomorrow > .company {
  background-color: #ffece5;
}

#tomorrow > .company > .inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 3.375em 30px 3.75em 30px;
}

#tomorrow > .company .lead {
  max-width: 660px;
  margin: 0 auto;
  font-size: 2.2rem;
}

#tomorrow > .company .lead + .logo {
  margin-top: 2.125em;
}

#tomorrow > .company .logo {
  text-align: center;
}

#tomorrow > .company .logo > a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  max-width: 292px;
  height: 71px;
  margin: 0 auto;
  box-shadow: 0 .075em .5em rgba(0, 0, 0, .125);
  border-radius: 8px;
  background-color: #fff;
}

#tomorrow > .company .logo > a > span {
  display: inline-block;
  width: 148px;
}

@media only screen and (max-width: 980px) {
  #tomorrow > .stage .hdg > img {
    transform: scale(1.2);
  }
  #tomorrow > .link .product {
    margin: -12px;
  }
  #tomorrow > .link .product > li {
    width: 200px;
    margin: 12px;
  }
  #tomorrow > .company > .inner {
    padding: 2.875em 30px 3.25em 30px;
  }
  #tomorrow > .company .lead {
    font-size: 2rem;
  }
  #tomorrow > .company .lead + .logo {
    margin-top: 1.625em;
  }
}

@media only screen and (max-width: 735px) {
  #tomorrow > .stage .hdg > img {
    transform: scale(1.6);
  }
  #tomorrow > .link > .inner {
    padding: 50px 30px;
  }
  #tomorrow > .link .product {
    margin: -10px;
  }
  #tomorrow > .link .product > li {
    width: 172px;
    margin: 10px;
  }
  #tomorrow > .company > .inner {
    padding: 2.65em 30px 3em 30px;
  }
  #tomorrow > .company .lead {
    font-size: 1.6rem;
  }
  #tomorrow > .company .lead + .logo {
    margin-top: 1.5em;
  }
}

@media only screen and (max-width: 480px) {
  #tomorrow > .stage .hdg > img {
    transform: scale(2);
  }
  #tomorrow > .link > .inner {
    padding: 40px 30px;
  }
  #tomorrow > .link .product {
    margin: -8px;
  }
  #tomorrow > .link .product > li {
    width: calc(49.99999% - 16px);
    margin: 8px;
  }
  #tomorrow > .company > .inner {
    padding: 2.125em 30px 2.5em 30px;
  }
  #tomorrow > .company .lead {
    font-size: 1.4rem;
  }
  #tomorrow > .company .lead + .logo {
    margin-top: 1em;
  }
}

/* ===========================
modal
--------------------------- */
#modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  display: none;
  background-color: rgba(0, 0, 0, .8);
  opacity: 0;
}

#modal .dialog {
  position: absolute;
  top: 40px;
  left: calc((100% - 60vw) / 2);
  z-index: 999;
  width: 60vw;
  display: none;
  margin: 0 auto;
  box-shadow: 0 0 1em rgba(0, 0, 0, .25);
  border-radius: 16px;
  background-color: #fff;
  opacity: 0;
}

#modal .dialog::before, #modal .dialog::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  max-height: 100%;
  height: calc(60vw * .565);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#modal .dialog::before {
  z-index: 1;
  border-radius: 17px;
  background-size: cover;
}

#modal .dialog::after {
  z-index: 2;
  border-radius: 16px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, .5) 0, white 100%);
}

#modal .dialog > .inner {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
}

#modal .dialog .hdg {
  margin-bottom: .875em;
  color: #000;
  font-size: 3.2rem;
  text-align: center;
}

#modal .dialog .hdg .badge {
  position: relative;
  display: block;
  width: 96px;
  height: 96px;
  line-height: 2.25;
  margin: 0 auto .5em auto;
  border: 2px solid #e60012;
  border-radius: 50%;
  padding-right: .125em;
  background-color: #fff;
  color: #e60012;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: .025em;
  transition: background-color 200ms, color 200ms;
}

#modal .dialog .hdg .badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #e60012;
  border-bottom: 2px solid #e60012;
  background-color: #fff;
  transform: translateX(-50%) rotate(45deg) skew(10deg, 10deg);
  transition: background-color 200ms;
}

#modal .dialog .hdg .badge > span {
  font-size: 150%;
  font-weight: normal;
}

#modal .dialog .episode {
  overflow: hidden;
}

#modal .dialog .episode p {
  margin-bottom: 1.5em;
  font-size: 1.6rem;
}

#modal .dialog .episode + .product {
  margin-top: .75em;
}

#modal .dialog .product {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#modal .dialog .product > dt {
  font-size: 1.8rem;
}

#modal .dialog .product > dt a .img {
  position: absolute;
  top: .25em;
  left: 0;
  display: block;
  transition: opacity 200ms;
}

#modal .dialog .product > dt a .title {
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
  color: #e60012;
}

#modal .dialog .product > dt a .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border-bottom: 1px solid #e60012;
  transition: opacity 200ms;
}

#modal .dialog .product > dt a .title small {
  font-size: 1.4rem;
}

#modal .dialog .product > dt a:hover .img, #modal .dialog .product > dt a:focus .img, #modal .dialog .product > dt a:active .img {
  opacity: .7;
}

#modal .dialog .product > dt a:hover .title::before, #modal .dialog .product > dt a:focus .title::before, #modal .dialog .product > dt a:active .title::before {
  opacity: 0;
}

#modal .dialog .product > dd {
  margin-top: .75em;
  font-size: 1.4rem;
}

#modal .dialog .notice {
  position: relative;
  top: .75em;
  text-align: right;
}

#modal .dialog .notice small {
  color: #999;
  font-size: 1.2rem;
}

#modal .dialog .close {
  position: absolute;
  top: -30px;
  right: 0;
  display: block;
  padding-left: 22px;
  background-color: transparent;
  color: #fff;
  font-size: 1.4rem;
  transition: color 200ms;
}

#modal .dialog .close::before, #modal .dialog .close::after {
  content: "";
  position: absolute;
  top: 47.5%;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  transition: background-color 200ms;
}

#modal .dialog .close::before {
  transform: rotate(45deg);
}

#modal .dialog .close::after {
  transform: rotate(-45deg);
}

#modal .dialog .close:hover, #modal .dialog .close:focus, #modal .dialog .close:active {
  color: #b2b2b2;
}

#modal .dialog .close:hover::before, #modal .dialog .close:hover::after, #modal .dialog .close:focus::before, #modal .dialog .close:focus::after, #modal .dialog .close:active::before, #modal .dialog .close:active::after {
  background-color: #b2b2b2;
}

#modal .dialog#episode-01::before {
  background-image: url(/100th/img/episode-img-01.jpg);
}

#modal .dialog#episode-01 .product {
  min-height: 89px;
  padding-left: 123px;
}

#modal .dialog#episode-02::before {
  background-image: url(/100th/img/episode-img-02.jpg);
}

#modal .dialog#episode-02 .product {
  min-height: 91px;
  padding-left: 90px;
}

#modal .dialog#episode-03::before {
  background-image: url(/100th/img/episode-img-03.jpg);
}

#modal .dialog#episode-03 .product {
  min-height: 90px;
  padding-left: 68px;
}

#modal .dialog#episode-04::before {
  background-image: url(/100th/img/episode-img-04.jpg);
}

#modal .dialog#episode-04 .product {
  min-height: 90px;
  padding-left: 165px;
}

#modal .dialog.ready {
  display: block;
  transform: scale(1.05);
  transform-origin: 50% 25%;
  transition: opacity 800ms, transform 800ms;
  will-change: opacity, transform;
}

#modal .dialog.ready.show {
  opacity: 1;
  transform: scale(1);
}

#modal.ready {
  display: block;
  transition: opacity 800ms;
  will-change: opacity;
}

#modal.ready.show {
  opacity: 1;
}

.static #modal {
  position: static;
  display: block;
  padding: 10px 0;
  background-color: transparent;
  opacity: 1;
}

.static #modal .dialog {
  position: relative;
  top: inherit;
  left: inherit;
  display: block;
  margin-bottom: 40px;
  opacity: 1;
}

@media only screen and (max-width: 980px) {
  #modal .dialog {
    left: calc((100% - 68vw) / 2);
    width: 68vw;
  }
  #modal .dialog::before, #modal .dialog::after {
    height: calc(68vw * .565);
  }
  #modal .dialog > .inner {
    padding: 40px 30px;
  }
  #modal .dialog .hdg {
    font-size: 2.8rem;
  }
  #modal .dialog .hdg .badge {
    width: 86px;
    height: 86px;
    font-size: 2.4rem;
  }
  #modal .dialog .episode p {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 735px) {
  #modal .dialog {
    left: calc((100% - 76vw) / 2);
    width: 76vw;
    border-radius: 14px;
  }
  #modal .dialog::before, #modal .dialog::after {
    height: calc(76vw * .565);
  }
  #modal .dialog::before {
    border-radius: 15px;
  }
  #modal .dialog::after {
    border-radius: 14px;
  }
  #modal .dialog > .inner {
    padding: 30px;
  }
  #modal .dialog .hdg {
    font-size: 2.2rem;
  }
  #modal .dialog .hdg .badge {
    width: 76px;
    height: 76px;
    margin-bottom: .625em;
    font-size: 2rem;
  }
  #modal .dialog .hdg .badge::after {
    bottom: -7px;
    width: 12px;
    height: 12px;
  }
  #modal .dialog .episode p {
    font-size: 1.3rem;
  }
  #modal .dialog .episode + .product {
    margin-top: 1em;
  }
  #modal .dialog .product > dt {
    font-size: 1.6rem;
    text-align: center;
  }
  #modal .dialog .product > dt a .img {
    position: static;
    margin-bottom: .5em;
  }
  #modal .dialog .product > dt a .title small {
    font-size: 1.2rem;
  }
  #modal .dialog .product > dd {
    margin-top: 1em;
    font-size: 1.2rem;
    text-align: left;
  }
  #modal .dialog#episode-01 .product, #modal .dialog#episode-02 .product, #modal .dialog#episode-03 .product, #modal .dialog#episode-04 .product {
    min-height: inherit;
    padding-left: 0;
  }
}

@media only screen and (max-width: 480px) {
  #modal .dialog {
    left: calc((100% - 84vw) / 2);
    width: 84vw;
    border-radius: 12px;
  }
  #modal .dialog::before, #modal .dialog::after {
    height: calc(84vw * .565);
  }
  #modal .dialog::before {
    border-radius: 13px;
  }
  #modal .dialog::after {
    border-radius: 12px;
  }
  #modal .dialog .hdg {
    margin-bottom: 1em;
    font-size: 1.8rem;
  }
  #modal .dialog .hdg .badge {
    width: 66px;
    height: 66px;
    margin-bottom: .75em;
    font-size: 1.8rem;
  }
  #modal .dialog .hdg .badge::after {
    bottom: -6px;
    width: 10px;
    height: 10px;
  }
  #modal .dialog .episode p {
    font-size: 1.2rem;
  }
  #modal .dialog .episode + .product {
    margin-top: .75em;
  }
}
