@charset "UTF-8";
/* =========================================================
 * reset　　　    /*リセット
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
blockquote, body, div, dl, dt, dd, fieldset, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, select, span, textarea, td, th, ul, figure, figcaption {
  margin: 0px;
  padding: 0px; }

fieldset, img {
  border: 0; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

ol {
  list-style-type: none; }

ul {
  list-style-type: none; }
  ul li {
    list-style-type: none; }

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

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

caption, th {
  text-align: left; }

iframe {
  border: none; }

a:focus {
  outline: none; }

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal; }

li img {
  line-height: 0;
  font-size: 0;
  vertical-align: top; }

/* IE */
* html ul li dl, * html ol li dl {
  display: inline; }
*:first-child + html ul li dl, *:first-child + html ol li dl {
  display: inline; }

/* =========================================================
 * default settings      　   /*デフォルトセッティング
========================================================= */
html {
  font-size: 62.5%; }

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  　word-break: keep-all;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word; }

p {
  line-break: strict; }

a {
  text-decoration: none;
  color: #333;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }
  a:hover {
    opacity: 0.7;
    -webkit-opacity: .7;
    -moz-opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"; }

.soon {
  pointer-events: none; }

body {
  font-size: 1.6rem;
  font: inherit;
  font-family: YuGothic, "Yu Gothic medium", "Yu Gothic", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 400;
  line-height: 1.8;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  color: #333; }

.pc {
  display: block; }

.sp {
  display: none; }

.hide, .hidden {
  visibility: hidden; }

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

main {
  display: block; }

.att {
  font-size: 3vw !important;
  line-height: 1 !important;
  margin: 3em auto 0 0; }

@media screen and (max-width: 767px) {
  a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    transition: none; }
    a:hover {
      opacity: 1;
      -webkit-opacity: 1;
      -moz-opacity: 1;
      filter: alpha(opacity=100);
      /* IE lt 8 */
      -ms-filter: "alpha(opacity=100)";
      /* IE 8 */ }

  body {
    -webkit-text-size-adjust: 100%;
    background: #fff;
    min-width: 100%; }

  .pc {
    display: none; }

  .sp {
    display: block; } }
/* =========================================================
 * font
========================================================= */
/*oswald*/
/*roboto*/
/*lato*/
/*noto-sans*/
/*noto-serif*/
.oswald {
  font-family: 'Oswald', sans-serif; }

.roboto {
  font-family: 'Roboto', sans-serif; }

.lato {
  font-family: 'Lato', sans-serif; }

.font-noto {
  font-family: 'Noto Sans JP', sans-serif; }

.font-serif {
  font-family: 'Noto Serif JP', serif; }

/* =========================================================
 * clearfix　　   /*クリアフィックス
========================================================= */
.clearfix {
  zoom: 1; }
  .clearfix:before {
    content: "";
    display: table; }
  .clearfix:after {
    content: "";
    display: table;
    clear: both; }

/* =========================================================
 * CSS　animation　　   /*CSSアニメション
========================================================= */
@keyframes arrow-move {
  0% {
    top: -100%; }
  50% {
    top: 0; }
  100% {
    top: 100%; } }
@-webkit-keyframes arrow-move {
  0% {
    top: -100%; }
  50% {
    top: 0; }
  100% {
    top: 100%; } }
@keyframes scroll {
  0% {
    transform: rotate(0) translate(0, 0); }
  0%, 80%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }
.fade,
.fadein,
.fadein-top,
.fadein-left,
.fadein-right,
.opening {
  opacity: 0;
  transition: all 0.875s ease-in-out; }

.fade {
  transform: translate(0, 0); }

.fadein {
  transform: translate(0, 50px); }

.fadein-top {
  transform: translate(0, -50px); }

.fadein-left {
  transform: translate(-50px, 0); }

.fadein-right {
  transform: translate(50px, 0); }

.fade.scrollin,
.fadein.scrollin,
.fadein-top.scrollin,
.fadein-left.scrollin,
.fadein-right.scrollin,
.opening.active {
  opacity: 1;
  transform: translate(0, 0); }

main .header {
  width: 100%;
  position: fixed;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  transition: all .3s ease-out; }
  main .header--inner {
    width: 91.7%;
    height: 80px;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease-in-out; }
    main .header--inner .logo {
      width: 25.5%;
      max-width: 281px;
      margin-left: 1.6%;
      z-index: 1000; }
      main .header--inner .logo a {
        display: block;
        width: 100%;
        height: 100%; }
    main .header--inner--nav {
      width: 59.6%;
      max-width: 656px; }
      main .header--inner--nav .globalnav--inner {
        display: flex;
        justify-content: flex-end;
        align-items: center; }
        main .header--inner--nav .globalnav--inner ul {
          width: 77.7%;
          height: 100%;
          display: flex;
          justify-content: flex-end; }
          main .header--inner--nav .globalnav--inner ul li {
            padding: 0 3.5%; }
            main .header--inner--nav .globalnav--inner ul li a {
              height: 80px;
              display: inline-flex;
              justify-content: center;
              align-items: center;
              align-content: center;
              flex-wrap: wrap; }
              main .header--inner--nav .globalnav--inner ul li a .icon {
                max-width: 29px; }
              main .header--inner--nav .globalnav--inner ul li a p {
                width: auto;
                white-space: nowrap;
                font-size: 1.6rem;
                font-weight: bold;
                line-height: 1;
                margin: .5em auto; }
              main .header--inner--nav .globalnav--inner ul li a:hover {
                position: relative;
                opacity: 1; }
                main .header--inner--nav .globalnav--inner ul li a:hover:after {
                  content: "";
                  position: absolute;
                  width: 0;
                  height: 0;
                  border-style: solid;
                  border-width: 5px 5px 0 5px;
                  border-color: #0faaf4 transparent transparent transparent;
                  bottom: 8px;
                  left: 50%;
                  transform: translateX(-50%); }
        main .header--inner--nav .globalnav--inner .btn-contact {
          width: 22.3%;
          background-color: #0faaf4; }
          main .header--inner--nav .globalnav--inner .btn-contact a {
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            align-content: center;
            flex-wrap: wrap;
            color: #fff; }
            main .header--inner--nav .globalnav--inner .btn-contact a .icon {
              max-width: 24px; }
            main .header--inner--nav .globalnav--inner .btn-contact a p {
              width: 100%;
              font-size: 1.6rem;
              font-weight: bold;
              line-height: 1.2;
              text-align: center;
              margin-top: .3em; }
      main .header--inner--nav .menu-trigger {
        display: none; }
  main .header.scrolled {
    top: 0; }
    main .header.scrolled .header--inner {
      width: 100%;
      max-width: inherit; }
main .contact-banner {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: #45c451;
  padding: 20px 0; }
  main .contact-banner--inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; }
    main .contact-banner--inner a .icon {
      max-width: 25px; }
    main .contact-banner--inner a p {
      font-size: 2.4rem;
      font-weight: bold;
      line-height: 1;
      padding-left: .5em; }
main article {
  overflow: hidden; }
  main article .comment {
    font-size: 1.2rem; }
main .footer--inner {
  width: 66.7%;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0 100px; }
  main .footer--inner--over--logo a h1 {
    width: 37.5%;
    margin: 0 auto; }
  main .footer--inner--over--nav {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #dfe0e0; }
    main .footer--inner--over--nav ul {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      flex-wrap: wrap; }
      main .footer--inner--over--nav ul li a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-wrap: wrap; }
        main .footer--inner--over--nav ul li a .icon {
          max-width: 31px; }
        main .footer--inner--over--nav ul li a p {
          width: 100%;
          font-size: 1.6rem;
          font-weight: bold;
          line-height: 1;
          text-align: center;
          margin-top: .5em; }
    main .footer--inner--over--nav--links {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap; }
      main .footer--inner--over--nav--links .banner {
        width: 45.6%;
        margin-top: 30px; }
        main .footer--inner--over--nav--links .banner a {
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative; }
          main .footer--inner--over--nav--links .banner a .icon {
            max-width: 27px; }
          main .footer--inner--over--nav--links .banner a p {
            font-size: 1.6rem;
            font-weight: bold;
            line-height: 1;
            text-align: center;
            color: #fff;
            padding: 1em; }
          main .footer--inner--over--nav--links .banner a:after {
            content: '';
            display: block;
            position: absolute;
            width: 18px;
            height: 5px;
            background: url("../images/common/btn_arrow.png") no-repeat center center/contain;
            top: 50%;
            right: 5%;
            transform: translateY(-50%);
            transition: all .3s ease; }
          main .footer--inner--over--nav--links .banner a:hover:after {
            right: 3%; }
        main .footer--inner--over--nav--links .banner.contact {
          width: 100%;
          background-color: #0faaf4 !important; }
        main .footer--inner--over--nav--links .banner:nth-of-type(odd) {
          background-color: #0faaf4; }
        main .footer--inner--over--nav--links .banner:nth-of-type(even) {
          background-color: #45c451; }
  main .footer--inner--under h3 a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1.7rem;
    text-align: center;
    margin-top: 2.8em; }
  main .footer--inner--under--nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; }
    main .footer--inner--under--nav--list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px; }
      main .footer--inner--under--nav--list li {
        padding: 0 1em;
        border-left: 1px solid #333; }
        main .footer--inner--under--nav--list li:first-of-type {
          padding-left: 0;
          border-left: none; }
        main .footer--inner--under--nav--list li a {
          font-size: 1.2rem;
          line-height: 1;
          letter-spacing: .05em;
          text-align: center; }
    main .footer--inner--under--nav .logo {
      max-width: 69px; }
  main .footer--inner--under small {
    display: block;
    font-size: 1.2rem;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    letter-spacing: .05em;
    text-align: center;
    margin-top: 2.8em; }

#pagetop {
  width: 34px;
  height: 34px;
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 49; }
  #pagetop a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none; }
    #pagetop a:before, #pagetop a:after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      margin: auto;
      vertical-align: middle; }
    #pagetop a:before {
      box-sizing: border-box;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border-style: solid;
      border-width: 1px;
      border-color: #fff;
      background-color: #45c451; }
    #pagetop a:after {
      top: 14px;
      bottom: inherit;
      right: 13px;
      width: 7px;
      height: 7px;
      transform: rotate(-45deg);
      border-top-style: solid;
      border-right-style: solid;
      border-top-width: 2px;
      border-right-width: 2px;
      border-top-color: #fff;
      border-right-color: #fff; }

@media screen and (max-width: 1024px) {
  main .header {
    top: 3.2vw; }
    main .header--inner {
      max-width: inherit;
      height: 6.7vw; }
      main .header--inner .logo {
        width: 25.5%;
        max-width: inherit; }
      main .header--inner--nav {
        width: 59.6%;
        max-width: inherit; }
        main .header--inner--nav .globalnav--inner ul li a {
          height: 6.7vw; }
          main .header--inner--nav .globalnav--inner ul li a .icon {
            max-width: 2.4vw; }
          main .header--inner--nav .globalnav--inner ul li a p {
            font-size: 1.3vw; }
          main .header--inner--nav .globalnav--inner ul li a:hover:after {
            border-width: .4vw .4vw 0 .4vw;
            bottom: .7vw; }
        main .header--inner--nav .globalnav--inner .btn-contact a {
          height: 6.7vw; }
          main .header--inner--nav .globalnav--inner .btn-contact a .icon {
            max-width: 2vw; }
          main .header--inner--nav .globalnav--inner .btn-contact a p {
            font-size: 1.3vw; }
  main .contact-banner {
    padding: 1.7vw 0; }
    main .contact-banner--inner a .icon {
      max-width: 2.1vw; }
    main .contact-banner--inner a p {
      font-size: 2vw; }
  main article .comment {
    font-size: .8vw; }
  main .footer--inner {
    width: 66.7%;
    max-width: inherit;
    padding: 6.7vw 0 8.3vw; }
    main .footer--inner--over--nav {
      padding-top: 3.3vw;
      margin-top: 3.3vw; }
      main .footer--inner--over--nav ul li a .icon {
        max-width: 2.6vw; }
      main .footer--inner--over--nav ul li a p {
        font-size: 1.3vw; }
      main .footer--inner--over--nav--links .banner {
        margin-top: 2.3vw; }
        main .footer--inner--over--nav--links .banner a .icon {
          max-width: 2.3vw; }
        main .footer--inner--over--nav--links .banner a p {
          font-size: 1.3vw; }
        main .footer--inner--over--nav--links .banner a:after {
          width: 1.5vw;
          height: .4vw; }
    main .footer--inner--under h3 a {
      font-size: 1.3vw; }
    main .footer--inner--under--nav--list {
      margin-top: 3.3vw; }
      main .footer--inner--under--nav--list li a {
        font-size: 1vw; }
    main .footer--inner--under--nav .logo {
      max-width: 5.8vw; }
    main .footer--inner--under small {
      font-size: 1vw; } }
@media screen and (max-width: 767px) {
  main .header {
    top: 0; }
    main .header--inner {
      width: 100%;
      height: 13.2vw;
      overflow: hidden; }
      main .header--inner .logo {
        width: 55vw;
        margin-left: 5vw; }
      main .header--inner--nav {
        width: auto; }
        main .header--inner--nav .globalnav {
          width: 100vw !important;
          height: 100vh;
          background-color: white;
          position: absolute;
          top: 100%;
          right: 0;
          display: none;
          z-index: 999; }
          main .header--inner--nav .globalnav--inner {
            flex-wrap: wrap;
            margin-top: 5vw; }
            main .header--inner--nav .globalnav--inner ul {
              width: auto;
              height: auto;
              flex-wrap: wrap; }
              main .header--inner--nav .globalnav--inner ul li {
                width: 100%;
                position: relative;
                padding: 0; }
                main .header--inner--nav .globalnav--inner ul li a {
                  width: 100%;
                  height: 100%;
                  padding: 5vw 10vw;
                  display: inline-flex;
                  justify-content: flex-start; }
                  main .header--inner--nav .globalnav--inner ul li a .icon {
                    max-width: 5vw; }
                  main .header--inner--nav .globalnav--inner ul li a p {
                    font-size: 3.4vw;
                    margin: 0 1em; }
                  main .header--inner--nav .globalnav--inner ul li a:before {
                    content: '';
                    position: absolute;
                    display: block;
                    width: 2.5vw;
                    height: 1px;
                    border-bottom: 1px solid #000;
                    bottom: 50%;
                    left: 2%;
                    transform: translate(0, 50%);
                    transition: all .3s ease-out; }
                  main .header--inner--nav .globalnav--inner ul li a:hover:before {
                    left: 3%; }
                  main .header--inner--nav .globalnav--inner ul li a:hover:after {
                    display: none; }
                main .header--inner--nav .globalnav--inner ul li:after {
                  content: '';
                  position: absolute;
                  display: block;
                  width: 100%;
                  height: 1px;
                  top: 0;
                  border-top: 1px dotted #000; }
                main .header--inner--nav .globalnav--inner ul li:first-of-type:after {
                  border-top: none; }
                main .header--inner--nav .globalnav--inner ul li:last-of-type {
                  margin-right: auto; }
            main .header--inner--nav .globalnav--inner .btn-contact {
              width: 90%;
              padding: 2.5vw;
              margin: 5vw auto 0; }
              main .header--inner--nav .globalnav--inner .btn-contact a {
                height: auto; }
                main .header--inner--nav .globalnav--inner .btn-contact a .icon {
                  max-width: 5vw; }
                main .header--inner--nav .globalnav--inner .btn-contact a p {
                  font-size: 3.4vw;
                  margin-top: .5em; }
        main .header--inner--nav .menu-trigger {
          display: inline-block;
          width: 14vw;
          height: 14vw;
          background-color: #45c451;
          position: relative;
          top: 0;
          right: 0;
          transition: all .4s ease-in-out;
          box-sizing: border-box;
          cursor: pointer; }
          main .header--inner--nav .menu-trigger span {
            position: absolute;
            width: 33%;
            height: 2px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #fff;
            transition: all .4s ease-in-out;
            box-sizing: border-box;
            cursor: pointer; }
            main .header--inner--nav .menu-trigger span:nth-of-type(1) {
              top: 33%; }
            main .header--inner--nav .menu-trigger span:nth-of-type(2) {
              top: 48%; }
            main .header--inner--nav .menu-trigger span:nth-of-type(3) {
              bottom: 33%; }
          main .header--inner--nav .menu-trigger.active span {
            z-index: 20001; }
            main .header--inner--nav .menu-trigger.active span:nth-of-type(1) {
              top: 50%;
              -webkit-transform: translate(-50%, -50%) rotate(-45deg);
              transform: translate(-50%, -50%) rotate(-45deg); }
            main .header--inner--nav .menu-trigger.active span:nth-of-type(2) {
              opacity: 0; }
            main .header--inner--nav .menu-trigger.active span:nth-of-type(3) {
              bottom: 47.5%;
              -webkit-transform: translate(-50%, -50%) rotate(45deg);
              transform: translate(-50%, -50%) rotate(45deg); }
  main .contact-banner {
    padding: 4.8vw 0; }
    main .contact-banner--inner a .icon {
      max-width: 5vw; }
    main .contact-banner--inner a p {
      font-size: 4.5vw; }
  main article .comment {
    font-size: 3vw !important; }
  main .footer--inner {
    width: 90vw;
    padding: 13.4vw 0 17vw; }
    main .footer--inner--over--logo a h1 {
      width: 70%; }
    main .footer--inner--over--logo a h2 {
      font-size: 5vw; }
    main .footer--inner--over--nav {
      padding-top: 0;
      margin-top: 7vw; }
      main .footer--inner--over--nav ul li {
        padding: 7vw 0 0; }
        main .footer--inner--over--nav ul li a .icon {
          max-width: 7vw; }
        main .footer--inner--over--nav ul li a p {
          font-size: 3.7vw; }
      main .footer--inner--over--nav--links {
        margin-top: 5vw; }
        main .footer--inner--over--nav--links .banner {
          width: 100%;
          margin-top: 2.5vw; }
          main .footer--inner--over--nav--links .banner a .icon {
            max-width: 4vw; }
          main .footer--inner--over--nav--links .banner a p {
            font-size: 3.7vw; }
          main .footer--inner--over--nav--links .banner a:after {
            width: 4.5vw;
            height: 2.7vw; }
    main .footer--inner--under h3 a {
      font-size: 3.4vw; }
    main .footer--inner--under--nav {
      margin-top: 6vw; }
      main .footer--inner--under--nav--list {
        justify-content: center; }
        main .footer--inner--under--nav--list li {
          width: 50%;
          margin-top: 3vw; }
          main .footer--inner--under--nav--list li a {
            font-size: 3.2vw; }
          main .footer--inner--under--nav--list li:nth-of-type(2n-1) {
            border-left: none;
            padding-left: 0; }
      main .footer--inner--under--nav .logo {
        width: 16.8vw;
        margin-top: 5vw; }
    main .footer--inner--under small {
      font-size: 3vw;
      margin-top: 2em; }

  #pagetop {
    width: 10vw;
    height: 10vw;
    right: 2.5vw;
    bottom: 17vw !important; }
    #pagetop a:before {
      width: 10vw;
      height: 10vw; }
    #pagetop a:after {
      top: 4vw;
      right: 3.6vw;
      width: 2.4vw;
      height: 2.4vw; } }
