@charset "UTF-8";
/* ------------------------------------------------
 * Mixin for center - 要素中央配置する
 * @include f.center(xy); // 中央
 * @include f.center(x);  // 横中央
 * @include f.center(y);  // 縦中央
 ------------------------------------------------ */
/* ------------------------------------------------

 * transition - フェードイン効果を追加する
 * @include f.transition;

 ------------------------------------------------ */
/* ------------------------------------------------

 * opacity
 * @include f.opacity;

 ------------------------------------------------ */
/* ------------------------------------------------

 * font-family - フォントの指定をする
 * @include f.font(jp); // ゴシック
 * @include f.font(en); // 英字

 ------------------------------------------------ */
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

input[type=submit] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

/*------------------------------------
 clearfix
------------------------------------*/
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, img, strong, i, dl, dt, dd, ol, ul, li, form, label, table, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, select, button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

body {
  line-height: 0;
}

footer, header, menu, nav, section, aside, figure {
  display: block;
}

.ul, .ol {
  list-style: none;
}

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

/* -----------------------------------
 * Scrollボタン
 ----------------------------------- */
.fixedRight {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 200px;
  z-index: 99999;
}
@media only screen and (max-width: 1024px) {
  .fixedRight {
    display: none;
  }
}
.fixedRight .btn-fixed {
  cursor: pointer;
}
.fixedRight .btn__scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: -46px;
  bottom: 90px;
  width: 200px;
  height: 14px;
  color: #333;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.2em;
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fixedRight .btn__scroll .text {
  display: inline-block;
  margin-right: 10px;
  white-space: nowrap;
}
.fixedRight .btn__scroll .line {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.fixedRight .btn__scroll:hover {
  right: -66px;
  bottom: 112px;
  width: 240px;
}
.fixedRight .btn__scroll.is-white {
  color: #fff;
}
.fixedRight .btn__scroll.is-white .line {
  background-color: #fff;
}
.fixedRight .btn__pagetop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: -46px;
  bottom: 90px;
  width: 200px;
  height: 14px;
  color: #333;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.2em;
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
}
.fixedRight .btn__pagetop .text {
  display: inline-block;
  margin-right: 10px;
  white-space: nowrap;
}
.fixedRight .btn__pagetop .line {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.fixedRight .btn__pagetop:hover {
  right: -66px;
  bottom: 112px;
  width: 240px;
}

/* -----------------------------------
 * header
 ----------------------------------- */
#header.is-block .header__inner {
  background-color: #fff;
}
#header.is-block .header__inner .logo a img.logo_white {
  z-index: 1;
  opacity: 0;
}
#header.is-block .header__inner .logo a img.logo_black {
  z-index: 2;
  opacity: 1;
}
#header.is-block .header__inner .logo a:hover img {
  opacity: 0.5;
}
@media only screen and (max-width: 1024px) {
  #header.is-block .header__inner .logo a:hover img {
    opacity: 1;
  }
}
#header.is-block .header__inner .menu__block .menu-btn .menu-btn__inner .menu-line {
  background-color: #333;
}
#header.is-block .header__inner .menu__block .menu__contents .menulist li a {
  color: #333;
}
#header.is-block .header__inner .menu__block .menu__contents .menulist li a:before {
  background-color: #333;
}
#header.is-block .header__inner .menu__block .menu__contents .menulist li a:after {
  color: #333;
}
#header.is-block .header__inner .menu__block .menu__contents .menulist li.item-yoyaku a {
  color: #fff;
}
#header.is-block .header__inner .menu__block .menu__contents .menulist li.item-yoyaku a:hover {
  background-color: #ccc;
  color: #175DA9;
}
@media only screen and (max-width: 1024px) {
  #header.is-block .header__inner .menu__block .menu__contents .menulist li.item-yoyaku a:hover {
    background-color: #175DA9;
    color: #fff;
  }
}

