@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button,
body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif !important;
  font-weight: 500;
  font-size: 16px;
}

html {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
}

body {
  background: #fff !important;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  body {
    font-size: 12px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #000;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
  overflow: hidden;
}
@media only screen and (min-width: 641px) {
  main {
    min-width: 1366px;
  }
}

.outer-block {
  min-width: 1366px;
}
@media only screen and (max-width: 640px) {
  .outer-block {
    min-width: 320px;
  }
}

.inner-block {
  position: relative;
  width: 1000px;
}
@media only screen and (min-width: 641px) {
  .inner-block {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .inner-block {
    width: auto;
    padding: 0 19px;
  }
}

#wrapper {
  position: relative;
}
@media only screen and (max-width: 640px) {
  #wrapper {
    min-width: 320px;
  }
}

@media only screen and (min-width: 641px) {
  .sp {
    display: none !important;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

  a,
a::before,
a::after,
button {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }
}
@media only screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
}
.ib {
  display: inline-block;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/
@media not print {
  .anm {
    opacity: 0;
  }
  .anm.is-animated {
    -webkit-animation: fadeIn 1.5s forwards;
            animation: fadeIn 1.5s forwards;
  }

  .anm-up {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .anm-up.is-animated {
    -webkit-animation: fadeInUp 1.5s forwards;
            animation: fadeInUp 1.5s forwards;
  }

  .anm-left {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  .anm-left.is-animated {
    -webkit-animation: fadeInLeft 1.5s forwards;
            animation: fadeInLeft 1.5s forwards;
  }

  .anm-right {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  .anm-right.is-animated {
    -webkit-animation: fadeInRight 1.5s forwards;
            animation: fadeInRight 1.5s forwards;
  }
}
.anm-list > * {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
          animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*------------------------------------------------------------------------------
  header
------------------------------------------------------------------------------*/
.header {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  z-index: 100;
  top: 0;
  right: 0;
  position: fixed;
}
@media only screen and (max-width: 640px) {
  .header {
    position: fixed;
    width: 100%;
    height: 60px;
    padding: 0;
    font-size: 0;
  }
}
@media only screen and (min-width: 641px) {
  .header .right {
    width: 878px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 640px) {
  .header .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.header .right .nav__list {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
}
@media only screen and (min-width: 641px) {
  .header .right .nav__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 641px) {
  .header .right .nav__list li {
    width: calc(730px / 4);
  }
}
.header .right .nav__list a {
  background: #fff;
  height: 57px;
  line-height: 1.31;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .header .right .nav__list a {
    height: 50px;
    color: #333;
    text-align: center;
    -webkit-box-shadow: 0 -1px 0 0 #e5e5e5 inset;
            box-shadow: 0 -1px 0 0 #e5e5e5 inset;
  }
}
.header .right .nav__list a.current {
  color: #fcd311;
}
@media only screen and (min-width: 641px) {
  .header .right .nav__list a:hover {
    color: #072482;
  }
}
.header .right .cv-area__box {
  cursor: pointer;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #000;
  padding-bottom: 30px;
}
@media only screen and (min-width: 641px) {
  .header .right .cv-area__box {
    height: 88px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 0 0 15px 0 rgba(58, 80, 107, 0.4);
            box-shadow: 0 0 15px 0 rgba(58, 80, 107, 0.4);
    width: 148px;
  }
}
@media only screen and (max-width: 640px) {
  .header .right .cv-area__box {
    width: 160px;
    height: 60px;
    display: block;
    text-align: center;
    padding: 20px 20px 20px 34px;
  }
}
.header .right .cv-area__box .txt {
  font-size: 14px;
}
@media only screen and (min-width: 641px) {
  .header .right .cv-area__box .txt {
    font-weight: bold;
  }
}
@media only screen and (max-width: 640px) {
  .header .right .cv-area__box .txt {
    font-size: 14px;
  }
}
.header .right .cv-area__box::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  margin: auto;
  background: url(../img/ico_cart.svg) no-repeat center/contain;
}
@media only screen and (min-width: 641px) {
  .header .right .cv-area__box::before {
    left: 0;
    right: 0;
    bottom: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .header .right .cv-area__box::before {
    left: 12px;
    top: 0;
    bottom: 0;
    width: 18px;
    height: 16px;
  }
}
@media only screen and (min-width: 641px) {
  .header .right .cv-area__box:hover {
    background: #072482;
  }
}
@media only screen and (max-width: 640px) {
  .header .header-nav {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    overflow: hidden;
    overflow-y: auto;
    z-index: 99;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    /* js */
  }
  .header .header-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .header .header-nav .nav {
    background-color: #fff;
  }
  .header .nav-btn-area {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #cde0f4;
    /* js */
  }
  .header .nav-btn-area .inner {
    display: block;
    position: relative;
    width: 25px;
    height: 16px;
  }
  .header .nav-btn-area span {
    position: absolute;
    right: 0;
    background-color: #000;
    display: block;
    width: 100%;
    height: 2px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }
  .header .nav-btn-area span:nth-child(1) {
    top: 0;
  }
  .header .nav-btn-area span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header .nav-btn-area span:nth-child(3) {
    bottom: 0;
    width: 10px;
  }
  .header .nav-btn-area.is-open span:nth-child(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotateZ(45deg);
            transform: translateY(-50%) rotateZ(45deg);
  }
  .header .nav-btn-area.is-open span:nth-child(2) {
    left: -10px;
    opacity: 0;
  }
  .header .nav-btn-area.is-open span:nth-child(3) {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotateZ(-45deg);
            transform: translateY(50%) rotateZ(-45deg);
    width: 100%;
  }
  .header.is-open {
    background-color: #fff;
  }
}

@media only screen and (min-width: 641px) {
  #header-nav_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header.is-scrolled,
.header.is-nomv {
  background-color: #0a3761;
}

/*------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------*/
#footer {
  padding: 30px 0 40px;
  position: relative;
}
@media only screen and (max-width: 640px) {
  #footer {
    padding: 20px 0 20px;
  }
}
#footer .copyright {
  font-size: 12px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  #footer .copyright {
    font-size: 12px;
  }
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 100;
}
@media only screen and (max-width: 640px) {
  #pagetop {
    bottom: 50px;
    right: 10px;
  }
}
#pagetop a {
  background: url(../img/ico_arrow_top.svg) no-repeat top 14px center/36px auto rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  padding-top: 58px;
  text-align: center;
  width: 100px;
  height: 100px;
}
@media only screen and (max-width: 640px) {
  #pagetop a {
    background-size: 20px auto;
    background-position: top 9px center;
    font-size: 11px;
    padding-top: 33px;
    width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 641px) {
  #pagetop a:hover {
    background-color: black;
  }
}

/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
.c-list {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 640px) {
  .c-list {
    -webkit-box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
  }
}
.c-list li {
  border-bottom: 1px solid #dadada;
}
.c-list li:nth-child(odd) a {
  border-left: 10px solid #072482;
}
.c-list li:nth-child(even) a {
  border-left: 10px solid #5667aa;
}
.c-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 15px 30px;
  background: #fff;
}
@media only screen and (min-width: 641px) {
  .c-list a:hover {
    background: #f2f4ff;
  }
}
@media only screen and (max-width: 640px) {
  .c-list a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10px 50px 10px 10px;
  }
}
.c-list a::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 17px;
  height: 17px;
  background: url(../img/ico_arrow_blue.svg) no-repeat center/contain;
}
@media only screen and (max-width: 640px) {
  .c-list a::before {
    right: 10px;
  }
}
.c-list .thumb {
  width: 106px;
  height: 106px;
  margin-right: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 640px) {
  .c-list .thumb {
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
}
.c-list .info .catch {
  font-size: 18px;
}
@media only screen and (max-width: 640px) {
  .c-list .info .catch {
    font-size: 12px;
    line-height: 1.21;
  }
}
.c-list .info .ttl {
  color: #072482;
  font-size: 28px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .c-list .info .ttl {
    font-size: 20px;
    line-height: 1.2;
  }
}
.c-list .info .name {
  font-size: 14px;
}
@media only screen and (max-width: 640px) {
  .c-list .info .name {
    font-size: 10px;
  }
}

.c-tag-list {
  margin: 10px 0 40px;
}
@media only screen and (min-width: 641px) {
  .c-tag-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 640px) {
  .c-tag-list {
    margin: 10px 0 20px;
    text-align: center;
  }
}
.c-tag-list li {
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 18px;
  padding: 7px 56px;
  color: #fff;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .c-tag-list li {
    border: 1px solid #fff;
    display: inline-block;
    text-align: center;
    padding: 2px 20px;
    font-size: 12px;
    min-width: 130px;
  }
}
.c-tag-list li + li {
  margin-left: 30px;
}
@media only screen and (max-width: 640px) {
  .c-tag-list li + li {
    margin: 6px 0 0;
  }
}
.c-tag-list .bg-yellow {
  background: #ffe200 !important;
}
.c-tag-list.blue li {
  color: #0d277d;
  border: solid 2px #0d277d;
  background: #fff;
}
@media only screen and (max-width: 640px) {
  .c-tag-list.blue li {
    border: solid 1px #0d277d;
  }
}