.top article .main--inner {
  position: relative; }
  .top article .main--inner .visual {
    width: 100vw;
    height: 80vh;
    max-height: 610px;
    background: url("../images/top/main_bg.png") no-repeat center bottom/cover; }
    .top article .main--inner .visual img {
      display: none; }
  .top article .main--inner--wrap {
    width: 73.5%;
    min-width: 1100px;
    position: absolute;
    top: 57.5%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .top article .main--inner--wrap .txt {
      font-size: 2.4rem;
      font-weight: bold;
      line-height: 1;
      color: #fff; }
    .top article .main--inner--wrap .title dt h1 {
      font-size: 5.0rem;
      font-weight: bold;
      line-height: 1.2;
      color: #fff;
      display: flex;
      flex-wrap: wrap; }
      .top article .main--inner--wrap .title dt h1 span {
        display: inline-block;
        padding: .2em .3em .2em .5em;
        background-color: #45c451;
        margin-top: .5em; }
        .top article .main--inner--wrap .title dt h1 span:nth-of-type(n+2) {
          margin-top: .3em; }
        .top article .main--inner--wrap .title dt h1 span.sub {
          display: flex;
          align-items: center;
          margin-top: .5em;
          border-left: 1px solid #fff;
          margin-left: -.2em; }
          .top article .main--inner--wrap .title dt h1 span.sub em {
            display: inline-block;
            font-size: 2.0rem;
            font-weight: bold;
            line-height: 1.3; }
    .top article .main--inner--wrap .title dd {
      font-size: 2.4rem;
      font-weight: bold;
      line-height: 1;
      color: #45c451;
      margin-top: 1em; }
      .top article .main--inner--wrap .title dd span {
        display: inline-block;
        padding: .3em 1em;
        background-color: #fff;
        box-shadow: 14px 14px 9px rgba(0, 0, 0, 0.2); }
        .top article .main--inner--wrap .title dd span:nth-of-type(n+2) {
          margin-top: .3em; }
    .top article .main--inner--wrap--links {
      display: flex;
      justify-content: flex-end;
      min-width: 180px;
      margin-top: -12em;
      /*position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);*/ }
      .top article .main--inner--wrap--links li {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: 14px 14px 9px rgba(0, 0, 0, 0.2); }
        .top article .main--inner--wrap--links li a {
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 2.4rem;
          font-weight: bold;
          line-height: 1.3;
          text-align: center;
          color: #fff;
          position: relative; }
          .top article .main--inner--wrap--links li a:after {
            content: '';
            display: block;
            position: absolute;
            width: 25px;
            height: 7px;
            background: url("../images/common/btn_arrow.png") no-repeat center center/contain;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%); }
        .top article .main--inner--wrap--links li:first-of-type {
          margin-left: 0; }
        .top article .main--inner--wrap--links li:nth-of-type(odd) {
          background-color: #0faaf4; }
.top article .lead--inner {
  width: 91.7%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 6%; }
  .top article .lead--inner--main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; }
    .top article .lead--inner--main--texts {
      width: 60.2%;
      margin-top: 102px;
      border-bottom-left-radius: 2.0rem;
      border-left: 5px solid #45c451;
      border-bottom: 5px solid #45c451;
      position: relative; }
      .top article .lead--inner--main--texts:before, .top article .lead--inner--main--texts:after {
        content: '';
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 28px 24px 0 0;
        transform: translateX(-50%); }
      .top article .lead--inner--main--texts:before {
        border-color: #45c451 transparent transparent transparent;
        bottom: -28px;
        right: 50%; }
      .top article .lead--inner--main--texts:after {
        border-color: #fff transparent transparent transparent;
        bottom: -14px;
        right: 49.2%; }
      .top article .lead--inner--main--texts h2 {
        font-size: 3.4rem;
        font-weight: bold;
        line-height: 1.4;
        letter-spacing: .03em;
        color: #45c451;
        padding: .5em 0 1em 2em; }
    .top article .lead--inner--main .image {
      width: 35.9%;
      margin-top: 55px; }
      .top article .lead--inner--main .image p {
        width: 100%;
        font-size: 2.0rem;
        font-weight: bold;
        line-height: 1;
        text-align: right;
        margin-bottom: 1.5em; }
        .top article .lead--inner--main .image p a {
          color: #0066cc;
          text-decoration: underline; }
  .top article .lead--inner--wrap {
    margin-top: -40px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1; }
    .top article .lead--inner--wrap--ttl {
      width: 94%;
      margin: 0 auto 1em 0;
      font-size: 2.2rem;
      font-weight: bold;
      text-align: center; }
      .top article .lead--inner--wrap--ttl p {
        display: block;
        color: #fff;
        background-color: #45c451;
        border-radius: 2.5rem;
        padding: .3em 1em; }
    .top article .lead--inner--wrap--category {
      width: 30.3%;
      background-color: #fff;
      border-radius: 2.0rem;
      padding: 15px 0;
      margin: 0 1.5% 22px 0;
      box-shadow: 14px 14px 9px rgba(0, 0, 0, 0.2); }
      .top article .lead--inner--wrap--category .icon {
        max-width: 58px;
        margin: 0 auto; }
      .top article .lead--inner--wrap--category h3 {
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.4;
        text-align: center;
        color: #45c451;
        margin-top: .5em; }
      .top article .lead--inner--wrap--category p {
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1.5;
        text-align: center;
        margin-top: 1em; }
.top article .strength--block {
  /*.container--block--inner{
  	&--wrap{
  		width: 91.7%;
  		max-width: 1100px;
  		margin: 0 auto;
  		padding: 0;
  		&:before{
  			display: none;
  		}
  		.visual{
  			width: 100%;
  			margin-top: -40px;
  			box-shadow: 14px 14px 9px rgba(0,0,0,0.2);
  		}
  		&--category{
  			display: flex;
  			justify-content: center;
  			flex-wrap: wrap;
  			margin-top: -160px;
  			&--col{
  				width: 72.7%;
  				margin: 0 auto 18px;
  				background-color: #fff;
  				box-shadow: 10px 10px 9px rgba(0,0,0,0.2);
  				&--main{
  					color: #fff;
  					background-color: $basecolor;
  					padding: 10px 0;
  					.title{
  						display: flex;
  						justify-content: center;
  						align-items: flex-end;
  						flex-wrap: wrap;
  						margin: 0 auto;
  						.icon{
  							max-width: 23px;
  						}
  						dd{
  							font-size: 2.3rem;
  							line-height: 1;
  							text-align: center;
  							padding-left: .3em;
  							.data{
  								font-size: 5.5rem;
  								font-family: $oswald;
  								font-weight: 300;
  								margin: 0 .15em;
  							}
  							.seconds{
  								font-size: 3rem;
  							}
  						}
  					}
  				}
  				&--body{
  					text-align: center;
  					padding: 45px;
  					display: flex;
  					justify-content: space-between;
  					flex-wrap: wrap;
  					&--texts,
  					.movie{
  						width: 47.5%;
  					}
  					.movie{
  						margin-top: 20px;
  						a{
  							display: block;
  							width: 100%;
  							height: 100%;
  						}
  					}
  					h3{
  						font-size: 2.7rem;
  						font-weight: bold;
  						line-height: 1.4;
  						white-space: nowrap;
  						color: $basecolor02;
  						border-bottom: 1px solid $basecolor02;
  						padding-bottom: .3em;
  						margin-bottom: .5em;
  					}
  					h4{
  						font-size: 1.9rem;
  						font-weight: bold;
  						line-height: 1.4;
  						margin-top: .5em;
  						span{
  							font-size: 1.7rem;
  							display: block;
  							color: #00aaeb;
  						}
  					}
  					ul{
  						font-size: 1.6rem;
  						font-weight: bold;
  						line-height: 1.6;
  						margin: 1em 0;
  						li{
  							display: block;
  							text-indent: -1em;
  							padding-left: 1em;
  						}
  					}
  					figure{
  						width: 70%;
  						margin: 0 auto;
  					}
  					dl{
  						background-color: $gray;
  						padding: 10px;
  						margin-top: 10px;
  						font-weight: bold;
  						line-height: 1;
  						text-align: left;
  						display: flex;
  						justify-content: center;
  						align-items: flex-end;
  						position: relative;
  						dt{
  							font-size: 6rem;
  							font-family: $oswald;
  							font-weight: 300;
  							color: $basecolor;
  							margin: 0 .2em;
  						}
  						dd{
  							font-size: 2rem;
  							line-height: 1;
  							p{
  								font-size: 1.3rem;
  								&.price{
  									font-size: 2rem;
  									margin-top: 1em;
  									em{
  										font-size: 1.6rem;
  									}
  								}
  								&.label{
  									position: absolute;
  									top: 10px;
  									right: -.5em;
  									display: inline-block;
  									padding: .3em 1em;
  									background-color: $basecolor;
  									color: #fff;
  								}
  								&:nth-of-type(n+2){
  									margin-top: .5em;
  								}
  							}
  						}
  					}
  				}
  			}
  			.comment{
  				font-size: 1.3rem;
  				margin-top: .5em;
  			}
  		}
  		&:nth-of-type(odd){
  			//margin-right: 0;
  			//flex-direction: row-reverse;
  			&:before{
  				left: -8.3%;
  			}
  		}
  		&:nth-of-type(even){
  			//margin-left: 0;
  			//flex-direction: row;
  			&:before{
  				right: -8.3%;
  			}
  		}
  	}
  	&--center-wrap{
  		margin-top: 67px;
  		padding: 40px 30px;
  		background-color: #fff;
  		border-radius: 2.0rem;
  		box-shadow: 14px 14px 9px rgba(0,0,0,0.2);
  		&:before{
  			display: none;
  		}
  		&--title{
  			background-color: $basecolor;
  			display: flex;
  			justify-content: center;
  			align-items: center;
  			.icon{
  				max-width: 40px;
  			}
  			h3{
  				font-size: 3.4rem;
  				font-weight: bold;
  				line-height: 1;
  				letter-spacing: .05em;
  				color: #fff;
  				padding: .5em 0 .5em .5em;
  			}
  		}
  		p.comment{
  			font-size: 1.6rem;
  			line-height: 1;
  			margin: 1em auto .5em;
  		}
  		&--info{
  			//overflow-x: scroll;
  			margin-top: 8px;
  			table{
  				width: 100%;
  				tbody{
  					tr{
  						th,
  						td{
  							width: 31%;
  							font-size: 1.6rem;
  							font-weight: bold;
  							line-height: 1.7;
  							border-right: 1px solid $basecolor;
  							border-bottom: 1px solid $basecolor;
  							//padding: .2em 1em;
  							padding: 1em;
  							&:first-of-type{
  								width: 7%;
  							}
  						}
  						td{
  							&:last-of-type{
  								border-right: none;
  							}
  						}
  						&.title{
  							th,
  							td{
  								font-size: 2.4rem;
  								line-height: 1.2;
  								text-align: center;
  								color: $basecolor;
  								background-color: $gray;
  								border-bottom: none;
  								padding: 1em 0;
  							}
  						}
  						&.texts{
  							th{
  								color: $basecolor;
  								text-align: center;
  							}
  							td{
  								vertical-align: initial;
  								text-align: justify;
  								&:first-of-type{
  									width: 30%;
  								}
  								//padding: .5em 1em;
  							}
  						}
  					}
  				}
  			}
  		}
  	}
  }*/ }
  .top article .strength--block--title {
    width: 91.7%;
    max-width: 1100px;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative; }
    .top article .strength--block--title dl {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 20px;
      position: relative;
      z-index: 2; }
      .top article .strength--block--title dl dt {
        font-size: 10rem;
        font-family: "Oswald", sans-serif;
        font-weight: 300;
        line-height: 1;
        color: #0faaf4;
        margin-top: -.2em; }
      .top article .strength--block--title dl dd {
        display: flex; }
        .top article .strength--block--title dl dd h2 {
          font-size: 2.4rem;
          font-weight: bold;
          line-height: 1.4;
          letter-spacing: -.05em;
          padding: 0 0 0 .5em;
          text-align: right; }
        .top article .strength--block--title dl dd .icon {
          max-width: 36px;
          margin-top: 1.2em; }
    .top article .strength--block--title h3 {
      width: 100%;
      font-size: 3.0rem;
      font-weight: bold;
      color: #0faaf4;
      margin-top: .5em; }
  .top article .strength--block--inner {
    position: relative;
    padding-bottom: 67px; }
    .top article .strength--block--inner:before {
      content: '';
      display: block;
      position: absolute;
      width: 100vw;
      height: 87.5%;
      background-color: #e7f6fe;
      bottom: 0;
      left: 0;
      z-index: -1; }
    .top article .strength--block--inner--wrap {
      width: 91.7%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 65px 4.5%;
      background: url("../images/top/strength_bg01.png") no-repeat center center/cover;
      box-shadow: 14px 14px 9px rgba(0, 0, 0, 0.2);
      /*position: relative;
      &:before{
      	content: '';
      	display: block;
      	position: absolute;
      	width: 100vw;
      	//height: 100%;
      	//background-color: #e8f6fa;
      	top: -45px;
      	//left: -5vw;
      	left: 50%!important;
      	transform: translateX(-50%);
      	z-index: -1;
      }*/ }
      .top article .strength--block--inner--wrap--category {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; }
        .top article .strength--block--inner--wrap--category--col {
          width: 31.8%;
          background-color: #fff;
          padding: 4em 0; }
          .top article .strength--block--inner--wrap--category--col dl {
            text-align: center;
            font-weight: bold; }
            .top article .strength--block--inner--wrap--category--col dl dt {
              font-size: 1.6rem;
              line-height: 1;
              color: #0faaf4;
              padding-bottom: 1em;
              position: relative; }
              .top article .strength--block--inner--wrap--category--col dl dt:after {
                content: '';
                display: block;
                position: absolute;
                width: 1em;
                height: 1px;
                background-color: #0faaf4;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%); }
            .top article .strength--block--inner--wrap--category--col dl dd {
              font-size: 2.1rem;
              line-height: 1.6;
              margin-top: 1em; }
  .top article .strength--block:nth-of-type(odd) .container--block--title {
    flex-direction: row-reverse; }
    .top article .strength--block:nth-of-type(odd) .container--block--title dl {
      flex-direction: row; }
      .top article .strength--block:nth-of-type(odd) .container--block--title dl dt {
        color: #45c451; }
  .top article .strength--block:nth-of-type(even) .container--block--title {
    flex-direction: row; }
    .top article .strength--block:nth-of-type(even) .container--block--title dl {
      flex-direction: row-reverse; }
      .top article .strength--block:nth-of-type(even) .container--block--title dl dt {
        color: #0faaf4; }
.top article .container--block--title {
  width: 91.7%;
  max-width: 1100px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  position: relative; }
  .top article .container--block--title p {
    font-size: 10rem;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    line-height: 1;
    color: #ecf9ed;
    white-space: nowrap;
    position: relative;
    z-index: -1; }
  .top article .container--block--title dl {
    display: flex;
    margin-top: 20px;
    position: relative;
    z-index: 2; }
    .top article .container--block--title dl dt {
      font-size: 15rem;
      font-family: "Oswald", sans-serif;
      font-weight: 300;
      line-height: 1;
      color: #45c451;
      margin-top: -.2em; }
    .top article .container--block--title dl dd {
      display: flex;
      justify-content: flex-end;
      align-content: flex-start;
      flex-wrap: wrap;
      margin-right: 20px; }
      .top article .container--block--title dl dd h2 {
        font-size: 3.4rem;
        font-weight: bold;
        line-height: 1;
        letter-spacing: .05em;
        padding: 0 .5em;
        white-space: nowrap; }
      .top article .container--block--title dl dd .icon {
        max-width: 43px; }
  .top article .container--block--title .comment {
    width: 100%;
    font-size: 1.3rem;
    text-align: right;
    color: #333;
    margin-top: .5em; }
  .top article .container--block--title h3 {
    width: 100%;
    font-size: 3.0rem;
    font-weight: bold;
    color: #45c451;
    margin-top: .5em; }
.top article .container--block--inner--wrap {
  width: 91.7%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 55px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative; }
  .top article .container--block--inner--wrap:before {
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    top: -45px;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: -1; }
  .top article .container--block--inner--wrap--texts {
    width: 64.5%; }
    .top article .container--block--inner--wrap--texts h3 {
      font-size: 2.8rem;
      font-weight: bold;
      line-height: 1.5;
      letter-spacing: .05em;
      text-align: justify;
      color: #45c451;
      border-bottom: 1px solid #45c451;
      padding-bottom: .8em; }
      .top article .container--block--inner--wrap--texts h3 .vertical {
        font-size: 1.6rem;
        vertical-align: text-top; }
    .top article .container--block--inner--wrap--texts h4 {
      font-size: 2rem;
      font-weight: bold;
      line-height: 1.7;
      letter-spacing: .05em;
      text-align: justify;
      color: #45c451;
      margin-top: 1em; }
    .top article .container--block--inner--wrap--texts dl {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 2.9rem;
      font-weight: bold;
      line-height: 1;
      letter-spacing: .08em;
      text-align: justify;
      color: #45c451;
      border-bottom: 1px solid #45c451;
      padding-bottom: .5em; }
      .top article .container--block--inner--wrap--texts dl dt {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        color: #45c451; }
        .top article .container--block--inner--wrap--texts dl dt h3 {
          font-size: 2.9rem;
          font-weight: bold;
          letter-spacing: .08em;
          border-bottom: none !important;
          margin-top: 0; }
          .top article .container--block--inner--wrap--texts dl dt h3 em {
            display: block;
            font-size: 2rem;
            font-weight: bold;
            letter-spacing: .05em;
            text-align: justify;
            color: #333;
            margin-bottom: .5em; }
      .top article .container--block--inner--wrap--texts dl dd {
        display: flex;
        align-items: baseline;
        font-size: 2.0rem;
        color: #333; }
        .top article .container--block--inner--wrap--texts dl dd .price {
          font-size: 4.7rem;
          font-family: "Oswald", sans-serif;
          font-weight: 300;
          line-height: 1;
          color: #45c451; }
        .top article .container--block--inner--wrap--texts dl dd em {
          font-size: 1.6rem; }
    .top article .container--block--inner--wrap--texts p {
      font-size: 1.6rem;
      line-height: 1.6;
      text-align: justify;
      margin-top: 1.5em; }
      .top article .container--block--inner--wrap--texts p.comment {
        display: block;
        font-size: 1.2rem;
        margin-top: 1.2em !important; }
        .top article .container--block--inner--wrap--texts p.comment a {
          text-decoration: underline; }
      .top article .container--block--inner--wrap--texts p .vertical {
        font-size: 1.2rem;
        vertical-align: top; }
    .top article .container--block--inner--wrap--texts ul {
      font-size: 1.6rem;
      font-weight: bold; }
      .top article .container--block--inner--wrap--texts ul li a {
        color: #0066cc;
        text-decoration: underline; }
  .top article .container--block--inner--wrap .image {
    width: 31.6%;
    box-shadow: 14px 14px 9px rgba(0, 0, 0, 0.2); }
  .top article .container--block--inner--wrap:nth-of-type(odd):before {
    background-color: #e8f6fa; }
  .top article .container--block--inner--wrap:nth-of-type(odd) .container--block--inner--wrap--texts h3 {
    color: #45c451;
    border-bottom: 1px solid #45c451; }
  .top article .container--block--inner--wrap:nth-of-type(odd) .container--block--inner--wrap--texts dl {
    color: #45c451;
    border-bottom: 1px solid #45c451; }
    .top article .container--block--inner--wrap:nth-of-type(odd) .container--block--inner--wrap--texts dl dd .price {
      color: #45c451; }
  .top article .container--block--inner--wrap:nth-of-type(odd) .container--block--inner--wrap--category--col p span {
    color: #45c451; }
.top article .container--block--inner--center-wrap {
  width: 91.7%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative; }
  .top article .container--block--inner--center-wrap:before {
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: -1; }
.top article .container--block:nth-of-type(odd) .container--block--title {
  flex-direction: row; }
  .top article .container--block:nth-of-type(odd) .container--block--title dl {
    flex-direction: row-reverse; }
.top article .container--block:nth-of-type(even) .container--block--title {
  flex-direction: row-reverse; }
  .top article .container--block:nth-of-type(even) .container--block--title dl {
    flex-direction: row; }
.top article .container #block01 .container--block--inner--wrap:nth-of-type(n+2),
.top article .container #block02 .container--block--inner--wrap:nth-of-type(n+2) {
  margin-top: 55px; }
.top article .container #block01 .container--block--inner--wrap--category,
.top article .container #block02 .container--block--inner--wrap--category {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  .top article .container #block01 .container--block--inner--wrap--category--col,
  .top article .container #block02 .container--block--inner--wrap--category--col {
    min-width: 25%;
    background-color: #fff;
    border-radius: 2.0rem;
    padding: 15px 2.5% 10px;
    margin: 30px 1% 35px;
    box-shadow: 14px 14px 9px rgba(0, 0, 0, 0.2); }
    .top article .container #block01 .container--block--inner--wrap--category--col .icon,
    .top article .container #block02 .container--block--inner--wrap--category--col .icon {
      max-width: 58px;
      margin: 0 auto; }
    .top article .container #block01 .container--block--inner--wrap--category--col p,
    .top article .container #block02 .container--block--inner--wrap--category--col p {
      font-size: 1.6rem;
      font-weight: bold;
      line-height: 1.4;
      text-align: center;
      margin-top: .5em; }
      .top article .container #block01 .container--block--inner--wrap--category--col p span,
      .top article .container #block02 .container--block--inner--wrap--category--col p span {
        font-size: 2.4rem;
        color: #45c451; }
      .top article .container #block01 .container--block--inner--wrap--category--col p em,
      .top article .container #block02 .container--block--inner--wrap--category--col p em {
        font-size: 1.3rem;
        font-weight: bold; }
  .top article .container #block01 .container--block--inner--wrap--category .comment,
  .top article .container #block02 .container--block--inner--wrap--category .comment {
    width: 85%;
    text-align: right !important; }
.top article .container #block01 .container--block--inner--wrap:nth-of-type(odd),
.top article .container #block02 .container--block--inner--wrap:nth-of-type(odd) {
  flex-direction: row; }
  .top article .container #block01 .container--block--inner--wrap:nth-of-type(odd):before,
  .top article .container #block02 .container--block--inner--wrap:nth-of-type(odd):before {
    right: -8.3%;
    background-color: #ecf9ed; }
  .top article .container #block01 .container--block--inner--wrap:nth-of-type(odd) .container--block--inner--wrap--texts h4,
  .top article .container #block02 .container--block--inner--wrap:nth-of-type(odd) .container--block--inner--wrap--texts h4 {
    color: #45c451; }
  .top article .container #block01 .container--block--inner--wrap:nth-of-type(odd) .container--block--inner--wrap--category--col p span,
  .top article .container #block02 .container--block--inner--wrap:nth-of-type(odd) .container--block--inner--wrap--category--col p span {
    color: #45c451; }
.top article .container #block01 .container--block--inner--wrap:nth-of-type(even),
.top article .container #block02 .container--block--inner--wrap:nth-of-type(even) {
  flex-direction: row-reverse; }
  .top article .container #block01 .container--block--inner--wrap:nth-of-type(even):before,
  .top article .container #block02 .container--block--inner--wrap:nth-of-type(even):before {
    left: -8.3%;
    background-color: #ecf9ed; }
  .top article .container #block01 .container--block--inner--wrap:nth-of-type(even) .container--block--inner--wrap--texts h4,
  .top article .container #block02 .container--block--inner--wrap:nth-of-type(even) .container--block--inner--wrap--texts h4 {
    color: #45c451; }
  .top article .container #block01 .container--block--inner--wrap:nth-of-type(even) .container--block--inner--wrap--category--col p span,
  .top article .container #block02 .container--block--inner--wrap:nth-of-type(even) .container--block--inner--wrap--category--col p span {
    color: #45c451; }
.top article .container #block01 .container--block--inner--center-wrap,
.top article .container #block02 .container--block--inner--center-wrap {
  margin-top: 0;
  padding: 50px 4.4% 45px 0; }
  .top article .container #block01 .container--block--inner--center-wrap:before,
  .top article .container #block02 .container--block--inner--center-wrap:before {
    height: 100%;
    background-color: #efefef;
    top: 0;
    left: -8.3%; }
  .top article .container #block01 .container--block--inner--center-wrap--category,
  .top article .container #block02 .container--block--inner--center-wrap--category {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-color: #fff;
    padding: 25px;
    border-radius: 2.0rem; }
    .top article .container #block01 .container--block--inner--center-wrap--category--texts,
    .top article .container #block02 .container--block--inner--center-wrap--category--texts {
      width: 70%;
      position: relative; }
      .top article .container #block01 .container--block--inner--center-wrap--category--texts .icon,
      .top article .container #block02 .container--block--inner--center-wrap--category--texts .icon {
        max-width: 58px;
        position: absolute;
        top: -35px;
        left: -58px; }
      .top article .container #block01 .container--block--inner--center-wrap--category--texts h3,
      .top article .container #block02 .container--block--inner--center-wrap--category--texts h3 {
        font-size: 2.4rem;
        font-weight: bold;
        letter-spacing: .05em;
        color: #45c451;
        padding-left: 1.5em; }
      .top article .container #block01 .container--block--inner--center-wrap--category--texts p,
      .top article .container #block02 .container--block--inner--center-wrap--category--texts p {
        font-size: 1.6rem;
        line-height: 1.6;
        letter-spacing: .05em;
        text-align: justify;
        margin-top: .5em; }
        .top article .container #block01 .container--block--inner--center-wrap--category--texts p em,
        .top article .container #block02 .container--block--inner--center-wrap--category--texts p em {
          display: block;
          font-size: 1.6rem;
          font-weight: bold;
          margin-bottom: .5em; }
        .top article .container #block01 .container--block--inner--center-wrap--category--texts p.comment,
        .top article .container #block02 .container--block--inner--center-wrap--category--texts p.comment {
          display: block;
          font-size: 1.2rem;
          margin-top: 1.2em !important; }
    .top article .container #block01 .container--block--inner--center-wrap--category .image,
    .top article .container #block02 .container--block--inner--center-wrap--category .image {
      width: 50%;
      margin-top: 10px; }
