@charset "UTF-8";
@media screen and (max-width: 428px) {
  ._none-sm {
    display: none;
  }
}

@media screen and (min-width: 428.02px) and (max-width: 767.98px) {
  ._none-md {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  ._none-lg {
    display: none;
  }
}

@media print, screen and (min-width: 1024px) {
  ._none-xl {
    display: none;
  }
}

._nowrap {
  white-space: nowrap;
}

@keyframes _wipeUp {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes _wipeLeftToRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes _fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes _fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes _up {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes _zoom {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes _rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes _blurInAnime {
  from {
    opacity: 0;
    transform: scale(1.02);
    filter: blur(1em);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes _left {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes _ShineLeftToRight {
  0% {
    transform: translateX(-100%) scaleY(10);
  }
  100% {
    transform: translateX(100%) scaleY(10);
  }
}
._fadeInUp._waiting {
  opacity: 0;
  visibility: hidden;
}
._fadeInUp._running {
  visibility: visible;
  animation: _fadeIn 1000ms, _up 1000ms;
}

._wipeUp._waiting img {
  clip-path: inset(100% 0 0 0);
}
._wipeUp._running img {
  animation: _wipeUp 400ms forwards;
}

._fadeInZoom._waiting {
  opacity: 0;
}
._fadeInZoom._running {
  animation: _fadeIn 250ms forwards, _zoom 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

._blurIn._waiting {
  visibility: hidden;
  opacity: 0;
}
._blurIn._running {
  visibility: visible;
  animation: _blurInAnime 1000ms forwards;
}

._fadeInSlideLeft._waiting {
  opacity: 0;
  visibility: hidden;
}
._fadeInSlideLeft._running {
  visibility: visible;
  animation: _fadeIn 1000ms, _left 600ms;
}

._wipeLeftToRight._waiting {
  clip-path: inset(0 100% 0 0);
}
._wipeLeftToRight._running {
  animation: _wipeLeftToRight 600ms forwards;
}

._masksWipeLeftToRight._waiting::before {
  clip-path: inset(0 100% 0 0);
}
._masksWipeLeftToRight._running::before {
  animation: _wipeLeftToRight 1000ms forwards;
}

._shineLeftToRight {
  position: relative;
}
._shineLeftToRight::after {
  content: "";
  display: block;
  width: clamp(0px, calc(0px + (535.7 * max(0px, ((100dvw - 0px) / (768))))), 535.7px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  background: url("../images/shine-gradation.svg") no-repeat center center/contain;
  transform: translateX(-100%);
}
._shineLeftToRight._running::after {
  animation: _ShineLeftToRight 1600ms forwards 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  overflow-y: scroll;
}
body::after {
  content: "";
  display: block;
  background: url("../images/loading.gif") no-repeat 50% 50% #FFF;
  width: 26px;
  height: 26px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  opacity: 0;
}
body._isLoading {
  position: fixed;
}
body._isLoading::after {
  animation: _fadeIn 1000ms ease 1000ms forwards;
}

body._isLoaded #Container {
  opacity: 0;
  animation-name: PageAnimeAppear;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
._drawLine {
  position: relative;
}
._drawLine::before, ._drawLine::after {
  background: #000;
  width: 0;
  height: 1px;
  position: absolute;
  content: "";
  transition: all 0.2s linear;
}
._drawLine::before {
  right: 0;
  bottom: 0;
}
._drawLine::after {
  top: 0;
  left: 0;
}
._drawLine > div {
  display: block;
}
._drawLine > div::before, ._drawLine > div::after {
  background: #000;
  width: 1px;
  height: 0;
  position: absolute;
  content: "";
  transition: all 0.1s linear;
}
._drawLine > div::before {
  bottom: 0;
  left: 0;
}
._drawLine > div::after {
  top: 0;
  right: 0;
}

._drawLine._running::before,
._drawLine._running::after {
  width: 100%;
}

._drawLine._running::after {
  transition-delay: 0s;
}

._drawLine._running::before {
  transition-delay: 0.3s;
}

._drawLine._running > div::before,
._drawLine._running > div::after {
  height: 100%;
}

._drawLine._running > div::before {
  transition-delay: 0.5s;
}

._drawLine._running > div::after {
  transition-delay: 0.2s;
}

#Container {
  overflow: hidden;
}
@media screen and (max-width: 428px) {
  #Container {
    background-size: 268px;
    padding-top: 55px;
  }
}
@media screen and (min-width: 428.02px) and (max-width: 767.98px) {
  #Container {
    padding-top: 70px;
  }
}
@media print, screen and (min-width: 768px) {
  #Container {
    padding-top: 80px;
  }
}
#Container ._delay100 {
  animation-delay: 100ms;
}
#Container ._delay200 {
  animation-delay: 200ms;
}
#Container ._delay300 {
  animation-delay: 300ms;
}
#Container ._delay400 {
  animation-delay: 400ms;
}
#Container ._delay500 {
  animation-delay: 500ms;
}
#Container ._delay600 {
  animation-delay: 600ms;
}
#Container ._delay700 {
  animation-delay: 700ms;
}
#Container ._delay800 {
  animation-delay: 800ms;
}
#Container ._delay900 {
  animation-delay: 900ms;
}
#Container ._delay1000 {
  animation-delay: 1000ms;
}

