﻿@charset "UTF-8";

/************************************

reset

************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1;
}

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

li {
  list-style-type: none;
}

img {
  border: 0;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

address,
em {
  font-style: normal;
}

button {
  padding: 0;
  border: 0;
}

hr {
  border: 0;
  border-top: 1px solid #000;
}

/************************************

base

************************************/
html {
  font-size: 625%;
}

@media screen and (max-width: 769px) {
  html {
    font-size: 480%;
  }
}

body {
  position: relative;
  font-family: sans-serif;
  font-size: 0.16rem;
  color: #000;
  background: #FFF;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  line-height: 2.1;
  text-align: justify;
}

p a {
  text-decoration: underline;
}

sub {
  font-size: .7em;
  vertical-align: baseline;
}

img {
  max-width: 100%;
  height: auto;
}

.column {
  display: flex;
  margin: 0 0 0 -.2rem;
}

@media screen and (max-width: 769px) {
  .column {
    display: block;
    margin: -.2rem 0 0 0;
  }
}

.column__item {
  flex: 1;
  margin: 0 0 0 .2rem;
}

@media screen and (max-width: 769px) {
  .column__item {
    margin: .25rem 0 0 0;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container.-narrow {
  max-width: 780px;
}

.container-dot {
  position: relative;
  padding: 4.6vw 0 calc(4.6vw + .6rem) 0;
  background: url(../images/bg_dot.png), linear-gradient(to right, #0377e8, #0aaffa);
}

@media screen and (max-width: 769px) {
  .container-dot {
    margin-top: .4rem;
  }
}

.container-dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.6vw;
  background: url(../images/mask_top@2x.png) no-repeat center -2px;
  background-size: 100vw auto;
}

.container-dot::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4.6vw;
  background: url(../images/mask_bottom@2x.png) no-repeat center 2px;
  background-size: 100vw auto;
}

.container-dot p,
.container-dot table,
.container-dot ul,
.container-dot dl {
  color: #FFF;
}

.container-dot.-one-year {
  padding: calc(4.6vw + .6rem) 0 calc(4.6vw + 1.4rem) 0;
}

.container-hex {
  position: relative;
  padding: calc(4.6vw + .6rem) 0;
  background: url(../images/bg_hex-pattern.png);
}

@media screen and (max-width: 769px) {
  .container-hex {
    margin-top: .4rem;
  }
}

.container-hex::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.6vw;
  background: url(../images/mask_top@2x.png) no-repeat center -2px;
  background-size: 100vw auto;
}

.container-hex::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4.6vw;
  background: url(../images/mask_bottom@2x.png) no-repeat center 2px;
  background-size: 100vw auto;
}

.contents {
  margin-top: .7rem;
  padding: 0 12px;
}

.contents.-center,
.contents.-center p {
  text-align: center;
}

.contents.-low-margin {
  margin-top: .35rem;
}

.contents.-no-margin {
  margin-top: 0;
}

.contents.-column02 {
  display: flex;
  margin-left: -.2rem;
}

.contents.-column02>* {
  flex: 1;
  margin-left: .2rem;
}

@media screen and (max-width: 769px) {
  .contents.-column02 {
    display: block;
    margin-left: 0;
  }

  .contents.-column02>* {
    text-align: center;
    margin-top: .4rem;
    margin-left: 0;
  }
}

.accordion {
  background: #FFF;
  border-top: 4px solid #0a8ffb;
  border-right: 4px solid #0a8ffb;
  border-left: 4px solid #0a8ffb;
}

.accordion__item {
  border-bottom: 4px solid #0a8ffb;
}

.accordion__heading {
  position: relative;
  padding: .2rem .4rem;
  color: #0a8ffb;
  font-size: .3rem;
  font-weight: bold;
  text-align: center;
}

.accordion__heading::after {
  content: "";
  display: block;
  position: absolute;
  top: .2rem;
  right: .4rem;
  width: .16rem;
  height: .16rem;
  transform: rotate(-45deg);
  border-left: 4px solid #0a8ffb;
  border-bottom: 4px solid #0a8ffb;
}

.accordion__heading:hover {
  cursor: pointer;
}

.accordion__content {
  display: none;
}

.accordion__inner {
  padding: 0 .4rem .2rem .4rem;
}

.container-dot p.accordion__inner {
  color: #000;
  text-align: left;
}

.btn-inquiry {
  display: inline-block;
  min-width: 418px;
  padding: .6em 2em;
  color: #FFF;
  font-size: .28rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(to right, #fd5392 0%, #eedd24 100%);
  border-radius: 50px;
  transition: 0.2s all ease 0s;
}

.btn-inquiry.-small {
  min-width: 0;
  font-size: .24rem;
}

@media screen and (max-width: 870px) {
  .btn-inquiry {
    width: 100%;
    min-width: 0;
    padding: .6em 1em;
  }
}

.btn-inquiry.-navigation {
  width: auto;
  min-width: 0;
  padding: .6em 1.4em;
  font-size: .145rem;
}

@media screen and (max-width: 1238px) {
  .btn-inquiry.-navigation {
    font-size: 1.2vw;
    padding: .6em 1em;
  }
}

@media screen and (max-width: 769px) {
  .btn-inquiry.-navigation {
    padding: .6em 1.3em;
    font-size: 3.8vw;
  }
}

.btn-inquiry:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 30px rgba(253, 83, 146, 0.5);
}