.header__inner {
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 0 0 0 50px;
  background: transparent;
  z-index: 999;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .header__inner {
    padding: 15px 20px;
  }
}
.header__inner .logo a {
  display: block;
  position: relative;
  width: 180px;
  height: 38px;
}
@media only screen and (max-width: 1024px) {
  .header__inner .logo a {
    width: 100px;
    height: 21.11px;
  }
}
.header__inner .logo a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 38px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .header__inner .logo a img {
    width: 100px;
    height: auto;
    vertical-align: top;
  }
}
.header__inner .logo a img.logo_white {
  z-index: 2;
  opacity: 1;
}
.header__inner .logo a img.logo_black {
  z-index: 1;
  opacity: 0;
}
.header__inner .logo a:hover img {
  opacity: 0.5;
}
@media only screen and (max-width: 1024px) {
  .header__inner .logo a:hover img {
    opacity: 1;
  }
}
.header__inner .menu__block .menu-btn {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  position: absolute;
  right: 40px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 15px;
    right: 24px;
  }
}
.header__inner .menu__block .menu-btn .menu-btn__inner {
  position: relative;
  width: 24px;
  height: 26px;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu-btn .menu-btn__inner {
    width: 20px;
    height: 19px;
  }
}
.header__inner .menu__block .menu-btn .menu-btn__inner .menu-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.header__inner .menu__block .menu-btn .menu-btn__inner .menu-line:nth-of-type(1) {
  top: 0;
}
.header__inner .menu__block .menu-btn .menu-btn__inner .menu-line:nth-of-type(2) {
  top: 12px;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu-btn .menu-btn__inner .menu-line:nth-of-type(2) {
    top: 8px;
  }
}
.header__inner .menu__block .menu-btn .menu-btn__inner .menu-line:nth-of-type(3) {
  bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-y: scroll;
    z-index: -1;
  }
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents {
    width: 100%;
    padding: 60px 30px;
  }
}
.header__inner .menu__block .menu__contents .menulist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist {
    display: block;
  }
}
.header__inner .menu__block .menu__contents .menulist li:not(:nth-child(1)) {
  margin-left: 30px;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li:not(:nth-child(1)) {
    margin: 30px 0 0;
  }
}
.header__inner .menu__block .menu__contents .menulist li a {
  display: block;
  position: relative;
  color: #fff;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6vh;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header__inner .menu__block .menu__contents .menulist li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .header__inner .menu__block .menu__contents .menulist li a {
    font-size: 14px;
  }
}
.header__inner .menu__block .menu__contents .menulist li a:before {
  position: absolute;
  top: 30%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 1px;
  background-color: #fff;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.header__inner .menu__block .menu__contents .menulist li a:after {
  display: block;
  color: #fff;
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
  content: attr(data-text) "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li a:after {
    color: #333;
    text-align: left;
  }
}
.header__inner .menu__block .menu__contents .menulist li a:hover:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li a:hover:before {
    width: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li.item-yoyaku {
    margin: 40px 0 0;
  }
}
.header__inner .menu__block .menu__contents .menulist li.item-yoyaku a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding: 20px 30px;
  background-color: #175DA9;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li.item-yoyaku a {
    display: block;
    height: auto;
    padding: 20px 40px;
  }
}
.header__inner .menu__block .menu__contents .menulist li.item-yoyaku a:before {
  display: none;
}
.header__inner .menu__block .menu__contents .menulist li.item-yoyaku a:hover {
  background-color: #ccc;
  color: #175DA9;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li.item-yoyaku a:hover {
    background-color: #175DA9;
    color: #fff;
  }
}
.header__inner .menu__block .menu__contents .menulist li.item-day {
  margin-left: 0;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li.item-day {
    margin: 20px 0 0;
  }
}
.header__inner .menu__block .menu__contents .menulist li.item-day a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding: 20px 30px;
  background-color: #FFB045;
  color: #fff !important;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li.item-day a {
    display: block;
    height: auto;
    padding: 20px 40px;
  }
}
.header__inner .menu__block .menu__contents .menulist li.item-day a:before {
  display: none;
}
.header__inner .menu__block .menu__contents .menulist li.item-day a:hover {
  background-color: #ccc;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li.item-day a:hover {
    background-color: #175DA9;
  }
}
.header__inner .menu__block .menu__contents .menulist li.item-member {
  margin-left: 0;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li.item-member {
    margin: 20px 0 0;
  }
}
.header__inner .menu__block .menu__contents .menulist li.item-member a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding: 20px 30px;
  background-color: #4ABAA7;
  color: #fff !important;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li.item-member a {
    display: block;
    height: auto;
    padding: 20px 40px;
  }
}
.header__inner .menu__block .menu__contents .menulist li.item-member a:before {
  display: none;
}
.header__inner .menu__block .menu__contents .menulist li.item-member a:hover {
  background-color: #ccc;
}
@media only screen and (max-width: 1024px) {
  .header__inner .menu__block .menu__contents .menulist li.item-member a:hover {
    background-color: #4ABAA7;
  }
}
.header__inner.is-menuopen .logo a img.logo_white {
  z-index: 1;
  opacity: 0;
}
.header__inner.is-menuopen .logo a img.logo_black {
  z-index: 2;
  opacity: 1;
}
.header__inner.is-menuopen .menu__block .menu-btn .menu-btn__inner .menu-line {
  background-color: #333;
  border-radius: 0;
}
.header__inner.is-menuopen .menu__block .menu-btn .menu-btn__inner .menu-line:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-315deg);
  transform: translateY(13px) rotate(-315deg);
}
@media only screen and (max-width: 1024px) {
  .header__inner.is-menuopen .menu__block .menu-btn .menu-btn__inner .menu-line:nth-of-type(1) {
    -webkit-transform: translateY(8.5px) rotate(-315deg);
    transform: translateY(8.5px) rotate(-315deg);
  }
}
.header__inner.is-menuopen .menu__block .menu-btn .menu-btn__inner .menu-line:nth-of-type(2) {
  opacity: 0;
}
.header__inner.is-menuopen .menu__block .menu-btn .menu-btn__inner .menu-line:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(315deg);
  transform: translateY(-11px) rotate(315deg);
}
@media only screen and (max-width: 1024px) {
  .header__inner.is-menuopen .menu__block .menu-btn .menu-btn__inner .menu-line:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(315deg);
    transform: translateY(-9px) rotate(315deg);
  }
}
.header__inner.is-menuopen .menu__block .menu-btn .menu-btn__inner:hover .menu-line:nth-of-type(1) {
  top: auto;
}
.header__inner.is-menuopen .menu__block .menu-btn .menu-btn__inner:hover .menu-line:nth-of-type(3) {
  bottom: 0;
}
.header__inner.is-menuopen .menu__block .menu__contents .menulist li a {
  color: #333;
}
.header__inner.is-menuopen .menu__block .menu__contents .menulist li a:before {
  background-color: #333;
}
.header__inner.is-menuopen .menu__block .menu__contents .menulist li.item-yoyaku a {
  color: #fff;
}