#Loading {
  background: url("../images/loading.gif") no-repeat 50% 50% #FFF;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}

#Container {
  width: 100%;
  min-width: 320px;
  overflow: hidden;
  position: relative;
}
@media print, screen and (max-width: 319.9px) {
  #Container {
    font-size: 13.6533333333px;
  }
}
@media print, screen and (min-width: 320px) and (max-width: 428px) {
  #Container {
    font-size: calc(13.6533333333px + 4.608 * (100vw - 320px) / 108);
  }
}
@media print, screen and (min-width: 428.1px) and (max-width: 767.9px) {
  #Container {
    font-size: calc(18.2613333333px + 7.3386666667 * (100vw - 428px) / 340);
  }
}
@media print, screen and (min-width: 768px) and (max-width: 979.9px) {
  #Container {
    font-size: calc(14.0408163265px + 3.4612244898 * (100vw - 768px) / 212);
  }
}
@media print, screen and (min-width: 980px) {
  #Container {
    font-size: 16px;
  }
}

#HeaderArea {
  text-align: left;
  background-color: #FFF;
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#HeaderArea > ._inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
#HeaderArea ._i1 {
  background: #FFF;
  z-index: 3000;
}
@media screen and (max-width: 428px) {
  #HeaderArea ._i1 {
    height: 55px;
  }
}
@media screen and (min-width: 428.02px) and (max-width: 767.98px) {
  #HeaderArea ._i1 {
    height: 70px;
  }
}
@media print, screen and (min-width: 768px) {
  #HeaderArea ._i1 {
    height: 80px;
  }
}
#HeaderArea ._i2 {
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 428px) {
  #HeaderArea ._i2 {
    top: -55px;
  }
}
@media screen and (min-width: 428.02px) and (max-width: 767.98px) {
  #HeaderArea ._i2 {
    top: -70px;
  }
}
@media print, screen and (min-width: 768px) {
  #HeaderArea ._i2 {
    top: -80px;
  }
}
#HeaderArea ._icon {
  position: absolute;
  z-index: 3000;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}