.top article .container #block01 .container--block--inner--wrap {
  padding: 0;
  flex-direction: row-reverse !important; }
  .top article .container #block01 .container--block--inner--wrap:before {
    height: 90%; }
  .top article .container #block01 .container--block--inner--wrap--texts h4 {
    color: #333 !important; }
.top article .container #block01 .container--block--inner--support {
  max-width: 1100px;
  margin: -100px auto 0;
  position: relative;
  z-index: -1;
  padding: 90px 0 75px; }
  .top article .container #block01 .container--block--inner--support:before {
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: #efefef;
    top: 0;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: -1; }
  .top article .container #block01 .container--block--inner--support--category {
    margin-top: 2.5em;
    box-shadow: 14px 14px 9px rgba(0, 0, 0, 0.2); }
    .top article .container #block01 .container--block--inner--support--category h3 {
      height: 70px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      line-height: 1.0;
      color: #fff;
      background-color: #45c451;
      font-weight: bold;
      font-size: 2.9rem; }
    .top article .container #block01 .container--block--inner--support--category--wrap {
      background-color: #fff;
      padding: 32px 3.2% 28px;
      display: flex;
      justify-content: space-between; }
      .top article .container #block01 .container--block--inner--support--category--wrap li {
        position: relative;
        width: 17.3%;
        text-align: center;
        border: 2px solid #45c451;
        border-radius: 1em;
        line-height: 1.2;
        font-weight: bold;
        font-size: 1.78rem;
        padding: .8em 0; }
        .top article .container #block01 .container--block--inner--support--category--wrap li h4 {
          font-family: "Oswald", sans-serif;
          color: #45c451; }
        .top article .container #block01 .container--block--inner--support--category--wrap li p {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 2.5em;
          margin-top: .5em; }
        .top article .container #block01 .container--block--inner--support--category--wrap li:after {
          content: '';
          display: block;
          position: absolute;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 11px 0 11px 14px;
          border-color: transparent transparent transparent #45c451;
          top: 50%;
          transform: translateY(-50%);
          right: -28px;
          z-index: 2; }
        .top article .container #block01 .container--block--inner--support--category--wrap li:last-child::after {
          display: none; }
    .top article .container #block01 .container--block--inner--support--category:nth-of-type(n+2) {
      margin-top: 5em; }
    .top article .container #block01 .container--block--inner--support--category:nth-of-type(even) h3 {
      background-color: #0faaf4; }
    .top article .container #block01 .container--block--inner--support--category:nth-of-type(2) .container--block--inner--support--category--wrap {
      display: inherit; }
      .top article .container #block01 .container--block--inner--support--category:nth-of-type(2) .container--block--inner--support--category--wrap p {
        width: 100%;
        font-size: 2.5rem;
        font-weight: bold; }
        .top article .container #block01 .container--block--inner--support--category:nth-of-type(2) .container--block--inner--support--category--wrap p span {
          color: #0faaf4; }
