@charset "UTF-8";
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* FontFamily */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #1b224c;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

time {
  font-size: 12px;
  font-size: 0.75rem;
}

/* font-weight */
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5640273705vw;
  }
}
@media (min-width: 900px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フォームリセット */
input[type=submit],
input[type=button],
input[type=radio],
label,
button,
select {
  cursor: pointer;
}

label {
  display: block;
}

textarea {
  resize: none;
}

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

h2 span {
  display: inline-block;
}

body.noscroll {
  overflow: hidden;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

.breadcrumb {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
  background-color: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 1rem 1.5625rem;
  }
}
.breadcrumb__inner {
  margin: 0 auto;
  max-width: 900px;
  max-width: 56.25rem;
  width: 100%;
}
.breadcrumb a {
  height: inherit;
  text-decoration: underline;
  padding: 18px 0;
  padding: 1.125rem 0;
}
.breadcrumb a:hover {
  text-decoration: none;
}

.burger-btn {
  z-index: 200;
}

.bar {
  display: block;
  height: 3px;
  width: 30px;
  background-color: #1b224c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bar.change-background-color {
  background-color: #1b224c;
}

.bar_top {
  margin-bottom: 7px;
}

.bar_mid {
  margin-bottom: 7px;
}

/* ハンバーガーメニューが開いたとき */
.bar.cross.bar_top {
  -webkit-transform: rotate(45deg) translate(7px, 7px);
          transform: rotate(45deg) translate(7px, 7px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bar.cross.bar_mid {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bar.cross.bar_bottom {
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
          transform: rotate(-45deg) translate(7px, -7px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-foot__body {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-foot__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-right: 7rem;
  }
}
.contact-foot__text {
  margin: 0 0 10px 0;
  margin: 0 0 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .contact-foot__text {
    font-weight: bold;
    margin: 0 1.25rem 0 0;
  }
}
.contact-foot__tel {
  font-size: 28px;
  font-size: 1.75rem;
  margin: 0 0 10px 0;
  margin: 0 0 0.625rem 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-foot__tel {
    font-size: 2.25rem;
    margin: 0 1.25rem 0 0;
    line-height: 0.9;
  }
}

.contact-head {
  text-align: center;
  padding: 70px 0 41px;
  padding: 4.375rem 0 2.5625rem;
  background-image: url(/assets/images/common/contact_bg@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.contact-head__text {
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-head__text {
    font-size: 2.25rem;
  }
}
.contact-head__text span {
  display: inline-block;
}
.contact-head__btn {
  display: inline-block;
  font-weight: bold;
  width: 180px;
  width: 11.25rem;
  border-radius: 1.875rem;
  padding: 16px 0;
  padding: 1rem 0;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-head__btn {
    width: 16.1875rem;
    padding: 1rem 0;
  }
}
.contact-head__btn:hover {
  color: black;
  background-color: #fff;
  opacity: 1;
}
.contact-head__link {
  display: inline-block;
  text-decoration: underline;
}
.contact-head__link:hover {
  text-decoration: none;
}

.contact {
  padding-bottom: 23px;
  padding-bottom: 1.4375rem;
}

.drawer-info {
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-info a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}
.drawer-info__link {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: 110px;
  width: 6.875rem;
  padding: 16px 0;
  padding: 1rem 0;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 0.3125rem;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .drawer-info__link {
    width: 8.875rem;
    padding: 1.125rem 0;
    font-size: 0.875rem;
  }
}
.drawer-info__link:hover {
  color: #111;
  border-color: #111;
}
.drawer-info__time {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.drawer-info__tel {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 240px;
  width: 15rem;
  height: 100vh;
  padding-top: 80px;
  padding-top: 5rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  background-color: #fff;
  overflow: hidden;
  z-index: 100;
}
.drawer.js-show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer__logo {
  width: 180px;
  width: 11.25rem;
  margin: 0 auto 38px;
  margin: 0 auto 2.375rem;
}
.drawer__items {
  margin: 0 auto 30px;
  margin: 0 auto 1.875rem;
}
.drawer--bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #fff;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  z-index: 90;
}
.drawer--bg.js-show {
  visibility: visible;
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fnav__items {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .fnav__items {
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.fnav__item {
  margin: 0 0 15px 0;
  margin: 0 0 0.9375rem 0;
}
@media screen and (min-width: 768px) {
  .fnav__item {
    margin: 0;
    padding: 0 1.3125rem;
    border-right: 1px solid #fff;
  }
}
.fnav__item:first-of-type {
  padding: 0%;
}
@media screen and (min-width: 768px) {
  .fnav__item:first-of-type {
    padding: 0 1.3125rem 0 0;
  }
}
.fnav__item:last-of-type {
  border: none;
}
.fnav--hover-animation {
  position: relative;
  z-index: 1;
}
.fnav--hover-animation::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  /*テキストからの距離*/
  width: 0%;
  /*初期状態では下線非表示*/
  height: 2px;
  /*下線の高さ*/
  background: #fff;
  /*下線の色*/
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーション速度*/
}
.fnav__item:hover .fnav--hover-animation::after {
  width: 100%;
  /*hover時に表示*/
}

.footer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 68px;
  padding-bottom: 4.25rem;
}
.footer-head__fnav {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.footer-info {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
.footer-info__logo {
  width: 140px;
  width: 8.75rem;
  height: 50px;
  height: 3.125rem;
  background-color: #fff;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .footer-info__logo {
    width: 12.3125rem;
    margin-bottom: 1.6875rem;
  }
}
.footer-info__logo a {
  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;
  height: inherit;
}
.footer-info__logo img {
  display: block;
  width: 120px;
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .footer-info__logo img {
    width: 9.9375rem;
  }
}
.footer-info__tel {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .footer-info__tel {
    margin-bottom: 0.8125rem;
  }
}
.footer-info__tel::before {
  content: url("../../assets/images/common/tel_logo1@2x.png");
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.footer__head {
  background-color: #1b224c;
  color: #fff;
}
.footer__foot small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 3;
}

.gnav {
  height: inherit;
}
.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}
.gnav__item {
  height: inherit;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .gnav__item {
    margin-right: 1.75rem;
  }
}
.gnav__item:last-of-type {
  margin-right: 0;
}
.gnav__item a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gnav--hover-animation {
  position: relative;
  z-index: 1;
}
.gnav--hover-animation::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  /*テキストからの距離*/
  width: 0%;
  /*初期状態では下線非表示*/
  height: 2px;
  /*下線の高さ*/
  background: #1b224c;
  /*下線の色*/
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーション速度*/
}
.gnav__item:hover .gnav--hover-animation::after {
  width: 100%;
  /*hover時に表示*/
}

.header-left {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 0 0;
  }
}
.header-left__logo {
  margin-right: 10px;
  margin-right: 0.625rem;
  height: inherit;
  margin-right: 0;
}
@media screen and (min-width: 1024px) {
  .header-left__logo {
    margin-right: 1.75rem;
  }
}
.header-left__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
.header-left__logo img {
  display: block;
}

@media screen and (min-width: 768px) {
  .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header-right__info {
  text-align: right;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .header-right__info {
    margin-right: 1.375rem;
  }
}
.header-right__time {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
.header-right__tel::before {
  content: url("../../assets/images/common/tel_logo0@2x.png");
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.header-right__btn {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: 110px;
  width: 6.875rem;
  padding: 16px 0;
  padding: 1rem 0;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 0.3125rem;
  border: 1px solid transparent;
  margin-right: 13px;
  margin-right: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .header-right__btn {
    width: 8.875rem;
    padding: 1.125rem 0;
    font-size: 0.875rem;
  }
}
.header-right__btn:last-of-type {
  margin-right: 0;
}
.header-right__btn:hover {
  color: #111;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn--bg-orange {
  background-color: #f5a623;
}

.btn--bg-orange:hover {
  border-color: black;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn--bg-blue {
  background-color: #1b224c;
}

.btn--bg-blue:hover {
  border-color: black;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__inner {
  width: 100%;
  padding: 0 15px;
  padding: 0 0.9375rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  height: 3.75rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header__inner {
    height: 5rem;
  }
}
.header__inner--fixed {
  position: fixed;
}

.info__time {
  font-size: 12px;
  font-size: 0.75rem;
}
.info__tel {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .info__tel {
    font-size: 1rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 950px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.lowerview {
  height: 300px;
  position: relative;
}
.lowerview__headline {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 62%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lowerview__title {
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .lowerview__title {
    font-size: 2rem;
  }
}

.media__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.media__pic {
  position: relative;
}
.media__pic img {
  height: 100%;
}
.media__category {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 4px 9px 7px;
  padding: 0.25rem 0.5625rem 0.4375rem;
  text-align: center;
  background-color: #1b224c;
  color: #fff;
}
.media__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.media__title {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .media__title {
    font-weight: bold;
    line-height: 1.8;
    font-size: 1rem;
  }
}
.media__link .media__title {
  text-decoration: underline;
}
.media__link:hover .media__title {
  text-decoration: none;
}
.media-date {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
}
.media--flex-column {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sp-nav {
  color: #fff;
  width: 100%;
}
.sp-nav__item {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1b224c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-top: 1px solid #1b224c;
}
.sp-nav__item:last-of-type {
  border-bottom: 1px solid #1b224c;
}
.sp-nav__item a {
  display: block;
  padding: 16px 0 16px 32px;
  padding: 1rem 0 1rem 2rem;
}
.sp-nav__item a:hover {
  text-decoration: underline;
  background-color: #1b224c;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.lower-blog--layer {
  padding: 58px 0 106px;
  padding: 3.625rem 0 6.625rem;
}
.lower-blog__title {
  font-size: 28px;
  font-size: 1.75rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .lower-blog__title {
    font-size: 2rem;
    margin-bottom: 3.75rem;
  }
}
.lower-blog__item {
  margin-bottom: 61px;
  margin-bottom: 3.8125rem;
  max-width: 550px;
  max-width: 34.375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .lower-blog__item {
    max-width: 100%;
  }
}
.lower-blog__item a {
  display: block;
}
@media screen and (min-width: 768px) {
  .lower-blog__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.lower-blog__pic {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 26.6666%;
          flex: 0 1 26.6666%;
  margin: 0 0 20px 0;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .lower-blog__pic {
    margin: 0 5.5555% 0 0;
  }
}
.lower-blog__pic::before {
  padding-top: 70%;
  display: block;
  content: "";
}
.lower-blog__pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.lower-blog__category {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
  background-color: #1b224c;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lower-blog__category {
    padding: 0.5rem 0.75rem;
  }
}
.lower-blog__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.lower-blog__date {
  display: block;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.lower-blog__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .lower-blog__subtitle {
    font-size: 1.625rem;
  }
}
.lower-blog__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .lower-blog__text {
    font-size: 1rem;
  }
}

.form--layer {
  padding: 58px 20px 82px;
  padding: 3.625rem 20px 5.125rem;
}
@media screen and (min-width: 768px) {
  .form--layer {
    padding: 3.625rem 20px 5.125rem;
  }
}
.form__inner {
  max-width: 700px;
  max-width: 43.75rem;
  width: 100%;
  margin: 0 auto;
}
.form__description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6875;
  margin: 0 0 40px 0;
  margin: 0 0 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .form__description {
    font-size: 1rem;
  }
}
.form__text {
  margin: 0 0 20px 0;
  margin: 0 0 1.25rem 0;
}
.form__radio {
  margin: 0 0 26px 0;
  margin: 0 0 1.625rem 0;
}
.form__textarea {
  margin: 0 0 30px 0;
  margin: 0 0 1.875rem 0;
}
.form__privacy {
  margin: 0 0 40px 0;
  margin: 0 0 2.5rem 0;
}
.form__btn-label {
  text-align: center;
}
.form__btn {
  border: 1px solid transparent;
  background-color: #1b224c;
  color: #fff;
  width: 160px;
  width: 10rem;
  padding: 18px 0;
  padding: 1.125rem 0;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .form__btn {
    width: 12.5rem;
    font-size: 1rem;
  }
}
.form__btn:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #1b224c;
  background-color: #fff;
  color: #1b224c;
}

.privacy {
  text-align: center;
}
.privacy__text {
  margin: 0 0 33px 0;
  margin: 0 0 2.0625rem 0;
}
.privacy__text a {
  color: #F5A623;
  text-decoration: underline;
}
.privacy__text a:hover {
  text-decoration: none;
}
.privacy__checkbox {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#privacy-1 {
  margin: 0 15px 0 0;
  margin: 0 0.9375rem 0 0;
}

.radio__select span {
  font-weight: 700;
}
.radio__type {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#radio-1, #radio-2, #radio-3, #radio-4 {
  margin: 0 15px 0 0;
  margin: 0 0.9375rem 0 0;
}

.text__label {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .text__label {
    font-size: 1rem;
  }
}
.text__body {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 18px 20px;
  padding: 1.125rem 1.25rem;
}

.textarea__body {
  width: 100%;
  padding: 22px;
  padding: 1.375rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.category__title {
  margin: 0 0 30px 0;
  margin: 0 0 1.875rem 0;
}
.category__items {
  padding-left: 18px;
  padding-left: 1.125rem;
  list-style: disc;
}
.category__item {
  line-height: 2.4375;
  list-style: inside;
}

.detail-blog {
  padding: 60px 0 69px;
  padding: 3.75rem 0 4.3125rem;
}
@media screen and (min-width: 768px) {
  .detail-blog--flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.detail-blog__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 65.5555%;
          flex: 0 1 65.5555%;
}
@media screen and (min-width: 768px) {
  .detail-blog__left {
    margin-right: 4%;
  }
}
.detail-blog__side {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.detail-blog__article {
  padding: 0 0 60px 0;
  padding: 0 0 3.75rem 0;
}
.detail-blog__content h2 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 30px 0;
  margin: 0 0 1.875rem 0;
}
@media screen and (min-width: 768px) {
  .detail-blog__content h2 {
    font-size: 1.625rem;
  }
}
.detail-blog__content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  padding: 0.25em 0.5em;
  /*上下 左右の余白*/
  background: transparent;
  /*背景透明に*/
  border-left: solid 5px #1b224c;
  /*左線*/
  margin: 0 0 25px 0;
  margin: 0 0 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .detail-blog__content h3 {
    font-size: 1.375rem;
  }
}
.detail-blog__content p {
  margin: 0 0 30px 0;
  margin: 0 0 1.875rem 0;
}
.detail-blog__content pre {
  white-space: pre-wrap;
}
.detail-blog__content blockquote {
  background-color: #f8f8f8;
}
.detail-blog__content blockquote p {
  padding: 27px;
  padding: 1.6875rem;
}
.detail-blog__content a {
  text-decoration: underline;
}
.detail-blog__content a:hover {
  text-decoration: none;
}
.detail-blog__content img {
  width: auto;
  height: auto;
}
.detail-blog__content li {
  list-style: disc;
}
.detail-blog__category {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  background-color: #1b224c;
  text-align: center;
  margin: 0 0 30px 0;
  margin: 0 0 1.875rem 0;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .detail-blog__category {
    padding: 0.625rem 1.5625rem;
  }
}
.detail-blog__title {
  font-size: 26px;
  font-size: 1.625rem;
  margin: 0 0 20px 0;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .detail-blog__title {
    font-size: 1.75rem;
  }
}
.detail-blog__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 25px 0;
  margin: 0 0 1.5625rem 0;
  line-height: 0.8;
}
.detail-blog__date {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 0.8;
}
@media screen and (min-width: 768px) {
  .detail-blog__date {
    font-size: 1rem;
  }
}
.detail-blog__pic {
  width: 100%;
  margin: 0 0 40px 0;
  margin: 0 0 2.5rem 0;
}
.detail-blog__pic img {
  height: 100%;
}

.pickup__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .pickup__title {
    font-size: 1.625rem;
  }
}
.pickup__item {
  margin: 0 0 28px 0;
  margin: 0 0 1.75rem 0;
}
.pickup__date {
  margin-bottom: 29px;
  margin-bottom: 1.8125rem;
}
.pickup__pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35.6%;
          flex: 0 1 35.6%;
  margin: 0 5.3872% 0 0;
}
.pickup__pic::before {
  padding-top: 70%;
  display: block;
  content: "";
}
.pickup__pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.relation__items {
  padding: 30px 0 27px;
  padding: 1.875rem 0 1.6875rem;
}
.relation__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 42px 0;
  margin: 0 0 2.625rem 0;
}
.relation__link .relation__subtitle {
  text-decoration: underline;
}
.relation__link:hover .relation__subtitle {
  text-decoration: none;
}
.relation__item:last-of-type {
  margin: 0;
}
.relation__pic {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 37.1747%;
          flex: 0 1 37.1747%;
  margin: 0 6.3197% 0 0;
}
.relation__pic::before {
  padding-top: 70%;
  display: block;
  content: "";
}
.relation__pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.relation__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.relation__subtitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}
.relation__subtitle a {
  text-decoration: underline;
}
.relation__subtitle a:hover {
  text-decoration: none;
}

.side__title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  background-color: #1b224c;
  color: #fff;
  padding: 18px 0;
  width: 100%;
  text-align: center;
}

.detail-news {
  padding: 60px 0 58px;
  padding: 3.75rem 0 3.625rem;
}
.detail-news__title {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.7142857143;
  margin: 0 0 36px 0;
  margin: 0 0 2.25rem 0;
}
@media screen and (min-width: 768px) {
  .detail-news__title {
    font-size: 1.75rem;
  }
}
.detail-news__date {
  margin: 0 0 60px 0;
  margin: 0 0 3.75rem 0;
  display: block;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .detail-news__date {
    font-size: 1rem;
  }
}
.detail-news__content h1 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 30px 0;
  margin: 0 0 1.875rem 0;
}
@media screen and (min-width: 768px) {
  .detail-news__content h1 {
    font-size: 1.625rem;
  }
}
.detail-news__content h2 {
  font-size: 20px;
  font-size: 1.25rem;
  padding: 0.25em 0.5em;
  /*上下 左右の余白*/
  background: transparent;
  /*背景透明に*/
  border-left: solid 5px #1b224c;
  /*左線*/
  margin: 0 0 25px 0;
  margin: 0 0 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .detail-news__content h2 {
    font-size: 1.375rem;
  }
}
.detail-news__content p {
  margin: 0 0 30px 0;
  margin: 0 0 1.875rem 0;
}
.detail-news__content pre {
  white-space: pre-wrap;
}
.detail-news__content blockquote {
  background-color: #f8f8f8;
}
.detail-news__content blockquote p {
  padding: 27px;
  padding: 1.6875rem;
}
.detail-news__content a {
  text-decoration: underline;
}
.detail-news__content a:hover {
  text-decoration: none;
}
.detail-news__content img {
  width: auto;
  height: auto;
}
.detail-news__content li {
  list-style: disc;
}

.lower-news--layer {
  padding: 58px 0 65px;
  padding: 3.625rem 0 4.0625rem;
}
.lower-news__title {
  font-size: 28px;
  font-size: 1.75rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .lower-news__title {
    font-size: 2rem;
    margin-bottom: 3.75rem;
  }
}
.lower-news__link {
  display: block;
  padding: 24px 0;
  padding: 1.5rem 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-top: 1px solid #d5d5d5;
}
@media screen and (min-width: 768px) {
  .lower-news__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.lower-news__items {
  margin: 0 0 60px 0;
  margin: 0 0 3.75rem 0;
}
.lower-news__item:last-of-type {
  border-bottom: 1px solid #d5d5d5;
}
.lower-news__date {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .lower-news__date {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.lower-news__subtitle {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .lower-news__subtitle {
    font-size: 1rem;
  }
}

.features__price {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
}
.features-list {
  margin-top: 48px;
  margin-top: 3rem;
}
.features__item {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .features__item {
    font-size: 1rem;
  }
}
.features__item:first-of-type {
  margin-top: 0;
}
.features__item::before {
  content: url("../../assets/images/plan/features_icon@2x.png");
  display: inline-block;
  margin-right: 11px;
  margin-right: 0.6875rem;
}

.price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .price-box {
    max-width: 100%;
    white-space: normal;
  }
}
.price-box__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24.4444%;
          flex: 0 1 24.4444%;
  text-align: center;
  margin-right: 0.7777%;
  display: inline-block;
  margin-top: 96px;
  margin-top: 6rem;
}
.price-box__item:nth-of-type(3) {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .price-box__item:nth-of-type(3) {
    margin-top: 4.1875rem;
  }
}
.price-box__item:nth-of-type(4) {
  margin-right: 0;
}
.price-box__head {
  padding: 17px 0;
  padding: 1.0625rem 0;
  background-color: #1b224c;
  color: #fff;
}
.price-box__head--bg-orange {
  background-color: #f5a623;
}
.price-box__tag {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  font-weight: 700;
}
.price-box__body {
  height: 450px;
  height: 28.125rem;
  border: 1px solid #1b224c;
  border-top: none;
  padding: 30px 16px 0;
  padding: 1.875rem 1rem 0;
}
@media screen and (min-width: 768px) {
  .price-box__body {
    height: 31.25rem;
  }
}
.price-box__price {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price-box__price {
    font-size: 1.5625rem;
  }
}
.price-box__price--text-orange {
  color: #f5a623;
}
.price-box__monthly {
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}

.pricelist--layer {
  padding: 0 0 40px;
  padding: 0 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .pricelist--layer {
    padding: 0 0 3.8125rem;
  }
}
.pricelist__title {
  font-size: 28px;
  font-size: 1.75rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .pricelist__title {
    font-size: 2rem;
  }
}

.system--layer {
  padding: 30px 0 40px;
  padding: 1.875rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .system--layer {
    padding: 3.625rem 5.625rem;
  }
}
.system__title {
  font-size: 28px;
  font-size: 1.75rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .system__title {
    font-size: 2rem;
    margin-bottom: 3.75rem;
  }
}
.system__breakdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
.system__membersip, .system__monthly {
  font-weight: bold;
  padding: 20px 0;
  padding: 1.25rem 0;
  max-width: 280px;
  max-width: 17.5rem;
  width: 100%;
  background-color: #1b224c;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .system__membersip, .system__monthly {
    padding: 1.5625rem 0;
  }
}
.system__membersip {
  margin-right: 15px;
  margin-right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .system__membersip {
    margin-right: 2.1875rem;
  }
}
.system__add {
  font-size: 30px;
  font-size: 1.875rem;
  margin-right: 15px;
  margin-right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .system__add {
    margin-right: 2.1875rem;
  }
}

.detail {
  line-height: 1.7;
}

.send {
  text-align: center;
}
.send--layer {
  padding: 83px 0 87px;
  padding: 5.1875rem 0 5.4375rem;
}
.send__text {
  margin: 0 0 83px 0;
  margin: 0 0 5.1875rem 0;
  line-height: 1.6875;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .send__text {
    font-size: 1rem;
  }
}
.send__link a {
  font-size: 14px;
  font-size: 0.875rem;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .send__link a {
    font-size: 1rem;
  }
}
.send__link a:hover {
  text-decoration: none;
}

.accordion__item {
  padding: 30.5px 0 21px;
  padding: 1.90625rem 0 1.3125rem;
  border-top: 1px solid #1b224c;
  cursor: pointer;
}
.accordion__item:last-of-type {
  border-bottom: 1px solid #1b224c;
}
.accordion__question {
  padding: 0 60px 0 15px;
  padding: 0 3.75rem 0 0.9375rem;
  position: relative;
}
.accordion__question::before, .accordion__question::after {
  content: "";
  display: block;
  background-color: #010327;
  position: absolute;
  width: 20px;
  top: 21%;
  height: 3px;
  right: 25px;
  right: 1.5625rem;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
@media screen and (min-width: 768px) {
  .accordion__question::before, .accordion__question::after {
    width: 25px;
  }
}
.accordion__question::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.accordion__question.is-active::before {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  opacity: 0;
}
.accordion__question.is-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.accordion__answer {
  display: none;
  background-color: #f8f8f8;
  padding: 23px 0 20px 26px;
  padding: 1.4375rem 0 1.25rem 1.625rem;
  margin: 15px 0 0;
  margin: 0.9375rem 0 0;
}

@media screen and (min-width: 768px) {
  .archive--row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 7.4375rem;
  }
}
.archive--layer {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .archive--layer {
    padding-bottom: 7.4375rem;
  }
}
.archive__blog {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin: 0 0 30px 0;
  margin: 0 0 1.875rem 0;
}
@media screen and (min-width: 768px) {
  .archive__blog {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47.7777%;
            flex: 0 1 47.7777%;
    margin-right: 7.4444%;
  }
}
.archive__news {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .archive__news {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.blog__title {
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .blog__title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1.875rem;
  }
}
.blog__item {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.blog__item:last-of-type {
  margin-bottom: 0;
}
.blog__pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 34.8837%;
          flex: 0 1 34.8837%;
  margin: 0 4.6511% 0 0;
}
.blog__pic::before {
  padding-top: 70%;
  display: block;
  content: "";
}
.blog__pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.card {
  max-width: 600px;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
  }
}

.card__item {
  margin: 0 0 40px;
  margin: 0 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .card__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 31.1111%;
            flex: 0 1 31.1111%;
    margin-right: 3.3333%;
  }
}

.card__text {
  line-height: 1.8125;
  font-weight: 700;
}

.card__pic {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.card__prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1b224c;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.card__job {
  padding: 8px 0 8px 14px;
  padding: 0.5rem 0 0.5rem 0.875rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35.7142%;
          flex: 0 1 35.7142%;
  margin-right: 2.8571%;
  background-color: #f8f8f8;
}

.card__name {
  padding: 8px 0 8px 14px;
  padding: 0.5rem 0 0.5rem 0.875rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f8f8f8;
}

.card__result {
  color: #1b224c;
  padding: 8px 0 8px 14px;
  padding: 0.5rem 0 0.5rem 0.875rem;
  background-color: #f8f8f8;
}

.case {
  color: #fff;
  background-color: #1b224c;
}
.case--layer {
  padding: 58px 0 60px;
  padding: 3.625rem 0 3.75rem;
}
.case__title {
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .case__title {
    margin-bottom: 8.5625rem;
    font-size: 2.25rem;
  }
}

.faq--layer {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}
.faq__title {
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

.half-media {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .half-media {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.half-media__pic {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  background: #000;
}
@media screen and (min-width: 768px) {
  .half-media__pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 38.8888%;
            flex: 0 1 38.8888%;
    margin-right: 5.5555%;
  }
}
.half-media__pic img {
  height: 100%;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.half-media__pic:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 0.6;
}
.half-media__body {
  margin-right: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.half-media__tag {
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #f5a623;
  color: #fff;
  max-width: 90px;
  max-width: 5.625rem;
  width: 100%;
  padding: 8px 3px;
  padding: 0.5rem 0.1875rem;
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.half-media__subtitle {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .half-media__subtitle {
    font-size: 1.625rem;
  }
}

.half-media--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.half-media--reverse .half-media__body {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .half-media--reverse .half-media__body {
    margin-right: 5.5555%;
  }
}

.half-media--reverse .half-media__pic {
  margin-right: 0;
}

.mainview {
  height: 556px;
  color: #fff;
  text-align: center;
  position: relative;
}
.mainview__headline {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mainview__title {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.3541666667;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .mainview__title {
    font-weight: 700;
    font-size: 3rem;
  }
}
.mainview__copy {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .mainview__copy {
    font-size: 1.125rem;
    margin-bottom: 3.1875rem;
  }
}
.mainview__btn {
  display: inline-block;
  font-weight: bold;
  width: 180px;
  width: 11.25rem;
  border-radius: 1.875rem;
  padding: 16px 0;
  padding: 1rem 0;
  border: 1px solid transparent;
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}
@media screen and (min-width: 768px) {
  .mainview__btn {
    width: 16.1875rem;
    padding: 1rem 0;
  }
}
.mainview__btn:hover {
  color: #111;
  border-color: #111;
}
.mainview__link {
  text-decoration: underline;
}
.mainview__link:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.news__title {
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__title {
    text-align: left;
    font-size: 2.25rem;
    margin-bottom: 1.875rem;
  }
}
.news__item {
  padding-bottom: 43px;
  padding-bottom: 2.6875rem;
}

.price {
  text-align: center;
  color: #fff;
}
.price--layer {
  padding-bottom: 39px;
  padding-bottom: 2.4375rem;
}
.price--bg {
  padding: 61px 0 53px;
  padding: 3.8125rem 0 3.3125rem;
  background: url(/assets/images/top/price_bg@2x.jpg) center center/cover;
}
.price__text {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
.price__text span {
  display: inline-block;
}
.price__btn {
  display: inline-block;
  font-weight: bold;
  width: 180px;
  width: 11.25rem;
  border-radius: 1.875rem;
  padding: 16px 0;
  padding: 1rem 0;
  border: 1px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .price__btn {
    width: 16.1875rem;
    padding: 1rem 0;
  }
}
.price__btn:hover {
  border-color: #111;
  color: #111;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.prolog-foot {
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  background-color: #fff;
  text-align: center;
}
.prolog-foot__inner {
  border: solid 5px #1b224c;
}
@media screen and (min-width: 768px) {
  .prolog-foot__inner {
    padding: 1.3125rem 0 1.5rem;
  }
}
.prolog-foot__text-top {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .prolog-foot__text-top {
    margin-bottom: 1.5625rem;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .prolog-foot__text-top--br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .prolog-foot__text-bottom--br {
    display: none;
  }
}
.prolog-foot--marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #f5a623));
  background: linear-gradient(transparent 75%, #f5a623 0%);
}

.prolog-head {
  color: #fff;
  text-align: center;
}
.prolog-head__title {
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .prolog-head__title {
    margin-bottom: 4.0625rem;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .prolog-head__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.prolog-head__item {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 20px 0;
  margin: 0 0 1.25rem 0;
  line-height: 2.1666666667;
}
@media screen and (min-width: 768px) {
  .prolog-head__item {
    margin-right: 3.5625rem;
  }
}
.prolog-head__item:last-of-type {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .prolog-head__item:last-of-type {
    margin-right: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .prolog-head__item br {
    display: block;
  }
}

.prolog {
  background-color: #1b224c;
}
.prolog--layer {
  padding: 63px 0 54px;
  padding: 3.9375rem 0 3.375rem;
}
.prolog__head {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .prolog__head {
    margin-bottom: 5.1875rem;
  }
}

.recommed--layer {
  padding: 59px 0 93px;
  padding: 3.6875rem 0 5.8125rem;
}
.recommed__title {
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 57px;
  margin-bottom: 3.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recommed__title {
    font-size: 2.25rem;
  }
}
.recommed__item {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
.recommed__item:last-of-type {
  margin-bottom: 0;
}

.use--layer {
  padding: 58px 0 75px;
  padding: 3.625rem 0 4.6875rem;
}
.use__title {
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .use__title {
    font-size: 2.25rem;
    margin-bottom: 3.3125rem;
  }
}
.use__item {
  font-size: 12px;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .use__item {
    font-size: 1rem;
  }
}
.use__item:last-of-type {
  margin-bottom: 0;
}
.use__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-size: 0.75rem;
  background-color: #f5a623;
  color: #fff;
  line-height: 1.8125;
  padding: 21.5px 0;
  padding: 1.34375rem 0;
  width: 25px;
  width: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .use__number {
    font-size: 1rem;
    width: 4rem;
  }
}
.use__def {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  height: 4rem;
  background-color: #f8f8f8;
  padding-left: 10px;
  padding-left: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .use__def {
    padding-left: 1.3125rem;
  }
}
.use__def::after {
  width: 1px;
  height: 30px;
  content: "";
  display: inline-block;
  background-color: #c3c3c3;
  position: absolute;
  left: 28%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .use__def::after {
    left: 12.5rem;
  }
}
.use__dtitle {
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25.657895%;
          flex: 0 0 25.657895%;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .use__dtitle {
    max-width: 10.625rem;
    width: 100%;
    font-size: 1rem;
  }
}
.use__data {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 0 5px 0 22px;
  padding: 0 0.3125rem 0 1.375rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .use__data {
    font-size: 1rem;
    width: auto;
    padding-left: 3.3125rem;
  }
}

.vertical-post {
  display: block;
}
.vertical-post .vertical-post__title {
  text-decoration: underline;
}
.vertical-post:hover .vertical-post__title {
  text-decoration: none;
}
.vertical-post__date {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  display: block;
}
.vertical-post__title {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .vertical-post__title {
    font-size: 1rem;
  }
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
.wp-pagenavi__inner {
  text-align: center;
}
.wp-pagenavi a {
  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;
  border: 1px solid #1b224c;
  color: #1b224c;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi a {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.wp-pagenavi .current {
  background-color: #1b224c;
  color: #fff;
  margin: 0 15px 0 0;
  margin: 0 0.9375rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .current {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.wp-pagenavi .extend {
  border: none;
  margin: 0 20px 12px 5px;
  margin: 0 1.25rem 0.75rem 0.3125rem;
}
.wp-pagenavi .page {
  margin-right: 15px;
  margin-right: 0.9375rem;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .nextpostslink {
  margin: 0 15px 0 0;
  margin: 0 0.9375rem 0 0;
}
.wp-pagenavi .previouspostslink {
  margin: 0 15px 0 0;
  margin: 0 0.9375rem 0 0;
}
.wp-pagenavi .first {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 15px 0 0;
  margin: 0 0.9375rem 0 0;
}
.wp-pagenavi .last {
  font-size: 14px;
  font-size: 0.875rem;
}