@media screen and (max-width: 428px) {
  #HeaderArea ._icon {
    width: 40px;
    height: 40px;
    right: 5px;
  }
  #HeaderArea ._icon span {
    width: 16px;
  }
  #HeaderArea ._icon span::before,
  #HeaderArea ._icon span::after {
    width: 16px;
  }
}
@media print, screen and (min-width: 428.02px) {
  #HeaderArea ._icon {
    width: 50px;
    height: 50px;
  }
  #HeaderArea ._icon span {
    width: 22px;
  }
  #HeaderArea ._icon span::before,
  #HeaderArea ._icon span::after {
    width: 22px;
  }
}
@media screen and (min-width: 428.02px) and (max-width: 1023.98px) {
  #HeaderArea ._icon {
    right: 10px;
  }
}
@media print, screen and (min-width: 1024px) {
  #HeaderArea ._icon {
    right: 10px;
  }
}
body:not([data-device=touchDevice]) #HeaderArea ._icon:hover {
  opacity: 0.7;
  transition: 400ms;
}
#HeaderArea ._icon span {
  background: transparent;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.2s;
  transform: translate(-50%, -50%);
}
#HeaderArea ._icon span::before,
#HeaderArea ._icon span::after {
  background: #000;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  content: "";
  transition: 0.3s;
  will-change: transform;
}
#HeaderArea ._icon span::before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#HeaderArea ._icon span::after {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
#HeaderArea._isNavClosed ._icon span {
  background: #000;
}
#HeaderArea._isNavClosed ._icon span::before,
#HeaderArea._isNavClosed ._icon span::after {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
@media screen and (max-width: 428px) {
  #HeaderArea._isNavClosed ._icon span::before {
    top: -7px;
  }
}
@media print, screen and (min-width: 428.02px) {
  #HeaderArea._isNavClosed ._icon span::before {
    top: -10px;
  }
}
@media screen and (max-width: 428px) {
  #HeaderArea._isNavClosed ._icon span::after {
    bottom: -7px;
  }
}
@media print, screen and (min-width: 428.02px) {
  #HeaderArea._isNavClosed ._icon span::after {
    bottom: -10px;
  }
}
#HeaderArea._isNavClosed #HeaderNav {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
}
#HeaderArea._isNavClosed #HeaderNav ._wrapper {
  transform: translateX(101%);
}
#HeaderArea._isNavClosed #HeaderNav li {
  opacity: 0;
}
#HeaderArea._isNavOpened #HeaderNav li:nth-child(1) {
  animation: _fadeIn 600ms cubic-bezier(0.19, 1, 0.22, 1) forwards 500ms, _up 600ms cubic-bezier(0.19, 1, 0.22, 1) forwards 500ms;
}
#HeaderArea._isNavOpened #HeaderNav li:nth-child(2) {
  animation: _fadeIn 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 600ms, _up 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 600ms;
}
#HeaderArea._isNavOpened #HeaderNav li:nth-child(3) {
  animation: _fadeIn 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 700ms, _up 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 700ms;
}
#HeaderArea._isNavOpened #HeaderNav li:nth-child(4) {
  animation: _fadeIn 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 800ms, _up 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 800ms;
}
#HeaderArea._isNavOpened #HeaderNav li:nth-child(5) {
  animation: _fadeIn 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 900ms, _up 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 900ms;
}
#HeaderArea._isNavOpened #HeaderNav li:nth-child(6) {
  animation: _fadeIn 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 1000ms, _up 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 1000ms;
}
#HeaderArea._isNavOpened #HeaderNav li:nth-child(7) {
  animation: _fadeIn 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 1100ms, _up 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards 1100ms;
}

#HeaderLogo a {
  display: block;
}
#HeaderLogo ._logo-biprogy {
  width: auto;
  position: absolute;
}
@media screen and (max-width: 767.98px) {
  #HeaderLogo ._logo-biprogy {
    width: 30.9333333333%;
    top: 50%;
    right: 10.6666666667%;
    transform: translateY(-50%);
  }
}
@media print, screen and (min-width: 768px) {
  #HeaderLogo ._logo-biprogy {
    height: 72px;
    top: 4px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  #HeaderLogo ._logo-biprogy {
    right: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  #HeaderLogo ._logo-biprogy {
    right: 235px;
  }
}
#HeaderLogo ._logo-bf {
  width: auto;
  position: absolute;
}
@media screen and (max-width: 767.98px) {
  #HeaderLogo ._logo-bf {
    width: 51.0666666667%;
    top: 50%;
    left: 5.3333333333%;
    transform: translateY(-50%);
  }
}
@media print, screen and (min-width: 768px) {
  #HeaderLogo ._logo-bf {
    height: 28px;
    top: 26px;
    left: 26px;
  }
}

@media screen and (max-width: 1023.98px) {
  #HeaderContact,
  #HeaderEntry {
    display: none;
  }
}
@media print, screen and (min-width: 1024px) {
  #HeaderContact,
  #HeaderEntry {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 75px;
    transform: translateY(-50%);
  }
}
#HeaderContact a,
#HeaderEntry a {
  color: #000;
  text-decoration: none;
  letter-spacing: 0.15em;
  border: 1px solid #000;
  padding: 0.4em 1.35em 0.5em 1.5em;
  display: block;
}
body:not([data-device=touchDevice]) #HeaderContact a:hover,
body:not([data-device=touchDevice]) #HeaderEntry a:hover {
  color: #FFF;
  background-color: #000;
  transition: color 400ms, background-color 400ms;
}

