/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.is-ie {
  display: none;
}

/*!
  Styles
  */
img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

main {
  display: block;
}

.l-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.l-main {
  position: relative;
  flex: 1 1 auto;
  display: block;
  min-height: 40vh;
}
@media (-ms-high-contrast: none) {
  .l-main {
    min-height: 50vh;
  }
}

@media not all and (max-width: 900px) {
  .l-pc-inner {
    width: 71.4%;
    margin: 0 auto;
    max-width: 1100px;
  }
}
@media screen and (min-width: 901px) and (max-width: 1100px) {
  .l-pc-inner {
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  .l-sp-inner {
    width: 86.6%;
    margin: 0 auto;
  }
}

/*============================
  header
============================*/
.l-header {
  position: fixed;
  z-index: 100;
  top: -1px;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: #ffffff;
}
@media not all and (max-width: 900px) {
  .l-header {
    height: 81px;
  }
}
.l-header::before {
  position: absolute;
  content: "";
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  z-index: -1;
  box-shadow: 0 10px 14px -6px rgba(0, 0, 0, 0.3);
}
.l-header__inner {
  padding: 0 10px;
}

.l-header__logo {
  position: absolute;
}
@media screen and (max-width: 900px) {
  .l-header__logo {
    top: 50%;
    left: 15px;
    width: 150px;
    transform: translate(0, -60%);
  }
}
@media not all and (max-width: 900px) {
  .l-header__logo {
    width: 213px;
    left: 30px;
    top: 14px;
  }
}

.l-header__sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 11px;
  right: 10px;
  height: 35px;
}
@media not all and (max-width: 900px) {
  .l-header__sns {
    width: 220px;
    height: 55px;
    right: 30px;
    top: 13px;
  }
}
.l-header__sns-item {
  height: 100%;
}
@media screen and (max-width: 900px) {
  .l-header__sns-item {
    width: 35px;
  }
}
.l-header__sns-item:not(:last-of-type) {
  margin-right: 5px;
}
@media screen and (max-width: 900px) {
  .l-header__sns-item:not(:last-of-type) {
    margin-right: 14px;
  }
}
.l-header__sns-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 40px;
}
@media not all and (max-width: 900px) {
  .l-header__sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 32px;
    color: #ffffff;
    border-radius: 50px;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    background-color: #000000;
  }
  .l-header__sns-link::before {
    position: absolute;
    pointer-events: none;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #084ea4;
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  }
  .l-header__sns-link:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@media screen and (max-width: 900px) {
  .l-header__sns-link::before {
    position: absolute;
    content: "";
    top: 0px;
    right: 10px;
    width: 26px;
    height: 100%;
    bottom: 0;
    background: url(../img/icon_instagram.png) no-repeat right center;
    background-size: contain;
  }
  .l-header__sns-item.-youtube .l-header__sns-link::before {
    top: 0;
    background-image: url(../img/icon_youtube.png);
  }
}
@media not all and (max-width: 900px) {
  .l-header__sns-text {
    position: relative;
    padding-left: 35px;
    padding-bottom: 3px;
    letter-spacing: 0.02em;
    font-size: 17px;
  }
  .l-header__sns-item.-youtube .l-header__sns-text {
    letter-spacing: 0.08em;
  }
  .l-header__sns-text::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 22px;
    background: url(../img/icon_instagram.png) no-repeat left center;
    background-size: contain;
  }
  .l-header__sns-item.-youtube .l-header__sns-text::before {
    top: 0;
    width: 24px;
    background-image: url(../img/icon_youtube.png);
  }
}

