/* ============================================================
   style.css
   ?z???_???r???e?B???k ????LP ????X?^?C??
   ============================================================ */

/**********************/
/**  Base / ??{???  **/
/**********************/

html {
  font-size: 62.5%;
}
body {
  background: linear-gradient(to bottom, #880000 0%, #a8050a 50%, #880000 100%);
  background-color: #a8050a;
  background-attachment: fixed;
  color: #231815;
  letter-spacing: 0.1rem;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4rem;
  font-family:
    "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a,
a:link,
a:hover,
a:active,
a:visited {
  display: block;
  border: none;
  color: #231815;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  width: 100%;
  line-height: 0;
  image-rendering: -webkit-optimize-contrast;
  height: auto;
}
/* ?X?N???[?????i???[?_?????j */
body.fixed {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}

/****************************/
/**  Layout / ???C?A?E?g    **/
/****************************/

.container {
  margin: auto;
  max-width: 1000px;
  width: 100%;
}
.container--wfull {
  max-width: 100% !important;
  width: 100% !important;
}
.content {
  width: calc(100% - 40px);
  max-width: 900px;
  margin: auto;
}
.content--pdLess {
  max-width: 1000px !important;
  width: 100%;
}
/* position ???[?e?B???e?B */
.posi--r {
  position: relative;
  width: 100%;
}
.posi--a {
  position: absolute;
}
.posi--fix {
  position: fixed;
}
/* flex ?i?g?? */
.columns {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.column2 {
  width: 48.5%;
}
.column3 {
  width: 33%;
}
@media all and (min-width: 769px) {
  .content {
    width: calc(100% - 60px);
  }
  .content--pdLess {
    margin: auto;
    max-width: 1000px;
    width: 100%;
  }
}

/****************************/
/**  ?\????? SP / PC       **/
/****************************/

/* ?f?t?H???gSP: PC?N???X???\?? */
.pc {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}

/****************************/
/**  Header / ?w?b?_?[      **/
/****************************/

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #000;
}
.header_inner {
  position: relative;
  z-index: 100;
  display: table;
  margin: auto;
  padding: 6px 0 3px 8px;
  max-width: 1300px;
  width: 100%;
}
.header_logo {
  display: table-cell;
  vertical-align: middle;
  line-height: 1;
  text-align: center;
}
.header_logo a {
  display: inline-block;
}
.header_logo img {
  margin: 0;
  width: auto;
  height: 50px;
}
.header_logo a:hover {
  opacity: 1;
}
.header_logo a:hover img {
  opacity: 1;
}
@media all and (min-width: 769px) {
  .header_logo {
    text-align: center;
  }
  .header_logo img {
    margin: auto;
    width: auto;
    height: 58px;
  }
}

/*************************************/
/**  Hamburger / ?n???o?[?K?[???j???[  **/
/*************************************/

.hamburger {
  width: 58px;
  height: 58px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 100px;
  margin: 0;
  position: relative;
  border: 3px solid #a8050a;
  box-shadow:
    inset 1px 1px 2px 2px rgba(0, 0, 0, 0.5),
    2px 2px 5px 2px rgba(0, 0, 0, 0.5);
}
/* ?n???o?[?K?[???x???i???j???[ / ?????j */
.hamburger::before {
  content: "\30E1\30CB\30E5\30FC";
  position: absolute;
  font-size: 10px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: 0;
}
.hamburger span {
  position: absolute;
  left: 15px;
  width: 24px;
  height: 3px;
  background-color: #000;
  transition: all 0.6s;
}
.hamburger__lineTop {
  top: 22px;
}
.hamburger__lineCenter {
  top: 30px;
}
.hamburger__lineBottom {
  top: 38px;
}
/* ????u?i?E??j */
.hamburger_fixed {
  position: fixed;
  top: 3px;
  right: 1%;
  z-index: 999;
}
@media screen and (min-width: 769px) {
  .hamburger_fixed {
    right: calc(50% - 384px);
  }
}
/* ???j???[?I?[?v??????n???o?[?K?[??` */
.nav-open .hamburger__lineTop {
  top: 29px;
  transform: rotate(45deg);
}
.nav-open .hamburger__lineCenter {
  left: 50%;
  width: 0;
}
.nav-open .hamburger__lineBottom {
  top: 29px;
  transform: rotate(-45deg);
}
.nav-open .hamburger::before {
  content: "\9589\3058\308B";
  position: absolute;
  font-size: 10px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: 0;
}

/********************************************/
/**  Overlay / ?I?[?o?[???C?E?T?C?h???j???[   **/
/********************************************/

.overlay {
  position: fixed;
  top: -100vh;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
/* ???j???[?I?[?v??????I?[?o?[???C?\?? */
.nav-open .overlay {
  top: 60px;
  height: calc(100vh - 60px);
  z-index: 99;
  visibility: visible;
  overflow: hidden;
  opacity: 1;
  background: linear-gradient(to bottom, #880000 0%, #a8050a 50%, #880000 100%);
  background-color: #a8050a;
  overflow-y: auto;
}
.nav-open .overlay .content {
  max-width: 480px;
}
.overlay .side_r_title {
  margin-left: 10%;
  width: 70%;
}
.overlay .side_r_title2 {
  margin-left: 10%;
  margin-top: 10%;
  width: 70%;
}
/* ?T?C?h???j???[?{?? */
.sideMenu {
  padding: 16px 24px 60px;
  max-width: 600px;
  margin: 0 auto;
}
.sideMenu__header {
  display: flex;
  align-items: center;
  padding: 20px 0 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.sideMenu__title-img {
  height: auto;
  width: auto;
  max-height: 18px;
}
.sideMenu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sideMenu__item {
  border-bottom: none;
}
.sideMenu__item:first-child {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.sideMenu__item:last-child {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
/* ???j???[?????N?s */
.sideMenu__link {
  position: relative;
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-decoration: none;
  overflow: hidden;
}
/* ?z?o?[?????i????JS?? --menu-line-width ????j */
.sideMenu__link::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 0;
  width: var(--menu-line-width, calc(100% - 36px));
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.sideMenu__link:hover::after {
  transform: scaleX(1);
}
/* ???j???[???E??? */
.sideMenu__menu-img {
  display: block !important;
  height: auto !important;
  width: auto !important;
  max-height: 18px;
  max-width: calc(100% - 36px);
  flex: 0 0 auto;
}
.sideMenu__superone .sideMenu__menu-img {
  max-height: 22px !important;
}
.sideMenu__arrow-img {
  display: block !important;
  height: auto !important;
  width: auto !important;
  max-height: 13px;
  flex: 0 0 auto;
  margin-left: 6px;
}
.inner_sp_anchor {
  background: #f08300;
}

/****************************/
/**  Loader / ???[?f?B???O  **/
/****************************/

.loader-wrap {
  position: fixed;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
  background: #fff;
}
.loader,
.loader:after {
  width: 5em;
  height: 5em;
  border-radius: 50%;
}
.loader {
  position: relative;
  margin: 60px auto;
  border-top: 0.8em solid rgba(230, 230, 230, 0.2);
  border-right: 0.8em solid rgba(230, 230, 230, 0.2);
  border-bottom: 0.8em solid rgba(230, 230, 230, 0.2);
  border-left: 0.8em solid #ddd;
  text-indent: -9999em;
  font-size: 10px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loader 1.1s infinite linear;
  animation: loader 1.1s infinite linear;
}
@media all and (min-width: 769px) {
  .loader,
  .loader:after {
    width: 10em;
    height: 10em;
    border-radius: 50%;
  }
  .loader {
    margin: 60px auto;
    border-top: 1.1em solid rgba(230, 230, 230, 0.2);
    border-right: 1.1em solid rgba(230, 230, 230, 0.2);
    border-bottom: 1.1em solid rgba(230, 230, 230, 0.2);
    border-left: 1.1em solid #ddd;
    font-size: 10px;
  }
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/****************************/
/**  Animation / ?A?j???[?V???? **/
/****************************/

.fadein {
  opacity: 0;
}
.fadein--show {
  -webkit-animation: fadein--show 0.5s;
  animation: fadein--show 0.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes fadein--show {
  0% {
    opacity: 0.7;
    transform: translate(0%, -2%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@keyframes fadein--show {
  0% {
    opacity: 0.7;
    transform: translate(0%, -2%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
/* ?t???[?e?B???O???j???[??p?t?F?[?h?C?? */
.floatingMenu.fadein--show {
  -webkit-animation: fadein--floatingMenu 0.3s;
  animation: fadein--floatingMenu 0.3s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes fadein--floatingMenu {
  0% {
    opacity: 0;
    transform: translate(0%, 10%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@keyframes fadein--floatingMenu {
  0% {
    opacity: 0;
    transform: translate(0%, 10%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

/*boyoyon*/
.boyoyon.fadein--show {
  -webkit-animation: boyoyon 0.5s;
  animation: boyoyon 0.5s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

@-webkit-keyframes boyoyon {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes boyoyon {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/******************************************/
/**  FloatingMenu / ?t???[?e?B???O???j???[  **/
/******************************************/

.floatingMenu {
  position: fixed;
  bottom: 0px;
  z-index: 10;
  width: 100%;
  border: none;
  background-color: rgba(206, 212, 220, 0.9);
}
.floatingMenu a {
  display: block;
  padding: 0;
  width: calc(100% / 2);
  border: none;
}
.floatingMenu a.btn_floatingMenu_instagram {
  display: block;
  padding: 0;
  width: 100%;
  border: none;
}
.floatingMenu a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media all and (min-width: 769px) {
  .floatingMenu {
    background-color: rgba(206, 212, 220, 0.9);
  }
  .floatingMenu .columns {
    max-width: 769px;
    margin: auto;
  }
  .floatingMenu a {
    display: block;
    padding: 0;
    width: calc(100% / 3);
    border: none;
  }
  .floatingMenu a.btn_floatingMenu_instagram {
    width: calc(100% / 3);
  }
}

/****************************/
/**  Content / ?R???e???c???? **/
/****************************/

#main {
  width: 100%;
  max-width: 769px;
  margin: auto;
}
.info img:hover {
  opacity: 0.7;
}
/* ?Z?N?V?????^?C?g???i?O?p???t???j */
.title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004da0;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 3.3rem;
}
.title:before,
.title:after {
  flex-grow: 1;
  border-top: 15px solid #004da0;
  content: "";
}
.title:before {
  margin-right: 20px;
}
.title:after {
  margin-left: 20px;
}
@media all and (min-width: 769px) {
  .title {
    letter-spacing: 0.2rem;
    font-weight: 700;
    font-size: 3.7rem;
  }
  .title:before,
  .title:after {
    flex-grow: 1;
    border-top: 20px solid #004da0;
    content: "";
  }
  .title:before {
    margin-right: 25px;
  }
  .title:after {
    margin-left: 25px;
  }
}
.bgColor--w {
  background: #ffffff !important;
}
.bg--map {
  background-color: #e1dcda;
}

/****************************/
/**  Accordion / ?A?R?[?f?B?I?? **/
/****************************/

.accordion.close {
  display: none;
}
.accordion {
  cursor: pointer;
}
.accordion--open {
  display: none;
  width: 100%;
  height: auto;
  background: #fff;
}
@media all and (min-width: 769px) {
  .accordion_btn {
    bottom: -5px;
    left: 38.6%;
    width: 100%;
  }
}
#subscription .accordion_btn {
  position: relative;
  left: 0;
  z-index: 1;
}

/****************************/
/**  ShopList / ?X????X?g  **/
/****************************/

.shop__list {
  padding: 20px 0 15px;
  width: 100%;
}
@media all and (min-width: 769px) {
  .shop__list {
    margin: auto;
    max-width: 910px;
    width: 100%;
  }
}
/* ?X??I???{?^?? */
.shop__list--btn01 {
  position: relative;
  z-index: 9;
  margin: auto;
  margin-bottom: 10px;
  padding: 1px 25px 1px 8px;
  width: 100%;
  border-radius: 13px;
  background: #a1cbed;
  color: #000;
  font-size: 12px;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 40px;
  transition: 0.5s;
  transform: rotate(0.05deg);
}
@media screen and (min-width: 769px) {
  .shop__list--btn01 {
    margin: auto;
    margin-bottom: 12px;
    max-width: 450px;
    width: 95%;
    font-size: 25px;
    line-height: 38px;
  }
}
.shop__list--btn01 a {
  color: #000;
  transition: 0.5s;
}
.shop__list--btn01:after {
  position: relative;
  position: absolute;
  top: 33%;
  right: 2%;
  z-index: 9;
  width: 12px;
  height: 12px;
  background-image: url(../images/arrow_shop.webp);
  background-size: 100% 100%;
  content: "";
  transition: 0.5s;
}
.shop__list--btn01:hover a {
  color: #000;
  transition: 0.6s;
}
.shop__list--btn01:hover:after {
  background-image: url(../images/arrow_shop.webp);
  transition: 0.6s;
}
/* ?X????E?d?b??? */
@media screen and (max-width: 768px) {
  .shop__title {
    width: 60%;
    text-align: left;
    font-size: 12px;
  }
  .shop__text {
    width: 40%;
    text-align: right;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .shop__title {
    width: 60%;
    text-align: left;
    font-size: 1.4rem;
  }
  .shop__text {
    min-width: 40%;
    text-align: right;
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .shop__title {
    width: 60%;
    text-align: left;
    font-size: 1.7rem;
  }
  .shop__text {
    width: 40%;
    text-align: right;
    font-size: 1.3rem;
  }
}
.shop__title span {
  display: inline-block;
  margin: -1px 4px 0 0;
  padding: 1px 2px 0px 0px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #e73820;
  color: #fff;
  text-align: center;
  letter-spacing: -0.5px;
  font-weight: 800;
  font-size: 12px;
  line-height: 20px;
}
@media screen and (min-width: 769px) {
  .shop__title span {
    display: inline-block;
    margin: -1px 5px 4px 0;
    padding: 1px 1px 0px 0px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #e73820;
    color: #fff;
    text-align: center;
    letter-spacing: -0.5px;
    font-weight: 800;
    font-size: 12px;
    line-height: 22px;
  }
}
.shop__title span.blue {
  background: #00a0e9;
}

/********************************************/
/**  Sensing / ?Z???V???O?A?C?R??????u?w??  **/
/********************************************/

/* ?e????Z???V???O?A?C?R????u?iposition: absolute ?e?v?f?K?{?j */
.icon--sensing {
  z-index: 10;
  width: 17%;
}
.icon--sensing.insight {
  left: 7.5%;
  bottom: 22.5%;
}
.icon--sensing.nonee {
  left: 7.8%;
  bottom: 26%;
}
.icon--sensing.nvane {
  left: 4.8%;
  bottom: 25%;
}
.icon--sensing.nbox {
  left: 4.9%;
  bottom: 12%;
}
.icon--sensing.nwgn {
  left: 4.9%;
  bottom: 52.2%;
}
.icon--sensing.nvan {
  left: 4.9%;
  bottom: 52.2%;
}
.icon--sensing.none {
  left: 4.9%;
  bottom: 52.2%;
}
.icon--sensing.zrv {
  right: 8%;
  top: 10%;
}
.icon--sensing.stepwgn {
  right: 24%;
  top: 32%;
}
.icon--sensing.fit {
  left: 46%;
  top: 8%;
}
.icon--sensing.vezel {
  left: 66%;
  top: 11%;
}
.icon--sensing.wrv {
  left: 6%;
  bottom: 2%;
}

.icon--sensing.superone {
  left: 7%;
  top: 15%;
}
.icon--sensing.civic-rs {
  left: 8%;
  bottom: 22%;
}
.icon--sensing.prelude {
  left: 8%;
  bottom: 19%;
}
.icon--sensing.freed01 {
  right: 8%;
  top: 10%;
}
.icon--sensing.freed02 {
  right: 22%;
  top: 3%;
}

.bgColor--blue--line {
  background-color: #006fbc;
  border-bottom: #000 solid 5px;
  border-top: #000 solid 5px;
}

/*************************************/
/**  CTA / CTA?{?^??????u?w??     **/
/*************************************/

/* ?e?Z?N?V??????CTA?iposition: absolute ?e?v?f?K?{?j */
.cta--prelude {
  top: 85.7%;
  left: 10%;
  width: 80%;
}
.cta--superone {
  width: 86%;
  left: 7.5%;
  bottom: 1%;
}
.cta--freed01 {
  width: 85%;
  left: 7.5%;
  bottom: 7%;
}
/****************************/
/**  Map / ?n?}             **/
/****************************/

.new__map iframe {
  width: 100%;
  height: 400px;
}
#map {
  width: 100%;
  height: 400px;
  margin-top: -20px;
}
.gm-style > div > div > div > div > div {
  opacity: 0.8;
}
#gpsInfo {
  display: none;
}
.gpsmap {
  display: none;
}
@media (min-width: 769px) {
  #map {
    width: 100%;
    height: 80%;
  }
  /* PC???d?b?????N????? */
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}

/****************************/
/**  Button / ?{?^??        **/
/****************************/

.display {
  display: block !important;
}
/* ??p?i?r?{?^???i????A?j???[?V?????t???j */
.btn_nav {
  background-repeat: no-repeat;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  margin: 0 0 5px;
}
@keyframes shiny {
  0% {
    left: -10%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.btn_nav::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -10%;
  width: 80px;
  height: 90%;
  transform: scale(1.5) rotate(20deg);
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.5) 100%,
    rgba(255, 255, 255, 0) 0%
  );
}
.btn_nav:hover {
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  margin: 5px 0 0px;
}
/* ???{?^????z?o?[ */
a.btn--img:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/****************************/
/**  Footer / ?t?b?^?[      **/
/****************************/

footer {
  padding-bottom: 40px;
}
@media all and (max-width: 768px) {
  footer {
    padding-bottom: 80px;
  }
}
.copyright {
  letter-spacing: 0.1rem;
  font-size: 1rem;
  line-height: 1.4;
}
/* ?y?[?W?g?b?v?{?^?? */
.page_top {
  position: fixed;
  right: 5px;
  bottom: 30vw;
  z-index: 98;
  width: 30px;
  height: 30px;
  border: 1px solid #888;
  border-radius: 50%;
  background: #fff;
  opacity: 0.6;
}
.page_top a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  text-decoration: none;
}
.page_top a::before {
  position: absolute;
  top: -15px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 27px;
  color: #888;
  content: "\f106";
  text-align: center;
  font-weight: 900;
  font-size: 25px;
  font-family: "Font Awesome 5 Free";
}
@media all and (min-width: 769px) {
  .page_top {
    right: 10px;
    bottom: 89px;
    width: 40px;
    height: 40px;
  }
  .page_top a {
    width: 40px;
    height: 40px;
  }
  .page_top a::before {
    top: -20px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 30px;
    height: 27px;
    font-size: 28px;
  }
}

/****************************/
/**  Utility: Width / ??    **/
/**  ?? SP???BPC????X?|???V?u????? **/
/****************************/

/* ????ipx?j */
.w1300 {
  margin: auto;
  max-width: 1300px;
  width: 100% !important;
}
.w1040 {
  margin: auto;
  max-width: 1300px !important;
  width: 100% !important;
}
.w1000 {
  margin: auto;
  max-width: 1000px !important;
  width: 100% !important;
}
.w750 {
  margin: auto;
  max-width: 750px !important;
  width: 100% !important;
}
.w720 {
  margin: auto;
  max-width: 720px !important;
  width: 100% !important;
}
.w680 {
  margin: auto;
  max-width: 680px !important;
  width: 100% !important;
}
/* ?p?[?Z???g?? */
.w100p {
  width: 100% !important;
}
.w98p {
  margin: auto;
  width: 98% !important;
}
.w97p {
  margin: auto;
  width: 97% !important;
}
.w96p {
  margin: auto;
  width: 96% !important;
}
.w95p {
  margin: auto;
  width: 95% !important;
}
.w93-5p {
  margin: auto;
  width: 93.5% !important;
}
.w92p {
  margin: auto;
  width: 92% !important;
}
.w90p {
  margin: auto;
  width: 90% !important;
}
.w88p {
  margin: auto;
  max-width: 870px !important;
  width: 88% !important;
}
.w87p {
  margin: auto;
  max-width: 870px !important;
  width: 87% !important;
}
.w85p {
  margin: auto;
  width: 85% !important;
}
.w80p {
  margin: auto;
  width: 80% !important;
}
.w78p {
  margin: auto;
  width: 78% !important;
}
.w75p {
  margin: auto;
  width: 75% !important;
}
.w70p {
  margin: auto;
  width: 70% !important;
}
.w62p {
  margin: auto;
  width: 62% !important;
}
.w60p {
  margin: auto;
  width: 65% !important;
}
.w59p {
  margin: auto;
  width: 59% !important;
}
.w55p {
  margin: auto;
  width: 55% !important;
}
.w50p {
  margin: auto;
  width: 50% !important;
}
.w43p {
  margin: auto;
  width: 43% !important;
}
.w40p {
  margin: auto;
  width: 40% !important;
}
.w30p {
  margin: auto;
  width: 30% !important;
}
/* SP/PC ?????N???X?i?????K??: w{SP??}--{PC??}?j */
.w90p--pcw80p {
  margin: auto;
  width: 90% !important;
}
.w80p--pcw100p {
  margin: auto;
  width: 80% !important;
}
.w80p--pcw70p {
  margin: auto;
  width: 80% !important;
}
.w70psp--w100ppc {
  margin: auto;
  max-width: 433px !important;
  width: 89% !important;
}
.w100psp--w80p {
  margin: auto;
  max-width: 850px !important;
  width: 100% !important;
}
.w100psp--w85p {
  margin: auto;
  max-width: 850px !important;
  width: 100% !important;
}
.w100psp--w90p {
  margin: auto;
  max-width: 900px !important;
  width: 100% !important;
}
.w100psp--w98p {
  margin: auto;
  max-width: 980px !important;
  width: 100% !important;
}
.w90psp--w100p {
  width: 90%;
  margin: auto;
}
.w35psp--w25p {
  display: flex;
  align-items: center;
  width: 35% !important;
}
.w60psp--w70p {
  width: 60% !important;
}
.w90psp--w65p {
  width: 90% !important;
}
@media screen and (min-width: 769px) {
  .w100psp--w80p {
    width: 80% !important;
  }
  .w80p--pcw100p {
    margin: auto;
    width: 100% !important;
  }
  .w80p--pcw70p {
    margin: auto;
    width: 70% !important;
  }
  .w100psp--w85p {
    width: 85% !important;
  }
  .w100psp--w90p {
    width: 90% !important;
  }
  .w100psp--w98p {
    width: 97.3% !important;
  }
  .w35psp--w25p {
    width: 25% !important;
  }
  .w60psp--w70p {
    width: 70% !important;
  }
  .w70psp--w100ppc {
    margin: auto;
    max-width: 700px !important;
    width: 100% !important;
  }
  .w90psp--w100p {
    width: 100%;
    margin: auto;
  }
  .w90psp--w65p {
    width: 65% !important;
  }
}

/****************************/
/**  Utility: Spacing / ?]?? **/
/**  s=??, m=??, l=?? / ?}?C?i?X?l?? --- **/
/****************************/

.m--auto {
  display: block !important;
  margin: auto !important;
}
/* margin-top */
.mt--s {
  margin-top: 15px !important;
}
.mt--m {
  margin-top: 25px !important;
}
.mt--l {
  margin-top: 45px !important;
}
.mt---m {
  margin-top: -25px !important;
}
.mt---l {
  margin-top: -30px !important;
}
.mt---2 {
  margin-top: -2px !important;
}
.mt---3 {
  margin-top: -3px !important;
}
.mt---9 {
  margin-top: -9px !important;
}
.mt--3 {
  margin-top: 3px !important;
}
.mt--5 {
  margin-top: 5px !important;
}
.mt--10 {
  margin-top: 10px !important;
}
.mt--15 {
  margin-top: 15px !important;
}
/* margin-bottom */
.mb--s {
  margin-bottom: 15px !important;
}
.mb--m {
  margin-bottom: 25px !important;
}
.mb--l {
  margin-bottom: 45px !important;
}
.mb---s {
  margin-bottom: -10px !important;
}
.mb---m {
  margin-bottom: -25px !important;
}
.mb--3 {
  margin-bottom: 3px !important;
}
.mb--5 {
  margin-bottom: 5px !important;
}
.mb--10 {
  margin-bottom: 10px !important;
}
.mb--15 {
  margin-bottom: 15px !important;
}
.ml--3p {
  margin-left: 3% !important;
}
/* padding-top */
.pt--s {
  padding-top: 15px !important;
}
.pt--m {
  padding-top: 25px !important;
}
.pt--l {
  padding-top: 45px !important;
}
.pt--s__sp {
  padding-top: 5px !important;
}
.pt--3 {
  padding-top: 3px !important;
}
.pt--5 {
  padding-top: 5px !important;
}
.pt--10 {
  padding-top: 10px !important;
}
.pt--15 {
  padding-top: 15px !important;
}
.pt--mPC {
  padding-top: 1px !important;
}
/* padding-bottom */
.pb--s {
  padding-bottom: 15px !important;
}
.pb--m {
  padding-bottom: 25px !important;
}
.pb--l {
  padding-bottom: 45px !important;
}
.pb--3 {
  padding-bottom: 3px !important;
}
.pb--5 {
  padding-bottom: 5px !important;
}
.pb--10 {
  padding-bottom: 10px !important;
}
.pb--15 {
  padding-bottom: 15px !important;
}
.pb--s--sp {
  padding-bottom: 15px !important;
}
/* padding-right / left */
.pr--10 {
  padding-right: 10%;
}
.pr--7 {
  padding-right: 7%;
}
.pr--5 {
  padding-right: 5%;
}
.pr--3 {
  padding-right: 3%;
}
.pr--15 {
  padding-right: 15%;
}
.pl--10 {
  padding-left: 10%;
}
.pl--5 {
  padding-left: 5%;
}
.pl--3 {
  padding-left: 3%;
}
.pl--1 {
  padding-left: 1%;
}
/* padding?i?S?????j */
.p--3 {
  padding: 3px;
}
.p--1p {
  padding: 1%;
}
.p--2p {
  padding: 2%;
}
.p--3p {
  padding: 3%;
}
.p--5p {
  padding: 5%;
}
/* ?A???J?[?????N??I?t?Z?b?g?? */
.mt--anchor {
  margin-top: -95px !important;
  padding-top: 95px !important;
}
/* PC??p????? */
.pt--m--pc {
  padding-top: 0px !important;
}
.pb--m--pc {
  padding-bottom: 0px !important;
}
@media all and (min-width: 769px) {
  .mt--s {
    margin-top: 20px !important;
  }
  .mt--m {
    margin-top: 40px !important;
  }
  .mt---s {
    margin-top: -20px !important;
  }
  .mt---m {
    margin-top: -40px !important;
  }
  .mt---l {
    margin-top: -70px !important;
  }
  .mt--l {
    margin-top: 80px !important;
  }
  .mb--s {
    margin-bottom: 20px !important;
  }
  .mb--m {
    margin-bottom: 40px !important;
  }
  .mb--l {
    margin-bottom: 80px !important;
  }
  .pt--s {
    padding-top: 15px !important;
  }
  .pt--m {
    padding-top: 40px !important;
  }
  .pt--l {
    padding-top: 80px !important;
  }
  .pb--s {
    padding-bottom: 15px !important;
  }
  .pb--m {
    padding-bottom: 40px !important;
  }
  .pb--l {
    padding-bottom: 80px !important;
  }
  .pt--m--pc {
    padding-top: 40px !important;
  }
  .pb--m--pc {
    padding-bottom: 40px !important;
  }
  .pb--s--sp {
    padding-bottom: 0px !important;
  }
}

/****************************/
/**  Utility: Border / ?g?? **/
/****************************/

.border1 {
  border: 1px solid #000;
}
.border {
  border: 3px solid #000;
}
.border--red {
  border: 3px solid #ca1c1d;
}
.borderTop--red {
  border-top: 5px solid #ca1c1d;
}
.borderBtm--red {
  border-bottom: 10px solid #ca1c1d;
}
.borderTop--bk {
  border-top: 2px solid #888888;
}
.borderBtm--bk {
  border-bottom: 1px solid #000000;
}
.borderBtm--blue {
  border-bottom: 3px solid #3263b5;
}
.borderTop__gry {
  border-top: 1px solid #aaa !important;
}
.borderBtm__gry {
  padding-bottom: 10px;
  border-bottom: 1px solid #888;
}
.borderBtm__gry--bold {
  border-bottom: 20px solid #9f9f9f;
}
.borderTop__gry--bold {
  border-top: 20px solid #9f9f9f;
}
.borderBtm__bk--bold {
  border-bottom: 7px solid #231815;
}
.borderBtm__bk--bold02 {
  border-bottom: 7px solid #231815;
}
.borderBtm__bk--bold03 {
  border-bottom: 20px solid #231815;
}
.borderBtm__white {
  border-bottom: 3px solid #fff;
}
.borderBtm__yellow {
  border-bottom: 5px solid #f8e79f;
}
.borderBtm__green {
  border-bottom: 20px solid #28ad0c;
}
.borderBtm__red {
  border-bottom: 2px #ee7800 solid;
}
@media screen and (max-width: 768px) {
  .borderBtm__bk--bold03 {
    border-bottom: 12px solid #231815;
  }
}
.borderTop__bule--bold {
  border-top: 7px solid #004da0;
}
.borderTop__red--bold {
  border-top: 7px solid #ab0008;
}
.borderTop__bk--bold {
  border-top: 7px solid #231815;
}
/* ?O???f?[?V?????{?[?_?[ */
.borderTop__pink--bold {
  border-top: 20px solid #78ff8c;
  border-image: linear-gradient(
    90deg,
    rgba(80, 195, 255, 1) 0%,
    rgba(120, 255, 140, 1) 100%
  );
  border-image-slice: 1;
}
@media screen and (min-width: 769px) {
  .borderTop__pink--bold {
    border-top: 30px solid #78ff8c;
    border-image: linear-gradient(
      90deg,
      rgba(80, 195, 255, 1) 0%,
      rgba(120, 255, 140, 1) 100%
    );
    border-image-slice: 1;
  }
}

/****************************/
/**  Utility: Background / ?w?i?F **/
/****************************/

.bgColor__bk {
  background: #000;
}
.bgColor--gr {
  background: #dcdddd;
}
.bgColor__red02 {
  background: #e50012;
}
.bgColor__w {
  background: #fff;
}
.bgColor--bule {
  background: #006ab8;
}
.bgColor__yw {
  background: #fff000;
}
.bgColor__rakumaru {
  background: #e3f5df;
}

.bgColor--mint {
  background: #e0f0e2;
}

/****************************/
/**  Utility: Font / ????   **/
/****************************/

/* ?????F */
.fontColor--w {
  color: #fff;
}
.fontColor--gry {
  color: #78828a;
}
.fontColor--red {
  color: #ca1c1d;
}
.fontColor--blue {
  color: #003e8a;
}
.fontColor--grn {
  color: #3da138;
}
/* ?????N?e?L?X?g */
.linkText_red {
  color: #ca1c1d;
  text-decoration: underline;
}
/* ?t?H???g?t?@?~???[ */
.font--M_PLUS_Rounded {
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform: rotateZ(0.03deg);
}
/* ?t?H???g?T?C?Y */
.fontSize--s {
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.2;
}
.fontSize--m {
  font-size: 1.2rem;
  line-height: 1.4;
}
.font--l,
.font--l a {
  font-size: 1.7rem;
  line-height: 1.4;
}
@media all and (min-width: 769px) {
  .fontSize--s {
    letter-spacing: 0.2px;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .fontSize--m {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .fontSize--m--pc {
    font-size: 1.5rem;
  }
}
/* ?s??E???? */
.lineHight1 {
  line-height: 1;
}
.lineHight14 {
  line-height: 1.4;
}
.letterSpacing02 {
  letter-spacing: 0.2rem;
}
.letterSpacing0 {
  letter-spacing: 0;
}
/* ?E?F?C?g?E???? */
.bold {
  font-weight: bold;
}
.textAlign--l {
  text-align: left;
}
.textAlign--r {
  text-align: right;
}
.textAlign--c {
  text-align: center;
}

/****************************/
/**  Utility: z-index       **/
/****************************/

.z1 {
  z-index: 1;
}
.z2 {
  z-index: 2;
}
.z3 {
  z-index: 3;
}
.z4 {
  z-index: 4;
}

/****************************/
/**  Utility: Shadow / ?e   **/
/****************************/

.shadow {
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}
.shadow--l {
  -webkit-filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
}
/****************************/
/**  add-content **/
/****************************/
#mainVisual .mv_tl {
  width: 80%;
  left: 10%;
  top: 8%;
}
#special {
  border-top: #14126f 5px solid;
}
#n-box {
  background-color: #fff57f;
}
#dna .dna--01 {
  width: 42%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 31.5%;
}
#dna .dna--02 {
  width: 42%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 36.4%;
}