#HeaderNav {
  position: fixed;
  z-index: 1000;
  width: 100%;
  text-align: right;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  will-change: transform;
}
@media screen and (max-width: 428px) {
  #HeaderNav {
    top: 55px;
    height: calc(100vh - 55px);
  }
}
@media screen and (min-width: 428.02px) and (max-width: 767.98px) {
  #HeaderNav {
    top: 70px;
    height: calc(100vh - 70px);
  }
}
@media print, screen and (min-width: 768px) {
  #HeaderNav {
    top: 80px;
    height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 1023.98px) {
  #HeaderNav {
    right: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  #HeaderNav {
    right: 1px;
  }
}
#HeaderNav ._wrapper {
  width: 100%;
  max-width: 768px;
  background: linear-gradient(180deg, rgb(0, 175, 236) 0%, rgb(0, 129, 204) 50%, rgb(29, 32, 136) 100%);
  margin: 0 0 0 auto;
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: auto;
}
#HeaderNav ul {
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  margin: auto;
  overflow-y: scroll;
  z-index: -100;
}
@media screen and (max-width: 428px) {
  #HeaderNav ul {
    height: calc(100vh - 55px);
  }
}
@media screen and (min-width: 428.02px) and (max-width: 767.98px) {
  #HeaderNav ul {
    height: calc(100vh - 70px);
  }
}
@media print, screen and (min-width: 768px) {
  #HeaderNav ul {
    height: calc(100vh - 80px);
  }
}
#HeaderNav ul::-webkit-scrollbar {
  background-color: rgba(0, 0, 0, 0.2);
  width: 4px;
}
#HeaderNav ul::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
#HeaderNav li {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
}
#HeaderNav li:first-child {
  border-top: none;
}
#HeaderNav li a {
  font-size: clamp(1.125rem, calc(18px + (3 * max(0px, ((100dvw - 320px) / (448))))), 1.3125rem);
  color: #FFF;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 400ms;
  padding: 1.4em clamp(0px, calc(0px + (120 * max(0px, ((100dvw - 0px) / (768))))), 120px);
  pointer-events: auto;
}
body:not([data-device=touchDevice]) #HeaderNav li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 800ms;
}
#HeaderNav li a ._en {
  font-size: clamp(1.125rem, calc(18px + (3 * max(0px, ((100dvw - 320px) / (448))))), 1.3125rem);
  font-weight: 300;
  letter-spacing: 0.1em;
}
#HeaderNav li a ._ja {
  font-size: clamp(0.75rem, calc(12px + (2 * max(0px, ((100dvw - 320px) / (448))))), 0.875rem);
  font-weight: 300;
  letter-spacing: 0.1em;
}
#HeaderNav li._current a {
  background-color: rgba(255, 255, 255, 0.2);
  transition: background-color 800ms;
}

#EntryButton {
  visibility: hidden;
  position: fixed;
  z-index: 3000;
  opacity: 0;
  transition: opacity 400ms, visibility 400ms;
}
@media screen and (max-width: 767.98px) {
  #EntryButton {
    right: 50px;
    bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  #EntryButton {
    right: 36px;
    bottom: 36px;
  }
}
#EntryButton._isVisible {
  visibility: visible;
  opacity: 1;
}
#EntryButton a {
  cursor: pointer;
}
#EntryButton a::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/button-entry-text.svg") no-repeat 0 0;
  background-size: 100%;
  animation: _rotate 40s linear infinite;
}
body:not([data-device=touchDevice]) #EntryButton a:hover {
  opacity: 0.7;
  transition: 400ms;
}
@media screen and (max-width: 767.98px) {
  #EntryButton img {
    width: 26.6666666667vw;
    max-width: 200px;
  }
}
@media print, screen and (min-width: 768px) {
  #EntryButton img {
    width: 200px;
  }
}

#MainArea ._anchor {
  position: absolute;
}
@media screen and (max-width: 428px) {
  #MainArea ._anchor {
    top: -55px;
  }
}
@media screen and (min-width: 428.02px) and (max-width: 767.98px) {
  #MainArea ._anchor {
    top: -70px;
  }
}
@media print, screen and (min-width: 768px) {
  #MainArea ._anchor {
    top: -80px;
  }
}
#MainArea #Topics {
  text-align: center;
  background-color: #F1F1F1;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  #MainArea #Topics > ._inner {
    padding: 5.3333333333% 4%;
  }
}
@media print, screen and (min-width: 768px) {
  #MainArea #Topics > ._inner {
    padding: 50px 20px;
  }
}
#MainArea #Topics > ._inner ul {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  justify-content: center;
}
@media screen and (max-width: 1023.98px) {
  #MainArea #Topics > ._inner ul {
    grid-template-columns: repeat(2, auto);
    column-gap: clamp(0px, calc(0px + (30 * max(0px, ((100dvw - 0px) / (690))))), 30px);
  }
}
@media print, screen and (min-width: 1024px) {
  #MainArea #Topics > ._inner ul {
    grid-template-columns: repeat(4, auto);
    column-gap: clamp(0px, calc(0px + (16 * max(0px, ((100dvw - 0px) / (1240))))), 16px);
  }
}
@media screen and (max-width: 1023.98px) {
  #MainArea #Topics > ._inner ul li {
    width: clamp(0px, calc(0px + (300 * max(0px, ((100dvw - 0px) / (690))))), 300px);
    margin-top: clamp(0px, calc(0px + (30 * max(0px, ((100dvw - 0px) / (690))))), 30px);
  }
}
@media print, screen and (min-width: 1024px) {
  #MainArea #Topics > ._inner ul li {
    width: clamp(0px, calc(0px + (288 * max(0px, ((100dvw - 0px) / (1240))))), 288px);
  }
}
#MainArea #Topics > ._inner ul li:nth-child(1), #MainArea #Topics > ._inner ul li:nth-child(2) {
  margin-top: 0;
}
body:not([data-device=touchDevice]) #MainArea #Topics > ._inner ul li a:hover {
  opacity: 0.7;
  transition: 400ms;
}