/*============================
  footer
============================*/
.l-footer {
  position: relative;
  background-color: #084ea4;
  color: #ffffff;
  padding: 47px 0 68px;
  font-weight: 300;
}
@media screen and (max-width: 900px) {
  .l-footer {
    text-align: center;
  }
}
@media not all and (max-width: 900px) {
  .l-footer {
    padding: 33px 0 31px;
  }
}
@media screen and (min-width: 901px) and (orientation: portrait) {
  .l-footer {
    text-align: center;
  }
}
@media not all and (max-width: 900px) {
  .l-footer__inner {
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media not all and (max-width: 900px) {
  .l-footer__wrap {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 901px) and (orientation: portrait) {
  .l-footer__wrap {
    display: block;
  }
}

@media screen and (min-width: 901px) and (orientation: portrait) {
  .l-footer__lang {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__lang {
    margin-bottom: 48px;
  }
}

.l-footer__nav {
  font-size: 0;
  letter-spacing: -0.4em;
}
.l-footer__nav > * {
  font-size: 15px;
  letter-spacing: normal;
}
@media not all and (max-width: 900px) {
  .l-footer__nav {
    margin-left: 38px;
  }
}
@media screen and (min-width: 901px) and (orientation: portrait) {
  .l-footer__nav {
    margin-left: 0;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__nav {
    margin: 0 auto;
  }
}
.l-footer__nav-item {
  display: inline-block;
  position: relative;
  margin: 0 21px 11px;
  font-size: 13px;
  letter-spacing: 0.15em;
}
@media not all and (max-width: 900px) {
  .l-footer__nav-item {
    font-size: 13px;
    letter-spacing: 0.02em;
    margin: 3px 20px 3px 0;
  }
}
.l-footer__nav-item + .l-footer__nav-item::before {
  position: absolute;
  content: "";
  left: -23px;
  width: 1px;
  height: 14px;
  top: 50%;
  margin-top: -7px;
  background-color: #ffffff;
}
@media not all and (max-width: 900px) {
  .l-footer__nav-item + .l-footer__nav-item {
    margin-left: 20px;
  }
}
@media screen and (min-width: 901px) and (orientation: portrait) {
  .l-footer__nav-item + .l-footer__nav-item::before {
    content: none;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__nav-item + .l-footer__nav-item:nth-child(3)::before {
    content: none;
  }
}
.l-footer__nav-item a {
  display: block;
  padding: 1px 0;
  color: #ffffff;
}

.l-footer__copy {
  font-size: 12px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  .l-footer__copy {
    margin-top: 22px;
  }
}
@media not all and (max-width: 900px) {
  .l-footer__copy {
    font-size: 12.5px;
    letter-spacing: 0.04em;
  }
}
@media screen and (min-width: 901px) and (orientation: portrait) {
  .l-footer__copy {
    margin-right: 0;
  }
}

.l-in {
  padding-top: 55px;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}
@media not all and (max-width: 900px) {
  .l-in {
    padding-top: 80px;
  }
}
.is-load .l-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s transform cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.l-in__ttl {
  text-align: center;
  color: #084ea4;
  margin: 69px 0 0;
  font-weight: 900;
  font-size: 36px;
}
@media screen and (max-width: 900px) {
  .l-in__ttl {
    font-size: clamp(36px, 10.7vw, 43px);
    letter-spacing: -0.04rem;
  }
}
@media not all and (max-width: 900px) {
  .l-in__ttl {
    margin-top: 100px;
    font-size: 48px;
    letter-spacing: -0.04rem;
  }
}
.l-in__ttl-en {
  margin-top: 3px;
  display: block;
  font-size: 0.4em;
}
@media not all and (max-width: 900px) {
  .l-in__ttl-en {
    font-size: 0.35em;
  }
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-hover-scale {
  transition: 0.6s cubic-bezier(0, 1.52, 0.83, 1.29);
}
.u-hover-scale:hover {
  transform: scale(1.15);
}

.u-hver-shrink {
  transition: 0.6s cubic-bezier(0, 1.52, 0.83, 1.29);
}
.u-hver-shrink:hover {
  transform: scale(0.95);
}

@media not all and (max-width: 900px) {
  .u-hover-alpha {
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  }
  .u-hover-alpha:hover {
    opacity: 0.5;
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  }
}

section.m-modal .m-modal__content {
  position: relative;
}
@media (max-height: 800px) {
  section.m-modal .m-modal__content {
    max-width: 900px;
    width: 85%;
  }
}
@media (max-height: 900px) {
  section.m-modal .m-modal__content {
    width: 71.4%;
    max-width: 1000px;
  }
}
@media screen and (min-width: 901px) and (max-height: 1000px) {
  section.m-modal .m-modal__content {
    max-width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  section.m-modal .m-modal__content {
    width: 100%;
  }
}
section.m-modal .m-modal__bg::before {
  position: absolute;
  pointer-events: none;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #084ea4;
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
section.m-modal .m-modal__bg-logo {
  position: absolute;
  width: 95%;
  right: -24.8%;
  top: 0;
}
@media screen and (max-width: 900px) {
  section.m-modal .m-modal__bg-logo {
    margin-top: -40.8%;
  }
}
@media not all and (max-width: 900px) {
  section.m-modal .m-modal__bg-logo {
    width: auto;
    height: 104.6%;
    right: auto;
    top: -3.35%;
    left: 0;
    transform: translateX(-33.9%);
  }
}
section.m-modal .m-modal__bg-logo img {
  width: 100%;
}
@media not all and (max-width: 900px) {
  section.m-modal .m-modal__bg-logo img {
    width: auto;
    max-width: none;
    max-height: none;
    height: 100%;
  }
}
section.m-modal .m-modal__close-btn {
  position: fixed;
  right: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #ffffff;
}
@media screen and (max-width: 900px) {
  section.m-modal .m-modal__close-btn {
    margin-right: -23px;
    top: auto;
    bottom: 35px;
  }
}
@media not all and (max-width: 900px) {
  section.m-modal .m-modal__close-btn {
    width: 72px;
    height: 72px;
    right: 25px;
    top: 25px;
    transition: opacity 0.45s, transform 0.5s;
  }
  section.m-modal .m-modal__close-btn:hover {
    transform: rotate(90deg);
  }
  section.m-modal .m-modal__close-btn:hover::before {
    transform: rotate(-45deg);
  }
  section.m-modal .m-modal__close-btn:hover::after {
    transform: rotate(225deg);
  }
}
section.m-modal .m-modal__close-btn::before, section.m-modal .m-modal__close-btn::after {
  background-color: #084ea4;
  top: 50%;
  transition: 0.5s;
}
@media screen and (max-width: 900px) {
  section.m-modal .m-modal__close-btn::before, section.m-modal .m-modal__close-btn::after {
    height: 16px;
    width: 2px;
    margin-left: -1px;
    margin-top: -8px;
  }
}
@media not all and (max-width: 900px) {
  section.m-modal .m-modal__close-btn::before, section.m-modal .m-modal__close-btn::after {
    width: 3px;
    height: 24px;
    margin-left: -1.5px;
    margin-top: -12px;
    transition: transform 0.5s;
  }
}
section.m-modal.is-open {
  transition-duration: 0.2s;
}
section.m-modal.is-open .m-modal__bg::before {
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.65s;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scrollBar {
  0% {
    transform: translateY(-101%);
  }
  100% {
    transform: translateY(101%);
  }
}
@keyframes movie_seekbar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes movie_seekbar_2 {
  100% {
    width: 0;
  }
}
.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
  padding: 16px 17px;
  padding: clamp(8px, 2.43%, 16px) 17px;
  color: #084ea4;
  background-color: #fff701;
  border: 2px solid #ffffff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16.5px;
  font-size: clamp(10px, 3.8vw, 28px);
  letter-spacing: normal;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
  box-sizing: border-box;
}
@media not all and (max-width: 900px) {
  .c-btn {
    min-height: 85px;
    font-size: 25.5px;
    font-size: clamp(25px, 1.82vw, 28px);
    letter-spacing: 0.05em;
    border-width: 3px;
    box-shadow: 1px 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.7s, box-shadow 0.7s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .c-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
  }
}
@media (-ms-high-contrast: none) {
  .c-btn {
    height: 100px;
  }
}
@media not all and (max-width: 900px) {
  [data-lang=hin] .c-btn {
    font-size: clamp(20px, 1.6428571429vw, 23px);
  }
}
@media screen and (max-width: 900px) {
  [data-lang=hin] .c-btn {
    font-size: clamp(10px, 3.3766233766vw, 28px);
  }
}
.c-btn.-arrow {
  padding: 16px 63px 16px 19px;
  padding: clamp(10px, 4%, 27px) clamp(20px, 10%, 54px) clamp(10px, 4%, 27px) clamp(20px, 10%, 54px);
}
@media not all and (max-width: 900px) {
  .c-btn.-arrow {
    padding: 31px 96px 31px 93px;
    padding: clamp(20px, 4.5%, 40px) clamp(80px, 16%, 125px) clamp(20px, 4.5%, 40px) clamp(80px, 15.5%, 121px);
  }
}
.c-btn.-arrow::after {
  position: absolute;
  content: "";
  right: 5px;
  top: 50%;
  bottom: 8px;
  width: 50px;
  width: 13.2%;
  padding-top: 13.2%;
  background: url(../img/arrow_btn.png) no-repeat right center;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .c-btn.-arrow::after {
    transform: translateY(-50%);
  }
}
@media not all and (max-width: 900px) {
  .c-btn.-arrow::after {
    right: 9px;
    top: 9px;
    bottom: 9px;
    width: 76px;
    width: 12.6%;
    padding-top: 0;
    max-width: 99px;
  }
}
.c-btn__text {
  position: relative;
}

.c-note {
  font-size: 10.5px;
  font-size: clamp(10.5px, 2.8vw, 15.7px);
  letter-spacing: 0.08em;
  line-height: 1.55;
}
@media not all and (max-width: 900px) {
  .c-note {
    font-size: 13.5px;
    letter-spacing: 0.02em;
  }
}
@media screen and (min-width: 901px) and (orientation: portrait) {
  .c-note {
    font-size: 13.5px;
    font-size: clamp(10.5px, 2.8vw, 15.7px);
  }
}
.c-note span {
  vertical-align: baseline;
  display: inline-block;
}

.c-accordion {
  position: relative;
  background-color: #f1f5f9;
}
.c-accordion__head {
  position: relative;
  cursor: pointer;
  background-color: #dee9f4;
  color: #084ea4;
  font-weight: 700;
  padding: 24px 85px 23px 5.84%;
  font-size: 19px;
  font-size: clamp(17px, 6vw, 26.6px);
  line-height: 1.4;
  letter-spacing: normal;
}
@media not all and (max-width: 900px) {
  .c-accordion__head {
    padding: 35px 120px 35px 40px;
    font-size: 22.5px;
  }
  .c-accordion__head::before {
    position: absolute;
    pointer-events: none;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 78, 164, 0.35);
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  }
  .c-accordion__head:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@media screen and (min-width: 901px) and (orientation: portrait) {
  .c-accordion__head {
    font-size: 22.5px;
    font-size: clamp(17px, 5.06vw, 25px);
  }
}
.c-accordion__head-icon {
  position: absolute;
  top: 50%;
  margin-top: -23px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media not all and (max-width: 900px) {
  .c-accordion__head-icon {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    right: 33px;
  }
}
.is-open .c-accordion__head-icon {
  transform: rotate(270deg);
}
.c-accordion__head-icon::before, .c-accordion__head-icon::after {
  position: absolute;
  content: "";
  background-color: #084ea4;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  margin-left: -1px;
  margin-top: -8px;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media not all and (max-width: 900px) {
  .c-accordion__head-icon::before, .c-accordion__head-icon::after {
    height: 18px;
    margin-top: -9px;
  }
}
.c-accordion__head-icon::before {
  transform: rotate(90deg);
}
.is-open .c-accordion__head-icon::before {
  transform: rotate(-45deg);
}
.is-open .c-accordion__head-icon::after {
  transform: rotate(45deg);
}

.c-accordion__desc {
  display: none;
}
.c-accordion__desc-inner {
  font-size: 14px;
  font-size: clamp(12px, 4.3vw, 19.6px);
  padding: 21px 5.84% 41px;
  letter-spacing: 0.02em;
  line-height: 1.85;
}
@media not all and (max-width: 900px) {
  .c-accordion__desc-inner {
    font-size: 16px;
    letter-spacing: 0.04em;
    padding: 20px 40px 43px 40px;
    line-height: 1.9;
  }
}
@media screen and (min-width: 901px) and (orientation: portrait) {
  .c-accordion__desc-inner {
    font-size: 16px;
    font-size: clamp(12px, 3.73vw, 19.6px);
  }
}

.c-lang {
  width: 136px;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
}
@media screen and (max-width: 900px) {
  .c-lang {
    width: 90px;
    border-width: 1px;
    margin: 0 auto;
  }
}
.c-lang__list {
  display: flex;
  align-items: center;
}
.c-lang__link {
  position: relative;
  display: block;
  width: 66px;
  padding: 12px 0;
  color: #084ea4;
  text-align: center;
  font-weight: 600;
}
@media not all and (max-width: 900px) {
  .c-lang__link[href]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #084ea4;
    transform: scale(0);
    transition: transform cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
  }
  .c-lang__link[href]:hover {
    color: #ffffff;
  }
  .c-lang__link[href]:hover::before {
    transform: scale(1);
  }
}
@media screen and (max-width: 900px) {
  .c-lang__link {
    width: 43px;
    padding: 8px 0;
    font-size: 11px;
  }
}
.is-current .c-lang__link {
  background: #084ea4;
  color: #ffffff;
  border-radius: 50px;
}
.c-lang__link span {
  display: block;
  position: relative;
}

.c-banner {
  position: relative;
  display: inline-block;
  transition: transform 0.7s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media not all and (max-width: 900px) {
  .c-banner:hover {
    transform: translateY(-8px);
  }
}

@media not all and (max-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}
body {
  position: relative;
  font-family: "Open Sans", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: normal;
  color: #000000;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 13px;
  }
}

[data-modal] {
  cursor: pointer;
}

button,
input,
select,
textarea,
datalist {
  font-family: "Open Sans", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
}

a {
  color: #000000;
  text-decoration: none;
  box-sizing: border-box;
}

::-moz-selection {
  background: rgba(255, 247, 1, 0.7);
}

::selection {
  background: rgba(255, 247, 1, 0.7);
}

path {
  fill-rule: evenodd;
}