@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: none;
  box-sizing: border-box;
}

/* iOSのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* iOSサファリで発生する部分的な文字の拡大表示の抑制 */
html {
  -webkit-text-size-adjust: 100%;
}

::-moz-selection {
  color: var(--off-color);
  background-color: var(--background-theme-color);
}

::selection {
  color: var(--off-color);
  background-color: var(--background-theme-color);
}

:root {
  --small: clamp(0.75rem, 0.661rem + 0.29vw, 0.875rem);
  --regular: clamp(1rem, 0.911rem + 0.29vw, 1.125rem);
  --medium: clamp(1.5rem, 1.366rem + 0.43vw, 1.688rem);
  --large: clamp(1.688rem, 1.286rem + 1.29vw, 2.25rem);
  --title-color: #323232;
  --text-color: #646464;
  --sub-color: #969696;
  --off-color: #ffffff;
  --theme-color: #002f7b;
  --background-theme-color: #002f7b;
  --opacity: 0.7;
  --transition: 0.3s;
}

@font-face {
  font-family: "GenShinGothic-P-Regular";
  src: url("../fonts/GenShinGothic-P-Regular.woff2") format("woff2"), url("../fonts/GenShinGothic-P-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "GenShinGothic-P-Medium";
  src: url("../fonts/GenShinGothic-P-Medium.woff2") format("woff2"), url("../fonts/GenShinGothic-P-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "GenShinGothic-P-Bold";
  src: url("../fonts/GenShinGothic-P-Bold.woff2") format("woff2"), url("../fonts/GenShinGothic-P-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "ZenMaruGothic-Bold";
  src: url("../fonts/ZenMaruGothic-Bold.woff2") format("woff2"), url("../fonts/ZenMaruGothic-Bold.ttf") format("truetype");
}
body {
  font-family: "GenShinGothic-P-Regular";
  font-size: var(--regular);
  color: var(--text-color);
  line-height: 1.5;
  text-align: justify;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "GenShinGothic-P-Regular";
  font-size: var(--regular);
  font-weight: normal;
}

a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border: none;
  -webkit-backface-visibility: hidden; /*クロームの画像ぼけ防止*/
  image-rendering: -webkit-optimize-contrast; /*クロームの画像ぼけ防止*/
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #323232;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  header {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    padding: 0 0 10px 0;
  }
}
header p a {
  font-family: "GenShinGothic-P-bold";
  color: var(--off-color);
  line-height: 1;
  padding: 15px 40px;
  display: block;
  background-color: var(--background-theme-color);
}
@media screen and (max-width: 1000px) {
  header p a {
    padding: 10px 20px;
  }
}
header p a:hover {
  opacity: var(--opacity);
  transition: var(--transition);
}
header #breadcrumbs {
  padding: 0 20px 0 0;
}
@media screen and (max-width: 1000px) {
  header #breadcrumbs {
    padding: 0 10px;
  }
}
header #breadcrumbs ul {
  font-family: "GenShinGothic-P-bold";
  color: var(--off-color);
  display: flex;
  align-items: center;
  gap: 5px;
}
header #breadcrumbs ul li {
  font-size: var(--small);
}
header #breadcrumbs ul li a {
  color: var(--sub-color);
  line-height: 1;
  display: block;
}
header #breadcrumbs ul li a::after {
  content: " >";
}
header #breadcrumbs ul li a:hover {
  opacity: var(--opacity);
  transition: var(--transition);
}

main {
  width: min(1020px, 100%);
  padding: 150px 10px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  main {
    padding: 100px 10px;
  }
}
main #shoulder {
  font-family: "GenShinGothic-P-Bold";
  font-size: var(--regular);
  color: var(--title-color);
  text-align: center;
  margin: 0 0 20px 0;
  display: block;
}
@media screen and (max-width: 1000px) {
  main #shoulder {
    text-align: left;
    margin: 0;
  }
}
main h1 {
  font-family: "ZenMaruGothic-Bold";
  font-size: var(--large);
  color: var(--theme-color);
  line-height: 1;
  text-align: center;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 1000px) {
  main h1 {
    text-align: left;
    line-height: 1.2;
    margin: 0 0 50px 0;
  }
}