#Contact {
  text-align: left;
  background-color: #0081CC;
  margin: 0 auto;
}
#Contact > ._inner {
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  #Contact > ._inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 2em 20px;
  }
}
#Contact_Heading span {
  display: block;
}
#Contact_Heading ._en {
  mask: url("../images/contact_heading.svg") no-repeat center center/contain;
  width: clamp(0px, calc(0px + (274 * max(0px, ((100dvw - 0px) / (768))))), 274px);
}
#Contact_Heading ._en::before {
  content: "";
  background: url("../images/contact_heading.svg") no-repeat center center/contain;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#Contact_Heading ._en img {
  visibility: hidden;
}
@media screen and (max-width: 767.98px) {
  #Contact_Heading ._en {
    display: block;
  }
}
#Contact_Heading ._ja {
  font-size: clamp(1rem, calc(16px + (10 * max(0px, ((100dvw - 320px) / (448))))), 1.625rem);
  font-weight: 400;
  color: #FFF;
  letter-spacing: 0.15em;
  font-feature-settings: normal;
  margin-top: 1.2em;
}
#Contact_Text {
  font-size: clamp(1.125rem, calc(18px + (8 * max(0px, ((100dvw - 320px) / (448))))), 1.625rem);
  color: #FFF;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-top: 2.4em;
}
@media print, screen and (min-width: 768px) {
  #Contact ._wrapper {
    margin-top: 3em;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767.98px) {
  #Contact_Tel {
    width: 100%;
    max-width: 380px;
    margin: 1.5em auto 0 auto;
  }
}
@media print, screen and (min-width: 768px) {
  #Contact_Tel {
    width: 48%;
  }
}
#Contact_Tel a {
  letter-spacing: clamp(0.05em, calc(0.8px + (2.4 * max(0px, ((100dvw - 320px) / (880))))), 0.2em);
  color: #0081CC;
  text-align: center;
  text-decoration: none;
  background-color: #FFF;
  display: block;
}
@media screen and (max-width: 767.98px) {
  #Contact_Tel a {
    padding: 0.8em 0.5em 1em 0.5em;
  }
}
@media print, screen and (min-width: 768px) {
  #Contact_Tel a {
    padding: 1em 1.5em 1.2em 1.5em;
  }
}
#Contact_Tel span {
  font-size: clamp(1.5rem, calc(24px + (12 * max(0px, ((100dvw - 320px) / (448))))), 2.25rem);
  display: inline-block;
}
#Contact_Tel small {
  font-size: clamp(0.875rem, calc(14px + (2 * max(0px, ((100dvw - 320px) / (880))))), 1rem);
  margin-top: 0.5em;
  display: inline-block;
}
#Contact_Mail {
  background-color: #FFF;
}
@media screen and (max-width: 767.98px) {
  #Contact_Mail {
    width: 100%;
    max-width: 380px;
    margin: 1.5em auto 0 auto;
  }
}
@media print, screen and (min-width: 768px) {
  #Contact_Mail {
    width: 48%;
  }
}
#Contact_Mail a {
  font-size: clamp(1.125rem, calc(18px + (10 * max(0px, ((100dvw - 320px) / (880))))), 1.75rem);
  color: #0081CC;
  text-decoration: none;
  background-color: #FFF;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767.98px) {
  #Contact_Mail a {
    text-align: center;
    letter-spacing: 0.05em;
    padding: 1em 0.5em;
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  #Contact_Mail a {
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body:not([data-device=touchDevice]) #Contact_Mail a:hover {
    opacity: 0.7;
    transition: 400ms;
  }
}