#footer {
  background-color: #fff;
}
#footer .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 56px 0 40px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #footer .footer__inner {
    padding: 40px 24px;
  }
}
#footer .footer__inner .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 110px;
  margin: 0 auto;
}
#footer .footer__inner .sns-list li a {
  display: block;
  width: 40px;
  height: 40px;
}
#footer .footer__inner .sns-list li.insta svg .st0 {
  fill: none;
}
#footer .footer__inner .sns-list li.insta svg .st1 {
  fill: #333;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#footer .footer__inner .sns-list li.insta a:hover svg .st1 {
  fill: #175DA9;
}
@media only screen and (max-width: 1024px) {
  #footer .footer__inner .sns-list li.insta a:hover svg .st1 {
    fill: #333;
  }
}
#footer .footer__inner .sns-list li.fb {
  margin-left: 30px;
}
#footer .footer__inner .sns-list li.fb svg .st0 {
  fill: #333;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#footer .footer__inner .sns-list li.fb a:hover svg .st0 {
  fill: #175DA9;
}
@media only screen and (max-width: 1024px) {
  #footer .footer__inner .sns-list li.fb a:hover svg .st0 {
    fill: #333;
  }
}
#footer .footer__inner .btn__company {
  width: 200px;
  margin: 30px auto;
}
@media only screen and (max-width: 1024px) {
  #footer .footer__inner .btn__company {
    width: 100%;
  }
}
#footer .footer__inner .btn__company a {
  display: block;
  padding: 10px;
  letter-spacing: 0.2em;
  border: 1px solid #333;
}
#footer .footer__inner .btn__company a:hover {
  background-color: #175DA9;
  color: #fff;
  border: 1px solid #175DA9;
}
@media only screen and (max-width: 1024px) {
  #footer .footer__inner .btn__company a:hover {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
  }
}
#footer .footer__inner .copyright {
  font-size: 12px;
  letter-spacing: 0.2em;
}

body {
  width: 100%;
  height: 100%;
  background-color: #FAFAFA;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.7;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
  -webkit-text-size-adjust: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}
@media only screen and (max-width: 320px) {
  body {
    font-size: 12px;
  }
}

#main,
#container,
#footer {
  width: 100%;
}

#main {
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
  word-break: break-all;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* -----------------------------------
 * 共通パーツ
 ----------------------------------- */