.btn-price {
  display: inline-block;
  min-width: 418px;
  padding: .6em 2em;
  color: #0a8ffb;
  font-size: .28rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: #FFF;
  border: 2px solid #0a8ffb;
  border-radius: 50px;
  transition: 0.2s all ease 0s;
}

@media screen and (max-width: 870px) {
  .btn-price {
    width: 100%;
    min-width: 0;
  }
}

.btn-price.-navigation {
  width: auto;
  min-width: 0;
  font-size: .16rem;
}

@media screen and (max-width: 769px) {
  .btn-price.-navigation {
    padding: .6em 1em;
    font-size: 3.8vw;
  }
}

.btn-price:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 30px rgba(10, 143, 251, 0.5);
}

.btn-primary {
  display: inline-block;
  padding: .8em 3em;
  color: #FFF;
  font-size: .22rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: #0377e8;
  border-radius: 50px;
  transition: 0.2s all ease 0s;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 30px rgba(3, 119, 232, 0.5);
}

.btn-secondary {
  display: inline-block;
  padding: .8em 3em;
  color: #0a8ffb;
  font-size: .2rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: #FFF;
  border: 2px solid #0a8ffb;
  border-radius: 50px;
  transition: 0.2s all ease 0s;
}

.btn-secondary:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 30px rgba(3, 119, 232, 0.5);
}

@media screen and (max-width: 769px) {
  .btn-secondary {
    padding: .8em 1.5em;
  }
}

.btn-negative {
  display: inline-block;
  padding: .8em 3em;
  color: #FFF;
  font-size: .22rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: #CCC;
  border-radius: 50px;
  transition: 0.2s all ease 0s;
}

.btn-negative:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 30px rgba(204, 204, 204, 0.5);
}

.btn-arrow {
  display: block;
  font-size: .18rem;
  font-weight: bold;
  text-decoration: none;
}