/*------------------------------------------------------------------------------
  audio
------------------------------------------------------------------------------*/
/* 音声再生バー */
.audiojs {
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .audiojs {
    width: 381px;
  }
}

.audiojs .play-pause {
  width: 38px;
}

.audiojs .scrubber {
  width: 200px;
}

/* 音声 */
.streaming_area .control_wrap {
  margin: 20px auto 0;
}

@media screen and (min-width: 640px) {
  /* PCのみ */
  .streaming_area .control_wrap {
    width: 830px;
  }

  .streaming_area .audio_image .pagebtn {
    top: 50%;
    margin-top: -50px;
  }

  .streaming_area .audio_image .prev {
    left: -120px;
  }

  .streaming_area .audio_image .next {
    right: -120px;
  }

  .streaming_area .audio_image {
    max-width: 830px;
    margin-bottom: 20px;
    margin: 0 auto 15px;
    position: relative;
  }

  .streaming_area audio {
    width: 100%;
    margin-bottom: 15px;
  }
}
.streaming_area .audio_image img {
  max-height: 480px;
}

.streaming_area .control_wrap .speed span {
  background: #f5f5f5;
  color: #222;
  padding: 8px 15px;
  border-radius: 30px;
  display: inline-block;
  cursor: pointer;
}

.streaming_area .control_wrap .speed span.active {
  background: #0080a0;
  color: #fff;
  font-weight: bold;
}