#category_onsite {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  #category_onsite {
    grid-template-columns: repeat(2, 1fr);
  }
}
#category_onsite li:hover {
  opacity: var(--opacity);
  transition: var(--transition);
}
#category_onsite li.off:hover {
  opacity: 1;
  transition: 0;
}
#category_onsite li.off img {
  filter: grayscale(100%);
}
#category_onsite li img {
  border-radius: 20px;
}

#movie {
  background-color: #ebeef5;
}

#category_movie {
  display: grid;
  gap: 25px;
}
#category_movie #application {
  display: grid;
  gap: 25px;
  padding: 25px 25px 25px 100px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1000px) {
  #category_movie #application {
    padding: 20px;
  }
}
#category_movie #application h2 {
  font-family: "ZenMaruGothic-Bold";
  font-size: var(--medium);
  color: var(--theme-color);
  line-height: 1;
  transform: translate(-75px, 0);
}
@media screen and (max-width: 1000px) {
  #category_movie #application h2 {
    margin: 0 0 5px 0;
    transform: translate(0, 0);
  }
}
#category_movie #application h2 span {
  font-size: 80%;
  padding: 0 5px 0 0;
}
#category_movie section {
  padding: 10px 20px 10px 10px;
  border-radius: 20px;
  box-shadow: 0px 12px 15px -10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  #category_movie section {
    padding: 20px 10px 10px 10px;
    border: none;
  }
}
#category_movie section figure {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  #category_movie section figure {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#category_movie section figure a:hover {
  opacity: var(--opacity);
  transition: var(--transition);
}
#category_movie section figure img {
  border-radius: 5px;
}
#category_movie section figure figcaption {
  padding: 10px 0 0 0;
}
@media screen and (max-width: 1000px) {
  #category_movie section figure figcaption {
    padding: 0;
  }
}
#category_movie section figure figcaption h2 {
  transform: translate(0, 0) !important;
}
#category_movie section figure h2 {
  font-family: "ZenMaruGothic-Bold";
  font-size: var(--medium);
  color: var(--theme-color);
  line-height: 1;
  padding: 0 10px 5px 5px;
  margin: 0 0 10px 0;
  display: inline-block;
  background: linear-gradient(transparent 70%, #d6ddea 0%);
}
@media screen and (max-width: 1000px) {
  #category_movie section figure h2 {
    margin: 0 0 5px 0;
  }
}
#category_movie section figure h2 span {
  font-size: 80%;
  padding: 0 5px 0 0;
}
#category_movie section figure h2 small {
  font-size: var(--small);
}
#category_movie section figure .off {
  filter: grayscale(100%);
  opacity: 0.5;
}

#tab {
  padding: 10px 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  position: sticky;
  top: 48px;
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  #tab {
    margin: 0 0 20px 0;
    grid-template-columns: repeat(3, 1fr);
    top: 84px;
  }
}
#tab li {
  font-family: "GenShinGothic-P-Bold";
  text-align: center;
  line-height: 1;
  border-radius: 10px;
  background-color: var(--background-theme-color);
}
@media screen and (max-width: 1000px) {
  #tab li {
    font-size: var(--small);
  }
}
#tab li a {
  color: var(--off-color);
  padding: 15px 0;
  display: block;
}
#tab li a:hover {
  opacity: var(--opacity);
  transition: var(--transition);
}
#tab li.current {
  color: var(--theme-color);
  padding: 15px 0;
  background-color: #e6e6e6;
}

#annotation {
  line-height: 1;
  margin: 0 0 40px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 1000px) {
  #annotation {
    margin: 0 0 20px 0;
  }
}
#annotation::before {
  content: " ";
  width: 40px;
  height: 20px;
  display: inline-block;
  border-radius: 3px;
  background-color: #005c37;
}
@media screen and (max-width: 1000px) {
  #annotation::before {
    width: 30px;
  }
}

footer {
  font-family: "GenShinGothic-P-bold";
  font-size: 12px;
  color: var(--off-color);
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  padding: 10px;
  background-color: #323232;
}
@media screen and (max-width: 1000px) {
  footer {
    font-size: 10px;
  }
}

#return {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: -40px;
  right: 20px;
  cursor: pointer;
  transition: 0.3s;
  visibility: hidden;
}
#return.active {
  bottom: 40px;
  visibility: visible;
}/*# sourceMappingURL=common.css.map */