#WatchContact_Text {
  color: #FFF;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  #WatchContact_Text {
    font-size: 1.125rem;
    margin-top: 1.5em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  #WatchContact_Text {
    margin-top: 2em;
  }
}
@media print, screen and (min-width: 1024px) {
  #WatchContact_Text {
    margin-top: 3em;
  }
}
@media print, screen and (min-width: 768px) {
  #WatchContact_Text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  #WatchContact_Tel {
    width: 80%;
    margin: 1.5em auto 0 auto;
  }
}
@media print, screen and (min-width: 768px) {
  #WatchContact_Tel {
    width: 50%;
    margin: 2em auto 0 auto;
  }
}
#WatchContact_Tel a {
  color: rgb(0, 129, 204);
  text-align: center;
  text-decoration: none;
  background-color: #FFF;
  display: block;
}
@media screen and (max-width: 767.98px) {
  #WatchContact_Tel a {
    letter-spacing: 0.05em;
    padding: 1em;
  }
}
@media print, screen and (min-width: 768px) {
  #WatchContact_Tel a {
    letter-spacing: 0.1em;
    padding: 1.5em;
  }
}
#WatchContact_Tel span {
  display: inline-block;
}
@media screen and (max-width: 767.98px) {
  #WatchContact_Tel span {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  #WatchContact_Tel span {
    font-size: 1.75rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #WatchContact_Tel span {
    font-size: 2.25rem;
  }
}
#WatchContact_Tel small {
  margin-top: 0.5em;
  display: inline-block;
}
@media screen and (max-width: 1023.98px) {
  #WatchContact_Tel small {
    font-size: 0.875rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #WatchContact_Tel small {
    font-size: 1.125rem;
  }
}

#PrivacyPolicy._isVisible {
  width: 100%;
  display: block;
}
#PrivacyPolicy._isVisible > ._overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
}
#PrivacyPolicy._isHidden {
  display: none;
}
#PrivacyPolicy > ._inner {
  text-align: left;
  background-color: #FFF;
  box-sizing: border-box;
  width: 92%;
  max-width: 1200px;
  position: absolute;
  z-index: 5500;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  #PrivacyPolicy > ._inner {
    margin-top: 2em;
    padding: 3em 4%;
  }
}
@media print, screen and (min-width: 768px) {
  #PrivacyPolicy > ._inner {
    margin-top: 3em;
    padding: 70px 50px 50px 50px;
  }
}
@media print, screen and (min-width: 768px) {
  #PrivacyPolicy ul {
    margin-top: 2em;
    padding-left: 1em;
  }
}
@media screen and (max-width: 767.98px) {
  #PrivacyPolicy ul {
    margin-top: 1em;
    padding-left: 1em;
  }
}
#PrivacyPolicy li {
  color: #000;
  text-align: left;
  list-style: decimal;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  #PrivacyPolicy li {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767.98px) {
  #PrivacyPolicy li {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