.top article .container #block02 .container--block--inner--wrap:before {
  height: 115%;
  background-color: #ecf9ed; }
.top article .container #block02 .container--block--inner--wrap:nth-of-type(n+2) {
  margin-top: 90px; }
.top article .container #block02 .container--block--inner--wrap--texts h3, .top article .container #block02 .container--block--inner--wrap--texts h4 {
  color: #45c451; }
.top article .container #block02 .container--block--inner--wrap--texts h3 {
  border-bottom-color: #45c451; }
.top article .container #block02 .container--block--inner--wrap--texts h3 {
  display: flex;
  align-items: center;
  letter-spacing: 0; }
  .top article .container #block02 .container--block--inner--wrap--texts h3 span {
    margin-right: .5em; }
  .top article .container #block02 .container--block--inner--wrap--texts h3 .icon {
    width: 58px; }
.top article .container #block02 .container--block--inner--center-wrap--category--texts h3 {
  color: #45c451; }
.top article .container #block02 .container--block--inner--center-wrap--category .image {
  padding: 0 1.5%; }
  .top article .container #block02 .container--block--inner--center-wrap--category .image:last-of-type {
    border-left: 1px solid #b3b5b7; }
.top article .container #block06 {
  position: relative;
  z-index: 1;
  padding-bottom: 80px; }
  .top article .container #block06:before {
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    height: 98.8%;
    background-color: #efefef;
    top: 3.5em;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: -1; }
  .top article .container #block06 .container--block--title {
    display: block; }
    .top article .container #block06 .container--block--title dl {
      flex-direction: row;
      flex-wrap: nowrap; }
      .top article .container #block06 .container--block--title dl dt {
        font-size: 10.0rem;
        color: #0faaf4; }
      .top article .container #block06 .container--block--title dl dd {
        margin-top: 1.5em; }
    .top article .container #block06 .container--block--title h3 {
      color: #0faaf4;
      margin-top: .8em; }
  .top article .container #block06 .container--block--inner {
    margin-top: 30px; }
    .top article .container #block06 .container--block--inner--wrap {
      width: 100%;
      align-items: stretch;
      font-size: 1.6rem;
      font-weight: bold;
      background-color: #fff;
      padding: 2em 2em 4em !important; }
      .top article .container #block06 .container--block--inner--wrap:before {
        display: none;
        height: 114%;
        background-color: #efefef; }
      .top article .container #block06 .container--block--inner--wrap--category {
        width: 48.5%;
        display: flex;
        justify-content: space-between;
        margin-top: 1.5em; }
        .top article .container #block06 .container--block--inner--wrap--category .icon {
          display: flex;
          align-items: center;
          width: 9.4%; }
        .top article .container #block06 .container--block--inner--wrap--category .txt {
          width: 85%;
          border: 2px solid;
          border-color: #0faaf4;
          padding: .5em 1em;
          margin-left: 1em;
          display: flex;
          align-items: center;
          position: relative; }
          .top article .container #block06 .container--block--inner--wrap--category .txt:before {
            content: '';
            display: block;
            position: absolute;
            width: 1.2em;
            height: 1.5em;
            background-color: #0faaf4;
            clip-path: polygon(0 50%, 100% 100%, 100% 0);
            top: 50%;
            left: -1.2em;
            transform: translateY(-50%); }
          .top article .container #block06 .container--block--inner--wrap--category .txt p {
            line-height: 1.4; }
            .top article .container #block06 .container--block--inner--wrap--category .txt p span {
              font-size: 2.0rem;
              color: #0faaf4; }