/* 改行切り替え */
br.sp--block {
  display: none;
}
@media only screen and (max-width: 1024px) {
  br.sp--block {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  br.sp--block {
    display: block;
  }
}
br.ipad--block {
  display: none;
}
@media only screen and (max-width: 1024px) {
  br.ipad--block {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  br.ipad--block {
    display: none;
  }
}
br.pc--block {
  display: block;
}
@media only screen and (max-width: 767px) {
  br.pc--block {
    display: none;
  }
}

/* tel */
.tel a {
  text-decoration: none;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .tel a {
    text-decoration: underline;
    pointer-events: auto;
  }
}

.mail a {
  position: relative;
}
.mail a:hover {
  color: #ccc;
}
@media only screen and (max-width: 1024px) {
  .mail a:hover {
    color: #333;
  }
}

/* -----------------
 * タイトル
----------------- */
/* -----------------
 * タイトル
----------------- */
.title__block {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .title__block {
    margin-bottom: 40px;
  }
}
.title__block .title-en {
  color: #333;
  font-size: 4.2vh;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 1024px) {
  .title__block .title-en {
    margin-bottom: 5px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .title__block .title-en {
    font-size: 40px;
  }
}
.title__block .title {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.6vh;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 1024px) {
  .title__block .title {
    font-size: 11px;
  }
}
@media screen and (min-width: 1400px) {
  .title__block .title {
    font-size: 14px;
  }
}

.title__block--white {
  position: relative;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .title__block--white {
    margin-bottom: 40px;
  }
}
.title__block--white .title-en {
  color: #fff;
  font-size: 4.2vh;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 1024px) {
  .title__block--white .title-en {
    margin-bottom: 5px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .title__block--white .title-en {
    font-size: 40px;
  }
}
.title__block--white .title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.6vh;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 1024px) {
  .title__block--white .title {
    font-size: 11px;
  }
}
@media screen and (min-width: 1400px) {
  .title__block--white .title {
    font-size: 14px;
  }
}

.titlesub__block {
  position: relative;
  margin-bottom: 40px;
  padding: 0 0 0 40px;
}
@media only screen and (max-width: 1024px) {
  .titlesub__block {
    margin-bottom: 25px;
    padding: 0 0 0 25px;
  }
}
.titlesub__block:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #ccc;
}
.titlesub__block .title-en {
  color: #333;
  font-size: 4.2vh;
  font-weight: normal;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
@media only screen and (max-width: 1024px) {
  .titlesub__block .title-en {
    margin-bottom: 5px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .titlesub__block .title-en {
    font-size: 40px;
  }
}
.titlesub__block .title {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.6vh;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 1024px) {
  .titlesub__block .title {
    font-size: 11px;
  }
}
@media screen and (min-width: 1400px) {
  .titlesub__block .title {
    font-size: 14px;
  }
}

/* -----------------
 * テキスト
----------------- */
.text__block .copy {
  margin-bottom: 25px;
  font-size: 2.2vh;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .text__block .copy {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
  }
}
@media screen and (min-width: 1400px) {
  .text__block .copy {
    font-size: 18px;
  }
}
.text__block p {
  font-size: 1.6vh;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .text__block p {
    font-size: 12px;
  }
}
@media screen and (min-width: 1400px) {
  .text__block p {
    font-size: 14px;
  }
}
.text__block .red {
  color: #FF0000;
}

/* -----------------
 *  ボタン
----------------- */
.btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
}
@media only screen and (max-width: 767px) {
  .btn__wrap {
    display: block;
  }
}

.btn-style__radius {
  display: block;
  position: relative;
  width: 400px;
  padding: 20px 40px;
  background-color: #175DA9;
  color: #fff;
  font-size: 2.2vh;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .btn-style__radius {
    padding: 15px 0;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-style__radius {
    width: 100%;
    margin: 25px 0;
    font-size: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .btn-style__radius {
    font-size: 18px;
  }
}
.btn-style__radius:hover {
  background-color: #fff;
  color: #175DA9;
}
@media only screen and (max-width: 1024px) {
  .btn-style__radius:hover {
    background-color: #175DA9;
    color: #fff;
  }
}

.btn-style__radius--s {
  display: block;
  position: relative;
  width: 300px;
  margin-top: 40px;
  padding: 15px 40px;
  background-color: #fff;
  color: #333;
  font-size: 1.4vh;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  border: 1px solid #333;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .btn-style__radius--s {
    margin-top: 25px;
    padding: 15px 0;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-style__radius--s {
    width: 100%;
    margin: 25px 0;
  }
}
@media screen and (min-width: 1400px) {
  .btn-style__radius--s {
    font-size: 14px;
  }
}
.btn-style__radius--s:hover {
  background-color: #175DA9;
  color: #fff;
  border: 1px solid #175DA9;
}
@media only screen and (max-width: 1024px) {
  .btn-style__radius--s:hover {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
  }
}

/* -----------------------------------
 * 構成パーツ
 ----------------------------------- */
/* -----------------------------------
 * 個別パーツ
 ----------------------------------- */
/* -----------------------------------
 * 構成パーツ
 ----------------------------------- */
.content--m {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0;
}
@media only screen and (max-width: 1024px) {
  .content--m {
    max-width: auto;
    width: auto;
    margin: 0 20px 0;
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .content--m {
    margin: 0 20px 0;
  }
}
@media screen and (min-width: 1400px) {
  .content--m {
    padding: 120px 0;
  }
}

.content--s {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0;
}
@media only screen and (max-width: 1024px) {
  .content--s {
    max-width: auto;
    width: auto;
    margin: 40px 20px 0;
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .content--s {
    margin: 40px 20px 0;
  }
}
@media screen and (min-width: 1400px) {
  .content--s {
    padding: 120px 0;
  }
}

/* -----------------------------------
 * 画像 + 内容
 ----------------------------------- */
.layout__img-left {
  position: relative;
  margin-top: 120px;
}
@media only screen and (max-width: 1024px) {
  .layout__img-left {
    margin-top: 0;
  }
}
.layout__img-left .item-img {
  width: 70%;
}
@media only screen and (max-width: 1024px) {
  .layout__img-left .item-img {
    width: auto;
  }
}
.layout__img-left .item-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 160px;
  width: 37%;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .layout__img-left .item-contents {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 100%;
  }
}
.layout__img-left .item-contents .item-contents__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 50px 40px 50px 50px;
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .layout__img-left .item-contents .item-contents__inner {
    display: block;
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .layout__img-left .item-contents .item-contents__inner {
    padding: 40px 20px;
  }
}

.layout__img-right {
  position: relative;
  margin-top: 120px;
}
@media only screen and (max-width: 1024px) {
  .layout__img-right {
    margin-top: 0;
  }
}
.layout__img-right .item-img {
  width: 70%;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .layout__img-right .item-img {
    width: auto;
  }
}
.layout__img-right .item-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 160px;
  width: 37%;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .layout__img-right .item-contents {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 100%;
  }
}
.layout__img-right .item-contents .item-contents__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 50px 40px 50px 50px;
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .layout__img-right .item-contents .item-contents__inner {
    display: block;
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .layout__img-right .item-contents .item-contents__inner {
    padding: 40px 20px;
  }
}

/* ---------------
 * メインビジュアル
 ----------------- */
.mainvis__block {
  position: relative;
  z-index: 100;
}
.mainvis__block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(0,0,0,0.2);*/
  z-index: -1;
}
.mainvis__block.page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100vw;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .mainvis__block.page-top {
    height: -webkit-fill-available;
  }
}
.mainvis__block .heading__block {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 300px;
  top: 280px;
}
@media only screen and (max-width: 767px) {
  .mainvis__block .heading__block {
    top: 200px;
    width: 220px;
  }
}
.mainvis__block .heading__block img[src$=".svg"] {
  width: 100%;
}
.mainvis__block .heading-text__block {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  color: #fff;
  font-size: 2vh;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .heading-text__block {
    margin-bottom: 5px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 320px) {
  .mainvis__block .heading-text__block {
    font-size: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .mainvis__block .heading-text__block {
    font-size: 20px;
  }
}
.mainvis__block .btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70vh;
}
@media only screen and (max-width: 767px) {
  .mainvis__block .btn__wrap {
    display: block;
  }
}
.mainvis__block .btn__wrap.page-common {
  position: relative;
  padding: 250px 0;
}
@media only screen and (max-width: 767px) {
  .mainvis__block .btn__wrap.page-common {
    padding: 200px 0;
  }
}
.mainvis__block .btn__wrap.page-common .title__block--white {
  position: absolute;
  bottom: 50px;
  left: 50px;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .btn__wrap.page-common .title__block--white {
    bottom: 20px;
    left: 20px;
  }
}
.mainvis__block .btn__wrap.page-common .mainvis-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 37%;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .btn__wrap.page-common .mainvis-contents {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .mainvis__block .btn__wrap.page-common .mainvis-contents {
    right: 20px;
    width: auto;
  }
}
.mainvis__block .btn__wrap.page-common .mainvis-contents .mainvis-contents__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 50px 40px 50px 50px;
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .btn__wrap.page-common .mainvis-contents .mainvis-contents__inner {
    display: block;
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .mainvis__block .btn__wrap.page-common .mainvis-contents .mainvis-contents__inner {
    padding: 40px 20px;
  }
}
.mainvis__block .btn__wrap.page-concept {
  background: url(./img/pages/concept_mainvis_pc.jpg) no-repeat center;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .btn__wrap.page-concept {
    background: url(./img/pages/concept_mainvis_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
.mainvis__block .btn__wrap.page-strength {
  background: url(./img/pages/strength_mainvis_pc.jpg) no-repeat center;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .btn__wrap.page-strength {
    background: url(./img/pages/strength_mainvis_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
.mainvis__block .btn__wrap.page-plan {
  background: url(./img/pages/plan_mainvis_pc.jpg) no-repeat center;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .btn__wrap.page-plan {
    background: url(./img/pages/plan_mainvis_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
.mainvis__block .btn__wrap.page-contact {
  background: url(./img/pages/contact_mainvis_pc.jpg) no-repeat center;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .btn__wrap.page-contact {
    background: url(./img/pages/contact_mainvis_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
.mainvis__block .btn__wrap.page-privacy {
  background: url(./img/pages/contact_mainvis_pc.jpg) no-repeat center;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .btn__wrap.page-privacy {
    background: url(./img/pages/contact_mainvis_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
.mainvis__block .page-catchcopy {
  background: url(./img/top/concept_bg.jpg) no-repeat center;
  background-size: cover;
}
.mainvis__block .page-catchcopy .page-catchcopy__inner {
  padding: 120px 0;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .page-catchcopy .page-catchcopy__inner {
    margin: 0 20px 0 0;
    padding: 40px 0;
  }
}
.mainvis__block .page-catchcopy .page-catchcopy__inner .catchcopy__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainvis__block .page-catchcopy .page-catchcopy__inner .catchcopy__block .line {
  display: inline-block;
  width: 30%;
  height: 1px;
  margin-right: 20px;
  background-color: #333;
}
.mainvis__block .page-catchcopy .page-catchcopy__inner .catchcopy__block .catchcopy {
  width: 60%;
  font-size: 3vh;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .page-catchcopy .page-catchcopy__inner .catchcopy__block .catchcopy {
    font-size: 16px;
    line-height: 1.7;
  }
}
@media only screen and (max-width: 320px) {
  .mainvis__block .page-catchcopy .page-catchcopy__inner .catchcopy__block .catchcopy {
    font-size: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .mainvis__block .page-catchcopy .page-catchcopy__inner .catchcopy__block .catchcopy {
    font-size: 30px;
  }
}
.mainvis__block {
  /* -----------------------------------
   * 下層ページ説明
   ----------------------------------- */
}
.mainvis__block .point-list__block .point-list__title {
  margin-bottom: -20px;
  text-align: center;
}
.mainvis__block .point-list__block .point-list__title .title {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 3vh;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .point-list__block .point-list__title .title {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.7;
  }
}
@media only screen and (max-width: 320px) {
  .mainvis__block .point-list__block .point-list__title .title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .mainvis__block .point-list__block .point-list__title .title {
    font-size: 26px;
  }
}
.mainvis__block .point-list__block .point-list__title .title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.mainvis__block .point-list__block .point-list__title p {
  font-size: 2vh;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .point-list__block .point-list__title p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 320px) {
  .mainvis__block .point-list__block .point-list__title p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .mainvis__block .point-list__block .point-list__title p {
    font-size: 18px;
  }
}
.mainvis__block .point-list__block .point-list__title-set {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__title-set {
    margin-top: 50px;
  }
}
.mainvis__block .point-list__block .point-list__title-set:nth-child(1) {
  margin-top: 0;
}
.mainvis__block .point-list__block .point-list__item-imgtwo {
  margin-top: 60px;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .point-list__block .point-list__item-imgtwo {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item-imgtwo {
    margin-top: 50px;
  }
}
.mainvis__block .point-list__block .point-list__item-imgtwo:nth-child(1) {
  margin-top: 0;
}
.mainvis__block .point-list__block .point-list__item-imgtwo .item-img__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item-imgtwo .item-img__list {
    display: block;
  }
}
.mainvis__block .point-list__block .point-list__item-imgtwo .item-img__list .item-img {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .point-list__block .point-list__item-imgtwo .item-img__list .item-img {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item-imgtwo .item-img__list .item-img {
    width: 100%;
  }
  .mainvis__block .point-list__block .point-list__item-imgtwo .item-img__list .item-img:not(:nth-child(1)) {
    margin: 20px 0 0;
  }
}
.mainvis__block .point-list__block .point-list__item-imgtwo .item-text {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item-imgtwo .item-text {
    margin-top: 20px;
  }
}
.mainvis__block .point-list__block .point-list__item-imgtwo .item-text .text {
  letter-spacing: 0.05em;
  line-height: 2;
}
.mainvis__block .point-list__block .point-list__item-imgtwo .item-text .text span {
  padding: 0 2px;
  font-size: 20px;
  color: #FF0000;
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item-imgtwo .item-text .text span {
    font-size: 15px;
  }
}
.mainvis__block .point-list__block .point-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .point-list__block .point-list__item {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item {
    margin-top: 50px;
  }
}
.mainvis__block .point-list__block .point-list__item:nth-child(1) {
  margin-top: 0;
}
.mainvis__block .point-list__block .point-list__item .item-img {
  width: 46.5%;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .point-list__block .point-list__item .item-img {
    width: 100%;
    margin: 20px auto 0;
  }
}
.mainvis__block .point-list__block .point-list__item .item-text {
  margin-left: auto;
  width: 46.5%;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .point-list__block .point-list__item .item-text {
    margin-top: 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item .item-text {
    margin-top: 20px;
  }
}
.mainvis__block .point-list__block .point-list__item .item-text .text {
  letter-spacing: 0.05em;
  line-height: 2;
}
.mainvis__block .point-list__block .point-list__item .item-text .text span {
  padding: 0 2px;
  font-size: 20px;
  color: #FF0000;
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item .item-text .text span {
    font-size: 15px;
  }
}
.mainvis__block .point-list__block .point-list__item-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .point-list__block .point-list__item-reverse {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item-reverse {
    margin-top: 50px;
  }
}
.mainvis__block .point-list__block .point-list__item-reverse:nth-child(1) {
  margin-top: 0;
}
.mainvis__block .point-list__block .point-list__item-reverse .item-img {
  margin-left: auto;
  width: 46.5%;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .point-list__block .point-list__item-reverse .item-img {
    width: 100%;
    margin: 20px auto 0;
  }
}
.mainvis__block .point-list__block .point-list__item-reverse .item-text {
  width: 46.5%;
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .point-list__block .point-list__item-reverse .item-text {
    margin-top: 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item-reverse .item-text {
    margin-top: 20px;
  }
}
.mainvis__block .point-list__block .point-list__item-reverse .item-text .text {
  letter-spacing: 0.05em;
  line-height: 2;
}
.mainvis__block .point-list__block .point-list__item-reverse .item-text .text span {
  padding: 0 2px;
  font-size: 20px;
  color: #FF0000;
}
@media only screen and (max-width: 767px) {
  .mainvis__block .point-list__block .point-list__item-reverse .item-text .text span {
    font-size: 15px;
  }
}
.mainvis__block {
  /* -----------------------------------
   * 注意書き
   ----------------------------------- */
}
.mainvis__block .warning {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999999;
}
.mainvis__block .warning .warning--item {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .mainvis__block .warning .warning--item {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .mainvis__block .warning .warning--item {
    width: 70%;
  }
}
.mainvis__block .warning .warning--item .item-img {
  margin: 0 auto 24px;
  width: 80px;
}
.mainvis__block .warning .warning--item .text__block {
  text-align: center;
}
.mainvis__block .warning .warning--item .text__block p {
  color: #333;
}
.mainvis__block .warning.is-show {
  display: block;
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: 150px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .slick-dots {
    bottom: 7vh;
  }
}
@media only screen and (max-width: 767px) {
  .slick-dots {
    bottom: 15vh;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .slick-dots li {
    margin: 0 10px;
  }
}
.slick-dots li button {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  outline: none;
  background-color: transparent;
  line-height: 0px;
  font-size: 0px;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  background-color: #175DA9;
  opacity: 1;
}

#about {
  background: url(./img/top/concept_bg.jpg) no-repeat center;
  background-size: cover;
}
#about .text__block .copy {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #about .text__block .copy {
    text-align: left;
  }
}
#about .item-img {
  margin: 60px auto;
  max-width: 300px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #about .item-img {
    margin: 40px auto;
  }
}
@media only screen and (max-width: 767px) {
  #about .item-img {
    max-width: 200px;
  }
}
#about .item-img img[src$=".svg"] {
  width: 100%;
}
#about .item-copy {
  margin: 0 auto;
  padding: 25px 0;
  max-width: 400px;
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
#about .item-copy p {
  font-size: 2vh;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #about .item-copy p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media screen and (min-width: 1400px) {
  #about .item-copy p {
    font-size: 18px;
  }
}
#about .item-copy2 {
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
  color: #175DA9;
}
#about .item-copy2 p {
  font-size: 2vh;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #about .item-copy2 p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media screen and (min-width: 1400px) {
  #about .item-copy2 p {
    font-size: 30px;
  }
}
#about .item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  #about .item-box {
    display: block;
  }
}
#about .item-box .item-contents {
  width: 400px;
  background-color: #fff;
  padding: 30px;
  margin: 25px;
}
@media only screen and (max-width: 1024px) {
  #about .item-box .item-contents {
    width: 80%;
    margin: 25px auto;
  }
}
#about .item-box .item-contents .titlesub__block {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  padding: 0;
}
@media only screen and (max-width: 1024px) {
  #about .item-box .item-contents .titlesub__block {
    margin-bottom: 25px;
    padding: 0 0 0 25px;
  }
}
#about .item-box .item-contents .titlesub__block:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
#about .item-box .item-contents .titlesub__block .title-en {
  color: #333;
  font-size: 3.5vh;
  font-weight: normal;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
@media only screen and (max-width: 1024px) {
  #about .item-box .item-contents .titlesub__block .title-en {
    margin-bottom: 5px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1400px) {
  #about .item-box .item-contents .titlesub__block .title-en {
    font-size: 30px;
  }
}
#about .item-box .item-contents .titlesub__block .title {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.6vh;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 1024px) {
  #about .item-box .item-contents .titlesub__block .title {
    font-size: 11px;
  }
}
@media screen and (min-width: 1400px) {
  #about .item-box .item-contents .titlesub__block .title {
    font-size: 14px;
  }
}

#price {
  position: relative;
  z-index: 0;
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  #price {
    margin-top: 0;
  }
}
#price:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ccc;
  opacity: 0;
  z-index: 10;
}
@media only screen and (max-width: 1024px) {
  #price:before {
    opacity: 1;
  }
}
#price .price__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  #price .price__block {
    display: block;
  }
}
#price .price__block .price__item {
  width: 47.9%;
  margin: 25px;
}
@media only screen and (max-width: 1024px) {
  #price .price__block .price__item {
    width: 90%;
  }
}
#price .price__block .price__item {
  /*&:nth-child(2) {
  	margin-left: 50px;
  	@include f.MQ(L) {
  		margin: 30px 0 0;
  	}
  }*/
}
#price .price__block .price__item .item-img {
  width: 100%;
}
#price .price__block .price__item .heading {
  margin-bottom: 25px;
  color: #333;
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1024px) {
  #price .price__block .price__item .heading {
    margin-bottom: 10px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  #price .price__block .price__item .heading {
    font-size: 18px;
  }
}
#price .price-list__block {
  table-layout: fixed;
  margin: 30px 0 0;
  width: 100%;
  letter-spacing: 0.1em;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