#PrivacyPolicy li a {
  color: rgb(0, 129, 204);
}
#PrivacyPolicy ._heading {
  font-size: clamp(1rem, calc(16px + (5 * max(0px, ((100dvw - 320px) / (448))))), 1.3125rem);
  font-weight: normal;
  color: #000;
  line-height: 1.4;
  text-align: center;
  background-color: #E5F2F9;
  padding: clamp(1em, calc(16px + (8 * max(0px, ((100dvw - 320px) / (448))))), 1.5em);
  margin-bottom: clamp(22px, calc(22px + (18 * max(0px, ((100dvw - 320px) / (448))))), 40px);
}
@media print, screen and (min-width: 768px) {
  #PrivacyPolicy ._heading ._sp {
    display: none;
  }
}
#PrivacyPolicy ._text {
  font-size: clamp(0.8125rem, calc(13px + (1 * max(0px, ((100dvw - 320px) / (448))))), 0.875rem);
  line-height: clamp(1.4, calc(1.4 + (0.2 * max(0, ((tan(atan2(100dvw, 1px)) - 320) / (448))))), 1.6);
  color: #000;
  text-align: left;
  margin-top: 1em;
}
#PrivacyPolicy ._text a {
  color: rgb(0, 129, 204);
}
#PrivacyPolicy ._contact {
  color: #000;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  #PrivacyPolicy ._contact {
    margin-top: 2em;
  }
}
#PrivacyPolicy ._contact_heading {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.6;
}
#PrivacyPolicy ._contact_heading:before {
  content: "［ ";
}
#PrivacyPolicy ._contact_heading:after {
  content: " ］";
}
#PrivacyPolicy ._contact_text {
  font-size: 1rem;
  line-height: 1.6;
}
#PrivacyPolicy ._contact_mail {
  font-size: clamp(0.9375rem, calc(15px + (9 * max(0px, ((100dvw - 320px) / (448))))), 1.5rem);
  text-align: center;
  letter-spacing: 0.1em;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) {
  #PrivacyPolicy ._contact_mail {
    margin: 0.5em auto 0 auto;
    display: inline-block;
  }
}
#PrivacyPolicy ._contact_mail a {
  color: #FFF;
  text-decoration: none;
  background-color: rgb(0, 129, 204);
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #PrivacyPolicy ._contact_mail a {
    margin: 0 auto;
    padding: 1em 3em;
    display: block;
  }
}
@media screen and (max-width: 767.98px) {
  #PrivacyPolicy ._contact_mail a {
    box-sizing: border-box;
    margin: 1.5em auto 0 auto;
    padding: 1em;
    display: inline-block;
  }
  #PrivacyPolicy ._contact_mail a span {
    display: none;
  }
}
body:not([data-device=touchDevice]) #PrivacyPolicy ._contact_mail a:hover {
  opacity: 0.7;
  transition: 400ms;
}
#PrivacyPolicy ._btnClose {
  text-align: center;
  text-indent: -9999px;
  background: none;
  border: none;
  outline: none;
  display: inline-block;
  position: absolute;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  #PrivacyPolicy ._btnClose {
    width: 24px;
    height: 24px;
    top: 15px;
    right: 12px;
  }
}
@media screen and (max-width: 767.98px) {
  #PrivacyPolicy ._btnClose {
    width: 22px;
    height: 22px;
    top: 10px;
    right: 10px;
  }
}
body:not([data-device=touchDevice]) #PrivacyPolicy ._btnClose:hover {
  opacity: 0.7;
  transition: 400ms;
}
#PrivacyPolicy ._btnClose::before, #PrivacyPolicy ._btnClose::after {
  background: #000;
  padding: 0;
  display: block;
  position: absolute;
  content: "";
  transform: rotate(45deg);
}
@media print, screen and (min-width: 768px) {
  #PrivacyPolicy ._btnClose::before, #PrivacyPolicy ._btnClose::after {
    width: 2px;
    height: 30px;
    top: -2px;
    left: calc(50% - 1px);
  }
}
@media screen and (max-width: 767.98px) {
  #PrivacyPolicy ._btnClose::before, #PrivacyPolicy ._btnClose::after {
    width: 1px;
    height: 20px;
    top: 1px;
    left: calc(50% - 0.5px);
  }
}
#PrivacyPolicy ._btnClose::before {
  transform: rotate(45deg);
}
#PrivacyPolicy ._btnClose::after {
  transform: rotate(-45deg);
}

#SdgsArea {
  background-color: #FFF;
  margin: 0 auto;
}
#SdgsArea > ._inner {
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  #SdgsArea > ._inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
#SdgsArea_Heading {
  width: 55.7142857143vw;
  min-width: 273px;
  max-width: 546px;
  margin: 0 auto;
}
#SdgsArea_Heading img {
  width: 100%;
}
#SdgsArea_List {
  width: 100%;
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#SdgsArea_List li {
  width: 15.1020408163%;
  margin-bottom: 1.8367346939%;
  margin-left: 1.8367346939%;
}
#SdgsArea_List li:nth-child(6n+1) {
  margin-left: 0;
}
#SdgsArea_List li img {
  width: 100%;
}
#SdgsArea_About {
  font-size: clamp(1.125rem, calc(18px + (6 * max(0px, ((100dvw - 320px) / (448))))), 1.5rem);
  font-weight: normal;
  color: #000;
  text-align: left;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  #SdgsArea_About {
    margin-top: 1.5em;
  }
}
@media print, screen and (min-width: 768px) {
  #SdgsArea_About {
    margin-top: 1em;
  }
}
#SdgsArea_Text {
  font-size: clamp(0.8125rem, calc(13px + (1 * max(0px, ((100dvw - 320px) / (448))))), 0.875rem);
  color: #000;
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0.08em;
  margin-top: 1.5em;
}
#SdgsArea_Link {
  font-size: clamp(0.8125rem, calc(13px + (1 * max(0px, ((100dvw - 320px) / (448))))), 0.875rem);
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0.08em;
  margin-top: 1.5em;
}
#SdgsArea_Link a {
  color: rgb(0, 129, 204);
  text-decoration: none;
}
body:not([data-device=touchDevice]) #SdgsArea_Link a:hover {
  text-decoration: underline;
}

