@charset "UTF-8";
/* reset:start */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Sawarabi Gothic", sans-serif;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-weight: 400;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

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

[hidden] {
  display: none;
}

.js-modal__target, .cont__center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.js-modal__target > *, .cont__center > * {
  min-height: 0%;
}

.footer__container, .qa__container, .check__container, .trick__container, .life__img, .point__container, .lead__content, .mv__area, .cont__container {
  box-sizing: content-box !important;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .footer__container, .qa__container, .check__container, .trick__container, .life__img, .point__container, .lead__content, .mv__area, .cont__container {
    max-width: 84vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.footer__link, .float__btn-link, .campaign__btn, .qa__answer-link-01, .qa__answer-link-02, .trick__acd-link, .life__slide, .life__slide-name, .life__modal-name, .point__detail, .point__btn, .lead__detail, .lead__btn, .js-modal__close, .js-accordion__trigger, .link {
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
.footer__link:hover, .float__btn-link:hover, .campaign__btn:hover, .qa__answer-link-01:hover, .qa__answer-link-02:hover, .trick__acd-link:hover, .life__slide:hover, .life__slide-name:hover, .life__modal-name:hover, .point__detail:hover, .point__btn:hover, .lead__detail:hover, .lead__btn:hover, .js-modal__close:hover, .js-accordion__trigger:hover, .link:hover {
  opacity: 0.7;
}

@keyframes titleAnim {
  0% {
    opacity: 0;
    transform: translate(-10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* common:start */
[v-cloak] {
  display: none;
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none !important;
  }
}

.cont__container {
  position: relative;
  z-index: 1;
}
/* common:end */
.js-accordion__trigger {
  position: relative;
}
.js-accordion__target {
  overflow: hidden;
}
.js-accordion__target-enter-active, .js-accordion__target-leave-active {
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}
.js-accordion__target-enter, .js-accordion__target-leave-to {
  opacity: 0;
}
.js-accordion__icon {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 767px) {
  .js-accordion__icon {
    right: 5.3333333333vw;
    width: 4vw;
    height: 4vw;
  }
}
.js-accordion__icon::before, .js-accordion__icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  border-top: 1px solid #595757;
  transform: translateY(-50%);
  transition: transform 0.3s;
  content: "";
}
@media screen and (max-width: 767px) {
  .js-accordion__icon::before, .js-accordion__icon::after {
    border-width: 0.2666666667vw;
    border-radius: 2.6666666667vw;
  }
}
.js-accordion--close .js-accordion__icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.lead .js-accordion__icon::before, .lead .js-accordion__icon::after {
  border-color: #0092B9;
}

.point .js-accordion__icon::before, .point .js-accordion__icon::after {
  border-color: #0092B9;
}

.qa .js-accordion__icon {
  right: 40px;
}
@media screen and (max-width: 767px) {
  .qa .js-accordion__icon {
    right: 2.6666666667vw;
  }
}

/* -----------------------------------------------------------------------------
	モーダル
----------------------------------------------------------------------------- */
.js-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.js-modal__bg-enter-active {
  transition: opacity 0.5s;
}
.js-modal__bg-leave-active {
  transition: opacity 0.5s;
}
.js-modal__bg-enter, .js-modal__bg-leave-to {
  opacity: 0;
}
.js-modal__target {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.js-modal__target-enter-active {
  transition: opacity 0.3s;
}
.js-modal__target-leave-active {
  transition: opacity 0.3s;
}
.js-modal__target-enter, .js-modal__target-leave-to {
  opacity: 0;
}
.js-modal__contents {
  position: relative;
  background-color: #FFFFFF;
  width: 95%;
  max-width: 840px;
  max-height: 95dvh;
}
@media screen and (max-width: 767px) {
  .js-modal__contents {
    width: 84vw;
    height: 156.6666666667vw;
    max-width: 630px;
  }
}
.js-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 15px;
  height: 15px;
  margin-left: auto;
  content: "";
  color: transparent;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .js-modal__close {
    top: 2.6666666667vw;
    right: 2.6666666667vw;
    width: 3.0666666667vw;
    height: 3.0666666667vw;
  }
}
.js-modal__close::before, .js-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #595757;
  content: "";
}
@media screen and (max-width: 767px) {
  .js-modal__close::before, .js-modal__close::after {
    width: 4vw;
    height: 0.2666666667vw;
  }
}
.js-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.js-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.js-modal__content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  pointer-events: all;
}

.life .js-modal__contents {
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  .life .js-modal__contents {
    max-width: 630px;
  }
}

/* js-fade:start */
:root {
  --fade-translate-x: 0px;
  --fade-translate-y: 0px;
  --fade-duration: 500ms;
}

/* 表示方向 */
.up {
  --fade-translate-y: 50px;
}

.down {
  --fade-translate-y: -50px;
}

.fromLeft {
  --fade-translate-x: -100%;
}

.fromRight {
  --fade-translate-x: 100%;
}

.jsScroll {
  opacity: 0;
  transition-duration: 750ms;
  transition-property: opacity, transform;
  transition-delay: 500ms;
  transform: translate(var(--fade-translate-x), var(--fade-translate-y));
}
.jsScroll.up {
  transform: translate(0, 50px);
}
.jsScroll.down {
  transform: translate(0, -50px);
}
.jsScroll.fromLeft {
  transform: translate(-100%, 0);
}
.jsScroll.fromRight {
  transform: translate(100%, 0);
}
.jsScroll.speed--100 {
  transition-duration: 100ms;
}
.jsScroll.speed--200 {
  transition-duration: 200ms;
}
.jsScroll.speed--300 {
  transition-duration: 300ms;
}
.jsScroll.speed--400 {
  transition-duration: 400ms;
}
.jsScroll.speed--500 {
  transition-duration: 500ms;
}
.jsScroll.speed--600 {
  transition-duration: 600ms;
}
.jsScroll.speed--700 {
  transition-duration: 700ms;
}
.jsScroll.speed--800 {
  transition-duration: 800ms;
}
.jsScroll.speed--900 {
  transition-duration: 900ms;
}
.jsScroll.speed--1000 {
  transition-duration: 1000ms;
}
.jsScroll.speed--1100 {
  transition-duration: 1100ms;
}
.jsScroll.speed--1200 {
  transition-duration: 1200ms;
}
.jsScroll.speed--1300 {
  transition-duration: 1300ms;
}
.jsScroll.speed--1400 {
  transition-duration: 1400ms;
}
.jsScroll.speed--1500 {
  transition-duration: 1500ms;
}
.jsScroll.speed--1600 {
  transition-duration: 1600ms;
}
.jsScroll.speed--1700 {
  transition-duration: 1700ms;
}
.jsScroll.speed--1800 {
  transition-duration: 1800ms;
}
.jsScroll.speed--1900 {
  transition-duration: 1900ms;
}
.jsScroll.speed--2000 {
  transition-duration: 2000ms;
}
.jsScroll.speed--2100 {
  transition-duration: 2100ms;
}
.jsScroll.speed--2200 {
  transition-duration: 2200ms;
}
.jsScroll.speed--2300 {
  transition-duration: 2300ms;
}
.jsScroll.speed--2400 {
  transition-duration: 2400ms;
}
.jsScroll.speed--2500 {
  transition-duration: 2500ms;
}
.jsScroll.speed--2600 {
  transition-duration: 2600ms;
}
.jsScroll.speed--2700 {
  transition-duration: 2700ms;
}
.jsScroll.speed--2800 {
  transition-duration: 2800ms;
}
.jsScroll.speed--2900 {
  transition-duration: 2900ms;
}
.jsScroll.speed--3000 {
  transition-duration: 3000ms;
}
.jsScroll.delay--100 {
  transition-delay: 100ms;
}
.jsScroll.delay--200 {
  transition-delay: 200ms;
}
.jsScroll.delay--300 {
  transition-delay: 300ms;
}
.jsScroll.delay--400 {
  transition-delay: 400ms;
}
.jsScroll.delay--500 {
  transition-delay: 500ms;
}
.jsScroll.delay--600 {
  transition-delay: 600ms;
}
.jsScroll.delay--700 {
  transition-delay: 700ms;
}
.jsScroll.delay--800 {
  transition-delay: 800ms;
}
.jsScroll.delay--900 {
  transition-delay: 900ms;
}
.jsScroll.delay--1000 {
  transition-delay: 1000ms;
}
.jsScroll.delay--1100 {
  transition-delay: 1100ms;
}
.jsScroll.delay--1200 {
  transition-delay: 1200ms;
}
.jsScroll.delay--1300 {
  transition-delay: 1300ms;
}
.jsScroll.delay--1400 {
  transition-delay: 1400ms;
}
.jsScroll.delay--1500 {
  transition-delay: 1500ms;
}
.jsScroll.delay--1600 {
  transition-delay: 1600ms;
}
.jsScroll.delay--1700 {
  transition-delay: 1700ms;
}
.jsScroll.delay--1800 {
  transition-delay: 1800ms;
}
.jsScroll.delay--1900 {
  transition-delay: 1900ms;
}
.jsScroll.delay--2000 {
  transition-delay: 2000ms;
}
.jsScroll.delay--2100 {
  transition-delay: 2100ms;
}
.jsScroll.delay--2200 {
  transition-delay: 2200ms;
}
.jsScroll.delay--2300 {
  transition-delay: 2300ms;
}
.jsScroll.delay--2400 {
  transition-delay: 2400ms;
}
.jsScroll.delay--2500 {
  transition-delay: 2500ms;
}
.jsScroll.delay--2600 {
  transition-delay: 2600ms;
}
.jsScroll.delay--2700 {
  transition-delay: 2700ms;
}
.jsScroll.delay--2800 {
  transition-delay: 2800ms;
}
.jsScroll.delay--2900 {
  transition-delay: 2900ms;
}
.jsScroll.delay--3000 {
  transition-delay: 3000ms;
}

.jsScrollIn {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.jsFvHide {
  opacity: 0;
  transition-duration: 1.5s;
  transition-property: opacity, transform;
  transition-delay: 0s;
}
.jsFvHide.jsFvShow {
  opacity: 1;
}

.fade-enter-active {
  transition: opacity 0.5s;
}
.fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}

/* js-fade:end */
/* mv:start */
.mv__bg {
  padding-top: 20px;
  background-image: url(../img/pc/mv_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  .mv__bg {
    padding-top: 5.3333333333vw;
    background-image: url(../img/sp/mv_bg-01.jpg);
    animation: image_anime 15s ease infinite;
  }
}
@keyframes image_anime {
  0% {
    background-image: url(../img/sp/mv_bg-01.jpg);
  }
  25% {
    background-image: url(../img/sp/mv_bg-01.jpg);
  }
  50% {
    background-image: url(../img/sp/mv_bg-02.jpg);
  }
  75% {
    background-image: url(../img/sp/mv_bg-02.jpg);
  }
  100% {
    background-image: url(../img/sp/mv_bg-01.jpg);
  }
}
@media screen and (max-width: 767px) {
  .mv__area {
    max-width: 100%;
  }
}
.mv__ttl {
  width: 179px;
}
@media screen and (max-width: 767px) {
  .mv__ttl {
    width: 33.3333333333vw;
    margin-left: 8vw;
  }
}
.mv__box {
  position: relative;
}
.mv__scroll {
  width: 22px;
  height: 170px;
  position: absolute;
  bottom: 20px;
  left: calc(50% + 20px);
  transform: translateX(-50%);
  animation: tobtmAnimPc 3s infinite;
}
@media screen and (max-width: 1120px) {
  .mv__scroll {
    width: 1.9642857143vw;
    height: 15.1785714286vw;
    left: calc(50% + 1.7857142857vw);
  }
}
@media screen and (max-width: 767px) {
  .mv__scroll {
    width: 3.4666666667vw;
    height: 29.8666666667vw;
    bottom: 2.6666666667vw;
    left: calc(50% + 4.6666666667vw);
    animation: tobtmAnimSp 3s infinite;
  }
}
@keyframes tobtmAnimPc {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes tobtmAnimSp {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 2.6666666667vw);
  }
  100% {
    opacity: 0;
  }
}
.mv__scroll-txt {
  width: 39px;
  height: 168px;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 25px);
  transform: translateX(-50%);
}
@media screen and (max-width: 1120px) {
  .mv__scroll-txt {
    width: 3.4821428571vw;
    height: 15vw;
    left: calc(50% - 2.2321428571vw);
  }
}
@media screen and (max-width: 767px) {
  .mv__scroll-txt {
    width: 6.8vw;
    height: 29.4666666667vw;
    bottom: 2.6666666667vw;
    left: calc(50% - 2.4vw);
  }
}

/* mv:end */
/* content:start */
.content {
  position: relative;
  padding-top: 100px;
  background-color: #ACADB1;
}
@media screen and (max-width: 767px) {
  .content {
    padding-top: 0;
  }
}

/* content:end */
.lead__box-arrow-right, .lead__box-arrow-left {
  color: #595757;
  top: 150px;
}
@media screen and (max-width: 1120px) {
  .lead__box-arrow-right, .lead__box-arrow-left {
    top: 13.3928571429vw;
  }
}
@media screen and (max-width: 767px) {
  .lead__box-arrow-right, .lead__box-arrow-left {
    top: 20.6666666667vw;
    width: 2vw;
    height: 4vw;
  }
}
.lead__box-arrow-right::after, .lead__box-arrow-left::after {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .lead__box-arrow-right::after, .lead__box-arrow-left::after {
    font-size: 4vw;
  }
}

/* lead:start */
.lead {
  background-color: #ACADB1;
}
.lead__content {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .lead__content {
    margin-top: 0;
    padding-top: 16vw;
    padding-bottom: 13.3333333333vw;
  }
}
.lead__acd {
  width: 100%;
  margin-bottom: 152px;
  border-radius: 4px;
  text-align: center;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .lead__acd {
    margin-bottom: 15.3333333333vw;
    border-radius: 0.8vw;
  }
}
.lead__acd-content {
  padding-top: 16px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .lead__acd-content {
    padding-top: 0.6666666667vw;
    padding-bottom: 8vw;
  }
}
.lead__detail {
  display: inline-block;
}
.lead__detail-txt {
  padding: 20px 0;
  font-size: 1.6rem;
  color: #0092B9;
}
@media screen and (max-width: 767px) {
  .lead__detail-txt {
    padding: 5.3333333333vw 0 4.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.lead__detail-txt-large {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .lead__detail-txt-large {
    font-size: 5.3333333333vw;
  }
}
.lead__box {
  position: relative;
  max-width: 960px;
  margin: 0 40px 0 80px;
}
@media screen and (max-width: 1120px) {
  .lead__box {
    margin: 0 3.5714285714vw 0 7.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  .lead__box {
    margin: 0 4.4642857143vw;
  }
}
.lead__box-arrow-left {
  left: -40px;
}
@media screen and (max-width: 1120px) {
  .lead__box-arrow-left {
    left: -3.5714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .lead__box-arrow-left {
    left: 0.6666666667vw;
  }
}
.lead__box-arrow-right {
  right: 0;
}
@media screen and (max-width: 767px) {
  .lead__box-arrow-right {
    right: 0.6666666667vw;
  }
}
.lead__box-icons {
  display: flex;
  align-items: center;
  bottom: -30px;
  left: 48%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .lead__box-icons {
    bottom: -4.2666666667vw;
    left: 50%;
  }
}
.lead__box-icons .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #D9D9D9;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .lead__box-icons .swiper-pagination-bullet {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
}
.lead__box-icons .swiper-pagination-bullet:not(:first-child) {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .lead__box-icons .swiper-pagination-bullet:not(:first-child) {
    margin-left: 1.3333333333vw;
  }
}
.lead__box-icons .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #595757;
}
@media screen and (max-width: 767px) {
  .lead__box-icons .swiper-pagination-bullet-active {
    width: 1.6vw;
    height: 1.6vw;
  }
}
.lead__bnr {
  width: 440px;
}
@media screen and (max-width: 1120px) {
  .lead__bnr {
    width: 39.2857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .lead__bnr {
    width: 61.3333333333vw;
    margin: 0 auto;
  }
}
.lead__btn {
  display: inline-block;
  text-align: center;
  width: 420px;
  margin: 70px auto 0;
  border-radius: 50px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
  background-color: #0092B9;
}
@media screen and (max-width: 767px) {
  .lead__btn {
    width: 73.3333333333vw;
    margin: 12vw auto 0;
    border-radius: 6.6666666667vw;
    box-shadow: 0px 1.3333333333vw 2.6666666667vw 0px rgba(0, 0, 0, 0.08);
  }
}
.lead__btn-txt {
  position: relative;
  padding: 17px 0;
  font-size: 1.8rem;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .lead__btn-txt {
    padding: 4vw 0 3.3333333333vw;
    font-size: 3.2vw;
  }
}
.lead__btn-txt::before {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background-image: url(../img/pc/lead_icon_arrow.png);
  background-size: cover;
  content: "";
}
@media screen and (max-width: 767px) {
  .lead__btn-txt::before {
    right: 5.3333333333vw;
    width: 1.7333333333vw;
    height: 3.0666666667vw;
    background-image: url(../img/sp/lead_icon_arrow.png);
  }
}
.lead__txt {
  position: relative;
  z-index: 2;
  font-size: 2.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .lead__txt {
    font-size: 4.2666666667vw;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}
.lead__img {
  position: relative;
  z-index: 1;
  width: 620px;
  height: 420px;
  margin: -225px 0 0 auto;
}
@media screen and (max-width: 1120px) {
  .lead__img {
    width: 55.3571428571vw;
    height: 37.5vw;
  }
}
@media screen and (max-width: 767px) {
  .lead__img {
    width: 73.3333333333vw;
    height: 46.6666666667vw;
    margin: -8vw -8vw 0 auto;
  }
}

/* lead:end */
.point__content-03, .point__content-02, .point__content-01 {
  display: flex;
  justify-content: space-between;
  height: 650px;
}
@media screen and (max-width: 1120px) {
  .point__content-03, .point__content-02, .point__content-01 {
    height: 58.0357142857vw;
  }
}
@media screen and (max-width: 767px) {
  .point__content-03, .point__content-02, .point__content-01 {
    flex-direction: column;
    height: auto;
  }
}

.point__right-02, .point__right-01, .point__left-02, .point__left-01 {
  width: 520px;
}
@media screen and (max-width: 1120px) {
  .point__right-02, .point__right-01, .point__left-02, .point__left-01 {
    width: 46.4285714286vw;
  }
}
@media screen and (max-width: 767px) {
  .point__right-02, .point__right-01, .point__left-02, .point__left-01 {
    width: 100%;
  }
}

.point__bg-left, .point__bg-right {
  width: 480px;
  height: 650px;
}
@media screen and (max-width: 1120px) {
  .point__bg-left, .point__bg-right {
    width: 42.8571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .point__bg-left, .point__bg-right {
    width: 78.6666666667vw;
    height: 106.6666666667vw;
  }
}

.point__box-arrow-right, .point__box-arrow-left {
  color: #595757;
  top: 150px;
}
@media screen and (max-width: 1120px) {
  .point__box-arrow-right, .point__box-arrow-left {
    top: 13.3928571429vw;
  }
}
@media screen and (max-width: 767px) {
  .point__box-arrow-right, .point__box-arrow-left {
    top: 20.6666666667vw;
    width: 2vw;
    height: 4vw;
  }
}
.point__box-arrow-right::after, .point__box-arrow-left::after {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .point__box-arrow-right::after, .point__box-arrow-left::after {
    font-size: 4vw;
  }
}

/* point:start */
.point {
  background-color: #FFFFFF;
}
.point__container {
  padding-top: 65px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .point__container {
    padding-top: 10vw;
    padding-bottom: 16vw;
  }
}
.point__ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .point__ttl {
    margin-bottom: 10vw;
  }
}
.point__ttl-txt--1 {
  width: 5.2777777778%;
}
@media screen and (max-width: 767px) {
  .point__ttl-txt--1 {
    width: 11.5873015873%;
  }
}
.point__ttl-txt--2 {
  width: 5.8333333333%;
}
@media screen and (max-width: 767px) {
  .point__ttl-txt--2 {
    width: 12.8571428571%;
  }
}
.point__ttl-txt--3 {
  width: 2.5%;
}
@media screen and (max-width: 767px) {
  .point__ttl-txt--3 {
    width: 5.7142857143%;
  }
}
.point__ttl-txt--4 {
  width: 5.7407407407%;
}
@media screen and (max-width: 767px) {
  .point__ttl-txt--4 {
    width: 12.5396825397%;
  }
}
.point__ttl-txt--5 {
  width: 3.1481481481%;
}
@media screen and (max-width: 767px) {
  .point__ttl-txt--5 {
    width: 7.1428571429%;
  }
}
.point__ttl.jsScrollIn .point__ttl-txt--1 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 200ms 1 forwards;
}
.point__ttl.jsScrollIn .point__ttl-txt--2 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 400ms 1 forwards;
}
.point__ttl.jsScrollIn .point__ttl-txt--3 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 600ms 1 forwards;
}
.point__ttl.jsScrollIn .point__ttl-txt--4 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 800ms 1 forwards;
}
.point__ttl.jsScrollIn .point__ttl-txt--5 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1000ms 1 forwards;
}
.point__index {
  padding: 23px 0 20px;
  border-top: 1px solid #595757;
  border-bottom: 1px solid #595757;
}
@media screen and (max-width: 767px) {
  .point__index {
    padding: 6.6666666667vw 0 5.3333333333vw;
    border-top: 0.2666666667vw solid #595757;
    border-bottom: 0.2666666667vw solid #595757;
  }
}
.point__index-txt:not(:first-child) {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .point__index-txt:not(:first-child) {
    margin-top: 3.3333333333vw;
  }
}
.point__content-01 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .point__content-01 {
    margin-top: 0;
    margin-bottom: 24vw;
  }
}
.point__content-02 {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .point__content-02 {
    margin-top: 0;
    margin-bottom: 10.6666666667vw;
  }
}
.point__content-03 {
  margin-top: 160px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .point__content-03 {
    margin-top: 0;
    margin-bottom: 24vw;
  }
}
.point__left-02 {
  padding-right: 40px;
}
@media screen and (max-width: 1120px) {
  .point__left-02 {
    padding-right: 3.5714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .point__left-02 {
    order: 2;
    margin-top: 14.6666666667vw;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .point__right-02 {
    order: 1;
  }
}
.point__subttl {
  position: relative;
  z-index: 1;
  margin-left: 20px;
  margin-bottom: 33px;
  padding-top: 70px;
}
@media screen and (max-width: 1120px) {
  .point__subttl {
    margin-left: 1.7857142857vw;
    margin-bottom: 2.9464285714vw;
    padding-top: 6.25vw;
  }
}
@media screen and (max-width: 767px) {
  .point__subttl {
    margin-left: 5.3333333333vw;
    margin-bottom: 9.3333333333vw;
    padding-top: 13.8666666667vw;
  }
}
.point__subttl-num {
  position: absolute;
  top: 0;
  width: 130px;
}
@media screen and (max-width: 1120px) {
  .point__subttl-num {
    width: 11.6071428571vw;
  }
}
@media screen and (max-width: 767px) {
  .point__subttl-num {
    width: 25.2vw;
  }
}
.point__subttl-area-01 {
  position: relative;
  margin-top: 102px;
}
@media screen and (max-width: 1120px) {
  .point__subttl-area-01 {
    margin-top: 9.1071428571vw;
  }
}
@media screen and (max-width: 767px) {
  .point__subttl-area-01 {
    margin-top: 13.3333333333vw;
  }
}
.point__subttl-area-02 {
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 1120px) {
  .point__subttl-area-02 {
    margin-top: 5.3571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .point__subttl-area-02 {
    margin-top: 0;
  }
}
.point__subttl-img-01 {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .point__subttl-img-01 {
    width: 17.7333333333vw;
  }
}
.point__subttl-img-02 {
  width: 207px;
}
@media screen and (max-width: 767px) {
  .point__subttl-img-02 {
    width: 36.8vw;
  }
}
.point__subttl-img-03 {
  width: 78px;
}
@media screen and (max-width: 767px) {
  .point__subttl-img-03 {
    width: 13.8666666667vw;
  }
}
.point__subttl-txt {
  font-size: 3rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1120px) {
  .point__subttl-txt {
    font-size: 2.6785714286vw;
  }
}
@media screen and (max-width: 767px) {
  .point__subttl-txt {
    font-size: 5.6vw;
  }
}
.point__txt {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 1120px) {
  .point__txt {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .point__txt {
    white-space: nowrap;
    font-size: 3.7333333333vw;
    line-height: 2;
  }
}
.point__txt:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 1120px) {
  .point__txt:not(:first-of-type) {
    margin-top: 3.5714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .point__txt:not(:first-of-type) {
    margin-top: 7.3333333333vw;
  }
}
.point__txt-blue {
  color: #0092B9;
}
.point__bg-right {
  margin-top: -100px;
  margin-left: 40px;
}
@media screen and (max-width: 1120px) {
  .point__bg-right {
    margin-left: 3.5714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .point__bg-right {
    margin-top: -24vw;
    margin-left: 13.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .point__bg-left {
    margin-left: -8vw;
  }
}
.point__band {
  position: relative;
  z-index: 1;
  width: 370px;
  margin-top: 40px;
  padding: 15px 0;
  font-size: 2rem;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 50%, rgb(255, 255, 255) 100%);
}
@media screen and (max-width: 1120px) {
  .point__band {
    width: 33.0357142857vw;
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .point__band {
    width: 100%;
    margin-top: 22.6666666667vw;
    padding: 4.8vw 0;
    font-size: 4.2666666667vw;
    letter-spacing: 0.04em;
  }
}
.point__acd {
  width: 100%;
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid #0092B9;
  border-radius: 1px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .point__acd {
    border: 0.2666666667vw solid #0092B9;
    border-radius: 0.8vw;
    box-shadow: 0px 1.3333333333vw 2.6666666667vw 0px rgba(0, 0, 0, 0.05);
  }
}
.point__acd-content {
  padding-top: 16px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .point__acd-content {
    padding-top: 0.6666666667vw;
    padding-bottom: 8vw;
  }
}
.point__detail {
  display: inline-block;
}
.point__detail-txt {
  padding: 18px 0;
  font-size: 1.6rem;
  color: #0092B9;
}
@media screen and (max-width: 767px) {
  .point__detail-txt {
    padding: 5.3333333333vw 0 4.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.point__detail-txt-large {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .point__detail-txt-large {
    font-size: 5.3333333333vw;
  }
}
.point__box {
  position: relative;
  max-width: 960px;
  margin: 0 40px 0 80px;
}
@media screen and (max-width: 1120px) {
  .point__box {
    margin: 0 3.5714285714vw 0 7.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  .point__box {
    margin: 0 4.4642857143vw;
  }
}
.point__box-arrow-left {
  left: -40px;
}
@media screen and (max-width: 1120px) {
  .point__box-arrow-left {
    left: -3.5714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .point__box-arrow-left {
    left: 0.6666666667vw;
  }
}
.point__box-arrow-right {
  right: 0;
}
@media screen and (max-width: 767px) {
  .point__box-arrow-right {
    right: 0.6666666667vw;
  }
}
.point__box-icons {
  display: flex;
  align-items: center;
  bottom: -30px;
  left: 48%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point__box-icons {
    bottom: -4.2666666667vw;
    left: 50%;
  }
}
.point__box-icons .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #D9D9D9;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .point__box-icons .swiper-pagination-bullet {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
}
.point__box-icons .swiper-pagination-bullet:not(:first-child) {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .point__box-icons .swiper-pagination-bullet:not(:first-child) {
    margin-left: 1.3333333333vw;
  }
}
.point__box-icons .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #595757;
}
@media screen and (max-width: 767px) {
  .point__box-icons .swiper-pagination-bullet-active {
    width: 1.6vw;
    height: 1.6vw;
  }
}
.point__bnr {
  width: 440px;
}
@media screen and (max-width: 1120px) {
  .point__bnr {
    width: 39.2857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .point__bnr {
    width: 61.3333333333vw;
    margin: 0 auto;
  }
}
.point__btn {
  display: inline-block;
  text-align: center;
  width: 420px;
  margin: 70px auto 0;
  border-radius: 50px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
  background-color: #0092B9;
}
@media screen and (max-width: 767px) {
  .point__btn {
    width: 73.3333333333vw;
    margin: 12vw auto 0;
    border-radius: 6.6666666667vw;
    box-shadow: 0px 1.3333333333vw 2.6666666667vw 0px rgba(0, 0, 0, 0.08);
  }
}
.point__btn-txt {
  position: relative;
  padding: 17px 0;
  font-size: 1.8rem;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .point__btn-txt {
    padding: 4vw 0 3.3333333333vw;
    font-size: 3.2vw;
  }
}
.point__btn-txt::before {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background-image: url(../img/pc/point_icon_arrow.png);
  background-size: cover;
  content: "";
}
@media screen and (max-width: 767px) {
  .point__btn-txt::before {
    right: 5.3333333333vw;
    width: 1.7333333333vw;
    height: 3.0666666667vw;
    background-image: url(../img/sp/point_icon_arrow.png);
  }
}

/* point:end */
/* life:start */
.life__container {
  padding-top: 90px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .life__container {
    padding-top: 14.6666666667vw;
    padding-bottom: 13.3333333333vw;
  }
}
.life__ttl {
  display: flex;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto 90px;
}
@media screen and (max-width: 767px) {
  .life__ttl {
    max-width: 84vw;
    margin: 0 auto 14.6666666667vw;
  }
}
.life__ttl-txt--1 {
  width: 3.2407407407%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--1 {
    width: 6.5079365079%;
  }
}
.life__ttl-txt--2 {
  width: 2.6851851852%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--2 {
    width: 5.5555555556%;
  }
}
.life__ttl-txt--3 {
  width: 1.2037037037%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--3 {
    width: 2.5396825397%;
  }
}
.life__ttl-txt--4 {
  width: 2.037037037%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--4 {
    width: 4.126984127%;
  }
}
.life__ttl-txt--5 {
  width: 1.9444444444%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--5 {
    width: 4.126984127%;
  }
}
.life__ttl-txt--6 {
  width: 2.962962963%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--6 {
    width: 6.0317460317%;
  }
}
.life__ttl-txt--7 {
  width: 4.6296296296%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--7 {
    width: 9.5238095238%;
  }
}
.life__ttl-txt--8 {
  width: 4.6296296296%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--8 {
    width: 9.5238095238%;
  }
}
.life__ttl-txt--9 {
  width: 4.3518518519%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--9 {
    width: 8.8888888889%;
  }
}
.life__ttl-txt--10 {
  width: 4.4444444444%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--10 {
    width: 9.2063492063%;
  }
}
.life__ttl-txt--11 {
  width: 4.4444444444%;
}
@media screen and (max-width: 767px) {
  .life__ttl-txt--11 {
    width: 9.0476190476%;
  }
}
.life__ttl.jsScrollIn .life__ttl-txt--1 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 200ms 1 forwards;
}
.life__ttl.jsScrollIn .life__ttl-txt--2 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 300ms 1 forwards;
}
.life__ttl.jsScrollIn .life__ttl-txt--3 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 400ms 1 forwards;
}
.life__ttl.jsScrollIn .life__ttl-txt--4 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 500ms 1 forwards;
}
.life__ttl.jsScrollIn .life__ttl-txt--5 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 600ms 1 forwards;
}
.life__ttl.jsScrollIn .life__ttl-txt--6 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 700ms 1 forwards;
}
.life__ttl.jsScrollIn .life__ttl-txt--7 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 800ms 1 forwards;
}
.life__ttl.jsScrollIn .life__ttl-txt--8 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 900ms 1 forwards;
}
.life__ttl.jsScrollIn .life__ttl-txt--9 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1000ms 1 forwards;
}
.life__ttl.jsScrollIn .life__ttl-txt--10 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1100ms 1 forwards;
}
.life__ttl.jsScrollIn .life__ttl-txt--11 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1200ms 1 forwards;
}
.life__slide {
  width: 340px;
  height: 475px;
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .life__slide {
    width: 64vw;
    height: auto;
    margin: 0 4vw;
  }
}
.life__slide-img {
  width: 340px;
}
@media screen and (max-width: 767px) {
  .life__slide-img {
    width: 64vw;
    margin: 0 auto;
  }
}
.life__slide-name {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .life__slide-name {
    margin-top: 4vw;
    font-size: 3.2vw;
  }
}
.life__slide-txt {
  position: relative;
  overflow: hidden;
  height: 80px;
  margin-top: 17px;
  font-size: 1.8rem;
  line-height: 1.3888888889;
}
@media screen and (max-width: 767px) {
  .life__slide-txt {
    height: 13.3333333333vw;
    margin-top: 4vw;
    font-size: 3.2vw;
    line-height: 1.4166666667;
  }
}
.life__slide-txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(172, 173, 177, 0) 0%, rgb(172, 173, 177) 100%);
}
@media screen and (max-width: 767px) {
  .life__slide-txt::before {
    height: 18.6666666667vw;
  }
}
.life__img {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .life__img {
    max-width: 100%;
    margin-top: 21.3333333333vw;
  }
}
.life__modal-contents {
  padding: 40px 40px 45px;
}
@media screen and (max-width: 767px) {
  .life__modal-contents {
    padding: 8vw;
  }
}
.life__modal-box {
  display: flex;
}
@media screen and (max-width: 767px) {
  .life__modal-box {
    flex-direction: column;
  }
}
.life__modal-slide {
  position: relative;
  width: 480px;
}
@media screen and (max-width: 1120px) {
  .life__modal-slide {
    width: 42.8571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .life__modal-slide {
    width: 100%;
    margin-bottom: 7.3333333333vw;
  }
}
.life__modal-arrow {
  color: #595757;
}
@media screen and (max-width: 1120px) {
  .life__modal-arrow {
    top: 18.75vw;
  }
}
@media screen and (max-width: 767px) {
  .life__modal-arrow {
    display: none;
  }
}
.life__modal-icons {
  display: flex;
  align-items: center;
  top: 440px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1120px) {
  .life__modal-icons {
    top: 39.2857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .life__modal-icons {
    top: auto;
    bottom: -4.2666666667vw;
  }
}
.life__modal-icons .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
@media screen and (max-width: 767px) {
  .life__modal-icons .swiper-pagination-bullet {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
}
.life__modal-icons .swiper-pagination-bullet:not(:first-child) {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .life__modal-icons .swiper-pagination-bullet:not(:first-child) {
    margin-left: 1.3333333333vw;
  }
}
.life__modal-icons .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #595757;
}
@media screen and (max-width: 767px) {
  .life__modal-icons .swiper-pagination-bullet-active {
    width: 1.6vw;
    height: 1.6vw;
  }
}
.life__modal-img {
  width: 420px;
  margin: 0 auto;
}
@media screen and (max-width: 1120px) {
  .life__modal-img {
    width: 37.5vw;
  }
}
@media screen and (max-width: 767px) {
  .life__modal-img {
    width: 100%;
  }
}
.life__modal-video {
  max-width: 420px;
  width: 100%;
  max-height: 420px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1120px) {
  .life__modal-video {
    width: 37.5vw;
    height: 37.5vw;
  }
}
@media screen and (max-width: 767px) {
  .life__modal-video {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 68vw;
  }
}
.life__modal-txtarea {
  width: 480px;
  margin-left: 40px;
}
@media screen and (max-width: 1120px) {
  .life__modal-txtarea {
    width: 42.8571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .life__modal-txtarea {
    width: 100%;
    margin-left: 0;
  }
}
.life__modal-name {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .life__modal-name {
    margin-bottom: 4vw;
    font-size: 3.2vw;
  }
}
.life__modal-txt {
  font-size: 1.8rem;
  line-height: 1.3888888889;
}
@media screen and (max-width: 767px) {
  .life__modal-txt {
    font-size: 3.2vw;
    line-height: 1.4166666667;
  }
}

/* life:end */
.jsScrollIn.trick__subttl-02 .trick__subttl-bg::before, .jsScrollIn.trick__subttl-01 .trick__subttl-bg::before {
  animation: subttlAnim 700ms ease-in-out 200ms forwards;
}

.trick__txt, .trick__detail {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .trick__txt, .trick__detail {
    font-size: 3.7333333333vw;
    line-height: 2;
  }
}
.trick__txt:not(:first-of-type), .trick__detail:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .trick__txt:not(:first-of-type), .trick__detail:not(:first-of-type) {
    margin-top: 8vw;
  }
}

.trick__table-subject-blue, .trick__table-subject {
  width: 130px;
  padding-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 1120px) {
  .trick__table-subject-blue, .trick__table-subject {
    font-size: 1.6071428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__table-subject-blue, .trick__table-subject {
    width: 30.9333333333vw;
    padding: 0.6666666667vw 0 1.3333333333vw;
    font-size: 4.2666666667vw;
    letter-spacing: 0.04em;
  }
}

.trick__table-detail-blue, .trick__table-detail {
  position: relative;
  width: 130px;
  padding: 9px 0;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 1120px) {
  .trick__table-detail-blue, .trick__table-detail {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__table-detail-blue, .trick__table-detail {
    width: 30.9333333333vw;
    padding: 0;
    font-size: 3.2vw;
  }
}
.trick__table-detail-blue:not(:last-child)::after, .trick__table-detail:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background-color: #595757;
  content: "";
}
@media screen and (max-width: 767px) {
  .trick__table-detail-blue:not(:last-child)::after, .trick__table-detail:not(:last-child)::after {
    right: -0.6666666667vw;
    width: 0.5333333333vw;
    height: 5.3333333333vw;
  }
}

/* trick:start */
.trick {
  background-color: #FFFFFF;
}
.trick__container {
  padding-top: 90px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .trick__container {
    padding-top: 14.6666666667vw;
    padding-bottom: 13.3333333333vw;
  }
}
.trick__ttl {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .trick__ttl {
    margin-bottom: 14.6666666667vw;
  }
}
.trick__ttl-sub {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .trick__ttl-sub {
    margin-bottom: 3.3333333333vw;
  }
}
.trick__ttl-main {
  width: 100%;
  display: flex;
  justify-content: center;
}
.trick__ttl-txt--1-1 {
  width: 2.7777777778%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-1 {
    width: 5.2380952381%;
  }
}
.trick__ttl-txt--1-2 {
  width: 2.6851851852%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-2 {
    width: 4.7619047619%;
  }
}
.trick__ttl-txt--1-3 {
  width: 2.8703703704%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-3 {
    width: 5.2380952381%;
  }
}
.trick__ttl-txt--1-4 {
  width: 2.6851851852%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-4 {
    width: 4.9206349206%;
  }
}
.trick__ttl-txt--1-5 {
  width: 2.5925925926%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-5 {
    width: 4.7619047619%;
  }
}
.trick__ttl-txt--1-6 {
  width: 2.962962963%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-6 {
    width: 5.3968253968%;
  }
}
.trick__ttl-txt--1-7 {
  width: 2.6851851852%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-7 {
    width: 4.9206349206%;
  }
}
.trick__ttl-txt--1-8 {
  width: 2.8703703704%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-8 {
    width: 5.2380952381%;
  }
}
.trick__ttl-txt--1-9 {
  width: 2.7777777778%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-9 {
    width: 5.0793650794%;
  }
}
.trick__ttl-txt--1-10 {
  width: 2.7777777778%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-10 {
    width: 5.0793650794%;
  }
}
.trick__ttl-txt--1-11 {
  width: 2.8703703704%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-11 {
    width: 5.2380952381%;
  }
}
.trick__ttl-txt--1-12 {
  width: 2.8703703704%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-12 {
    width: 5.2380952381%;
  }
}
.trick__ttl-txt--1-13 {
  width: 2.3148148148%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-13 {
    width: 4.2857142857%;
  }
}
.trick__ttl-txt--1-14 {
  width: 2.962962963%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-14 {
    width: 5.3968253968%;
  }
}
.trick__ttl-txt--1-15 {
  width: 2.7777777778%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-15 {
    width: 5.0793650794%;
  }
}
.trick__ttl-txt--1-16 {
  width: 3.0555555556%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-16 {
    width: 5.7142857143%;
  }
}
.trick__ttl-txt--1-17 {
  width: 2.5925925926%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-17 {
    width: 4.6031746032%;
  }
}
.trick__ttl-txt--1-18 {
  width: 2.7777777778%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-18 {
    width: 5.0793650794%;
  }
}
.trick__ttl-txt--1-19 {
  width: 3.0555555556%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-19 {
    width: 5.5555555556%;
  }
}
.trick__ttl-txt--1-20 {
  width: 1.7592592593%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--1-20 {
    width: 3.1746031746%;
  }
}
.trick__ttl-txt--2-1 {
  width: 4.9074074074%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--2-1 {
    width: 10.1587301587%;
  }
}
.trick__ttl-txt--2-2 {
  width: 4.537037037%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--2-2 {
    width: 9.3650793651%;
  }
}
.trick__ttl-txt--2-3 {
  width: 4.9074074074%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--2-3 {
    width: 10%;
  }
}
.trick__ttl-txt--2-4 {
  width: 4.8148148148%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--2-4 {
    width: 10%;
  }
}
.trick__ttl-txt--2-5 {
  width: 4.4444444444%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--2-5 {
    width: 9.0476190476%;
  }
}
.trick__ttl-txt--2-6 {
  width: 3.6111111111%;
}
@media screen and (max-width: 767px) {
  .trick__ttl-txt--2-6 {
    width: 7.4603174603%;
  }
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-1 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 200ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-2 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 300ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-3 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 400ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-4 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 500ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-5 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 600ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-6 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 700ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-7 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 800ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-8 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 900ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-9 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1000ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-10 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1100ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-11 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1200ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-12 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1300ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-13 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1400ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-14 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1500ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-15 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1600ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-16 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1700ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-17 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1800ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-18 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1900ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-19 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 2000ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--1-20 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 2100ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--2-1 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 700ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--2-2 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 900ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--2-3 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1050ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--2-4 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1200ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--2-5 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1400ms 1 forwards;
}
.trick__ttl.jsScrollIn .trick__ttl-txt--2-6 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1550ms 1 forwards;
}
.trick__subttl-bg {
  width: 400px;
  margin: 0 auto;
  display: block;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trick__subttl-bg {
    width: 100%;
  }
}
.trick__subttl-bg::before {
  background-color: #ACADB1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.trick__subttl-01 {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .trick__subttl-01 {
    margin-bottom: 8vw;
  }
}
.trick__subttl-02 {
  margin-top: 160px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .trick__subttl-02 {
    margin-top: 24vw;
    margin-bottom: 8vw;
  }
}
.trick__subttl-txt {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 5px 0;
  font-size: 3.5rem;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .trick__subttl-txt {
    padding: 1.3333333333vw 0 0.8vw;
    font-size: 6.6666666667vw;
  }
}
@keyframes subttlAnim {
  0% {
    opacity: 1;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
.trick__detail-blue {
  color: #0092B9;
}
@media screen and (max-width: 1120px) {
  .trick__txt {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__txt {
    font-size: 3.7333333333vw;
    line-height: 2;
  }
}
.trick__txt-blue {
  color: #0092B9;
}
.trick__txt:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 1120px) {
  .trick__txt:not(:first-of-type) {
    margin-top: 3.5714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__txt:not(:first-of-type) {
    margin-top: 8vw;
  }
}
.trick__txt-comparison {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .trick__txt-comparison {
    margin-top: 16vw;
    font-size: 3.7333333333vw;
  }
}
.trick__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .trick__content {
    flex-direction: column;
    margin-top: 0;
  }
}
.trick__left {
  width: 520px;
}
@media screen and (max-width: 1120px) {
  .trick__left {
    width: 46.4285714286vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__left {
    width: 100%;
  }
}
.trick__right {
  width: 520px;
}
@media screen and (max-width: 1120px) {
  .trick__right {
    width: 46.4285714286vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__right {
    width: 100%;
  }
}
.trick__img-01 {
  height: 640px;
}
@media screen and (max-width: 1120px) {
  .trick__img-01 {
    height: 57.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__img-01 {
    height: 120vw;
    margin-top: 10.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__img-02 {
    margin-top: 11.3333333333vw;
  }
}
.trick__head {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 46px;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .trick__head {
    font-size: 3.7333333333vw;
    margin-top: 16vw;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.trick__acd {
  position: relative;
  text-align: center;
}
.trick__acd-cont {
  margin-top: 60px;
  margin-bottom: 80px;
  border: 1px solid #595757;
}
@media screen and (max-width: 767px) {
  .trick__acd-cont {
    margin-top: 10.6666666667vw;
    margin-bottom: 13.3333333333vw;
    border: 0.2666666667vw solid #595757;
  }
}
.trick__acd-ttl {
  padding: 20px 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .trick__acd-ttl {
    padding: 5.3333333333vw 0;
    font-size: 3.2vw;
  }
}
.trick__acd-area-01 {
  width: 1040px;
  margin: 0 auto;
  padding: 0 20px 35px;
}
@media screen and (max-width: 1120px) {
  .trick__acd-area-01 {
    width: 92.8571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-area-01 {
    width: 73.3333333333vw;
    margin: 0 auto;
    padding: 0 0 8vw 0;
  }
}
.trick__acd-area-02 {
  width: 1040px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
@media screen and (max-width: 1120px) {
  .trick__acd-area-02 {
    width: 92.8571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-area-02 {
    width: 73.3333333333vw;
    margin: 0 auto;
    padding: 0 0 2.6666666667vw;
  }
}
.trick__acd-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .trick__acd-box {
    flex-direction: column;
  }
}
.trick__acd-line {
  border-top: 1px solid #595757;
}
@media screen and (max-width: 767px) {
  .trick__acd-line {
    border-top: none;
  }
}
.trick__acd-head {
  padding-top: 18px;
  font-size: 2.4rem;
  line-height: 1.4166666667;
  border-top: 1px solid #595757;
}
@media screen and (max-width: 1120px) {
  .trick__acd-head {
    font-size: 2.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-head {
    padding-top: 5.3333333333vw;
    font-size: 4.2666666667vw;
    line-height: 1.375;
    border-top: 0.2666666667vw solid #595757;
  }
}
.trick__acd-head-blue {
  color: #0092B9;
}
.trick__acd-head-sup {
  font-size: 60%;
}
.trick__acd-note-01 {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 5px;
  margin-bottom: 17px;
  font-size: 1.2rem;
}
@media screen and (max-width: 1120px) {
  .trick__acd-note-01 {
    font-size: 1.0714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-note-01 {
    margin-top: 2.6666666667vw;
    margin-bottom: 4.6666666667vw;
    font-size: 2.9333333333vw;
    line-height: 1.3636363636;
  }
}
.trick__acd-note-02 {
  display: flex;
  padding-top: 10px;
  border-top: 1px solid #595757;
  font-size: 1.2rem;
}
@media screen and (max-width: 1120px) {
  .trick__acd-note-02 {
    font-size: 1.0714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-note-02 {
    flex-direction: column;
    text-indent: -2em;
    padding-left: 2em;
    padding-top: 5.3333333333vw;
    border-top: 0.2666666667vw solid #595757;
    font-size: 2.9333333333vw;
    line-height: 1.3636363636;
  }
}
.trick__acd-note-list + .trick__acd-note-list {
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .trick__acd-note-list + .trick__acd-note-list {
    margin-left: 0;
  }
}
.trick__acd-note-03 {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.3333333333;
}
@media screen and (max-width: 1120px) {
  .trick__acd-note-03 {
    font-size: 1.0714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-note-03 {
    margin-top: 2vw;
    font-size: 2.9333333333vw;
    line-height: 1.3636363636;
  }
}
.trick__acd-note-04 {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 7px;
  margin-bottom: 26px;
  font-size: 1.2rem;
}
@media screen and (max-width: 1120px) {
  .trick__acd-note-04 {
    font-size: 1.0714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-note-04 {
    margin-top: 0;
    margin-bottom: 5.3333333333vw;
    font-size: 2.9333333333vw;
  }
}
.trick__acd-table-01 {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 19px 0;
  border-top: 1px solid #595757;
}
@media screen and (max-width: 767px) {
  .trick__acd-table-01 {
    align-items: baseline;
    padding: 5.3333333333vw 0;
    border-top: 0.2666666667vw solid #595757;
  }
}
.trick__acd-table-02, .trick__acd-table-02--btm {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 480px;
  padding: 20px 0;
  border-bottom: 1px solid #595757;
}
@media screen and (max-width: 1120px) {
  .trick__acd-table-02, .trick__acd-table-02--btm {
    width: 42.8571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-table-02, .trick__acd-table-02--btm {
    align-items: baseline;
    width: auto;
    padding: 5.3333333333vw 0;
    border-top: 0.2666666667vw solid #595757;
    border-bottom: none;
  }
}
.trick__acd-table-02--btm {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .trick__acd-table-02--btm {
    border-top: 0.2666666667vw solid #595757;
  }
}
.trick__acd-subject-01 {
  width: 145px;
  padding-left: 10px;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 1120px) {
  .trick__acd-subject-01 {
    width: 12.9464285714vw;
    padding-left: 0.8928571429vw;
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-subject-01 {
    white-space: nowrap;
    width: 22vw;
    padding-left: 0;
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
  }
}
.trick__acd-subject-02 {
  width: 130px;
  padding-left: 10px;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 1120px) {
  .trick__acd-subject-02 {
    width: 11.6071428571vw;
    padding-left: 0.8928571429vw;
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-subject-02 {
    white-space: nowrap;
    width: 22vw;
    padding-left: 0;
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
  }
}
.trick__acd-detail-01 {
  width: 855px;
  padding-left: 20px;
  font-size: 1.8rem;
  line-height: 1.3888888889;
  border-left: 2px solid #595757;
}
@media screen and (max-width: 1120px) {
  .trick__acd-detail-01 {
    width: 76.3392857143vw;
    font-size: 1.6071428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-detail-01 {
    width: 46vw;
    padding: 0.6666666667vw 0 0.6666666667vw 5.3333333333vw;
    font-size: 3.2vw;
    line-height: 1.4166666667;
    border-left: 0.5333333333vw solid #595757;
  }
}
.trick__acd-detail-02 {
  width: 350px;
  padding-left: 20px;
  font-size: 1.8rem;
  line-height: 1.3888888889;
  border-left: 2px solid #595757;
}
@media screen and (max-width: 1120px) {
  .trick__acd-detail-02 {
    width: 31.25vw;
    font-size: 1.6071428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-detail-02 {
    width: 46vw;
    padding: 0.6666666667vw 0 0.6666666667vw 5.3333333333vw;
    font-size: 3.2vw;
    line-height: 1.4166666667;
    border-left: 0.5333333333vw solid #595757;
  }
}
.trick__acd-detail-blue {
  color: #0092B9;
}
.trick__acd-details-01 {
  width: 855px;
  padding-left: 20px;
  font-size: 1.8rem;
  line-height: 1.3888888889;
  border-left: 2px solid #595757;
}
@media screen and (max-width: 1120px) {
  .trick__acd-details-01 {
    width: 76.3392857143vw;
    font-size: 1.6071428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-details-01 {
    width: 46vw;
    padding: 1.3333333333vw 0 1.3333333333vw 5.3333333333vw;
    font-size: 3.2vw;
    line-height: 1.4166666667;
    border-left: 0.5333333333vw solid #595757;
  }
}
.trick__acd-details-02 {
  width: 350px;
  padding: 5px 0 5px 20px;
  font-size: 1.8rem;
  line-height: 1.3888888889;
  border-left: 2px solid #595757;
}
@media screen and (max-width: 1120px) {
  .trick__acd-details-02 {
    width: 31.25vw;
    font-size: 1.6071428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-details-02 {
    width: 46vw;
    padding: 1.3333333333vw 0 1.3333333333vw 5.3333333333vw;
    font-size: 3.2vw;
    line-height: 1.4166666667;
    border-left: 0.5333333333vw solid #595757;
  }
}
.trick__acd-details-blue {
  color: #0092B9;
}
.trick__acd-txt {
  margin-top: 38px;
  font-size: 2.4rem;
}
@media screen and (max-width: 1120px) {
  .trick__acd-txt {
    font-size: 2.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-txt {
    margin-top: 10.6666666667vw;
    font-size: 4.2666666667vw;
    line-height: 1.375;
  }
}
.trick__acd-txt-btm {
  margin-top: 18px;
  padding-top: 20px;
  padding-left: 10px;
  font-size: 1.8rem;
  border-top: 1px solid #595757;
}
@media screen and (max-width: 1120px) {
  .trick__acd-txt-btm {
    padding-left: 0.8928571429vw;
    font-size: 1.6071428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__acd-txt-btm {
    margin-top: 5.3333333333vw;
    padding-top: 5.3333333333vw;
    padding-left: 0;
    font-size: 3.7333333333vw;
    border-top: 0.2666666667vw solid #595757;
  }
}
.trick__acd-link {
  color: #0092B9;
  border-bottom: 1px solid #0092B9;
}
@media screen and (max-width: 767px) {
  .trick__acd-link {
    padding-bottom: 0.4vw;
    border-bottom: 0.2666666667vw solid #0092B9;
  }
}
.trick__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 440px;
  margin: 10px auto 0;
}
@media screen and (max-width: 1120px) {
  .trick__box {
    width: 39.2857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__box {
    width: 100%;
    margin-top: 2vw;
  }
}
.trick__box-white {
  width: 210px;
  padding: 5px 0;
  font-size: 1.4rem;
  color: #000000;
  background-color: #F4F4F4;
}
@media screen and (max-width: 1120px) {
  .trick__box-white {
    width: 18.75vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__box-white {
    width: 39.3333333333vw;
    padding: 1.3333333333vw 0;
    font-size: 3.7333333333vw;
  }
}
.trick__box-black {
  width: 210px;
  padding: 5px 0;
  font-size: 1.4rem;
  color: #FFFFFF;
  background-color: #595757;
}
@media screen and (max-width: 1120px) {
  .trick__box-black {
    width: 18.75vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__box-black {
    width: 39.3333333333vw;
    padding: 1.3333333333vw 0;
    font-size: 3.7333333333vw;
  }
}
.trick__icons {
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 340px;
  margin: 20px auto 0;
}
@media screen and (max-width: 1120px) {
  .trick__icons {
    width: 30.3571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__icons {
    width: 100%;
    margin-top: 5.3333333333vw;
  }
}
.trick__icon {
  width: 60px;
}
@media screen and (max-width: 1120px) {
  .trick__icon {
    width: 5.3571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__icon {
    width: 14.6666666667vw;
  }
}
.trick__icon-txt {
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.3333333333;
}
@media screen and (max-width: 1120px) {
  .trick__icon-txt {
    font-size: 1.0714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__icon-txt {
    white-space: nowrap;
    margin-top: 1.3333333333vw;
    font-size: 2.9333333333vw;
    line-height: 1.3636363636;
  }
}
.trick__icon-txt-spacing {
  letter-spacing: -0.13em;
}
@media screen and (max-width: 767px) {
  .trick__icon-txt-spacing {
    letter-spacing: -0.08em;
  }
}
.trick__area {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .trick__area {
    margin-top: 7.3333333333vw;
    margin-right: calc(50% - 50vw);
    padding-bottom: 5.3333333333vw;
    overflow: auto;
  }
  .trick__area::-webkit-scrollbar {
    height: 0.8vw;
    background: #FFFFFF;
  }
  .trick__area::-webkit-scrollbar-thumb {
    background-color: #D3D4D6;
  }
}
.trick__table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .trick__table {
    width: 122.6666666667vw;
    margin-right: 8vw;
  }
}
.trick__table-subject-blue {
  letter-spacing: 0.08em;
  color: #0092B9;
}
@media screen and (max-width: 767px) {
  .trick__table-subject-blue {
    position: sticky;
    z-index: 1;
    left: 0;
    background-color: #fff;
  }
}
.trick__table-content {
  border-bottom: 1px solid #595757;
}
@media screen and (max-width: 767px) {
  .trick__table-content {
    display: block;
    padding: 2vw 0;
    border-bottom: 0.2666666667vw solid #595757;
  }
}
.trick__table-item {
  position: relative;
  width: 130px;
  padding: 11px 0;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 400;
}
@media screen and (max-width: 1120px) {
  .trick__table-item {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__table-item {
    width: 30.9333333333vw;
    height: 9.8666666667vw;
    padding: 0;
    font-size: 3.2vw;
  }
}
.trick__table-item::after {
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  z-index: 2;
  width: 2px;
  height: 20px;
  background-color: #595757;
  content: "";
}
@media screen and (max-width: 767px) {
  .trick__table-item::after {
    right: -0.6666666667vw;
    width: 0.5333333333vw;
    height: 5.3333333333vw;
  }
}
.trick__table-detail-blue {
  color: #0092B9;
}
@media screen and (max-width: 767px) {
  .trick__table-detail-blue {
    position: sticky;
    z-index: 1;
    left: 0;
    background-color: #fff;
  }
}
.trick__table-detail-large {
  font-size: 1.8rem;
}
@media screen and (max-width: 1120px) {
  .trick__table-detail-large {
    font-size: 1.6071428571vw;
  }
}
@media screen and (max-width: 767px) {
  .trick__table-detail-large {
    font-size: 4.2666666667vw;
  }
}

/* trick:end */
/* check:start */
.check__container {
  padding-top: 90px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .check__container {
    padding-top: 14vw;
    padding-bottom: 13.3333333333vw;
  }
}
.check__ttl-sub {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .check__ttl-sub {
    margin-bottom: 4vw;
  }
}
.check__ttl-main {
  width: 100%;
  display: flex;
  justify-content: center;
}
.check__ttl-txt--1-1 {
  width: 2.7777777778%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-1 {
    width: 6.3492063492%;
  }
}
.check__ttl-txt--1-2 {
  width: 2.8703703704%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-2 {
    width: 6.6666666667%;
  }
}
.check__ttl-txt--1-3 {
  width: 2.4074074074%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-3 {
    width: 5.5555555556%;
  }
}
.check__ttl-txt--1-4 {
  width: 1.9444444444%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-4 {
    width: 4.2857142857%;
  }
}
.check__ttl-txt--1-5 {
  width: 1.5740740741%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-5 {
    width: 3.8095238095%;
  }
}
.check__ttl-txt--1-6 {
  width: 0.7407407407%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-6 {
    width: 1.5873015873%;
  }
}
.check__ttl-txt--1-7 {
  width: 1.2037037037%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-7 {
    width: 2.6984126984%;
  }
}
.check__ttl-txt--1-8 {
  width: 1.2037037037%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-8 {
    width: 2.8571428571%;
  }
}
.check__ttl-txt--1-9 {
  width: 1.7592592593%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-9 {
    width: 3.9682539683%;
  }
}
.check__ttl-txt--1-10 {
  width: 2.5925925926%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-10 {
    width: 5.873015873%;
  }
}
.check__ttl-txt--1-11 {
  width: 3.3333333333%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-11 {
    width: 7.619047619%;
  }
}
.check__ttl-txt--1-12 {
  width: 2.3148148148%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-12 {
    width: 5.3968253968%;
  }
}
.check__ttl-txt--1-13 {
  width: 2.8703703704%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-13 {
    width: 6.5079365079%;
  }
}
.check__ttl-txt--1-14 {
  width: 2.6851851852%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-14 {
    width: 6.0317460317%;
  }
}
.check__ttl-txt--1-15 {
  width: 2.8703703704%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-15 {
    width: 6.6666666667%;
  }
}
.check__ttl-txt--1-16 {
  width: 2.3148148148%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--1-16 {
    width: 5.2380952381%;
  }
}
.check__ttl-txt--2-1 {
  width: 4.8148148148%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--2-1 {
    width: 10%;
  }
}
.check__ttl-txt--2-2 {
  width: 4.9074074074%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--2-2 {
    width: 10%;
  }
}
.check__ttl-txt--2-3 {
  width: 4.4444444444%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--2-3 {
    width: 9.2063492063%;
  }
}
.check__ttl-txt--2-4 {
  width: 5%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--2-4 {
    width: 10.3174603175%;
  }
}
.check__ttl-txt--2-5 {
  width: 4.4444444444%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--2-5 {
    width: 9.0476190476%;
  }
}
.check__ttl-txt--2-6 {
  width: 4.6296296296%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--2-6 {
    width: 9.5238095238%;
  }
}
.check__ttl-txt--2-7 {
  width: 3.4259259259%;
}
@media screen and (max-width: 767px) {
  .check__ttl-txt--2-7 {
    width: 7.1428571429%;
  }
}
.check__ttl.jsScrollIn .check__ttl-txt--1-1 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 200ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-2 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 300ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-3 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 400ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-4 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 500ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-5 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 600ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-6 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 700ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-7 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 800ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-8 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 900ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-9 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1000ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-10 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1100ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-11 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1200ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-12 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1300ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-13 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1400ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-14 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1500ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-15 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1600ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--1-16 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1700ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--2-1 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 300ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--2-2 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 450ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--2-3 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 700ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--2-4 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1100ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--2-5 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1250ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--2-6 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1400ms 1 forwards;
}
.check__ttl.jsScrollIn .check__ttl-txt--2-7 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1600ms 1 forwards;
}
.check__movie {
  width: 100%;
  height: 608px;
  margin-top: 90px;
}
@media screen and (max-width: 1120px) {
  .check__movie {
    height: 54.2857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .check__movie {
    height: 47.2vw;
    margin-top: 14vw;
  }
}
.check__img-01 {
  width: 500px;
  margin: 115px 0 0 auto;
}
@media screen and (max-width: 1120px) {
  .check__img-01 {
    width: 44.6428571429vw;
  }
}
@media screen and (max-width: 767px) {
  .check__img-01 {
    width: 53.3333333333vw;
    margin-top: 14.6666666667vw;
    margin-right: -8vw;
  }
}
.check__img-02 {
  width: 500px;
  margin-top: -200px;
}
@media screen and (max-width: 1120px) {
  .check__img-02 {
    width: 44.6428571429vw;
  }
}
@media screen and (max-width: 767px) {
  .check__img-02 {
    width: 69.3333333333vw;
    margin-top: 10.6666666667vw;
    margin-left: -8vw;
  }
}

/* check:end */
.qa__answer-txt-btm, .qa__answer-txt {
  max-width: 930px;
  width: 100%;
  margin-left: 10px;
  font-size: 1.8rem;
  line-height: 1.3888888889;
}
@media screen and (max-width: 767px) {
  .qa__answer-txt-btm, .qa__answer-txt {
    max-width: none;
    width: 76.6666666667vw;
    margin-left: 2.6666666667vw;
    font-size: 3.2vw;
    line-height: 1.4166666667;
  }
}

/* qa:start */
.qa {
  background-color: #FFFFFF;
}
.qa__container {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .qa__container {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}
.qa__ttl {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .qa__ttl {
    margin-bottom: 13.3333333333vw;
  }
}
.qa__ttl-main {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .qa__ttl-main {
    margin-bottom: 4.6666666667vw;
  }
}
.qa__ttl-sub {
  width: 100%;
  display: flex;
  justify-content: center;
}
.qa__ttl-txt--1-1 {
  width: 5.8333333333%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--1-1 {
    width: 13.9682539683%;
  }
}
.qa__ttl-txt--1-2 {
  width: 4.537037037%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--1-2 {
    width: 11.1111111111%;
  }
}
.qa__ttl-txt--1-3 {
  width: 4.1666666667%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--1-3 {
    width: 10.3174603175%;
  }
}
.qa__ttl-txt--2-1 {
  width: 1.5740740741%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--2-1 {
    width: 3.6507936508%;
  }
}
.qa__ttl-txt--2-2 {
  width: 2.962962963%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--2-2 {
    width: 6.6666666667%;
  }
}
.qa__ttl-txt--2-3 {
  width: 2.5%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--2-3 {
    width: 5.7142857143%;
  }
}
.qa__ttl-txt--2-4 {
  width: 2.7777777778%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--2-4 {
    width: 6.3492063492%;
  }
}
.qa__ttl-txt--2-5 {
  width: 2.7777777778%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--2-5 {
    width: 6.5079365079%;
  }
}
.qa__ttl-txt--2-6 {
  width: 2.5925925926%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--2-6 {
    width: 5.7142857143%;
  }
}
.qa__ttl-txt--2-7 {
  width: 2.8703703704%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--2-7 {
    width: 6.5079365079%;
  }
}
.qa__ttl-txt--2-8 {
  width: 2.6851851852%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--2-8 {
    width: 6.3492063492%;
  }
}
.qa__ttl-txt--2-9 {
  width: 1.1111111111%;
}
@media screen and (max-width: 767px) {
  .qa__ttl-txt--2-9 {
    width: 2.380952381%;
  }
}
.qa__ttl.jsScrollIn .qa__ttl-txt--1-1 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 400ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--1-2 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 600ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--1-3 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 800ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-1 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 200ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-2 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 300ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-3 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 400ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-4 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 500ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-5 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 600ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-6 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 700ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-7 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 800ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-8 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 900ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-9 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1000ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-10 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1100ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-11 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1200ms 1 forwards;
}
.qa__ttl.jsScrollIn .qa__ttl-txt--2-12 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1300ms 1 forwards;
}
.qa__acd-cont {
  border-top: 1px solid #595757;
}
@media screen and (max-width: 767px) {
  .qa__acd-cont {
    border-top: 0.2666666667vw solid #595757;
  }
}
.qa__acd-cont:last-child {
  border-bottom: 1px solid #595757;
}
@media screen and (max-width: 767px) {
  .qa__acd-cont:last-child {
    border-bottom: 0.2666666667vw solid #595757;
  }
}
.qa__question {
  display: flex;
  padding: 19px 40px 20px;
}
@media screen and (max-width: 767px) {
  .qa__question {
    padding: 4vw 0 6.6666666667vw;
  }
}
.qa__question-img {
  width: 26px;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .qa__question-img {
    width: 4.5333333333vw;
    margin-top: 1.0666666667vw;
  }
}
.qa__question-txt {
  width: 100%;
  margin-left: 10px;
  padding-right: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .qa__question-txt {
    width: 65.3333333333vw;
    margin-left: 2.6666666667vw;
    padding-right: 0;
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
  }
}
.qa__answer {
  display: flex;
  padding: 15px 40px 20px;
}
@media screen and (max-width: 767px) {
  .qa__answer {
    padding: 2vw 0 5.3333333333vw;
  }
}
.qa__answer-img {
  width: 21px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .qa__answer-img {
    width: 3.7333333333vw;
    margin-top: 1.0666666667vw;
  }
}
.qa__answer-txtarea {
  width: 100%;
}
.qa__answer-txt-btm {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .qa__answer-txt-btm {
    margin-top: 3.3333333333vw;
  }
}
.qa__answer-txt:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .qa__answer-txt:not(:first-of-type) {
    margin-top: 5.3333333333vw;
  }
}
.qa__answer-link-01 {
  display: inline-block;
  margin-top: 25px;
  margin-left: 10px;
  padding-bottom: 5px;
  font-size: 1.8rem;
  color: #0092B9;
  border-bottom: 1px solid #0092B9;
}
@media screen and (max-width: 767px) {
  .qa__answer-link-01 {
    margin-top: 4vw;
    margin-left: 2.6666666667vw;
    padding-bottom: 1.6vw;
    font-size: 3.2vw;
    line-height: 1.4166666667;
    border-bottom: 0.2666666667vw solid #0092B9;
  }
}
.qa__answer-link-02 {
  display: inline-block;
  padding-bottom: 5px;
  font-size: 1.8rem;
  color: #0092B9;
  border-bottom: 1px solid #0092B9;
}
@media screen and (max-width: 767px) {
  .qa__answer-link-02 {
    padding-bottom: 1.0666666667vw;
    font-size: 3.2vw;
    line-height: 1.4166666667;
    border-bottom: 0.2666666667vw solid #0092B9;
  }
}

/* qa:end */
@media screen and (max-width: 767px) {
  .campaign__box-arrow-right, .campaign__box-arrow-left {
    color: #595757;
    top: 24.6666666667vw;
    width: 2vw;
    height: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign__box-arrow-right::after, .campaign__box-arrow-left::after {
    font-size: 4vw;
  }
}

/* campaign:start */
.campaign {
  background-color: #ACADB1;
  padding-top: 90px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .campaign {
    padding-top: 14.6666666667vw;
    padding-bottom: 13.3333333333vw;
  }
}
.campaign__ttl {
  max-width: 1080px;
  margin: 0 auto 90px;
}
@media screen and (max-width: 767px) {
  .campaign__ttl {
    max-width: 84vw;
    margin: 0 auto 14.6666666667vw;
  }
}
.campaign__ttl-sub {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-sub {
    margin-bottom: 3.3333333333vw;
  }
}
.campaign__ttl-main {
  width: 100%;
  display: flex;
  justify-content: center;
}
.campaign__ttl-txt--1-1 {
  width: 2.962962963%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--1-1 {
    width: 6.6666666667%;
  }
}
.campaign__ttl-txt--1-2 {
  width: 3.0555555556%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--1-2 {
    width: 6.9841269841%;
  }
}
.campaign__ttl-txt--1-3 {
  width: 2.5925925926%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--1-3 {
    width: 5.873015873%;
  }
}
.campaign__ttl-txt--1-4 {
  width: 2.5%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--1-4 {
    width: 5.873015873%;
  }
}
.campaign__ttl-txt--1-5 {
  width: 2.962962963%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--1-5 {
    width: 6.6666666667%;
  }
}
.campaign__ttl-txt--1-6 {
  width: 2.4074074074%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--1-6 {
    width: 5.3968253968%;
  }
}
.campaign__ttl-txt--2-1 {
  width: 4.9074074074%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--2-1 {
    width: 10%;
  }
}
.campaign__ttl-txt--2-2 {
  width: 4.6296296296%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--2-2 {
    width: 9.5238095238%;
  }
}
.campaign__ttl-txt--2-3 {
  width: 4.2592592593%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--2-3 {
    width: 8.8888888889%;
  }
}
.campaign__ttl-txt--2-4 {
  width: 4.9074074074%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--2-4 {
    width: 10%;
  }
}
.campaign__ttl-txt--2-5 {
  width: 4.7222222222%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--2-5 {
    width: 9.6825396825%;
  }
}
.campaign__ttl-txt--2-6 {
  width: 4.3518518519%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--2-6 {
    width: 9.0476190476%;
  }
}
.campaign__ttl-txt--2-7 {
  width: 4.4444444444%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--2-7 {
    width: 9.2063492063%;
  }
}
.campaign__ttl-txt--2-8 {
  width: 4.9074074074%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--2-8 {
    width: 10%;
  }
}
.campaign__ttl-txt--2-9 {
  width: 3.8888888889%;
}
@media screen and (max-width: 767px) {
  .campaign__ttl-txt--2-9 {
    width: 7.9365079365%;
  }
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--1-1 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 450ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--1-2 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 550ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--1-3 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 600ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--1-4 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 650ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--1-5 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 700ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--1-6 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 750ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--2-1 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 200ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--2-2 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 300ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--2-3 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 400ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--2-4 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 500ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--2-5 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 600ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--2-6 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 700ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--2-7 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 800ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--2-8 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 900ms 1 forwards;
}
.campaign__ttl.jsScrollIn .campaign__ttl-txt--2-9 {
  opacity: 0;
  animation: titleAnim 500ms ease-in-out 1000ms 1 forwards;
}
.campaign__box {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .campaign__box {
    margin: 0 4.4642857143vw;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .campaign__box-arrow-left {
    left: 3.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign__box-arrow-right {
    right: 3.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign__box-icons {
    display: flex;
    align-items: center;
    bottom: -4.2666666667vw;
    left: 49.5%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .campaign__box-icons .swiper-pagination-bullet {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    background-color: #D9D9D9;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .campaign__box-icons .swiper-pagination-bullet:not(:first-child) {
    margin-left: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign__box-icons .swiper-pagination-bullet-active {
    width: 1.6vw;
    height: 1.6vw;
    background-color: #595757;
  }
}
.campaign__slide {
  width: 340px;
}
@media screen and (max-width: 1120px) {
  .campaign__slide {
    width: 30.3571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign__slide {
    width: 72vw;
    margin: 0;
  }
}
.campaign__bnr {
  width: 340px;
  cursor: pointer;
}
@media screen and (max-width: 1120px) {
  .campaign__bnr {
    width: 30.3571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign__bnr {
    width: 72vw;
    margin: 0 auto;
  }
}
.campaign__btn {
  display: block;
  width: 420px;
  margin: 60px auto 0;
  border-radius: 50px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
  background-color: #0092B9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .campaign__btn {
    width: 84vw;
    margin: 12vw 8vw 0;
    border-radius: 6.6666666667vw;
    box-shadow: 0px 1.3333333333vw 2.6666666667vw 0px rgba(0, 0, 0, 0.08);
  }
}
.campaign__btn-txt {
  position: relative;
  padding: 17px 0;
  font-size: 1.8rem;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .campaign__btn-txt {
    padding: 4.6666666667vw 0 4vw;
    font-size: 3.2vw;
  }
}
.campaign__btn-txt::before {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background-image: url(../img/pc/campaign_icon_arrow.png);
  background-size: cover;
  content: "";
}
@media screen and (max-width: 767px) {
  .campaign__btn-txt::before {
    right: 5.3333333333vw;
    width: 1.7333333333vw;
    height: 3.0666666667vw;
    background-image: url(../img/sp/campaign_icon_arrow.png);
  }
}
@media screen and (min-width: 768px) {
  .campaign .swiper-wrapper {
    justify-content: space-between;
  }
}

/* campaign:end */
/* float:start */
.float {
  position: relative;
  z-index: 11;
}
.float__btn {
  display: inline-block;
  position: fixed;
  /*z-index: 20;*/
  z-index: 40;
  top: 100px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .float__btn {
    display: block;
    top: auto;
    bottom: 0;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.float__btn-link {
  text-align: center;
  display: inline-block;
  width: 290px;
  border-radius: 70px 0 0 70px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
  background-color: #0092B9;
}
@media screen and (max-width: 767px) {
  .float__btn-link {
    top: 100%;
    bottom: 0;
    left: 0;
    width: 84vw;
    margin: 5.3333333333vw 8vw;
    border-radius: 6.6666666667vw;
    box-shadow: 0px 0.8vw 1.3333333333vw 0px rgba(0, 0, 0, 0.2);
  }
}
.float__btn-txt {
  position: relative;
  padding: 2px 5px 10px 0;
  font-size: 2rem;
  line-height: 1;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .float__btn-txt {
    padding: 2vw 0;
    font-size: 4.2666666667vw;
  }
}
.float__btn-txt::before {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background-image: url(../img/pc/content_icon_arrow.png);
  background-size: cover;
  content: "";
}
@media screen and (max-width: 767px) {
  .float__btn-txt::before {
    right: 5.3333333333vw;
    width: 1.7333333333vw;
    height: 3.0666666667vw;
    background-image: url(../img/sp/content_icon_arrow.png);
  }
}
.float__btn-txt-yellow {
  display: inline-block;
  padding-bottom: 8px;
  font-size: 1.6rem;
  color: #FFD126;
}
@media screen and (max-width: 767px) {
  .float__btn-txt-yellow {
    padding-bottom: 0.6666666667vw;
    font-size: 3.4666666667vw;
  }
}

/* float:end */
/* footer:start */
.footer {
  border-top: 1px solid #595757;
  background-color: #ACADB1;
}
@media screen and (max-width: 767px) {
  .footer {
    border-top: 0.2666666667vw solid #595757;
  }
}
.footer__container {
  padding: 40px 0 60px;
}
@media screen and (max-width: 767px) {
  .footer__container {
    padding: 5.3333333333vw 0 12vw;
  }
}
.footer__links {
  display: flex;
  justify-content: space-between;
  width: 372px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__links {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.footer__link {
  font-size: 1.4rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .footer__link {
    font-size: 3.2vw;
  }
}
.footer__logo-skitto {
  width: 156px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .footer__logo-skitto {
    width: 42vw;
    margin-top: 10.1333333333vw;
  }
}
.footer__logo-shizuclear {
  width: 102px;
  margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
  .footer__logo-shizuclear {
    width: 27.0666666667vw;
    margin-top: 2.6666666667vw;
  }
}
.footer__txt {
  width: 18px;
  margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
  .footer__txt {
    width: 4.5333333333vw;
    margin-top: 2.6666666667vw;
  }
}

/* footer:end */

/* モーダル:start */
.modaal-container {
  width: 800px;
  color: #444444 !important;
}
@media (max-width: 900px) {
  .modaal-container {
    width: calc(100vw - 100px);
  }
}

.modaal-content-container {
  padding: 0;
}
.corporation .corporationCont .note-list {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 90%;
  line-height: 2;
}
@media screen and (max-width: 860px) {
  .corporation .corporationCont .note-list {
    font-size: 93%;
  }
}
@media screen and (max-width: 480px) {
  .corporation .corporationCont .note-list {
    font-size: 100%;
  }
}

/**/
/* モーダルCSS */

.modal {
  display: none;
  position: fixed;
  z-index: 30;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}
.modal .modal-box {
  background-color: #fff;
  margin: 10% auto;
  max-width: 800px;
  width: 90%;
  animation-name: modalopen;
  animation-duration: 1s;
  position: relative;
  font-size: 1.5rem;
  color: #444444;
}

.modal .modalClose{
  position: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  color: #fff;
  background: linear-gradient(45deg, rgb(72, 198, 239) 0%, rgb(111, 134, 214) 100%);
  border-radius: 50%;
  cursor: pointer;
}
.modal .modalClose img {
  width: 12px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal .modal-box {
  animation: fadeIn 0.4s ease-out;
}

/*-------
modal banner CSS
---------*/
.banner_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3em;
  margin-bottom: 4em;
}
@media (max-width: 767px) {
  .banner_wrap {
    gap: 2em;
  }
}
@media screen and (max-width: 480px) {
  .banner_wrap {
    /*flex-direction: column;
    align-items: center;*/
    display: none;
  }
}

.shizuClear.bnrCont.firstTtl {
  margin: 7em auto 4em;
}
@media screen and (max-width: 560px) {
  .shizuClear.bnrCont.firstTtl {
    margin: 2em auto;
  }
}

.hide-area {
  display: none;
}

.m-banner img {
  width: 100%;
}

.m_bannerPc img {
  width: 100%;
  display: block;
}

.m_bannerSp {
  display: none;
}

@media screen and (max-width: 660px) {
  .m_bannerPc {
    display: none;
  }
  .m_bannerSp {
    display: block;
    width: 100%;
  }
}
.text {
  text-align: center;
  color: #629ade;
  margin: 2em;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .text {
    font-size: 77%;
  }
}
.text br {
  display: none;
}
@media (max-width: 720px) {
  .text br {
    display: block;
  }
}

.read {
  text-align: center;
  font-size: 150%;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .read {
    font-size: 180%;
  }
}
@media (max-width: 1024px) {
  .read {
    font-size: 160%;
  }
}
@media (max-width: 900px) {
  .read {
    font-size: 158%;
  }
}
@media (max-width: 720px) {
  .read {
    font-size: 140%;
  }
}
@media (max-width: 480px) {
  .read {
    font-size: 128%;
  }
}
.read .spShow {
  display: none;
}
@media (max-width: 650px) {
  .read .spShow {
    display: block;
  }
}

.sub {
  text-align: center;
  margin-top: 2em;
  font-size: 100%;
}

.banner-ttl01 {
  margin: 1em 0 0;
}
@media (max-width: 650px) {
  .banner-ttl01 {
    margin: 2em 0 0;
  }
}

.monthly {
  text-align: center;
  margin: 4rem 0;
}
@media (max-width: 550px) {
  .monthly {
    margin: 2rem 0;
  }
}
.monthly .monthlyFuki {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #fff;
  padding: 0.1em 3em;
  background-color: #629ade;
  font-size: 167%;
  margin-bottom: 1em;
}
@media (max-width: 550px) {
  .monthly .monthlyFuki {
    width: 94%;
    font-size: 150%;
  }
}
.monthly .monthlyFuki::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: #629ade transparent;
  border-width: 13px 25px 0 0;
  bottom: -12px;
  left: 80%;
}
.monthly .amountWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.monthly .amountWrap .circle {
  font-size: 207%;
  font-weight: bold;
  min-width: 100px;
  min-height: 100px;
  border-radius: 50%;
  background: #ffd126;
  text-align: center;
  margin-right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .monthly .amountWrap .circle {
    font-size: 190%;
    min-width: 80px;
    min-height: 80px;
  }
}
@media (max-width: 480px) {
  .monthly .amountWrap .circle {
    font-size: 140%;
    min-width: 60px;
    min-height: 60px;
  }
}
.monthly .amountWrap .amount {
  font-weight: bold;
  line-height: 1.2;
  font-size: 160%;
}
.monthly .amountWrap .amount span {
  font-size: 375%;
  font-weight: 400;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .monthly .amountWrap .amount span {
    font-size: 320%;
  }
}
@media (max-width: 480px) {
  .monthly .amountWrap .amount span {
    font-size: 230%;
  }
}

.banner_inner {
  width: 90%;
  margin: 0 auto;
}

.condition {
  padding: 2em;
  background-color: rgba(98, 154, 222, 0.1);
}
.condition p {
  font-size: 160%;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.condition li {
  margin-bottom: 0.5em;
}
.condition li:last-child {
  margin-bottom: 0;
}

.note {
  padding: 3em 0;
}
.note-list {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 90%;
  line-height: 2;
}
.note-list span {
  font-weight: 600;
}
.note-list .colorR {
  color: #C00000;
}
.corporation .main {
  width: 100%;
  margin: 0 auto;
}
.corporation .corporationCont {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .corporation .corporationCont {
    margin-top: 2rem;
  }
}
.corporation .corporationCont .fukidashiCont {
  text-align: center;
}
.corporation .corporationCont .fukidashiCont .fukidashi {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #FFF;
  padding: 0.1em 3em;
  background-color: #629ADE;
  font-size: 167%;
}
.corporation .corporationCont .fukidashiCont .fukidashi::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: #629ADE transparent;
  border-width: 13px 25px 0 0;
  bottom: -12px;
  left: 80%;
}
@media screen and (max-width: 767px) {
  .corporation .corporationCont .fukidashiCont .fukidashi {
    font-size: 170%;
    letter-spacing: 0;
    padding: 0.1em 3em;
  }
  .corporation .corporationCont .fukidashiCont .fukidashi::before {
    border-width: 10px 15px 0 0;
    bottom: -10px;
  }
}
@media screen and (max-width: 480px) {
  .corporation .corporationCont .fukidashiCont .fukidashi {
    font-size: 140%;
    letter-spacing: 0;
    padding: 0.1em 1em;
    width: 100%;
  }
  .corporation .corporationCont .fukidashiCont .fukidashi::before {
    border-width: 10px 15px 0 0;
    bottom: -10px;
  }
}
.corporation .corporationCont .corporationWrap {
  display: block;
  max-width: 586px;
  margin: 2em auto;
  background: none;
}
.corporation .corporationCont .corporationWrap > .imgCont {
  width: 100%;
  margin-bottom: 2em;
  text-align: center;
}
.corporation .corporationCont .corporationWrap > .textCont {
  width: 100%;
}
.corporation .corporationCont .corporationWrap > .textCont > .ttl {
  font-size: 120%;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}
.corporation .corporationCont .corporationWrap > .textCont > .holder {
  font-size: 290%;
  font-weight: 600;
  margin: 0.2em 0;
  text-align: center;
}
.corporation .corporationCont .corporationWrap > .textCont > .holder span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #FFD126));
  background: -webkit-linear-gradient(transparent 75%, #FFD126 75%);
  background: linear-gradient(transparent 75%, #FFD126 75%);
}
.corporation .corporationCont .corporationWrap > .textCont > .present {
  font-size: 250%;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.corporation .corporationCont .corporationWrap > .textCont .imgPresent {
  display: block;
  margin: 1em auto 0;
  max-width: 194px;
}
@media screen and (max-width: 1200px) {
  .corporation .corporationCont .corporationWrap {
    background-size: 17vw;
  }
}
@media screen and (max-width: 1170px) {
  .corporation .corporationCont .corporationWrap > .textCont > .holder {
    font-size: 170%;
  }
  .corporation .corporationCont .corporationWrap > .textCont > .present {
    font-size: 200%;
    line-height: 1.2;
  }
}
@media screen and (max-width: 960px) {
  .corporation .corporationCont .corporationWrap {
    display: block;
    max-width: 586px;
    margin: 2em auto;
    background: none;
  }
  .corporation .corporationCont .corporationWrap > .imgCont {
    width: 100%;
    margin-bottom: 2em;
    text-align: center;
  }
  .corporation .corporationCont .corporationWrap > .imgCont img {
    width: 100%;
  }
  .corporation .corporationCont .corporationWrap > .textCont {
    width: 100%;
  }
  .corporation .corporationCont .corporationWrap > .textCont > .ttl {
    text-align: center;
  }
  .corporation .corporationCont .corporationWrap > .textCont > .holder {
    text-align: center;
  }
  .corporation .corporationCont .corporationWrap > .textCont > .present {
    text-align: center;
    line-height: 1.2;
  }
  .corporation .corporationCont .corporationWrap > .textCont .imgPresent {
    display: block;
    margin: 1em auto 0;
    max-width: 194px;
  }
}
.corporation .corporationCont .note-list {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 90%;
  line-height: 2;
}
@media screen and (max-width: 860px) {
  .corporation .corporationCont .note-list {
    font-size: 93%;
  }
}
@media screen and (max-width: 480px) {
  .corporation .corporationCont .note-list {
    font-size: 100%;
  }
}
/* モーダル:end */