/*------------------------------------------------------------------------------
  mv-block
------------------------------------------------------------------------------*/
.mv-block {
  background: url(../img/mv_bg_01.png) no-repeat center/cover;
  padding: 110px 0 0;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .mv-block {
    padding: 100px 0 0;
  }
}
.mv-block::before {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 0;
  left: 0;
  margin: auto;
}
@media only screen and (min-width: 641px) {
  .mv-block::before {
    background: url(../img/mv_grad_01.png) no-repeat center/contain;
    width: 1477px;
    height: 424px;
    bottom: -30px;
  }
}
@media only screen and (max-width: 640px) {
  .mv-block::before {
    background: url(../img/mv_grad_01_sp.png) no-repeat center/contain;
    width: 160vw;
    height: 53.3333333333vw;
    bottom: 40px;
  }
}
.mv-block .logo {
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 208px;
}
@media only screen and (max-width: 640px) {
  .mv-block .logo {
    left: 10px;
    width: 35.4666666667vw;
  }
}
@media only screen and (min-width: 641px) {
  .mv-block .inner-block {
    width: 1260px;
  }
}
.mv-block .mv-wrap {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .mv-block .mv-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 640px) {
  .mv-block .mv-wrap {
    max-width: 337px;
    margin: 0 auto;
  }
}
.mv-block .mv-situ-list li {
  position: absolute;
}
@media only screen and (max-width: 640px) {
  .mv-block .mv-situ-list li {
    width: 110px;
  }
  .mv-block .mv-situ-list li img {
    width: 100%;
  }
}
.mv-block .mv-situ-list .mv-situ01 {
  left: -20px;
  top: 90px;
  z-index: 1;
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}
@media only screen and (max-width: 640px) {
  .mv-block .mv-situ-list .mv-situ01 {
    left: 80px;
    top: 20px;
  }
}
.mv-block .mv-situ-list .mv-situ02 {
  right: 70px;
  top: 310px;
  z-index: 3;
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}
@media only screen and (max-width: 640px) {
  .mv-block .mv-situ-list .mv-situ02 {
    left: 0;
    top: 110px;
  }
}
.mv-block .mv-situ-list .mv-situ03 {
  left: 10px;
  bottom: 10px;
  z-index: 3;
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
}
@media only screen and (max-width: 640px) {
  .mv-block .mv-situ-list .mv-situ03 {
    left: 100px;
    bottom: 10px;
  }
}
.mv-block .img {
  width: 660px;
  text-align: right;
}
@media only screen and (max-width: 640px) {
  .mv-block .img {
    width: 100%;
  }
}
.mv-block .img {
  position: relative;
}
@media only screen and (max-width: 640px) {
  .mv-block .img {
    height: 300px;
  }
}
.mv-block .img > img {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 640px) {
  .mv-block .img > img {
    height: 370px;
    position: absolute;
    right: -140px;
    bottom: 0;
  }
}
.mv-block .info {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .mv-block .info {
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 640px) {
  .mv-block .info {
    text-align: center;
  }
}
.mv-block .info .underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff503));
  background: linear-gradient(transparent 60%, #fff503 60%);
  display: inline-block;
}
.mv-block .info .approach {
  text-align: center;
  font-size: 28px;
  color: #072482;
  line-height: 1.21;
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .mv-block .info .approach {
    font-size: 17px;
    line-height: 1.29;
    margin-bottom: 10px;
  }
}
.mv-block .info .catch {
  font-size: 34px;
  color: #072482;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .mv-block .info .catch {
    font-size: 21px;
  }
}
.mv-block .info .ttl {
  font-size: 96px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 900;
}
@media only screen and (max-width: 640px) {
  .mv-block .info .ttl {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 61px;
  }
}
@media only screen and (max-width: 374px) {
  .mv-block .info .ttl {
    font-size: 50px;
  }
}
.mv-block .info .ttl .small {
  font-size: 80px;
}
@media only screen and (max-width: 640px) {
  .mv-block .info .ttl .small {
    font-size: 52px;
  }
}
.mv-block .info .ttl .b01 {
  color: #072482;
}
.mv-block .info .ttl .b02 {
  color: #5667aa;
}
.mv-block .info .ttl .b03 {
  color: #3d83dd;
}
.mv-block .info .ttl .b04 {
  color: #7faae2;
}
.mv-block .info .guide {
  line-height: 1.4;
  position: relative;
}
@media only screen and (min-width: 641px) {
  .mv-block .info .guide {
    margin-top: 40px;
    text-align: center;
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .mv-block .info .guide {
    margin-top: 24px;
    font-size: 14px;
    z-index: 1;
    text-align: left;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 374px) {
  .mv-block .info .guide {
    font-size: 12px;
  }
}
.mv-block .info .guide .big {
  font-size: 23px;
}
@media only screen and (max-width: 640px) {
  .mv-block .info .guide .big {
    font-size: 17px;
  }
}
@media only screen and (max-width: 374px) {
  .mv-block .info .guide .big {
    font-size: 14px;
  }
}
.mv-block .info .guide .underline {
  font-weight: bold;
}
.mv-block .scroll {
  display: block;
  width: 29px;
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 640px) {
  .mv-block .scroll {
    margin: 70px auto 0;
  }
}

/*------------------------------------------------------------------------------
  intro-block
------------------------------------------------------------------------------*/
.intro-block {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .intro-block {
    padding: 56px 0 50px;
    background: url(../img/mv_bg_02.png) no-repeat center/cover;
  }
}
@media only screen and (max-width: 640px) {
  .intro-block {
    padding: 54px 0 18px;
    background: url(../img/mv_bg_02_sp.jpg) no-repeat center top/cover;
  }
}
.intro-block::before {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 0;
  left: 0;
  margin: auto;
}
@media only screen and (min-width: 641px) {
  .intro-block::before {
    background: url(../img/mv_grad_02.png) no-repeat center/contain;
    width: 1477px;
    height: 424px;
    bottom: -280px;
  }
}
@media only screen and (max-width: 640px) {
  .intro-block::before {
    background: url(../img/mv_grad_02_sp.png) no-repeat center/contain;
    width: 119.2vw;
    height: 34.1333333333vw;
    bottom: -40px;
  }
}
.intro-block .intro-wrap {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .intro-block .intro-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .intro-block .intro-wrap::after {
    content: "";
    position: absolute;
    pointer-events: none;
    width: 200%;
    height: 10px;
    background-color: #ffe200;
    left: 0;
    bottom: 16px;
  }
}
.intro-block .title {
  color: #fff;
  text-align: center;
  text-shadow: 0 5px 15px rgba(16, 24, 62, 0.8);
  position: relative;
}
@media only screen and (max-width: 640px) {
  .intro-block .title {
    padding: 14px 0 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .intro-block .title::after {
    content: "";
    position: absolute;
    pointer-events: none;
    width: 200%;
    height: 5px;
    background-color: #ffe200;
    left: 90px;
    bottom: 12px;
  }
}
.intro-block .title .sub {
  display: inline-block;
  line-height: 1.34;
}
@media only screen and (min-width: 641px) {
  .intro-block .title .sub {
    font-size: 29px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 640px) {
  .intro-block .title .sub {
    margin-right: 2.6666666667vw;
    font-size: 14px;
  }
}
@media only screen and (max-width: 374px) {
  .intro-block .title .sub {
    font-size: 12px;
  }
}
.intro-block .title .main {
  display: block;
}
@media only screen and (min-width: 641px) {
  .intro-block .title .main {
    font-size: 52px;
  }
}
@media only screen and (max-width: 640px) {
  .intro-block .title .main {
    font-size: 26px;
  }
}
@media only screen and (max-width: 374px) {
  .intro-block .title .main {
    font-size: 16px;
  }
}
.intro-block .title .num {
  vertical-align: text-bottom;
  display: inline-block;
}
@media only screen and (min-width: 641px) {
  .intro-block .title .num {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 640px) {
  .intro-block .title .num {
    margin: 0 2px;
  }
  .intro-block .title .num img {
    height: 40px;
  }
}
.intro-block .people .people-img {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 641px) {
  .intro-block .people .people-img02 {
    margin-top: 3px;
  }
}

/*------------------------------------------------------------------------------
  member-list-block
------------------------------------------------------------------------------*/
.member-list-block {
  padding: 0 0 50px;
  background: #07227e;
}
@media only screen and (max-width: 640px) {
  .member-list-block {
    padding: 0 0 20px;
  }
}
.member-list-block .member-list {
  counter-reset: num;
}
@media only screen and (min-width: 641px) {
  .member-list-block .member-list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    width: 920px;
    margin: -16px auto 0;
  }
}
.member-list-block .member-list li {
  font-size: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 4px 10px 4px 40px;
  position: relative;
  line-height: 1.5;
  color: #072482;
}
@media only screen and (max-width: 640px) {
  .member-list-block .member-list li {
    padding: 2px 10px 2px 26px;
    font-size: 12px;
  }
}
.member-list-block .member-list li::before {
  counter-increment: num;
  content: counter(num);
  width: 32px;
  height: 32px;
  background-color: #ffe200;
  text-align: center;
  position: absolute;
  border-radius: 16px 0 0 16px;
  left: 0;
  top: 0;
  padding: 4px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .member-list-block .member-list li::before {
    width: 25px;
    height: 21px;
    padding: 2px;
  }
}
.member-list-block .member-list li + li {
  margin-top: 5px;
}
@media only screen and (min-width: 641px) {
  .member-list-block .member-list li:nth-child(5n+1) {
    margin-top: 0;
  }
}

/*------------------------------------------------------------------------------
  video-block
------------------------------------------------------------------------------*/
.video-block {
  background: url(../img/blue_bg_01.png) no-repeat center/cover;
  padding: 150px 0 180px;
}
@media only screen and (min-width: 641px) {
  .video-block {
    text-align: center;
  }
}
@media only screen and (max-width: 640px) {
  .video-block {
    padding: 100px 0 80px;
  }
}
.video-block .inner-block::before {
  content: "";
  position: absolute;
  background: url(../img/num_img_01.png) no-repeat center/contain;
  left: -80px;
  top: -140px;
}
@media only screen and (min-width: 641px) {
  .video-block .inner-block::before {
    width: 492px;
    height: 484px;
  }
}
@media only screen and (max-width: 640px) {
  .video-block .inner-block::before {
    left: 0px;
    top: -80px;
    width: calc(492px / 2);
    height: calc(484px / 2);
  }
}
.video-block .ttl {
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .video-block .ttl {
    text-align: center;
    font-size: 24px;
    line-height: 1.21;
  }
}
.video-block .intro {
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .video-block .intro {
    font-size: 16px;
    text-align: center;
  }
}
@media only screen and (min-width: 641px) {
  .video-block .intro .under {
    border-bottom: double 4px #fff;
  }
}
.video-block .intro .big {
  font-size: 35px;
  color: #ffe200;
}
@media only screen and (max-width: 640px) {
  .video-block .intro .big {
    font-size: 20px;
  }
}
.video-block .video {
  margin: 0 auto;
  width: 900px;
  height: 500px;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .video-block .video {
    width: 100%;
    height: 49.3333333333vw;
  }
}
.video-block .info {
  margin-top: -90px;
  color: #fff;
  background: #5667aa;
  padding: 110px 10px 30px;
  line-height: 1.72;
  font-size: 18px;
}
@media only screen and (min-width: 641px) {
  .video-block .info {
    border-radius: 16px;
    text-align: center;
  }
}
@media only screen and (max-width: 640px) {
  .video-block .info {
    padding: 30px 10px 20px;
    width: calc(100% + 38px);
    margin: -20px -19px 0;
    font-size: 14px;
    line-height: 1.5;
  }
}

/*------------------------------------------------------------------------------
  video-block
------------------------------------------------------------------------------*/
.ten-block {
  padding: 130px 0 150px;
}
@media only screen and (max-width: 640px) {
  .ten-block {
    padding: 100px 0 80px;
  }
}
.ten-block .inner-block:first-child:before {
  content: "";
  position: absolute;
  /*background: url(../img/num_img_02.png) no-repeat center/contain;*/
  left: -80px;
  top: -100px;
  pointer-events: none;
}
@media only screen and (min-width: 641px) {
  .ten-block .inner-block:first-child:before {
    width: 492px;
    height: 484px;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .inner-block:first-child:before {
    left: 0px;
    top: -70px;
    width: calc(492px / 2);
    height: calc(484px / 2);
  }
}
.ten-block .ten-ttl {
  text-align: center;
  font-size: 48px;
}
@media only screen and (max-width: 640px) {
  .ten-block .ten-ttl {
    font-size: 24px;
    line-height: 1.21;
  }
}
.ten-block .discount-box {
  background: rgba(255, 243, 154, 0.5);
  padding: 30px 20px 20px;
  margin-bottom: 40px;
  font-weight: bold;
  border-radius: 15px;
}
.ten-block .discount-box .d-ttl {
  text-align: center;
  font-size: 26px;
  color: #fd7600;
  margin-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .ten-block .discount-box .d-ttl {
    font-size: 18px;
  }
}
.ten-block .discount-box .d-intro {
  color: #fd7600;
  margin-bottom: 20px;
}
@media only screen and (min-width: 641px) {
  .ten-block .discount-box .d-intro {
    text-align: center;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .discount-box .d-intro {
    font-size: 14px;
  }
}
.ten-block .discount-box .underline {
  border-bottom: 3px double #ffa455;
}
.ten-block .discount-box .d-subttl {
  text-align: center;
  font-size: 20px;
  padding: 6px;
  border-radius: 23px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .ten-block .discount-box .d-subttl {
    font-size: 14px;
    border-radius: 15px;
    padding: 3px;
  }
}
.ten-block .discount-box .d-subttl.yellow {
  background-color: #ffe200;
}
.ten-block .discount-box .d-subttl.orange {
  background-color: #ffa455;
}
@media only screen and (min-width: 641px) {
  .ten-block .discount-box .d-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.ten-block .discount-box .d-list li {
  background: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  line-height: 1.78;
}
@media only screen and (min-width: 641px) {
  .ten-block .discount-box .d-list li {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .discount-box .d-list li {
    padding: 20px;
  }
}
@media only screen and (min-width: 641px) {
  .ten-block .discount-box .d-list li + li {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .discount-box .d-list li + li {
    margin-top: 10px;
  }
}
.ten-block .discount-box .d-content {
  font-size: 18px;
}
@media only screen and (max-width: 640px) {
  .ten-block .discount-box .d-content {
    font-size: 14px;
    padding: 0 6px;
  }
}
.ten-block .discount-box .d-content .t-orange {
  color: #ffa455;
}
.ten-block .track {
  border-radius: 18px;
  background-color: #f0f2f5;
  max-width: 1200px;
  margin: 70px auto 0;
  padding: 80px 0;
}
@media only screen and (max-width: 640px) {
  .ten-block .track {
    border-radius: 9px;
    padding: 20px 0;
    margin: 30px 19px 0;
  }
}
.ten-block .track .inner-block::before {
  content: none;
}
.ten-block .t01 {
  margin-top: 80px;
}
@media only screen and (max-width: 640px) {
  .ten-block .t01 {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 641px) {
  /*.ten-block .t07 .buy .type,*/ .ten-block .t08 .buy .type {
    width: 100%;
  }
  /*.ten-block .t07 .version-list,*/ .ten-block .t08 .version-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /*.ten-block .t07 .version-list li,*/ .ten-block .t08 .version-list li {
    width: 50%;
  }
  /*.ten-block .t07 .version-list li + li,*/ .ten-block .t08 .version-list li + li {
    margin: 0 0 0 10px !important;
  }
}

.ten-block .t10 {
  margin-bottom: 80px;
}
@media only screen and (min-width: 641px) {
  .ten-block .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.ten-block .head .thumb {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .ten-block .head .thumb {
    width: 406px;
    height: 291px;
    -webkit-box-shadow: 20px 26px #072482;
            box-shadow: 20px 26px #072482;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .head .thumb {
    width: calc(100% - 20px);
    -webkit-box-shadow: 20px 22px #072482;
            box-shadow: 20px 22px #072482;
    margin-bottom: 32px;
    height: 204px;
  }
}
.ten-block .head .thumb ul li {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media only screen and (min-width: 641px) {
  .ten-block .head .thumb ul li {
    width: 406px;
    height: 291px;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .head .thumb ul li {
    width: calc(100% - 20px);
    height: 204px;
  }
}
.ten-block .head .thumb ul li img {
  position: relative;
  width: auto;
  height: 100%;
}
@media only screen and (min-width: 641px) {
  .ten-block .head .profile {
    width: 540px;
    padding-top: 20px;
  }
}
.ten-block .head .profile .tag {
  font-size: 12px;
  font-weight: bold;
  color: #3d83dd;
  border-radius: 16px;
  background: #fff;
  padding: 6px 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .ten-block .head .profile .tag {
    margin-bottom: 12px;
    padding: 5px 16px;
    font-size: 10px;
  }
}
.ten-block .head .profile .catch {
  font-size: 20px;
  margin-bottom: 4px;
}
@media only screen and (max-width: 640px) {
  .ten-block .head .profile .catch {
    font-weight: bold;
    font-size: 14px;
  }
}
.ten-block .head .profile .ttl {
  font-size: 32px;
  color: #072482;
  font-weight: bold;
  margin-bottom: 14px;
  line-height: 1.3;
}
@media only screen and (max-width: 640px) {
  .ten-block .head .profile .ttl {
    margin-bottom: 8px;
    font-size: 24px;
  }
}
.ten-block .head .profile .name {
  font-size: 16px;
  position: relative;
  padding-left: 80px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 640px) {
  .ten-block .head .profile .name {
    padding-left: 50px;
    height: 42px;
    font-size: 12px;
  }
}
.ten-block .head .profile .name::before {
  content: "講師";
  position: absolute;
  width: 60px;
  height: 60px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  border-radius: 5px;
  font-size: 14px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 640px) {
  .ten-block .head .profile .name::before {
    font-size: 10px;
    width: 42px;
    height: 42px;
  }
}
.ten-block .head .profile .sample {
  margin-top: 20px;
}
@media only screen and (max-width: 640px) {
  .ten-block .head .profile .sample {
    margin-top: 10px;
  }
}
.ten-block .head .profile .sample .sample-txt {
  font-size: 12px;
}
@media only screen and (max-width: 640px) {
  .ten-block .head .profile .sample .sample-txt {
    margin-bottom: 4px;
  }
}
.ten-block .head .profile .sample .sample-txt .material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  vertical-align: middle;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.ten-block .content {
  padding: 20px 50px 50px;
  background: #fff;
  margin-top: 60px;
  height: 142px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .ten-block .content {
    height: 179px;
    margin-top: 20px;
    padding: 16px 20px 50px;
  }
}
.ten-block .content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 42px;
  background: #fff;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 640px) {
  .ten-block .content::before {
    height: 41px;
  }
}
.ten-block .content.is-open {
  height: auto;
}
.ten-block .content.is-open::before {
  content: none;
}
.ten-block .content.is-open .txt {
  overflow: auto;
}
@media only screen and (min-width: 641px) {
  .ten-block .content.is-open .txt {
    white-space: normal;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .content.is-open .txt {
    -webkit-line-clamp: inherit;
  }
}
.ten-block .content.is-open .more::before {
  content: "CLOSE";
}
.ten-block .content.is-open .more::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.ten-block .content .more {
  position: absolute;
  width: 110px;
  height: 110px;
  background-color: #f0f2f5;
  border-radius: 50%;
  bottom: -68px;
  right: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
}
.ten-block .content .more::before {
  content: "MORE";
  position: absolute;
  font-size: 12px;
  font-weight: bold;
  color: #3d83dd;
  text-align: center;
  width: 110px;
  height: 110px;
  padding-top: 22px;
}
.ten-block .content .more::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 6px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/ico_more.svg) no-repeat center/contain;
}
.ten-block .content .ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #072482;
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .ten-block .content .ttl {
    margin-bottom: 6px;
  }
}
.ten-block .content .txt {
  max-width: 100%;
  font-weight: bold;
}
@media only screen and (min-width: 641px) {
  .ten-block .content .txt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .content .txt {
    font-size: 16px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.ten-block .content .sub {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.57;
}
@media only screen and (max-width: 640px) {
  .ten-block .content .sub {
    font-size: 12px;
  }
}
.ten-block .buy {
  border-radius: 5px;
  border: 6px solid #072482;
  margin-top: 30px;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy {
    border: 3px solid #072482;
    border-radius: 3px;
  }
}
.ten-block .buy .ttl {
  text-align: center;
  font-size: 18px;
  background: #072482;
  color: #fff;
  padding-bottom: 10px;
  padding-top: 4px;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .ttl {
    font-size: 16px;
  }
}
.ten-block .buy .wrap {
  background: #fff;
}
@media only screen and (min-width: 641px) {
  .ten-block .buy .wrap {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .wrap {
    padding: 0 18px;
  }
}
.ten-block .buy .type {
  text-align: center;
}
@media only screen and (min-width: 641px) {
  .ten-block .buy .type {
    padding: 0 20px;
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .type {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 641px) {
  .ten-block .buy .type + .type {
    border-left: 1px solid #707070;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .type + .type {
    border-top: 1px dashed #707070;
  }
}
.ten-block .buy .t-ttl {
  margin-bottom: 6px;
  position: relative;
  padding-left: 30px;
  display: inline-block;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .t-ttl {
    margin-bottom: 8px;
    padding-left: 20px;
    font-size: 14px;
    font-weight: bold;
  }
}
.ten-block .buy .t-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ten-block .buy .t-ttl .small {
  font-size: 12px;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .t-ttl .small {
    font-size: 12px;
    font-weight: normal;
  }
}
.ten-block .buy .t-ttl.music::before {
  width: 13.5px;
  height: 14.6px;
  background: url(../img/ico_headphone.svg) no-repeat center/contain;
}
.ten-block .buy .t-ttl.video::before {
  width: 18.3px;
  height: 16px;
  background: url(../img/ico_video.svg) no-repeat center/contain;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .t-ttl.video::before {
    width: 16px;
    height: 14px;
  }
}
.ten-block .buy .version-list li {
  background-color: #eff2f5;
}
@media only screen and (min-width: 641px) {
  .ten-block .buy .version-list li {
    border-radius: 10px;
    padding: 10px 25px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list li {
    padding: 10px 10px 15px;
    border-radius: 5px;
  }
}
.ten-block .buy .version-list li + li {
  margin-top: 10px;
}
.ten-block .buy .version-list li .v-ttl {
  font-size: 20px;
  line-height: 1.25;
  position: relative;
  padding-left: 22px;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list li .v-ttl {
    padding-left: 16px;
    font-size: 16px;
    text-align: left;
    font-weight: bold;
  }
}
.ten-block .buy .version-list li .v-ttl::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 10px;
  border-radius: 50%;
  background-color: #5667aa;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list li .v-ttl::before {
    top: 7px;
    width: 7.5px;
    height: 7.5px;
  }
}
.ten-block .buy .version-list li .v-ttl .small {
  font-size: 14px;
}
@media only screen and (min-width: 641px) {
  .ten-block .buy .version-list li .v-ttl .small {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list li .v-ttl .small {
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-size: 10px;
  }
}
.ten-block .buy .version-list li .v-price {
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 641px) {
  .ten-block .buy .version-list li .v-price {
    width: 170px;
  }
}
.ten-block .buy .version-list li .v-price .txt {
  font-size: 20px;
  margin-bottom: 2px;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list li .v-price .txt {
    font-size: 20px;
    text-align: left;
    padding-left: 22px;
    line-height: 1.4;
  }
}
.ten-block .buy .version-list li .v-price .txt .tax {
  font-size: 14px;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list li .v-price .txt .tax {
    font-size: 12px;
  }
}
.ten-block .buy .version-list li .btn {
  font-size: 14px;
  text-align: center;
  border-radius: 42px;
  background-color: #072482;
  border: 1px solid #072482;
  color: #fff;
  padding: 7px 7px 7px 24px;
  display: block;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list li .btn {
    width: 44vw;
    margin: 10px auto 0;
    font-size: 12px;
  }
}
@media only screen and (min-width: 641px) {
  .ten-block .buy .version-list li .btn:hover {
    background-color: #fff;
    color: #072482;
  }
  .ten-block .buy .version-list li .btn:hover:before {
    background: url(../img/ico_cart_bl.svg) no-repeat center/contain;
  }
}
.ten-block .buy .version-list li .btn::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 19px;
  background: url(../img/ico_cart.svg) no-repeat center/contain;
  left: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ten-block .buy .version-list .popup {
  display: none;
  position: absolute;
  padding: 30px 50px 20px;
  bottom: 40px;
  left: -210px;
  width: 600px;
  background: #fff;
  border: solid 10px #36a11d;
  -webkit-box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.4);
  color: #000;
  z-index: 2;
  border-radius: 10px;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list .popup {
    padding: 20px 20px 20px;
    left: -60px;
    right: 0;
    margin: auto;
    width: calc(100% + 120px);
  }
}
.ten-block .buy .version-list .popup::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0px;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 15px 0 15px;
  border-color: #36a11d transparent transparent transparent;
}
.ten-block .buy .version-list .popup.is-show {
  display: block;
}
.ten-block .buy .version-list .popup .popup-close {
  cursor: pointer;
  width: 87px;
  height: 39px;
  background: #000;
  text-align: left;
  padding: 4px;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: -30px;
  padding: 10px 10px 10px 36px;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list .popup .popup-close {
    right: 10px;
  }
}
.ten-block .buy .version-list .popup .popup-close::before {
  content: "";
  position: absolute;
  background: url(../img/ico_close.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
}
.ten-block .buy .version-list .popup .popup-ttl {
  border-top: solid 4px #0d277d;
  font-size: 20px;
  color: #072482;
  text-align: center;
  padding: 20px 0;
}
.ten-block .buy .version-list .popup .popup-table {
  width: 100%;
}
.ten-block .buy .version-list .popup .popup-table th,
.ten-block .buy .version-list .popup .popup-table td {
  border-width: 1px 0;
  padding: 12px;
  text-align: left;
  font-size: 14px;
  z-index: -1;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list .popup .popup-table th,
.ten-block .buy .version-list .popup .popup-table td {
    line-height: 1.4;
    font-size: 12px;
    padding: 14px 6px;
    min-height: 50px;
  }
}
.ten-block .buy .version-list .popup .popup-table tr:first-child th,
.ten-block .buy .version-list .popup .popup-table tr:first-child td {
  border-top: dotted 1px #0d277d;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list .popup .popup-table tr:first-child td {
    font-size: 14px;
    font-weight: bold;
  }
}
.ten-block .buy .version-list .popup .popup-table tr:nth-child(odd) th,
.ten-block .buy .version-list .popup .popup-table tr:nth-child(odd) td {
  background: #f5f5f5;
}
.ten-block .buy .version-list .popup .popup-table tr:last-child th,
.ten-block .buy .version-list .popup .popup-table tr:last-child td {
  border-bottom: dotted 1px #0d277d;
}
.ten-block .buy .version-list .popup .popup-table th {
  position: relative;
}
.ten-block .buy .version-list .popup .popup-table th::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: calc(100% - 20px);
  width: 1px;
  background: #d1d1d1;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list .popup .popup-table th {
    width: 20%;
  }
}
.ten-block .buy .version-list .popup .popup-btn {
  font-size: 18px;
  border-radius: 26px;
  background-color: #072482;
  color: #fff;
  text-align: center;
  display: block;
  padding: 10px 10px 10px 30px;
  margin: 20px auto 10px;
  position: relative;
}
@media only screen and (min-width: 641px) {
  .ten-block .buy .version-list .popup .popup-btn {
    width: 312px;
  }
  .ten-block .buy .version-list .popup .popup-btn:hover {
    background: #5667aa;
  }
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list .popup .popup-btn {
    width: calc(100% - 40px);
    font-size: 16px;
    padding: 14px 10px 14px 30px;
  }
}
.ten-block .buy .version-list .popup .popup-btn::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 25px;
  background: url(../img/ico_cart.svg) no-repeat center/contain;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list .popup .popup-btn::before {
    left: 16px;
    width: 26px;
    height: 20px;
  }
}
.ten-block .buy .version-list .popup .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.ten-block .buy .version-list .popup .cart .cart-txt {
  font-size: 14px;
  color: #5667aa;
  padding-right: 10px;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list .popup .cart .cart-txt {
    font-size: 12px;
  }
}
.ten-block .buy .version-list .popup .cart .cart-sum {
  font-size: 16px;
}
@media only screen and (max-width: 640px) {
  .ten-block .buy .version-list .popup .cart .cart-sum {
    font-size: 14px;
  }
}

.ten-block .head .c-slider .slick-dots {
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -24px;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  pointer-events: none;
}
@media only screen and (max-width: 640px) {
  .ten-block .head .c-slider .slick-dots {
    bottom: -20px;
  }
}
.ten-block .head .c-slider .slick-dots li {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 2px;
  padding: 0;
  border-radius: 25px;
  background: #b3c7dc;
  cursor: pointer;
}
.ten-block .head .c-slider .slick-dots li button {
  display: none;
}
.ten-block .head .c-slider .slick-dots .slick-active {
  background: #3d83dd;
}

.slick-arrow {
  font-size: 0;
  letter-spacing: -9999px;
}

.slick-next,
.slick-prev {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}
@media only screen and (max-width: 640px) {
  .slick-next,
.slick-prev {
    width: 8px;
    height: 8px;
  }
}
.slick-next::before,
.slick-prev::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-transition: 0.6s cubic-bezier;
  transition: 0.6s cubic-bezier;
  border-radius: 2px;
}
@media only screen and (max-width: 640px) {
  .slick-next::before,
.slick-prev::before {
    width: 8px;
    height: 8px;
  }
}

.slick-next {
  right: 30px;
}
@media only screen and (max-width: 640px) {
  .slick-next {
    right: 20px;
  }
}
.slick-next::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.slick-prev {
  left: 10px;
}
@media only screen and (max-width: 640px) {
  .slick-prev {
    left: 6px;
  }
}
.slick-prev::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*------------------------------------------------------------------------------
  watch-block
------------------------------------------------------------------------------*/
.watch-block {
  background: url(../img/blue_bg_01.png) no-repeat center/cover;
  padding: 130px 0 110px;
}
@media only screen and (max-width: 640px) {
  .watch-block {
    padding: 90px 0 90px;
  }
}
.watch-block .inner-block::before {
  content: "";
  position: absolute;
  /*background: url(../img/num_img_03.png) no-repeat center/contain;*/
  left: -80px;
  top: -100px;
  pointer-events: none;
}
@media only screen and (min-width: 641px) {
  .watch-block .inner-block::before {
    width: 492px;
    height: 484px;
  }
}
@media only screen and (max-width: 640px) {
  .watch-block .inner-block::before {
    left: 0px;
    top: -70px;
    width: calc(492px / 2);
    height: calc(484px / 2);
  }
}
.watch-block .watch-ttl {
  text-align: center;
  color: #fff;
  font-size: 48px;
}
@media only screen and (max-width: 640px) {
  .watch-block .watch-ttl {
    font-size: 24px;
  }
}
.watch-block .watch-list {
  margin-bottom: 20px;
  position: relative;
}
@media only screen and (min-width: 641px) {
  .watch-block .watch-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 640px) {
  .watch-block .watch-list {
    width: calc(100% - 40px);
    margin: 50px auto 46px;
  }
}
.watch-block .watch-list::before {
  content: "";
  position: absolute;
}
@media only screen and (min-width: 641px) {
  .watch-block .watch-list::before {
    background: url(../img/watch_img_01.png) no-repeat center/contain;
    width: 1000px;
    height: 183px;
    bottom: -50px;
    left: 0;
  }
}
@media only screen and (max-width: 640px) {
  .watch-block .watch-list::before {
    top: -5.3333333333vw;
    left: -20px;
    width: 60px;
    height: 342px;
    background: url(../img/watch_img_01_sp.png) no-repeat center/contain;
  }
}
.watch-block .watch-list li {
  background: #fff;
  text-align: center;
  color: #072482;
  padding: 30px 10px;
  position: relative;
}
@media only screen and (min-width: 641px) {
  .watch-block .watch-list li {
    width: 250px;
    height: 250px;
    border-radius: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .watch-block .watch-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 30px;
    border-radius: 41px;
  }
}
@media only screen and (min-width: 641px) {
  .watch-block .watch-list li + li {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .watch-block .watch-list li + li {
    margin-top: 15px;
  }
}
.watch-block .watch-list .num {
  display: inline-block;
  font-size: 45px;
  line-height: 1.2;
  border-bottom: dashed 1px #072482;
  margin-bottom: 10px;
  padding-bottom: 4px;
}
@media only screen and (max-width: 640px) {
  .watch-block .watch-list .num {
    margin-right: 8vw;
    font-size: 25px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.watch-block .watch-list .ttl {
  font-weight: bold;
}
@media only screen and (min-width: 641px) {
  .watch-block .watch-list .ttl {
    margin-bottom: 10px;
    height: 100px;
    font-size: 26px;
    line-height: 1.23;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 640px) {
  .watch-block .watch-list .ttl {
    line-height: 1.19;
    font-size: 18px;
  }
}
.watch-block .watch-list .link {
  font-size: 16px;
  color: #5667aa;
  text-decoration: underline;
  margin-top: 10px;
}
@media only screen and (max-width: 640px) {
  .watch-block .watch-list .link {
    font-size: 12px;
    display: block;
    margin-top: 5px;
  }
}
.watch-block .yellow {
  font-size: 19px;
  text-align: center;
  color: #ffe200;
}
@media only screen and (max-width: 640px) {
  .watch-block .yellow {
    font-size: 16px;
  }
}
.watch-block .notice {
  color: #fff;
  margin: 40px 0;
}
@media only screen and (min-width: 641px) {
  .watch-block .notice {
    text-align: center;
  }
}
@media only screen and (max-width: 640px) {
  .watch-block .notice {
    margin: 30px 0;
  }
}
.watch-block .notice .notice-ttl {
  font-size: 26px;
  line-height: 1.42;
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .watch-block .notice .notice-ttl {
    font-size: 20px;
  }
}
.watch-block .notice .notice-txt {
  font-size: 18px;
  line-height: 1.56;
}
@media only screen and (max-width: 640px) {
  .watch-block .notice .notice-txt {
    font-size: 14px;
    line-height: 1.29;
  }
}
.watch-block .guide {
  background: #fff;
  position: relative;
  margin: 0 auto;
}
@media only screen and (min-width: 641px) {
  .watch-block .guide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 864px;
  }
}
@media only screen and (max-width: 640px) {
  .watch-block .guide {
    width: calc(100% - 40px);
    display: block;
  }
}
.watch-block .guide::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  background: url(../img/ico_arrow_skyblue.svg) no-repeat center/contain;
  right: 10px;
  bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .watch-block .guide::before {
    right: 4px;
    bottom: 4px;
  }
}
@media only screen and (min-width: 641px) {
  .watch-block .guide .thumb {
    width: 340px;
  }
}
@media only screen and (max-width: 640px) {
  .watch-block .guide .thumb img {
    width: 100%;
  }
}
.watch-block .guide .info {
  text-align: center;
  padding: 27px 20px;
}
@media only screen and (min-width: 641px) {
  .watch-block .guide .info {
    width: calc(100% - 340px);
  }
}
@media only screen and (max-width: 640px) {
  .watch-block .guide .info {
    padding: 16px 10px 30px;
    background: #fff;
  }
}
.watch-block .guide .ribbon {
  background-color: #3d83dd;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  padding: 1px 30px;
  margin-bottom: 10px;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .watch-block .guide .ribbon {
    margin-bottom: 6px;
    padding: 6px 30px;
    line-height: 1.36;
    font-size: 14px;
  }
}
.watch-block .guide .ribbon::before, .watch-block .guide .ribbon::after {
  content: "";
  position: absolute;
  top: 0;
}
.watch-block .guide .ribbon::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 10px 0 0;
  border-color: #3d83dd transparent transparent transparent;
  right: -10px;
}
@media only screen and (max-width: 640px) {
  .watch-block .guide .ribbon::before {
    right: -20px;
    border-width: 50px 20px 0 0;
  }
}
.watch-block .guide .ribbon::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 10px;
  border-color: transparent transparent #3d83dd transparent;
  left: -10px;
}
@media only screen and (max-width: 640px) {
  .watch-block .guide .ribbon::after {
    left: -20px;
    border-width: 0 0 50px 20px;
  }
}
.watch-block .guide .txt {
  text-align: center;
  color: #072482;
  line-height: 1.38;
  font-size: 24px;
}
@media only screen and (max-width: 640px) {
  .watch-block .guide .txt {
    line-height: 1.19;
    font-size: 16px;
  }
}

/*------------------------------------------------------------------------------
  point-block
------------------------------------------------------------------------------*/
.point-block {
  padding: 100px 0 110px;
  background: url(../img/point_bg_01.png) no-repeat top center/cover;
}
.point-block .inner-block::before {
  content: "";
  position: absolute;
  /*background: url(../img/num_img_04.png) no-repeat center/contain;*/
  left: -80px;
  top: -60px;
  pointer-events: none;
}
@media only screen and (min-width: 641px) {
  .point-block .inner-block::before {
    width: 492px;
    height: 484px;
  }
}
@media only screen and (max-width: 640px) {
  .point-block .inner-block::before {
    left: 0px;
    top: -70px;
    width: calc(492px / 2);
    height: calc(484px / 2);
  }
}
.point-block .point-ttl {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  padding-bottom: 50px;
}
@media only screen and (max-width: 640px) {
  .point-block .point-ttl {
    line-height: 1.4;
    font-size: 24px;
    padding-bottom: 40vw;
  }
}
.point-block .point-ttl .num {
  font-size: 68px;
  color: #3d83dd;
}
@media only screen and (max-width: 640px) {
  .point-block .point-ttl .num {
    font-size: 34px;
  }
}
.point-block .point-box {
  position: relative;
}
.point-block .point-box + .point-box {
  margin-top: 50px;
}
@media only screen and (max-width: 640px) {
  .point-block .point-box + .point-box {
    margin-top: 40vw;
  }
}
.point-block .point-box .thumb {
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 641px) {
  .point-block .point-box .thumb {
    width: 308px;
    height: 250px;
    bottom: 0;
    margin: auto;
  }
}
@media only screen and (max-width: 640px) {
  .point-block .point-box .thumb {
    top: -29.3333333333vw;
    left: -5.0666666667vw;
    width: 76vw;
  }
}
.point-block .point-box .info {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background: #fff;
  padding: 50px 40px 50px 100px;
  margin-left: auto;
}
@media only screen and (min-width: 641px) {
  .point-block .point-box .info {
    width: 720px;
  }
}
@media only screen and (max-width: 640px) {
  .point-block .point-box .info {
    padding: 24vw 20px 40px;
  }
}
.point-block .point-box .info .ttl {
  font-size: 24px;
  color: #072482;
  line-height: 1.42;
  margin-bottom: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .point-block .point-box .info .ttl {
    font-size: 20px;
  }
}
.point-block .point-box .info .ttl .sub {
  font-size: 16px;
  display: block;
  font-weight: 100;
}
@media only screen and (max-width: 640px) {
  .point-block .point-box .info .ttl .sub {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.point-block .point-box .info .txt {
  line-height: 1.81;
}
@media only screen and (max-width: 640px) {
  .point-block .point-box .info .txt {
    line-height: 1.54;
    font-size: 14px;
  }
}

/*------------------------------------------------------------------------------
  about-block
------------------------------------------------------------------------------*/
.about-block {
  overflow: hidden;
  padding: 140px 0 0;
}
@media only screen and (max-width: 640px) {
  .about-block {
    padding: 74px 0 0;
  }
}
.about-block .about-ttl {
  position: relative;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
}
@media only screen and (max-width: 640px) {
  .about-block .about-ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.about-block .about-ttl::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 77px;
  opacity: 0.58;
  background-color: #93e2ff;
  left: -131%;
  top: -35px;
  z-index: -1;
}
@media only screen and (max-width: 640px) {
  .about-block .about-ttl::before {
    top: -27px;
    width: 100%;
    left: -50%;
    height: 50px;
  }
}
.about-block .about-wrap {
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (min-width: 641px) {
  .about-block .about-wrap {
    padding-bottom: 110px;
  }
}
.about-block .about-wrap .txt {
  line-height: 1.81;
}
@media only screen and (min-width: 641px) {
  .about-block .about-wrap .txt {
    width: 520px;
  }
}
@media only screen and (max-width: 640px) {
  .about-block .about-wrap .txt {
    padding: 0 20px;
    line-height: 1.54;
    font-size: 14px;
  }
}
.about-block .about-wrap .img {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .about-block .about-wrap .img {
    width: 667px;
    height: 452px;
    position: absolute;
    right: -220px;
    top: -90px;
  }
}
.about-block .about-wrap .img::before {
  content: "";
  position: absolute;
  background-color: #2668b7;
}
@media only screen and (min-width: 641px) {
  .about-block .about-wrap .img::before {
    width: 580px;
    height: 282px;
    bottom: 80px;
    left: 60px;
  }
}
@media only screen and (max-width: 640px) {
  .about-block .about-wrap .img::before {
    bottom: 10.6666666667vw;
    width: 83.2vw;
    height: 37.6vw;
    right: -5.0666666667vw;
  }
}
.about-block .about-wrap .img img {
  position: relative;
}

.contact {
  border: 1px solid #222222;
}
.contact .contact-ttl {
  text-align: center;
  background: #222222;
  font-size: 20px;
  color: #fff;
  padding: 12px 20px;
}
@media only screen and (max-width: 640px) {
  .contact .contact-ttl {
    font-size: 12px;
  }
}
@media only screen and (min-width: 641px) {
  .contact .contact-wrap {
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 640px) {
  .contact .contact-wrap {
    padding: 0 20px;
  }
}
.contact .option {
  text-align: center;
}
@media only screen and (min-width: 641px) {
  .contact .option {
    padding: 0 40px;
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .contact .option {
    padding: 16px 0;
  }
}
@media only screen and (min-width: 641px) {
  .contact .option + .option {
    border-left: 1px solid #ddd;
  }
}
@media only screen and (max-width: 640px) {
  .contact .option + .option {
    border-top: 1px solid #ddd;
  }
}
.contact .option .ttl {
  font-size: 26px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .contact .option .ttl {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.contact .option a {
  font-size: 36px;
  color: #072482;
  line-height: 1.2;
  display: inline-block;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .contact .option a {
    font-size: 20px;
  }
}
.contact .option .info {
  font-size: 20px;
  color: #072482;
  margin-top: 10px;
}
@media only screen and (max-width: 640px) {
  .contact .option .info {
    font-size: 12px;
    margin-top: 6px;
  }
}
.contact .option .indent {
  margin-top: 16px;
  padding-left: 1px;
  text-indent: -1em;
  font-size: 14px;
  text-align: justify;
}
@media only screen and (max-width: 640px) {
  .contact .option .indent {
    font-size: 10px;
    line-height: 1.4;
  }
}