#FooterArea {
  background-color: #F1F1F1;
  margin: 0 auto;
  position: relative;
}
@media print, screen and (min-width: 428.02px) {
  #FooterArea {
    text-align: left;
  }
}
#FooterArea > ._inner {
  max-width: 1200px;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  #FooterArea > ._inner {
    padding: 2em 1em;
  }
}
@media print, screen and (min-width: 768px) {
  #FooterArea > ._inner {
    margin: 0 auto;
    padding: 3em 1.5em;
  }
}
#FooterArea ul {
  text-align: left;
}
#FooterArea li {
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 428px) {
  #FooterArea li {
    margin-bottom: 0.8em;
  }
}
@media screen and (min-width: 428.02px) and (max-width: 767.98px) {
  #FooterArea li {
    padding-right: 1em;
  }
}
@media screen and (max-width: 767.98px) {
  #FooterArea li {
    font-size: 0.75rem;
  }
}
@media print, screen and (min-width: 768px) {
  #FooterArea li {
    font-size: 0.875rem;
  }
}
@media print, screen and (min-width: 428.02px) {
  #FooterArea li {
    box-sizing: border-box;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media print, screen and (min-width: 768px) {
  #FooterArea li {
    width: 33%;
  }
  #FooterArea li:nth-child(3n+1) {
    width: 30%;
  }
}
#FooterArea li a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 428px) {
  #FooterArea li a {
    padding-right: 1.2em;
  }
}
@media print, screen and (min-width: 428.02px) {
  #FooterArea li a {
    padding-right: 1em;
  }
}
body:not([data-device=touchDevice]) #FooterArea li a:hover {
  text-decoration: underline;
}
#FooterArea li a::after {
  border-top: solid 1px rgb(0, 129, 204);
  border-right: solid 1px rgb(0, 129, 204);
  width: 0.6em;
  height: 0.6em;
  margin-top: -0.42426em;
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1023.98px) {
  #FooterArea_Sns {
    text-align: center;
    margin-top: 1em;
  }
}
@media print, screen and (min-width: 1024px) {
  #FooterArea_Sns {
    text-align: right;
    margin-top: 0.5em;
  }
}
#FooterArea_Sns a {
  vertical-align: bottom;
  margin: 0 4px;
}
body:not([data-device=touchDevice]) #FooterArea_Sns a:hover {
  opacity: 0.7;
  transition: 400ms;
}
@media print, screen and (min-width: 428.02px) {
  #FooterArea_Sns img {
    width: 36px;
  }
}
@media screen and (max-width: 428px) {
  #FooterArea_Sns img {
    width: 30px;
  }
}
#FooterArea_Copyright {
  text-align: center;
  background-color: #000;
}
@media screen and (max-width: 428px) {
  #FooterArea_Copyright {
    padding: 1em;
  }
}
@media print, screen and (min-width: 428.02px) {
  #FooterArea_Copyright {
    padding: 2em 1em;
  }
}
#FooterArea_Copyright p {
  color: #FFF;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  #FooterArea_Copyright p {
    font-size: 0.65625em;
    padding-right: 2em;
  }
}
@media print, screen and (min-width: 768px) {
  #FooterArea_Copyright p {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 428px) {
  #FooterArea_Copyright p {
    letter-spacing: 0.05em;
  }
}
@media print, screen and (min-width: 428.02px) {
  #FooterArea_Copyright p {
    letter-spacing: 0.1em;
  }
}

#ToPageTopButton {
  width: 48px;
  height: 48px;
  visibility: hidden;
  position: fixed;
  z-index: 3000;
  opacity: 0;
  cursor: pointer;
  transition: opacity 400ms, visibility 400ms;
}
@media screen and (max-width: 428px) {
  #ToPageTopButton {
    right: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 428.02px) and (max-width: 767.98px) {
  #ToPageTopButton {
    right: 10px;
    bottom: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  #ToPageTopButton {
    right: 15px;
    bottom: 15px;
  }
}
#ToPageTopButton._isVisible {
  visibility: visible;
  opacity: 1;
}
#ToPageTopButton a {
  text-indent: -999px;
  background-color: rgb(0, 129, 204);
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}
body:not([data-device=touchDevice]) #ToPageTopButton a:hover {
  opacity: 0.7;
  transition: 400ms;
}
#ToPageTopButton a::after {
  border-top: solid 3px #FFF;
  border-left: solid 3px #FFF;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 20px;
  left: 16px;
  content: "";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*# sourceMappingURL=common.css.map */