.btn-arrow::before {
  content: "\f138";
  margin-right: .2em;
  color: #0a8ffb;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}

.card {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: 0.2s all ease 0s;
}

.card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 769px) {
  .card__content {
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 769px) {
  .card__img {
    flex-basis: 120px;
  }
}

.card__inner {
  padding: .2rem;
}

@media screen and (max-width: 769px) {
  .card__inner {
    flex: 1;
  }
}

.card__heading {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  color: #0a8ffb;
  font-size: .18rem;
  text-align: center;
}

@media all and (-ms-high-contrast: none) {
  .card__heading {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 769px) {
  .card__heading {
    text-align: left;
  }
}

.card__txt {
  margin-top: .1rem;
  font-size: .14rem;
  line-height: 1.4;
}

.contact__btn {
  margin-top: .3rem;
}

.contact__column {
  display: flex;
  justify-content: center;
  margin-top: .2rem;
}

@media screen and (max-width: 769px) {
  .contact__column {
    display: block;
  }
}

.contact__item {
  margin: 0 .1rem;
}

@media screen and (max-width: 769px) {
  .contact__item {
    margin: .1rem 0;
  }
}

.contact__tel {
  margin-top: .2rem;
}

.contact__heading {
  margin-bottom: .18rem;
  font-size: .16rem;
}

@media screen and (max-width: 769px) {
  .contact__heading {
    font-size: 2.6vw;
  }
}

.contact__heading strong {
  font-size: 1.625em;
}

.main .contact__heading {
  color: #FFF;
}

.contact__number {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  margin-top: -.05rem;
  font-size: .43rem;
  letter-spacing: 0;
  color: #0a8ffb;
}

@media all and (-ms-high-contrast: none) {
  .contact__number {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

.main .contact__number {
  color: #FFF;
}

.contact__catch {
  margin-top: .2rem;
}

.feature {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 769px) {
  .feature {
    display: block;
  }
}

.feature.-fearure02 {
  flex-direction: row-reverse;
}

@media screen and (max-width: 769px) {
  .feature.-fearure02 {
    margin-top: .7rem;
  }
}

.feature__content {
  flex: 1;
}

.feature__img {
  position: relative;
  z-index: -1;
  flex-basis: 58%;
  margin-left: -13%;
}

.-fearure02 .feature__img {
  margin-left: 0;
  margin-right: -13%;
}

@media screen and (max-width: 769px) {
  .feature__img {
    margin-top: -.3rem;
    margin-left: 0;
    text-align: center;
  }

  .-fearure02 .feature__img {
    margin-right: 0;
  }
}

.feature__heading {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  font-size: .32rem;
  line-height: 1.4;
}

@media all and (-ms-high-contrast: none) {
  .feature__heading {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 769px) {
  .feature__heading {
    text-align: center;
  }
}

.-fearure02 .feature__heading {
  text-align: right;
}

@media screen and (max-width: 769px) {
  .-fearure02 .feature__heading {
    text-align: center;
  }
}

.feature__heading em {
  font-size: 1.375em;
}

@media all and (-ms-high-contrast: none) {
  .feature__heading em {
    transform: translate(0, 0.5em);
  }
}

.feature__heading em strong {
  color: #0a8ffb;
  font-size: 1.6em;
  font-weight: 300;
}

@media all and (-ms-high-contrast: none) {
  .feature__heading sup {
    transform: translate(0, 0.8em);
  }
}

.feature__txt {
  margin-top: .4rem;
  line-height: 2.1;
}

@media screen and (max-width: 769px) {
  .feature__txt {
    margin-top: .2rem;
  }
}

.feature__txt sup {
  font-size: 70%;
}

.fearure__notice {
  margin-top: .2rem;
  font-size: .12rem;
}

.flowchart__item {
  display: flex;
}

.flowchart__number {
  position: relative;
  min-height: 1.3rem;
}

.flowchart__number::after {
  content: "";
  position: absolute;
  left: calc(50% - 2px);
  z-index: -1;
  width: 4px;
  height: 100%;
  background: #0377e8;
}

.flowchart__item:last-of-type .flowchart__number::after {
  background: none;
}

.flowchart__number-inner {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: .78rem;
  height: .78rem;
  padding-left: .07em;
  font-size: .25rem;
  vertical-align: top;
  background: #FFF;
  border: #91d7fc 9px solid;
  border-radius: 50%;
}

@media all and (-ms-high-contrast: none) {
  .flowchart__number-inner {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  .flowchart__number-inner {
    padding-top: .85em;
  }
}

.flowchart__content {
  flex: 1;
  padding: .25rem 0 0 .25rem;
}

.flowchart__heading {
  margin-bottom: .1rem;
  font-size: .22rem;
  font-weight: bold;
}

.footer {
  padding: .4rem 0 1.2rem 0;
  text-align: center;
}

.footer__copyright {
  display: block;
  margin-top: 1em;
  font-size: .12rem;
}

.form {
  margin-top: .5rem;
}

@media screen and (max-width: 769px) {
  .form {
    margin-top: 12%;
  }
}

.form__error {
  margin-top: .05rem;
  color: #ff5e5e;
}

.form__error-item {
  color: #ff5e5e;
}

.form__title {
  font-size: .2rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.6;
}

@media screen and (max-width: 769px) {
  .form__title {
    margin-top: 0;
  }
}

.form__title em {
  display: inline-block;
  margin-top: .1rem;
  color: #0a8ffb;
  font-size: 1.8em;
}

.form__content {
  margin-top: .25rem;
}

.form__heading {
  color: #000;
  font-size: .20rem;
  font-weight: normal;
}

.form__heading+.form__caution {
  margin-top: 0;
}

.form__require {
  padding-left: .4em;
  color: #0a8ffb;
  font-size: .12rem;
}

.form__input {
  margin-top: .06rem;
}

.form__input input:not([type="radio"]),
.form__input textarea {
  -webkit-appearance: none;
  width: 100%;
  border: 1px solid #CCC;
  border-radius: 4px;
  padding: .5em;
}

.form__input input:not([type="radio"]):focus,
.form__input textarea:focus {
  border-color: #0a8ffb;
  box-shadow: 0px 0px 4px 0 #0a8ffb;
}

@media screen and (max-width: 769px) {

  .form__input input:not([type="radio"]),
  .form__input textarea {
    font-size: 16px;
  }
}

.form__input input[type="radio"] {
  width: 15px;
  height: 15px;
}

.form__input input#area {
  width: 12em;
  margin-right: .1rem;
}

.form__input textarea {
  min-height: 2rem;
  line-height: 1.2;
}

.form__input select {
  width: 100%;
  max-width: 320px;
  padding: .6em 1em;
}

.form__input label {
  display: inline-block;
  margin-top: .08rem;
}

.form__label {
  display: inline-block;
  font-size: .16rem;
}

.form__row {
  display: flex;
  align-items: center;
}

.form__row:not(:first-of-type) {
  margin-top: .1rem;
}

.form__row label {
  margin-top: 0;
}

.form__row input {
  flex: 1;
  margin-left: .1rem;
}

.form__line {
  margin-top: .5rem;
  margin-bottom: .5rem;
  border-color: #AAA;
}

.form__privacy {
  height: 15em;
  margin-top: .1rem;
  padding: .1rem;
  border: 1px solid #CCC;
  overflow-y: scroll;
}

.form__btn {
  display: flex;
  justify-content: center;
  margin-top: .25rem;
  text-align: center;
}

@media screen and (max-width: 769px) {
  .form__btn {
    display: block;
  }
}

.form__btn button,
.form__btn input[type="submit"] {
  border: 0;
}

.form__btn-item {
  margin: 0 .1rem;
}

@media screen and (max-width: 769px) {
  .form__btn-item {
    margin: .2rem 0 0 0;
  }
}

.form__finish p {
  text-align: center;
}

span.wpcf7-not-valid-tip {
  padding-top: .3em;
  color: #d10000;
  font-size: .14rem;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  margin: 2em auto 0 auto;
  padding: .15rem;
  border: none;
  background: #fcc4c4;
}

div.wpcf7-response-output {
  color: #d10000;
  font-size: .14rem;
}

div.wpcf7-mail-sent-ok {
  margin: 2em auto 0 auto;
  padding: .15rem;
  border: none;
  background: #0a8ffb;
}

div.wpcf7-mail-sent-ok.wpcf7-response-output {
  color: #FFF;
}

.frame-primary {
  border: 8px solid #0a8ffb;
  border-radius: 10px;
  background: #FFF;
}

.frame-primary__title {
  padding: .1rem .2rem .2rem .2rem;
  color: #FFF;
  font-size: .32rem;
  font-weight: bold;
  text-align: center;
  background: #0a8ffb;
}

.frame-primary__content {
  padding: .4rem;
}

.frame-secondary {
  padding: 0 .4rem .4rem .4rem;
  border: .14rem #FFF solid;
  border-radius: 20px;
}

@media screen and (max-width: 769px) {
  .frame-secondary {
    margin-top: .5rem;
  }
}

.frame-secondary__heading {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  margin: -.3rem 0 .1rem 0;
  font-size: .3rem;
  text-align: center;
  transform: translate(0, -0.1rem);
}

@media all and (-ms-high-contrast: none) {
  .frame-secondary__heading {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

.frame-secondary__heading span {
  display: inline-block;
  min-width: 6em;
  padding: .7em;
  background: #FFF;
  border-radius: 10px;
}

@media all and (-ms-high-contrast: none) {
  .frame-secondary__heading span {
    padding: 1em .7em .4em .7em;
  }
}

.frame-secondary__heading-sub {
  margin-bottom: .1rem;
  color: #FFF;
  font-size: .22rem;
  text-align: center;
}

.frame-secondary__heading-sub span {
  display: inline-block;
  padding: 0 .6em;
  line-height: 1.4;
  border-left: 1px solid #FFF;
  border-right: 1px solid #FFF;
}

.frame-secondary__txt:not(:first-of-type) {
  margin-top: .2rem;
}

.header {
  z-index: 100;
  width: 100%;
  text-align: center;
}

.header__title {
  padding-top: .2rem;
}

.header__content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 769px) {
  .header__content {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 1238px) {
  .header__logo {
    flex-basis: 15%;
  }
}

.header__sp-contact {
  display: none;
}

@media screen and (max-width: 769px) {
  .header__sp-contact {
    display: block;
    position: fixed;
    z-index: 200;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #FFF;
    padding: .1rem .05rem .25rem .05rem;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  }
}

.heading-first {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  text-align: center;
  font-size: .7rem;
  color: #0a8ffb;
  line-height: 1.2;
}

@media all and (-ms-high-contrast: none) {
  .heading-first {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 769px) {
  .heading-first {
    font-size: 7vw;
  }
}

.heading-second {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  color: #0a8ffb;
  font-size: .44rem;
  line-height: 1.2;
}

@media all and (-ms-high-contrast: none) {
  .heading-second {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

.container-dot .heading-second {
  color: #FFF;
}

@media screen and (max-width: 769px) {
  .heading-second {
    font-size: 6vw;
  }
}

.heading-third {
  margin-bottom: .2rem;
  font-size: .3rem;
  font-weight: bold;
  line-height: 1.2;
}

.heading-fourth {
  margin-top: .35rem;
  margin-bottom: .1rem;
  font-weight: bold;
}

.kokin__container {
  background: url(../images/bg_virus01.png) no-repeat center center;
}

.kokin__catch {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  margin-top: .3rem;
  color: #56e4fd;
  font-size: .28rem;
  text-align: center;
}

@media all and (-ms-high-contrast: none) {
  .kokin__catch {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 769px) {
  .kokin__catch {
    font-size: .26rem;
  }
}

.lead {
  margin-top: .2rem;
  font-size: .17rem;
  font-weight: bold;
}

.lead em {
  color: #fc5490;
  font-size: 1.2em;
}

.container-dot .lead em {
  color: #fff003;
}

.list-definition {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 769px) {
  .list-definition {
    display: block;
  }
}

.list-definition dt {
  flex-basis: 30%;
  color: #56e4fd;
  font-weight: bold;
}

.list-definition dt:not(:first-of-type) {
  margin-top: .1rem;
}

@media screen and (max-width: 769px) {
  .list-definition dt:not(:first-of-type) {
    margin-top: .18rem;
  }
}

.list-definition dd {
  flex-basis: 70%;
  margin-top: .1rem;
}

.list-definition dd:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 769px) {
  .list-definition dd:first-of-type {
    margin-top: .1rem;
  }
}

.list-definition dd:before {
  content: "：";
}

.list-border {
  border-bottom: 1px solid #b7b7b7;
}

.list-border .list-border__item {
  padding: .2rem;
  border-top: 1px solid #b7b7b7;
}

.main {
  position: relative;
  display: block;
  height: 780px;
  background: url(../images/main-pc.jpg) no-repeat center center;
}

@media screen and (max-width: 550px) {
  .main {
    height: 80vh;
    min-height: 580px;
    background: url(../images/main-sp.jpg) no-repeat center center/cover;
  }
}

.main__catch {
  position: absolute;
  top: .2rem;
  width: 100%;
  color: #FFF;
  font-size: .19rem;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 769px) {
  .main__catch {
    top: .2rem;
  }
}

.main__container {
  width: 100%;
  max-width: 1100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 0 12px;
  text-align: center;
}

@media screen and (max-width: 769px) {
  .main__container {
    padding: 0 .45rem;
  }
}

.main__logo {
  margin-bottom: .4rem;
}

@media screen and (max-width: 769px) {
  .main__logo {
    width: 180px;
    margin: 0 auto .3rem auto;
  }
}

.main__heading {
  margin-top: .3rem;
}

@media screen and (max-width: 769px) {
  .main__btn {
    display: none;
  }
}

.main__bnr {
  margin-top: .4rem;
}

.measure__catch {
  font-size: .25rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.measure__catch em {
  color: #fc5490;
}

.measure__img {
  margin-top: .2rem;
  text-align: center;
}

.media {
  display: flex;
}

@media screen and (max-width: 769px) {
  .media {
    display: block;
  }
}

@media screen and (max-width: 769px) {
  .media__image {
    text-align: center;
  }
}

.media__content {
  flex: 1;
  margin-top: -0.4em;
  padding-left: 2.5em;
}

@media screen and (max-width: 769px) {
  .media__content {
    padding-left: 0;
    padding-top: 1.5em;
  }
}

.merit {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 769px) {
  .merit {
    display: block;
  }
}

.merit__content {
  flex-basis: 65%;
}

.merit__txt {
  margin-top: .2rem;
  line-height: 2.1;
}

@media screen and (max-width: 769px) {
  .merit__txt {
    margin-top: .2rem;
  }
}

.merit__img {
  position: relative;
  z-index: -1;
}

@media screen and (max-width: 769px) {
  .merit__img {
    margin-top: .3rem;
    margin-left: 0;
    text-align: center;
  }
}

.movie {
  display: flex;
  justify-content: center;
  margin: .4rem 0 0 -.2rem;
  padding: 0 12px .2rem 12px;
}

@media screen and (max-width: 769px) {
  .movie {
    display: block;
    margin: .4rem 0 0 0;
  }
}

.movie__container {
  flex: 1;
  margin: 0 0 0 .2rem;
}

@media screen and (max-width: 769px) {
  .movie__container {
    margin: .2rem 0 0 0;
  }
}

.movie__inner {
  position: relative;
  overflow: hidden;
  margin: 0 auto .1rem auto;
  padding: 30px 0 56.25% 0;
  width: 100%;
  height: 0;
  background: #efefef;
}

.movie__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.navigation-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation-bottom__item {
  margin: 0 .04rem;
}

.navigation-foot {
  display: flex;
  justify-content: center;
}

.navigation-foot__item {
  margin: 0 .2rem;
}

.navigation-foot__item a {
  text-decoration: none;
}

.navigation-foot__item a:hover {
  color: #0a8ffb;
}

.navigation {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 769px) {
  .navigation {
    display: none;
    padding: 1rem .4rem 1rem .2rem;
  }

  .navigation.is-open {
    display: block;
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    height: 100%;
    background: rgba(145, 215, 252, 0.9);
  }
}

.navigation__trigger {
  display: none;
}

@media screen and (max-width: 769px) {
  .navigation__trigger {
    position: fixed;
    z-index: 100;
    right: .1rem;
    top: .1rem;
    display: block;
    width: 44px;
    height: 44px;
    background: #FFF;
    border-radius: 50%;
  }
}

.navigation__trigger span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  width: 50%;
  height: 2px;
  margin: 0 auto;
  background: #0a8ffb;
  transition: 0.2s all ease 0s;
}

.navigation__trigger span::before,
.navigation__trigger span::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background: #0a8ffb;
  transition: 0.2s all ease 0s;
}

.navigation__trigger span::before {
  top: -7px;
}

.navigation__trigger span::after {
  top: 7px;
}

.navigation__trigger.is-open span {
  background: none;
}

.navigation__trigger.is-open span::before,
.navigation__trigger.is-open span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #0a8ffb;
  transition: 0.2s all ease 0s;
}

.navigation__trigger.is-open span::before {
  transform: rotate(45deg);
}

.navigation__trigger.is-open span::after {
  transform: rotate(-45deg);
}

.navigation__item {
  margin-left: 1.6vw;
}

.navigation__item.-number {
  margin-left: 1vw;
}

.navigation__item.-active a {
  color: #0a8ffb;
}

@media screen and (max-width: 769px) {
  .navigation__item {
    margin-top: .3rem;
  }
}

.navigation__btn {
  font-size: .145rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s all ease 0s;
}

.navigation__btn:hover {
  color: #0a8ffb;
}

@media screen and (max-width: 1280px) {
  .navigation__btn {
    font-size: 1.15vw;
  }
}

@media screen and (max-width: 769px) {
  .navigation__btn {
    font-size: .18rem;
  }
}

.navigatoin__catch {
  margin-bottom: .03rem;
  font-size: .13rem;
  font-weight: bold;
}

@media screen and (max-width: 1238px) {
  .navigatoin__catch {
    font-size: 1vw;
  }
}

@media screen and (max-width: 769px) {
  .navigatoin__catch {
    font-size: .12rem;
  }
}

.navigatoin__number {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  color: #0a8ffb;
  font-size: .22rem;
  letter-spacing: 0;
}

@media all and (-ms-high-contrast: none) {
  .navigatoin__number {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 1250px) {
  .navigatoin__number {
    font-size: 1.65vw;
  }
}

@media screen and (max-width: 769px) {
  .navigatoin__number {
    font-size: 5.5vw;
  }
}

.one-year__heading {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media all and (-ms-high-contrast: none) {
  .one-year__heading {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

.one-year__heading .one-year__heading-inner {
  font-size: .32rem;
  line-height: 1.5;
  text-align: center;
}

.one-year__heading .one-year__heading-inner em {
  color: #FFF;
  font-size: 2.18em;
  font-weight: 300;
}

@media all and (-ms-high-contrast: none) {
  .one-year__heading .one-year__heading-inner em {
    transform: translate(0, 0.3em);
  }
}

.one-year__heading::before {
  content: url(../images/img_1year_heading_left.png);
  display: block;
  padding-right: .2rem;
}

@media screen and (max-width: 769px) {
  .one-year__heading::before {
    position: absolute;
    bottom: 5.36em;
    left: 0;
    transform-origin: left bottom;
    transform: scale(0.48);
  }
}

.one-year__heading::after {
  content: url(../images/img_1year_heading_right.png);
  display: block;
  padding-left: .2rem;
}

@media screen and (max-width: 769px) {
  .one-year__heading::after {
    position: absolute;
    bottom: 5.36em;
    right: 0;
    transform-origin: right bottom;
    transform: scale(0.48);
  }
}

.one-year__lead {
  margin-top: .2rem;
  text-align: center;
}

.one-year__img {
  position: relative;
  margin-top: .3rem;
  text-align: center;
}

.one-year__img figcaption {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: .3em .5em;
  font-size: .2rem;
  background: #FFF;
  border-radius: 8px;
}

.one-year__img img {
  position: relative;
  z-index: 1;
  margin-top: -.15rem;
}

.one-year__catch {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  color: #FFF;
  font-size: .3rem;
  text-align: center;
  line-height: 1.3;
}

@media all and (-ms-high-contrast: none) {
  .one-year__catch {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

.outline {
  padding: 1.1rem 12px;
  text-align: center;
  background: url(../images/bg_hex.png) no-repeat center center;
}

@media screen and (max-width: 769px) {
  .outline {
    background-size: cover;
  }
}

.outline__content:not(:first-of-type) {
  margin-top: .6rem;
}

.outline__heading {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  color: #0a8ffb;
  font-size: .44rem;
}

@media all and (-ms-high-contrast: none) {
  .outline__heading {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  .outline__heading {
    transform: translate(0, 0.2em);
  }
}

.outline__txt {
  margin-top: .2rem;
  font-size: .17rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}

.outline__txt em {
  color: #fc5490;
  font-size: 1.2em;
}

.outline__img {
  margin-top: .3rem;
}

.overview {
  display: flex;
  margin-top: .6rem;
}

@media screen and (max-width: 769px) {
  .overview {
    display: block;
  }
}

.overview__heading {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  flex-basis: 21%;
  color: #0a8ffb;
  font-size: .28rem;
}

@media all and (-ms-high-contrast: none) {
  .overview__heading {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  .overview__heading {
    transform: translate(0, 0.5em);
  }
}

@media screen and (max-width: 769px) {
  .overview__heading {
    margin-bottom: .1rem;
  }
}

.overview__content {
  flex: 1;
}

/*
.page-header {
  position: relative;
  z-index: 1;
  padding: 280px 0 0 0;
  background: url(../images/bg_hex-pattern.png);
  
  @include mq(1500px) {
    padding: 20% 0 0 0;
  }
  
  @include mq(1100px) {
    padding: 24% 0 0 0;
  }
  
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4.6vw;
    background: url(../images/mask_bottom@2x.png) no-repeat center 2px;
    background-size: 100vw auto;
  }
}

.page-header__title {
  @include webfont(300);
  position: absolute;
  z-index: 1;
  top: 60%;
  width: 100%;
  padding: 0 12px;
  text-align: center;
  font-size: .7rem;
  color: $color-main;
  line-height: 1;
  
  @include mq(1500px) {
    
  }
}
*/
.page-header {
  position: relative;
  z-index: 1;
  padding: 280px 0 0 0;
  background: url(../images/bg_hex-pattern.png);
}

@media screen and (max-width: 1200px) {
  .page-header {
    padding: 22vw 0 0 0;
  }
}

@media screen and (max-width: 800px) {
  .page-header {
    padding: 26vw 0 0 0;
  }
}

.page-header__title {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  padding: 0 12px .2rem 12px;
  text-align: center;
  font-size: .7rem;
  color: #0a8ffb;
  line-height: 1;
  letter-spacing: 0;
  background: url(../images/mask_bottom@2x.png) no-repeat top 0.5em center/100vw auto;
}

@media all and (-ms-high-contrast: none) {
  .page-header__title {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 1200px) {
  .page-header__title {
    padding: 0 12px;
    background: url(../images/mask_bottom@2x.png) no-repeat bottom center/100vw auto;
  }
}

@media screen and (max-width: 800px) {
  .page-header__title {
    font-size: 8vw;
  }
}

.point {
  border: #0377e8 0.14rem solid;
  border-top: 0;
  border-radius: 20px;
}

.point__title {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  padding: 1em 0 2em 0;
  color: #FFF;
  font-size: .36rem;
  text-align: center;
  background: #0377e8 url(../images/bg_point01.png) no-repeat center bottom;
  border-radius: 8px 8px 0 0;
  vertical-align: middle;
}

@media all and (-ms-high-contrast: none) {
  .point__title {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  .point__title {
    padding: 1.5em 0 1.8em 0;
  }
}

@media screen and (max-width: 769px) {
  .point__title {
    background-size: 150%;
  }
}

.point__title em {
  font-size: 1.7em;
  vertical-align: sub;
}

@media all and (-ms-high-contrast: none) {
  .point__title em {
    transform: translate(0, 0.2em);
    vertical-align: baseline;
  }
}

.point__column.-single {
  background: url(../images/bg_point02.png) no-repeat center top;
}

@media screen and (max-width: 769px) {
  .point__column.-single {
    background-size: 150%;
  }
}

.point__column.-separate {
  display: flex;
  border-top: #0377e8 0.14rem solid;
}

@media screen and (max-width: 769px) {
  .point__column.-separate {
    display: block;
  }
}

.point__item {
  flex: 1;
}

.point__item:not(:first-of-type) {
  border-left: #0377e8 0.14rem solid;
}

@media screen and (max-width: 769px) {
  .point__item:not(:first-of-type) {
    border-top: #0377e8 0.14rem solid;
    border-left: 0;
  }
}

.point__content {
  padding: 0 .46rem .46rem .46rem;
  text-align: center;
}

.point__column.-single .point__content {
  padding-bottom: .6rem;
}

@media screen and (max-width: 769px) {
  .point__content {
    padding: 0 .36rem .6rem .36rem;
  }
}

.point__number {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: .9rem;
  height: .9rem;
  margin-top: -.5rem;
  padding-left: .07em;
  font-size: .38rem;
  vertical-align: top;
  background: #FFF;
  border: #91d7fc 9px solid;
  border-radius: 50%;
}

@media all and (-ms-high-contrast: none) {
  .point__number {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  .point__number {
    padding-top: .85em;
  }
}

.point__heading {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: .56rem;
  margin-top: .2rem;
  color: #0a8ffb;
  font-size: .25rem;
  line-height: 1.3;
}

@media all and (-ms-high-contrast: none) {
  .point__heading {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  .point__heading {
    transform: translate(0, 0.5em);
  }
}

.point__column.-single .point__heading {
  font-size: .38rem;
}

@media screen and (max-width: 769px) {
  .point__heading {
    font-size: .33rem;
  }
}

.point__txt {
  margin-top: .2rem;
  line-height: 1.9;
}

.price-sample {
  display: inline-block;
  background: #ededed;
  border-radius: 10px;
  overflow: hidden;
}

.price-sample__content {
  padding: .2rem;
}

.price-sample__number {
  margin-top: .1rem;
  color: #fc5490;
  font-size: .28rem;
  font-weight: bold;
}

.price-sample__notice {
  margin-top: .1rem;
  text-align: left;
}

.price {
  padding: .4rem .2rem;
  text-align: center;
  background: linear-gradient(to right, #0a8ffb, #0aaefa);
  border-radius: 10px;
}

.price__heading {
  color: #FFF;
  font-size: .24rem;
  font-weight: bold;
}

.price__detail {
  margin-top: .1rem;
  color: #fff003;
  font-size: .24rem;
}

.price__detail em {
  font-size: 1.3em;
  font-weight: bold;
}

.price__time {
  color: #0a8ffb;
  font-size: .32rem;
  font-weight: bold;
  line-height: 1.2;
}

.price__catch {
  font-size: .32rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 769px) {
  .price__catch {
    font-size: 5.5vw;
  }
}

.price__catch small {
  font-size: .7em;
}

.price__catch em {
  color: #0a8ffb;
  font-size: 1.3em;
}

.seminar {
  max-width: 1100px;
  margin: .8rem auto 0 auto;
  padding: 0 0 .8rem 0;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

@media screen and (max-width: 769px) {
  .seminar {
    padding: 0 0 .4rem 0;
  }
}

.siaa__title {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  font-size: .32rem;
  line-height: 1.5;
  text-align: center;
}

@media all and (-ms-high-contrast: none) {
  .siaa__title {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

.siaa__title em {
  color: #FFF;
  font-size: 2.18em;
  font-weight: 300;
}

@media all and (-ms-high-contrast: none) {
  .siaa__title em {
    transform: translate(0, 0.5em);
  }
}

.simulator {
  text-align: center;
}

.simulator__lead {
  font-size: .18rem;
  text-align: center;
}

.simulator__input {
  margin-top: .2rem;
  font-size: .4rem;
}

.simulator__input input {
  width: 6em;
  margin-right: .1rem;
  padding: .1rem;
  font-weight: bold;
  border: 1px solid #333;
  border-radius: 8px;
}

.simulator__result {
  margin-top: .2rem;
  font-size: .28rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 769px) {
  .simulator__result {
    line-height: 1.6;
  }
}

.simulator__price {
  padding: 0 .1rem;
  color: #0a8ffb;
  font-size: 1.5em;
  font-weight: bold;
  border-bottom: 2px solid #0a8ffb;
}

.simulator__notice {
  margin-top: .2rem;
  text-align: center;
}

.sticker {
  position: relative;
  z-index: 10;
  margin-top: -1.4rem;
  text-align: center;
}

.sticker__img {
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}

.sticker__catch {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  margin-top: .2rem;
  color: #0a8ffb;
  font-size: .3rem;
  line-height: 1.5;
}

@media all and (-ms-high-contrast: none) {
  .sticker__catch {
    font-family: sans-serif;
    letter-spacing: 0;
  }
}

.table-primary {
  width: 100%;
  border-bottom: 1px solid #b7b7b7;
}

.table-primary th {
  padding: 0.16rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: left;
  white-space: nowrap;
  border-top: 1px solid #b7b7b7;
  vertical-align: top;
}

.table-primary td {
  padding: 0.16rem;
  line-height: 1.7;
  border-top: 1px solid #b7b7b7;
  vertical-align: top;
}

.table-primary td a {
  color: #0a8ffb;
}

.table-row {
  display: block;
  margin-top: .2rem;
  text-align: left;
  border-right: 2px solid #FFF;
}

@media screen and (max-width: 769px) {
  .table-row {
    border-bottom: 2px solid #FFF;
    border-right: 0;
  }
}

.table-row.-narrow {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 769px) {
  .table-row.-narrow {
    max-width: 100%;
  }
}

@media screen and (max-width: 769px) {

  .table-row tr,
  .table-row tbody {
    display: block;
    width: 100%;
  }
}

.table-row th,
.table-row td {
  padding: .2rem;
  line-height: 1.4;
  border-left: 2px solid #FFF;
}

@media screen and (max-width: 769px) {

  .table-row th,
  .table-row td {
    display: block;
    border-top: 2px solid #FFF;
    border-left: 0;
  }
}

.table-row th {
  font-weight: bold;
  line-height: 1.4;
  white-space: nowrap;
}

@media all and (-ms-high-contrast: none) {
  .table-row td {
    width: 100%;
  }
}

@media screen and (max-width: 769px) {
  .table-comparison__wrapper {
    width: 100%;
    overflow-x: scroll;
  }
}

.table-comparison {
  width: 100%;
}

@media screen and (max-width: 769px) {
  .table-comparison {
    width: 700px;
  }
}

.table-comparison th {
  padding: .07rem .12rem;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
}

.table-comparison thead th {
  width: auto;
  font-size: .14rem;
  font-weight: bold;
  text-align: center;
}

.table-comparison td {
  width: 7%;
  padding: .15rem;
  font-size: .22rem;
  vertical-align: middle;
  text-align: center;
}

.table-comparison tr {
  border-bottom: 2px solid #FFF;
}

td.table-comparison__empty {
  width: 0.5em;
  padding: 0;
  font-size: .14rem;
}

td.table-comparison__feature {
  width: 25%;
  font-size: .13rem;
  line-height: 1.4;
  text-align: left;
}

tr.table-comparison__emphasis {
  background: rgba(6, 56, 95, 0.3);
}

tr.table-comparison__emphasis th {
  font-weight: bold;
}

td.table-comparison__rowspan {
  width: 20px;
  font-size: .16rem;
  padding: 0 .3em;
  color: #000;
  background: #FFF;
}

.table-diff {
  padding: 0 .2rem;
  border: 6px solid #0a8ffb;
  background: #FFF;
}

@media screen and (max-width: 769px) {
  .table-diff {
    padding: 0 .1rem;
  }
}

.table-diff__inner {
  width: 100%;
}

.table-diff__inner tr:not(:first-of-type) {
  border-top: 2px solid #0a8ffb;
}

.table-diff__inner th {
  padding: .2rem;
  color: #0a8ffb;
  text-align: left;
}

@media screen and (max-width: 769px) {
  .table-diff__inner th {
    padding: .2rem .1rem;
  }
}

.table-diff__inner td {
  padding: .2rem;
}

@media screen and (max-width: 769px) {
  .table-diff__inner td {
    padding: .2rem .1rem;
  }
}

.table-diff__company th {
  font-size: .25rem;
  color: #555555;
  text-align: center;
}

.table-diff__kino {
  color: #FFF;
  font-weight: bold;
  background: #48b0f9;
}

th.table-diff__kino {
  color: #fff003;
}

td.table-diff__kino {
  font-size: .22rem;
}

td.table-diff__kino em {
  font-size: 1.55em;
}

td.table-diff__kino span {
  font-size: .6em;
}

.top__btn {
  margin-top: .2rem;
}

.virus {
  padding: 1rem 12px 0 12px;
  background: url(../images/bg_virus02.png) no-repeat;
  background-position: top .8rem center;
}

@media screen and (max-width: 769px) {
  .virus {
    background-size: 100%;
    background-position: center 1.7rem;
  }
}

.virus__heading {
  color: #fc5490;
  font-size: .35rem;
  font-weight: bold;
  text-align: center;
}

.virus__txt {
  margin-top: .2rem;
  font-size: .18rem;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 769px) {
  .virus__txt {
    font-size: .16rem;
  }
}

.virus__contact {
  margin-top: .3rem;
  text-align: center;
}

/************************************

Display switch

************************************/
.pc-block {
  display: block;
}

.pc-inline {
  display: inline;
}

.sp-block {
  display: none;
}

.sp-inline {
  display: none;
}

@media screen and (max-width: 769px) {
  .pc-block {
    display: none;
  }

  .sp-block {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .pc-inline {
    display: none;
  }

  .sp-inline {
    display: inline;
  }
}