#price .price-list__block th {
  padding: 20px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  #price .price-list__block th {
    padding: 10px;
  }
}
#price .price-list__block td {
  padding: 20px;
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  #price .price-list__block td {
    padding: 10px;
  }
}
#price .price-list__block td.bg-pink {
  background: #FFC2C2;
}
#price .price-list__block td.bg-yellow {
  background: #FFFFB3;
}
#price .price-list__block td.bg-blue {
  background: #C0FFF3;
}
#price .text__block {
  margin-top: 20px;
}
#price .text__block a:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 1024px) {
  #price .text__block a:hover {
    opacity: 1;
  }
}

#map .map__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  #map .map__block {
    display: block;
  }
}
#map .map__block .item-img {
  max-width: 600px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #map .map__block .item-img {
    max-width: 100%;
  }
}
#map .map__block .item-contents {
  max-width: 530px;
  width: 100%;
  margin-left: 67px;
}
@media only screen and (max-width: 1024px) {
  #map .map__block .item-contents {
    max-width: 100%;
    margin: 40px 0 0;
  }
}
#map .map__block .item-contents dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6vh;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #map .map__block .item-contents dl {
    font-size: 12px;
  }
}
@media screen and (min-width: 1400px) {
  #map .map__block .item-contents dl {
    font-size: 14px;
  }
}
#map .map__block .item-contents dl:not(:nth-child(1)) {
  margin-top: 24px;
}
#map .map__block .item-contents dl dt {
  width: 90px;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  #map .map__block .item-contents dl dt {
    width: 70px;
  }
}
#map .map__block .item-contents dl dd .btn-map {
  display: block;
  width: 120px;
  margin: 5px 0 0 auto;
  padding: 0 15px;
  background-color: #ccc;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: 14px;
  text-align: center;
}
#map .map__block .item-contents dl dd .btn-map:hover {
  background-color: #175DA9;
}
@media only screen and (max-width: 1024px) {
  #map .map__block .item-contents dl dd .btn-map:hover {
    background-color: #ccc;
  }
}