.top article .container #block04 .container--block--title {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center; }
  .top article .container #block04 .container--block--title p {
    color: #45c451;
    z-index: 2; }
.top article .container #block04 .container--block--inner {
  position: relative;
  padding: 90px 0 75px;
  margin-top: -40px; }
  .top article .container #block04 .container--block--inner:before {
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: #efefef;
    top: 0;
    left: 0;
    z-index: -1; }
  .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item {
    background-color: #fff;
    margin-top: 28px; }
    .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item:first-of-type {
      margin-top: 0; }
    .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item dl {
      display: flex;
      font-weight: bold; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item dl dt,
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item dl dd {
        display: flex;
        align-items: center;
        line-height: 1.6; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item dl dt {
        width: 5.5%;
        font-size: 3.8rem;
        font-family: "Oswald", sans-serif;
        font-weight: 300;
        justify-content: center;
        padding: 0 .2em; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item dl dd {
        width: 94.5%;
        padding: .5em 13.4% .5em 1em; }
        .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item dl dd a {
          color: #0755a3;
          text-decoration: underline; }
    .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .title {
      position: relative;
      cursor: pointer; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .title:after {
        content: '';
        display: block;
        position: absolute;
        width: 35px;
        height: 35px;
        background: url("../images/common/btn_item-more.png") no-repeat center center/contain;
        top: 50%;
        right: 2.5%;
        transform: translateY(-50%); }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .title.close:after {
        background: url("../images/common/btn_item-close.png") no-repeat center center/contain; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .title dt {
        color: #fff;
        background-color: #45c451; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .title dd {
        font-size: 1.8rem; }
    .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .more {
      display: none;
      border-top: 1px solid #45c451; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .more dl {
        align-items: flex-start;
        margin-top: 28px; }
        .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .more dl dt {
          color: #45c451;
          line-height: 1; }
        .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .more dl dd {
          font-size: 1.6rem;
          letter-spacing: .05em;
          text-align: justify;
          padding-top: 0;
          padding-bottom: 1.5em; }
.top article .information {
  margin-top: 55px; }
  .top article .information--inner {
    width: 91.7%;
    max-width: 1100px;
    margin: 0 auto; }
    .top article .information--inner--banner {
      padding: 25px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap; }
      .top article .information--inner--banner--texts {
        width: 60%; }
        .top article .information--inner--banner--texts dl {
          display: flex;
          align-items: center; }
          .top article .information--inner--banner--texts dl dt {
            max-width: 41px; }
          .top article .information--inner--banner--texts dl dd {
            font-size: 3.4rem;
            font-weight: bold;
            line-height: 1.5;
            letter-spacing: .05em;
            padding-left: .5em; }
        .top article .information--inner--banner--texts h3 {
          font-size: 2.4rem;
          font-weight: bold;
          line-height: 1.2;
          letter-spacing: .05em;
          margin-top: .5em; }
        .top article .information--inner--banner--texts .comment {
          font-size: 1.4rem;
          letter-spacing: -.02em;
          margin-top: 1.5em; }
      .top article .information--inner--banner .btn {
        width: 75.8%;
        margin-top: 17px;
        box-shadow: 14px 14px 9px rgba(0, 0, 0, 0.2); }
        .top article .information--inner--banner .btn p {
          display: block;
          width: 100%;
          height: 100%;
          font-size: 2.4rem;
          font-weight: bold;
          line-height: 1;
          letter-spacing: .05em;
          text-align: center;
          color: #fff;
          padding: .8em; }
      .top article .information--inner--banner .image {
        width: 39.9%; }
      .top article .information--inner--banner:nth-of-type(n+2) {
        margin-top: 50px; }
      .top article .information--inner--banner.banner01 {
        background-color: #e8f6fa;
        border: 10px solid #0faaf4; }
        .top article .information--inner--banner.banner01 .information--inner--banner--texts {
          width: 58%; }
        .top article .information--inner--banner.banner01 .btn {
          width: 40%;
          background: #0faaf4; }
      .top article .information--inner--banner.banner02 {
        background-color: #ecf9ed;
        border: 10px solid #45c451; }
        .top article .information--inner--banner.banner02 .information--inner--banner--texts {
          width: 58%; }
        .top article .information--inner--banner.banner02 .btn {
          width: 40%;
          background: #45c451; }
.top article .contact--inner {
  background-color: #EFEFEF;
  padding-bottom: 85px;
  margin-top: 90px; }
  .top article .contact--inner--title dt {
    font-size: 10rem;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -.1em; }
  .top article .contact--inner--title dd {
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: .05em;
    text-align: center;
    margin-top: -.3em; }
  .top article .contact--inner--wrap {
    width: 91.7%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
    .top article .contact--inner--wrap--category {
      width: 39.3%;
      margin: 22px 3.8% 0;
      box-shadow: 14px 14px 9px rgba(0, 0, 0, 0.2); }
      .top article .contact--inner--wrap--category a {
        display: flex;
        background-color: #fff; }
        .top article .contact--inner--wrap--category a .icon {
          width: 16.4%;
          background-color: #0faaf4;
          padding: 4.6%; }
        .top article .contact--inner--wrap--category a .texts {
          width: 83.6%;
          display: flex;
          justify-content: center;
          align-items: center;
          align-content: center;
          flex-wrap: wrap; }
          .top article .contact--inner--wrap--category a .texts p {
            font-weight: bold;
            line-height: 1;
            letter-spacing: .05em;
            text-align: center; }
            .top article .contact--inner--wrap--category a .texts p em {
              font-weight: bold; }
            .top article .contact--inner--wrap--category a .texts p.tel {
              font-size: 2.4rem; }
              .top article .contact--inner--wrap--category a .texts p.tel em {
                font-size: 1.3rem; }
            .top article .contact--inner--wrap--category a .texts p.comment {
              width: 100%;
              font-size: 1.6rem;
              letter-spacing: 0;
              color: #0faaf4;
              margin-top: .5em; }
              .top article .contact--inner--wrap--category a .texts p.comment em {
                font-size: 1.4rem; }
            .top article .contact--inner--wrap--category a .texts p.mail {
              font-size: 2.4rem;
              padding-right: 1.5em;
              position: relative; }
              .top article .contact--inner--wrap--category a .texts p.mail:after {
                content: '';
                display: block;
                position: absolute;
                width: 26px;
                height: 26px;
                background: url("../images/common/btn_more.png") no-repeat center center/contain;
                top: 50%;
                right: -1%;
                transform: translateY(-50%);
                transition: all .3s ease; }
        .top article .contact--inner--wrap--category a:hover .texts p.mail:after {
          right: -3%; }

@media screen and (max-width: 1024px) {
  .top article .main--inner .visual {
    height: 66.1vw;
    max-height: inherit; }
  .top article .main--inner--wrap {
    width: 91.7%;
    min-width: inherit; }
    .top article .main--inner--wrap .txt {
      font-size: 2vw; }
    .top article .main--inner--wrap .title dt h1 {
      font-size: 4.2vw; }
      .top article .main--inner--wrap .title dt h1 span.sub em {
        font-size: 1.3vw; }
    .top article .main--inner--wrap .title dd {
      font-size: 2vw; }
      .top article .main--inner--wrap .title dd span {
        box-shadow: 1vw 1vw 1.4vw rgba(0, 0, 0, 0.3); }
    .top article .main--inner--wrap--links {
      min-width: inherit; }
      .top article .main--inner--wrap--links li {
        width: 14.8vw;
        height: 14.8vw;
        box-shadow: 1vw 1vw 1.4vw rgba(0, 0, 0, 0.3); }
        .top article .main--inner--wrap--links li a {
          font-size: 2vw; }
          .top article .main--inner--wrap--links li a:after {
            width: 2.1vw;
            height: .6vw;
            bottom: 2.5vw; }
  .top article .lead--inner {
    max-width: inherit; }
    .top article .lead--inner--main--texts {
      margin-top: 6.7vw; }
      .top article .lead--inner--main--texts:before, .top article .lead--inner--main--texts:after {
        border-width: 2.3vw 2vw 0 0; }
      .top article .lead--inner--main--texts:before {
        bottom: -2.3vw; }
      .top article .lead--inner--main--texts:after {
        bottom: -1.2vw; }
      .top article .lead--inner--main--texts h2 {
        font-size: 2.8vw; }
    .top article .lead--inner--main .image {
      margin-top: 4.6vw; }
      .top article .lead--inner--main .image p {
        font-size: 1.6vw; }
    .top article .lead--inner--wrap {
      margin-top: -3.3vw; }
      .top article .lead--inner--wrap--ttl {
        font-size: 1.8vw; }
      .top article .lead--inner--wrap--category {
        padding: 1.3vw 0;
        margin: 0 1.5% 1.8vw 0;
        box-shadow: 1vw 1vw 1.4vw rgba(0, 0, 0, 0.3); }
        .top article .lead--inner--wrap--category .icon {
          max-width: 4.8vw; }
        .top article .lead--inner--wrap--category h3 {
          font-size: 1.3vw; }
        .top article .lead--inner--wrap--category p {
          font-size: 1.2vw; }
  .top article .strength--block--title {
    max-width: inherit;
    margin: 4.1vw auto 0; }
    .top article .strength--block--title dl {
      margin-top: 1.6vw; }
      .top article .strength--block--title dl dt {
        font-size: 8.2vw; }
      .top article .strength--block--title dl dd {
        margin-right: 1.6vw; }
        .top article .strength--block--title dl dd h2 {
          font-size: 1.8vw; }
        .top article .strength--block--title dl dd .icon {
          max-width: 3vw; }
    .top article .strength--block--title h3 {
      font-size: 2.5vw; }
  .top article .strength--block--inner {
    padding-bottom: 5.5vw; }
    .top article .strength--block--inner:before {
      height: 87.5%; }
    .top article .strength--block--inner--wrap {
      max-width: inherit;
      padding: 5.3vw 5%;
      box-shadow: 1vw 1vw 1.4vw rgba(0, 0, 0, 0.3); }
      .top article .strength--block--inner--wrap--category--col dl dt {
        font-size: 1.3vw; }
      .top article .strength--block--inner--wrap--category--col dl dd {
        font-size: 1.8vw; }
  .top article .container--block--title {
    max-width: inherit;
    margin: 4.2vw auto 0; }
    .top article .container--block--title p {
      font-size: 8.3vw; }
    .top article .container--block--title dl {
      margin-top: 1.7vw; }
      .top article .container--block--title dl dt {
        font-size: 12.5vw; }
      .top article .container--block--title dl dd {
        margin-right: 1.7vw; }
        .top article .container--block--title dl dd h2 {
          font-size: 2.8vw; }
        .top article .container--block--title dl dd .icon {
          max-width: 3.6vw; }
    .top article .container--block--title .comment {
      font-size: 1.1vw; }
    .top article .container--block--title h3 {
      font-size: 2.5vw; }
  .top article .container--block--inner--wrap {
    max-width: inherit;
    padding: 0 0 4.6vw; }
    .top article .container--block--inner--wrap:before {
      top: -3.8vw; }
    .top article .container--block--inner--wrap--texts h3 {
      font-size: 2.4vw; }
      .top article .container--block--inner--wrap--texts h3 .vertical {
        font-size: 1.3vw; }
    .top article .container--block--inner--wrap--texts h4 {
      font-size: 1.7vw; }
    .top article .container--block--inner--wrap--texts dl {
      font-size: 2.4vw; }
      .top article .container--block--inner--wrap--texts dl dt h3 {
        font-size: 2.4vw; }
        .top article .container--block--inner--wrap--texts dl dt h3 em {
          font-size: 1.7vw; }
      .top article .container--block--inner--wrap--texts dl dd {
        font-size: 1.6vw; }
        .top article .container--block--inner--wrap--texts dl dd .price {
          font-size: 3.9vw; }
        .top article .container--block--inner--wrap--texts dl dd em {
          font-size: 1.3vw; }
    .top article .container--block--inner--wrap--texts p {
      font-size: 1.3vw; }
      .top article .container--block--inner--wrap--texts p.comment {
        font-size: 1vw; }
      .top article .container--block--inner--wrap--texts p .vertical {
        font-size: 1vw; }
    .top article .container--block--inner--wrap--texts ul {
      font-size: 1.3vw; }
    .top article .container--block--inner--wrap .image {
      box-shadow: 1vw 1vw 1.4vw rgba(0, 0, 0, 0.3); }
  .top article .container--block--inner--center-wrap {
    max-width: inherit; }
  .top article .container #block01 .container--block--inner--wrap:nth-of-type(n+2),
  .top article .container #block02 .container--block--inner--wrap:nth-of-type(n+2) {
    margin-top: 4.5vw; }
  .top article .container #block01 .container--block--inner--wrap--category--col,
  .top article .container #block02 .container--block--inner--wrap--category--col {
    padding: 1.2vw 2.5% .8vw;
    margin: 2.5vw 1% 2.9vw;
    box-shadow: 1vw 1vw 1.4vw rgba(0, 0, 0, 0.3); }
    .top article .container #block01 .container--block--inner--wrap--category--col .icon,
    .top article .container #block02 .container--block--inner--wrap--category--col .icon {
      max-width: 4.8vw; }
    .top article .container #block01 .container--block--inner--wrap--category--col p,
    .top article .container #block02 .container--block--inner--wrap--category--col p {
      font-size: 1.3vw; }
      .top article .container #block01 .container--block--inner--wrap--category--col p span,
      .top article .container #block02 .container--block--inner--wrap--category--col p span {
        font-size: 2vw; }
      .top article .container #block01 .container--block--inner--wrap--category--col p em,
      .top article .container #block02 .container--block--inner--wrap--category--col p em {
        font-size: 1.1vw; }
  .top article .container #block01 .container--block--inner--center-wrap,
  .top article .container #block02 .container--block--inner--center-wrap {
    margin-top: 0;
    padding: 4.2vw 4.4% 3.7vw 0; }
    .top article .container #block01 .container--block--inner--center-wrap--category,
    .top article .container #block02 .container--block--inner--center-wrap--category {
      padding: 2vw; }
      .top article .container #block01 .container--block--inner--center-wrap--category--texts .icon,
      .top article .container #block02 .container--block--inner--center-wrap--category--texts .icon {
        max-width: 4.8vw;
        top: -2.9vw;
        left: -4.8vw; }
      .top article .container #block01 .container--block--inner--center-wrap--category--texts h3,
      .top article .container #block02 .container--block--inner--center-wrap--category--texts h3 {
        font-size: 2vw; }
      .top article .container #block01 .container--block--inner--center-wrap--category--texts p,
      .top article .container #block02 .container--block--inner--center-wrap--category--texts p {
        font-size: 1.3vw; }
        .top article .container #block01 .container--block--inner--center-wrap--category--texts p em,
        .top article .container #block02 .container--block--inner--center-wrap--category--texts p em {
          font-size: 1.3vw; }
        .top article .container #block01 .container--block--inner--center-wrap--category--texts p.comment,
        .top article .container #block02 .container--block--inner--center-wrap--category--texts p.comment {
          font-size: 1vw; }
      .top article .container #block01 .container--block--inner--center-wrap--category .image,
      .top article .container #block02 .container--block--inner--center-wrap--category .image {
        margin-top: .8vw; }
  .top article .container #block01 .container--block--inner--center-wrap {
    margin-top: -8.2vw;
    padding: 12.3vw 4.4% 3.7vw 0; }
  .top article .container #block01 .container--block--inner--support {
    width: 91.7%;
    margin: -100px auto 0; }
    .top article .container #block01 .container--block--inner--support:before {
      left: -4.2vw; }
    .top article .container #block01 .container--block--inner--support--category {
      margin-top: 2.5em;
      box-shadow: 14px 14px 9px rgba(0, 0, 0, 0.2); }
      .top article .container #block01 .container--block--inner--support--category h3 {
        font-size: 2.5vw; }
      .top article .container #block01 .container--block--inner--support--category--wrap li {
        width: 16.8%;
        font-size: 1.4vw; }
      .top article .container #block01 .container--block--inner--support--category:nth-of-type(2) .container--block--inner--support--category--wrap p {
        font-size: 2.0vw; }
  .top article .container #block02 .container--block--inner--wrap:nth-of-type(n+2) {
    margin-top: 7.4vw; }
  .top article .container #block02 .container--block--inner--wrap--texts h3 .icon {
    width: 4.8vw; }
  .top article .container #block06 {
    padding-bottom: 6.6vw; }
    .top article .container #block06:before {
      top: 3.7vw; }
    .top article .container #block06 .container--block--title dl dt {
      font-size: 8.2vw; }
    .top article .container #block06 .container--block--inner {
      margin-top: 2.5vw; }
      .top article .container #block06 .container--block--inner--wrap {
        font-size: 1.3vw; }
        .top article .container #block06 .container--block--inner--wrap--category .txt p span {
          font-size: 1.6vw; }
  .top article .container #block04 .container--block--inner {
    padding: 7.4vw 0 6.2vw;
    margin-top: -3.3vw; }
    .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item {
      margin-top: 2.3vw; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item dl dt {
        font-size: 3.1vw; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .title:after {
        width: 2.9vw;
        height: 2.9vw; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .title dd {
        font-size: 1.5vw; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .more dl {
        margin-top: 2.3vw; }
        .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .more dl dd {
          font-size: 1.3vw; }
  .top article .information {
    margin-top: 4.6vw; }
    .top article .information--inner {
      max-width: inherit; }
      .top article .information--inner--banner {
        padding: 4.2vw; }
        .top article .information--inner--banner--texts {
          width: 60%; }
          .top article .information--inner--banner--texts dl dt {
            max-width: 3.4vw; }
          .top article .information--inner--banner--texts dl dd {
            font-size: 2.8vw; }
          .top article .information--inner--banner--texts h3 {
            font-size: 2vw; }
          .top article .information--inner--banner--texts .comment {
            font-size: 1.2vw; }
        .top article .information--inner--banner .btn {
          margin-top: 1.4vw;
          box-shadow: 1vw 1vw 1.4vw rgba(0, 0, 0, 0.3); }
          .top article .information--inner--banner .btn p {
            font-size: 2vw; }
        .top article .information--inner--banner .image {
          width: 39.9%; }
        .top article .information--inner--banner:nth-of-type(n+2) {
          margin-top: 4.2vw; }
  .top article .contact--inner {
    padding-bottom: 7.1vw;
    margin-top: 7.5vw; }
    .top article .contact--inner--title dt {
      font-size: 8.3vw; }
    .top article .contact--inner--title dd {
      font-size: 2.8vw; }
    .top article .contact--inner--wrap {
      max-width: inherit; }
      .top article .contact--inner--wrap--category {
        margin: 1.8vw 3.8% 0;
        box-shadow: 1vw 1vw 1.4vw rgba(0, 0, 0, 0.3); }
        .top article .contact--inner--wrap--category a .icon {
          padding: 4.6%; }
        .top article .contact--inner--wrap--category a .texts p.tel {
          font-size: 2vw; }
          .top article .contact--inner--wrap--category a .texts p.tel em {
            font-size: 1.1vw; }
        .top article .contact--inner--wrap--category a .texts p.comment {
          font-size: 1.3vw; }
          .top article .contact--inner--wrap--category a .texts p.comment em {
            font-size: 1.1vw; }
        .top article .contact--inner--wrap--category a .texts p.mail {
          font-size: 2vw; }
          .top article .contact--inner--wrap--category a .texts p.mail:after {
            width: 2.1vw;
            height: 2.1vw; } }
@media screen and (max-width: 767px) {
  .top article .main--inner--wrap {
    position: relative;
    top: inherit;
    left: inherit;
    transform: none;
    margin: -32vw auto 0; }
    .top article .main--inner--wrap .txt {
      font-size: 4.2vw;
      line-height: 1.2; }
      .top article .main--inner--wrap .txt:before {
        width: 16vw;
        left: -17.8vw; }
    .top article .main--inner--wrap .title dt h1 {
      font-size: 7.2vw; }
      .top article .main--inner--wrap .title dt h1 span {
        width: 100%;
        display: inline-flex; }
        .top article .main--inner--wrap .title dt h1 span:nth-of-type(2):after {
          width: 12vw;
          height: 9.8vw;
          right: -13.4vw; }
        .top article .main--inner--wrap .title dt h1 span.sub {
          margin: 0;
          border-left: none;
          border-top: 1px solid #fff; }
          .top article .main--inner--wrap .title dt h1 span.sub em {
            font-size: 4vw; }
    .top article .main--inner--wrap .title dd {
      font-size: 4.2vw; }
    .top article .main--inner--wrap--links {
      margin-top: -10vw; }
      .top article .main--inner--wrap--links li {
        width: 26.5vw;
        height: 26.5vw;
        margin: 6.3vw 0 0 4.1vw;
        box-shadow: 2vw 2vw 2.8vw rgba(0, 0, 0, 0.3); }
        .top article .main--inner--wrap--links li a {
          font-size: 3.4vw; }
          .top article .main--inner--wrap--links li a:after {
            width: 4.1vw;
            height: 2.4vw;
            bottom: 4.1vw; }
  .top article .lead--inner {
    width: 90vw;
    padding-left: 0; }
    .top article .lead--inner--main--texts {
      width: 100%;
      margin-top: 9.2vw; }
      .top article .lead--inner--main--texts:before {
        border-width: 3.8vw 3.8vw 0 0;
        bottom: -3.8vw;
        right: 21vw; }
      .top article .lead--inner--main--texts:after {
        border-width: 3.8vw 3.8vw 0 0;
        bottom: -1.7vw;
        right: 20.2vw; }
      .top article .lead--inner--main--texts h2 {
        font-size: 5.8vw;
        padding-left: 1em; }
    .top article .lead--inner--main .image {
      width: 100%;
      margin-top: 9.2vw; }
      .top article .lead--inner--main .image p {
        font-size: 4vw; }
    .top article .lead--inner--wrap {
      margin-top: -10vw; }
      .top article .lead--inner--wrap--ttl {
        width: 90%;
        font-size: 3.4vw;
        margin: 0 auto 1em; }
      .top article .lead--inner--wrap--category {
        width: 90%;
        padding: 3.2vw;
        margin: 0 auto 11.2vw; }
        .top article .lead--inner--wrap--category .icon {
          max-width: 16.2vw; }
        .top article .lead--inner--wrap--category h3 {
          font-size: 4.5vw; }
        .top article .lead--inner--wrap--category p {
          font-size: 3.2vw; }
  .top article .strength--block--title {
    margin: 11.8vw auto 0; }
    .top article .strength--block--title dl {
      margin-top: 3.3vw;
      display: block; }
      .top article .strength--block--title dl dt {
        font-size: 16.4vw; }
      .top article .strength--block--title dl dd {
        margin-top: .5em;
        margin-right: 3.3vw; }
        .top article .strength--block--title dl dd h2 {
          font-size: 5.6vw;
          margin-top: .5em; }
        .top article .strength--block--title dl dd .icon {
          max-width: 7.2vw; }
    .top article .strength--block--title h3 {
      font-size: 5vw; }
  .top article .strength--block--inner {
    padding-bottom: 11vw; }
    .top article .strength--block--inner--wrap {
      padding: 10.6vw 5%; }
      .top article .strength--block--inner--wrap--category--col {
        width: 90%;
        margin: 0 auto; }
        .top article .strength--block--inner--wrap--category--col:nth-of-type(n+2) {
          margin-top: 5vw; }
        .top article .strength--block--inner--wrap--category--col dl dt {
          font-size: 5vw; }
        .top article .strength--block--inner--wrap--category--col dl dd {
          font-size: 4.5vw; }
  .top article .strength--block:nth-of-type(odd) .container--block--title {
    flex-direction: row; }
  .top article .strength--block:nth-of-type(even) .container--block--title dl {
    flex-direction: row; }
  .top article .container--block--title {
    width: 85vw;
    margin: 11.8vw auto 0;
    position: relative;
    flex-direction: row !important;
    flex-wrap: wrap; }
    .top article .container--block--title p {
      font-size: 12.3vw;
      position: absolute;
      top: 0;
      left: 23vw; }
    .top article .container--block--title dl {
      flex-direction: row !important;
      align-items: flex-end;
      margin-top: 3.5vw; }
      .top article .container--block--title dl dt {
        font-size: 22.1vw; }
      .top article .container--block--title dl dd {
        margin-right: 3.5vw; }
        .top article .container--block--title dl dd h2 {
          font-size: 5vw; }
        .top article .container--block--title dl dd .icon {
          max-width: 7.2vw; }
    .top article .container--block--title .comment {
      width: 100%;
      font-size: 3.2vw;
      text-align: justify;
      position: relative;
      z-index: 2; }
    .top article .container--block--title h3 {
      font-size: 5vw;
      line-height: 1.6; }
  .top article .container--block--inner--wrap {
    width: 90vw;
    padding: 0 !important;
    justify-content: center; }
    .top article .container--block--inner--wrap:before {
      top: -9vw !important; }
    .top article .container--block--inner--wrap--texts {
      width: 90%; }
      .top article .container--block--inner--wrap--texts h3 {
        font-size: 5.2vw;
        margin-top: 1em; }
        .top article .container--block--inner--wrap--texts h3 .vertical {
          font-size: 3.4vw;
          vertical-align: top; }
      .top article .container--block--inner--wrap--texts h4 {
        font-size: 4.5vw;
        margin-top: 1em; }
      .top article .container--block--inner--wrap--texts dl {
        flex-direction: column;
        font-size: 4.8vw; }
        .top article .container--block--inner--wrap--texts dl dt {
          width: 100%; }
          .top article .container--block--inner--wrap--texts dl dt h3 {
            font-size: 5.2vw;
            margin-top: 1em; }
            .top article .container--block--inner--wrap--texts dl dt h3 em {
              font-size: 4.5vw; }
        .top article .container--block--inner--wrap--texts dl dd {
          font-size: 3.7vw;
          margin: 0 0 0 auto; }
          .top article .container--block--inner--wrap--texts dl dd .price {
            font-size: 7.7vw; }
          .top article .container--block--inner--wrap--texts dl dd em {
            font-size: 3.4vw; }
      .top article .container--block--inner--wrap--texts p {
        font-size: 3.4vw;
        margin-top: 1em; }
        .top article .container--block--inner--wrap--texts p.comment {
          font-size: 3.2vw; }
        .top article .container--block--inner--wrap--texts p .vertical {
          font-size: 2.6vw;
          vertical-align: top; }
      .top article .container--block--inner--wrap--texts ul {
        font-size: 3.4vw; }
    .top article .container--block--inner--wrap .image {
      width: 90%;
      margin-top: 5vw; }
  .top article .container--block--inner--center-wrap {
    width: 91.7%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative; }
    .top article .container--block--inner--center-wrap:before {
      content: '';
      display: block;
      position: absolute;
      width: 100vw;
      left: 50% !important;
      transform: translateX(-50%);
      z-index: -1; }
  .top article .container #block01 .container--block--inner--wrap,
  .top article .container #block02 .container--block--inner--wrap {
    margin-bottom: 10vw; }
    .top article .container #block01 .container--block--inner--wrap:nth-of-type(n+2),
    .top article .container #block02 .container--block--inner--wrap:nth-of-type(n+2) {
      margin-top: 27vw; }
    .top article .container #block01 .container--block--inner--wrap--category,
    .top article .container #block02 .container--block--inner--wrap--category {
      justify-content: center;
      margin-top: -10vw; }
      .top article .container #block01 .container--block--inner--wrap--category--col,
      .top article .container #block02 .container--block--inner--wrap--category--col {
        width: 80vw;
        padding: 2.4vw;
        margin: 0 auto 5.6vw; }
        .top article .container #block01 .container--block--inner--wrap--category--col .icon,
        .top article .container #block02 .container--block--inner--wrap--category--col .icon {
          max-width: 19.3vw;
          margin: 0 auto; }
        .top article .container #block01 .container--block--inner--wrap--category--col p,
        .top article .container #block02 .container--block--inner--wrap--category--col p {
          font-size: 3.7vw; }
          .top article .container #block01 .container--block--inner--wrap--category--col p span,
          .top article .container #block02 .container--block--inner--wrap--category--col p span {
            font-size: 5vw; }
          .top article .container #block01 .container--block--inner--wrap--category--col p em,
          .top article .container #block02 .container--block--inner--wrap--category--col p em {
            font-size: 3.2vw; }
      .top article .container #block01 .container--block--inner--wrap--category .comment,
      .top article .container #block02 .container--block--inner--wrap--category .comment {
        width: 85%;
        text-align: right !important; }
  .top article .container #block01 .container--block--inner--center-wrap,
  .top article .container #block02 .container--block--inner--center-wrap {
    padding: 14vw 0 14vw 2.8% !important; }
    .top article .container #block01 .container--block--inner--center-wrap--category,
    .top article .container #block02 .container--block--inner--center-wrap--category {
      justify-content: center;
      padding: 5vw; }
      .top article .container #block01 .container--block--inner--center-wrap--category--texts,
      .top article .container #block02 .container--block--inner--center-wrap--category--texts {
        width: 100%;
        padding: 5vw;
        border-radius: 0; }
        .top article .container #block01 .container--block--inner--center-wrap--category--texts .icon,
        .top article .container #block02 .container--block--inner--center-wrap--category--texts .icon {
          max-width: 17.1vw;
          top: -3.6vw;
          left: -8.8vw; }
        .top article .container #block01 .container--block--inner--center-wrap--category--texts h3,
        .top article .container #block02 .container--block--inner--center-wrap--category--texts h3 {
          font-size: 4.2vw; }
        .top article .container #block01 .container--block--inner--center-wrap--category--texts p,
        .top article .container #block02 .container--block--inner--center-wrap--category--texts p {
          font-size: 3.4vw; }
          .top article .container #block01 .container--block--inner--center-wrap--category--texts p em,
          .top article .container #block02 .container--block--inner--center-wrap--category--texts p em {
            font-size: 3.7vw; }
          .top article .container #block01 .container--block--inner--center-wrap--category--texts p.comment,
          .top article .container #block02 .container--block--inner--center-wrap--category--texts p.comment {
            font-size: 3.2vw; }
      .top article .container #block01 .container--block--inner--center-wrap--category .image,
      .top article .container #block02 .container--block--inner--center-wrap--category .image {
        width: 100% !important;
        margin-top: 5vw; }
  .top article .container #block01 .container--block--inner--wrap:before {
    height: 110%; }
  .top article .container #block01 .container--block--inner--wrap:first-of-type:before {
    height: 115%;
    top: -22.5vw !important; }
  .top article .container #block01 .container--block--inner--support {
    z-index: 1;
    margin-top: -2.5em;
    padding: 2.5em 0 5em; }
    .top article .container #block01 .container--block--inner--support--category h3 {
      font-size: 4.5vw; }
    .top article .container #block01 .container--block--inner--support--category--wrap {
      display: block;
      padding: 7vw 15% 10vw; }
      .top article .container #block01 .container--block--inner--support--category--wrap li {
        max-width: 100%;
        width: 100%;
        font-size: 4vw; }
        .top article .container #block01 .container--block--inner--support--category--wrap li:after {
          right: auto;
          top: auto;
          bottom: -8vw;
          left: 50%;
          transform: translateX(-50%) rotate(90deg); }
        .top article .container #block01 .container--block--inner--support--category--wrap li:nth-of-type(n+2) {
          margin-top: 10vw; }
    .top article .container #block01 .container--block--inner--support--category:nth-of-type(2) .container--block--inner--support--category--wrap p {
      font-size: 4vw; }
    .top article .container #block01 .container--block--inner--support--category:nth-of-type(2) .container--block--inner--support--category--wrap .figure img {
      width: 200vw;
      max-width: inherit;
      margin-left: -17vw; }
  .top article .container #block02 .container--block--inner--wrap--texts h3 .icon {
    width: 17.1vw; }
  .top article .container #block02 .container--block--inner--center-wrap--category .image {
    padding: 0; }
    .top article .container #block02 .container--block--inner--center-wrap--category .image:nth-of-type(n+3) {
      margin-top: 10vw; }
    .top article .container #block02 .container--block--inner--center-wrap--category .image:last-of-type {
      border-left: none; }
  .top article .container #block06 {
    padding-bottom: 11.8vw; }
    .top article .container #block06:before {
      top: 7.6vw; }
    .top article .container #block06 .container--block--title dl dt {
      font-size: 14.8vw; }
    .top article .container #block06 .container--block--inner {
      margin-top: 5vw; }
      .top article .container #block06 .container--block--inner--wrap {
        font-size: 3.2vw; }
        .top article .container #block06 .container--block--inner--wrap--category {
          width: 100%; }
          .top article .container #block06 .container--block--inner--wrap--category .txt p span {
            font-size: 3.4vw; }
  .top article .container #block04 .container--block--title p {
    position: inherit;
    left: 0; }
  .top article .container #block04 .container--block--inner {
    padding: 8vw 0 17vw; }
    .top article .container #block04 .container--block--inner:before {
      top: -3.9vw; }
    .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item dl dt {
      width: 20%;
      font-size: 9.3vw; }
    .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item dl dd {
      width: 80%; }
    .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .title:after {
      width: 5.6vw;
      height: 5.6vw; }
    .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .title dd {
      font-size: 4vw; }
    .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .more dl {
      margin-top: 3.2vw; }
      .top article .container #block04 .container--block--inner--center-wrap--faq .drawer-item .more dl dd {
        font-size: 3.4vw; }
  .top article .information {
    margin-top: 0; }
    .top article .information--inner--banner {
      padding: 5vw; }
      .top article .information--inner--banner--texts {
        width: 100% !important; }
        .top article .information--inner--banner--texts dl dt {
          max-width: 9.9vw; }
        .top article .information--inner--banner--texts dl dd {
          font-size: 5.8vw; }
        .top article .information--inner--banner--texts h3 {
          font-size: 3.7vw; }
        .top article .information--inner--banner--texts .comment {
          font-size: 3.2vw; }
      .top article .information--inner--banner .btn {
        width: 100% !important;
        margin-top: 4vw; }
        .top article .information--inner--banner .btn p {
          font-size: 3.4vw; }
      .top article .information--inner--banner .image {
        width: 100% !important;
        margin-top: 5vw; }
      .top article .information--inner--banner:nth-of-type(n+2) {
        margin-top: 8.2vw; }
  .top article .contact--inner {
    padding-bottom: 13.4vw;
    margin-top: 16.6vw; }
    .top article .contact--inner--title dt {
      font-size: 24.6vw; }
    .top article .contact--inner--title dd {
      font-size: 7.2vw; }
    .top article .contact--inner--wrap--category {
      width: 80%;
      margin: 4.4vw 7vw 0; }
      .top article .contact--inner--wrap--category a .icon {
        max-width: 18.8%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 3.8vw; }
      .top article .contact--inner--wrap--category a .texts {
        width: 81.2%;
        padding: 1em 0; }
        .top article .contact--inner--wrap--category a .texts p em {
          display: block;
          margin-top: .3em; }
        .top article .contact--inner--wrap--category a .texts p.tel {
          font-size: 5.4vw; }
          .top article .contact--inner--wrap--category a .texts p.tel em {
            font-size: 2.7vw; }
        .top article .contact--inner--wrap--category a .texts p.comment {
          font-size: 3.2vw; }
          .top article .contact--inner--wrap--category a .texts p.comment em {
            font-size: 2.7vw; }
        .top article .contact--inner--wrap--category a .texts p.mail {
          font-size: 4.2vw;
          padding-right: 1em; }
          .top article .contact--inner--wrap--category a .texts p.mail:after {
            width: 5vw;
            height: 5vw;
            right: -5%; }
      .top article .contact--inner--wrap--category a:hover .texts p.mail:after {
        right: -6%; } }