#yoyaku .yoyaku__inner {
  position: relative;
  width: 100%;
  padding: 250px 80px;
  background: url(./img/top/contact-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 1024px) {
  #yoyaku .yoyaku__inner {
    width: auto;
    padding: 200px 24px;
    background-attachment: scroll;
  }
}
@media only screen and (max-width: 767px) {
  #yoyaku .yoyaku__inner {
    padding: 100px 24px;
    background: url(./img/top/contact-bg_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#yoyaku .yoyaku__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/* -----------------------------------
 * concept
 ----------------------------------- */
.page-concept .content--m {
  padding: 100px 0;
}
@media only screen and (max-width: 1024px) {
  .page-concept .content--m {
    padding: 40px 0;
  }
}

/* -----------------------------------
 * strength
 ----------------------------------- */
.page-strength .content--m {
  padding: 100px 0;
}
@media only screen and (max-width: 1024px) {
  .page-strength .content--m {
    padding: 40px 0;
  }
}

/* -----------------------------------
 * plan
 ----------------------------------- */
.page-plan .content--m {
  padding: 100px 0;
}
@media only screen and (max-width: 1024px) {
  .page-plan .content--m {
    padding: 40px 0;
  }
}
.page-plan .slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .page-plan .slider-wrap {
    width: 100%;
  }
}
.page-plan .slider-wrap .slider {
  position: relative;
  z-index: 0;
}
.page-plan .slider-wrap .slider .slick-dots {
  bottom: 2.5vh;
}

/* -----------------------------------
 * contact
 ----------------------------------- */
.page-contact .text__block a {
  position: relative;
  text-decoration: underline;
}
.page-contact .text__block a:hover {
  color: #ccc;
}
@media only screen and (max-width: 1024px) {
  .page-contact .text__block a:hover {
    color: #333;
  }
}
.page-contact form {
  margin-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .page-contact form {
    margin-top: 35px;
  }
}
.page-contact .contactform__block:nth-child(1) {
  margin-top: 0;
}
.page-contact .contactform__block dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.page-contact .contactform__block dl:nth-child(1) {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .page-contact .contactform__block dl {
    margin-top: 15px;
  }
}
.page-contact .contactform__block dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
  font-size: 1.6vh;
  line-height: 2;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .page-contact .contactform__block dl dt {
    width: 30%;
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .page-contact .contactform__block dl dt {
    display: block;
    width: 100%;
    padding: 10px 0;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .page-contact .contactform__block dl dt {
    font-size: 14px;
  }
}
.page-contact .contactform__block dl dt .hissu {
  display: inline-block;
  margin-left: 10px;
  color: #FF0000;
}
.page-contact .contactform__block dl dd {
  width: 75.5%;
  margin-left: 2.5%;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  font-size: 1.6vh;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1024px) {
  .page-contact .contactform__block dl dd {
    width: 65.5%;
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .page-contact .contactform__block dl dd {
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 20px 0 10px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .page-contact .contactform__block dl dd {
    font-size: 14px;
  }
}
.page-contact .contactform__block dl dd input[type=text],
.page-contact .contactform__block dl dd input[type=email] {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  background-color: #fff;
  outline: none;
  border: none;
  vertical-align: middle;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1024px) {
  .page-contact .contactform__block dl dd input[type=text],
  .page-contact .contactform__block dl dd input[type=email] {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .page-contact .contactform__block dl dd input[type=text],
  .page-contact .contactform__block dl dd input[type=email] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .page-contact .contactform__block dl dd input[type=text],
  .page-contact .contactform__block dl dd input[type=email] {
    font-size: 12px;
  }
}
.page-contact .contactform__block dl dd input[type=text]:-webkit-autofill,
.page-contact .contactform__block dl dd input[type=email]:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}
.page-contact .contactform__block dl dd input[type=text]:focus,
.page-contact .contactform__block dl dd input[type=email]:focus {
  border: 1px solid #ccc;
}
.page-contact .contactform__block dl dd textarea {
  width: 100%;
  height: 200px;
  padding: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  background-color: #fff;
  outline: none;
  border: none;
  -ms-overflow-style: none;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1024px) {
  .page-contact .contactform__block dl dd textarea {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .page-contact .contactform__block dl dd textarea {
    font-size: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .page-contact .contactform__block dl dd textarea {
    font-size: 12px;
  }
}
.page-contact .contactform__block dl dd textarea:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}
.page-contact .contactform__block dl dd textarea:focus {
  border: 1px solid #ccc;
}
.page-contact .contactform__block dl.contact-contacts dt {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.page-contact .btn__wrap {
  margin-top: 56px;
}
@media only screen and (max-width: 1024px) {
  .page-contact .btn__wrap {
    margin-top: 40px;
  }
}
.page-contact .btn__wrap input {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-size: 2.2vh;
  border-radius: 50px;
  outline: none;
}
@media only screen and (max-width: 1024px) {
  .page-contact .btn__wrap input {
    padding: 15px 0;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .page-contact .btn__wrap input {
    width: 100%;
    margin: 25px 0;
    font-size: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .page-contact .btn__wrap input {
    font-size: 20px;
  }
}

.page-confirmation .text__block {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .page-confirmation .text__block {
    text-align: left;
  }
}
.page-confirmation form {
  width: 100%;
  margin: 60px auto 0;
}
@media only screen and (max-width: 1024px) {
  .page-confirmation form {
    max-width: 100%;
    margin-top: 35px;
  }
}
.page-confirmation form .mailform {
  width: 100%;
}
.page-confirmation form .mailform th {
  width: 20%;
  padding: 20px 0;
  font-size: 1.6vh;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
  border-bottom: 1px solid #333;
}
@media only screen and (max-width: 1024px) {
  .page-confirmation form .mailform th {
    width: 30%;
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .page-confirmation form .mailform th {
    display: block;
    width: 100%;
    padding: 10px 0;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .page-confirmation form .mailform th {
    font-size: 14px;
  }
}
.page-confirmation form .mailform td {
  padding: 20px 0 20px 20px;
  font-size: 1.6vh;
  line-height: 2;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 1024px) {
  .page-confirmation form .mailform td {
    width: 30%;
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .page-confirmation form .mailform td {
    display: block;
    width: 100%;
    padding: 10px 0 10px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .page-confirmation form .mailform td {
    font-size: 14px;
  }
}
.page-confirmation .btn__wrap {
  margin-top: 56px;
}
@media only screen and (max-width: 1024px) {
  .page-confirmation .btn__wrap {
    margin-top: 40px;
  }
}
.page-confirmation .btn__wrap p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .page-confirmation .btn__wrap p {
    display: block;
  }
}
.page-confirmation .btn__wrap p input {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-size: 2.2vh;
  border-radius: 50px;
  outline: none;
}
@media only screen and (max-width: 1024px) {
  .page-confirmation .btn__wrap p input {
    padding: 15px 0;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .page-confirmation .btn__wrap p input {
    width: 100%;
    margin: 25px 0;
    font-size: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .page-confirmation .btn__wrap p input {
    font-size: 20px;
  }
}
.page-confirmation .btn__wrap p input:not(:nth-child(1)) {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .page-confirmation .btn__wrap p input:not(:nth-child(1)) {
    margin: 20px 0 0;
  }
}

/* -----------------------------------
 * privacy
 ----------------------------------- */
.page-privacy .privacy__block {
  margin-top: 40px;
}
.page-privacy .privacy__block .privacy-item {
  margin-top: 30px;
}
.page-privacy .privacy__block .privacy-item dl {
  font-size: 1.6vh;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .page-privacy .privacy__block .privacy-item dl {
    font-size: 12px;
  }
}
@media screen and (min-width: 1400px) {
  .page-privacy .privacy__block .privacy-item dl {
    font-size: 14px;
  }
}
.page-privacy .privacy__block .privacy-item dt, .page-privacy .privacy__block .privacy-item dd {
  font-size: 1.6vh;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .page-privacy .privacy__block .privacy-item dt, .page-privacy .privacy__block .privacy-item dd {
    font-size: 12px;
  }
}
@media screen and (min-width: 1400px) {
  .page-privacy .privacy__block .privacy-item dt, .page-privacy .privacy__block .privacy-item dd {
    font-size: 14px;
  }
}
.page-privacy .btn__wrap {
  margin-top: 56px;
}
@media only screen and (max-width: 1024px) {
  .page-privacy .btn__wrap {
    margin-top: 40px;
  }
}

/* -----------------------------------
 * errow
 ----------------------------------- */
.page-errow .text__block {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .page-errow .text__block {
    text-align: left;
  }
}
.page-errow .btn__wrap {
  margin-top: 56px;
}
@media only screen and (max-width: 1024px) {
  .page-errow .btn__wrap {
    margin-top: 40px;
  }
}