@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap");
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP Regular"), url("../font/NotoSans_Regular.woff2") format("woff2"), url("../font/NotoSans_regular.woff") format("woff"), url("../font/NotoSans_regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans CJK JP Medium"), url("../font/NotoSans_Medium.woff2") format("woff2"), url("../font/NotoSans_medium.woff") format("woff"), url("../font/NotoSans_medium.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"), url("../font/NotoSans_Bold.woff2") format("woff2"), url("../font/NotoSans_bold.woff") format("woff"), url("../font/NotoSans_bold.otf") format("opentype");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: normal;
  src: url("../font/YakuHanJP-Regular.woff2") format("woff2"), url("../font/YakuHanJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: bold;
  src: url("../font/YakuHanJP-Bold.woff2") format("woff2"), url("../font/YakuHanJP-Bold.woff") format("woff");
}
/*!
 * variables.scss
 */
/*!
 * スマホサイズ
 * カラー
 * vw計算式
 * percent計算式
 * 擬似要素
 * 背景画像パス
 * フォントサイズ
 * フォントサイズの指定
 * メディアクエリ
 * 上下左右中央配置 
 * リンクカラー
 * 三角矢印
 * グラデーション背景
 * 自動でベンダープレフィックスをつける
 * 親要素に対して中央寄せ
 * 自動連番
 * イージング
 * ボタン
 * 三角矢印2
 */
/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
hr,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

a,
ins {
  text-decoration: none;
}

address,
em,
cite,
dfn,
var {
  font-style: normal;
}

fieldset {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

mark {
  background: none;
}

a {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  text-decoration: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a:hover {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ul,
ol {
  list-style-position: outside;
  list-style-type: none;
}

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

address, em {
  font-style: normal;
}

/*IE用セレクトボックスカスタマイズ*/
select::-ms-expand {
  display: none;
}

/* Box sizingの定義 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: "YakuHanJP", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  line-height: 1;
  overflow-y: scroll;
  color: #493b33;
}

body {
  line-height: 1.5;
  font-size: 1.6rem;
  color: #493b31;
}

a {
  text-decoration: none;
}
a img, a svg {
  transition: opacity 0.25s ease-in-out;
}

li {
  list-style: none;
}

/*---------------------------------------------
modules
---------------------------------------------*/
.green-bg-button {
  background-color: #16bfb7;
  width: 100%;
  max-width: 368px;
  text-align: center;
  border-radius: 28px;
  border: 2px solid #16bfb7;
  color: #fff;
  padding: 10px;
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto;
  box-shadow: rgba(34, 24, 21, 0.1) 0 2px 4px;
  cursor: pointer;
  text-decoration: none;
}

.green-bg-button:active {
  position: relative;
  top: 1px;
}

@media screen and (max-width: 969px) {
  .green-bg-button {
    font-size: 16px;
  }
}
.h-center {
  text-align: center;
  margin: 0 auto;
  max-width: 960px;
}

/*---------------------------------------------
new-header
---------------------------------------------*/
header {
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: fixed;
  height: auto;
}

.new-header {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.new-header .logo {
  height: 42px;
}
.new-header .logo img {
  height: 100%;
}

.new-header .header-title {
  font-weight: 700;
  margin-left: 16px;
  line-height: 20px;
  color: #493b32;
  font-size: 14px;
  width: 170px;
}

/*@media screen and (max-width: 990px) {
  .new-header .header-title {
      display:none
  }
}*/
@media screen and (max-width: 969px) {
  .new-header {
    height: 44px;
    padding: 0 16px;
  }
  .new-header .logo {
    height: 21px;
  }
  .new-header .logo img {
    vertical-align: top;
  }
  .new-header .header-title {
    margin-left: 16px;
    font-size: 10px;
    line-height: 1.2;
    width: auto;
  }
}
/*---------------------------------------------
payment-container
---------------------------------------------*/
.payment-container {
  width: calc(100% - 390px);
  padding-top: 80px;
}

@media screen and (max-width: 969px) {
  .payment-container {
    padding-top: 44px;
  }
}
@media screen and (max-width: 969px) {
  .payment-container {
    width: 100%;
  }
}
/*---------------------------------------------
cats
---------------------------------------------*/
.cats {
  position: relative;
  padding: 80px 0;
  text-align: center;
  margin: 0 auto;
  max-width: 960px;
}

@media screen and (max-width: 969px) {
  .cats {
    padding: 40px 16px;
  }
}
.cats .cat {
  position: absolute;
  bottom: 0;
  width: 134px;
  height: 108px;
}

@media screen and (max-width: 969px) {
  .cats .cat {
    display: none;
  }
}
@media screen and (max-width: 969px) {
  .cats .path-request {
    display: none;
  }
}
.cats .cat.left {
  left: 55px;
}

.cats .cat.right {
  transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  right: 55px;
}

/*---------------------------------------------
footer
---------------------------------------------*/
.container-body > footer {
  width: calc(100% - 390px);
}

@media only screen and (max-width: 989px) {
  .container-body > footer {
    width: 100%;
  }
}
footer {
  background-color: #fddc3e;
  padding: 20px 0 0;
}

@media screen and (max-width: 800px) {
  footer {
    padding: 20px 0;
  }
}
footer .p-mark {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

footer .footLogo {
  text-align: center;
}

@media screen and (max-width: 800px) {
  footer .footLogo img {
    width: 35vw;
  }
}
footer nav {
  max-width: 800px;
  margin: 20px auto;
}

footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

footer nav ul li {
  margin: 0 0.5em;
}

footer nav a {
  color: #493b32;
}

@media screen and (max-width: 800px) {
  footer nav a {
    font-size: 14px;
  }
}
footer .registration {
  color: #493b32;
  line-height: 60px;
  font-size: 14px;
  border-top: 1px solid #493b32;
  text-align: center;
  margin: 0 auto;
  max-width: 960px;
}

@media screen and (max-width: 639px) {
  footer .registration {
    margin-top: 20px;
  }
}
/*---------------------------------------------
モジュール
---------------------------------------------*/
@media screen and (max-width: 969px) {
  .pc {
    display: none !important;
  }
}

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

/*
@media only screen and (min-width: 1320px) {

}
@media only screen and (max-width: 1319px) {

}


@media screen and (max-width: 990px) {

}

@media only screen and (max-width: 989px) {

}

@media screen and (max-width: 969px) {

}

@media only screen and (min-width: 930px) {

}

@media only screen and (max-width: 929px) {

}

@media only screen and (max-width: 909px) {

}

@media screen and (max-width: 800px) {

}

@media screen and (max-width: 639px) {

}
*/
/*---------------------------------------------
base
---------------------------------------------*/
.payment-container section > .inner {
  max-width: 990px;
  margin: 0 auto;
  /*@media screen and (max-width: 969px) {
    width: 92%;
  }*/
}
.payment-container section h2 {
  position: relative;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1538;
  text-align: center;
  color: #003591;
  padding-bottom: 0.8em;
  margin-bottom: 1em;
}
@media screen and (max-width: 969px) {
  .payment-container section h2 {
    font-size: 6.9333333333vw;
  }
}
.payment-container section h2:after {
  content: "";
  display: block;
  width: 75px;
  height: 5px;
  background-color: #003591;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.payment-container section .btn {
  display: inline-block;
  width: 15em;
  max-width: 100%;
  text-align: center;
  padding: 0.7em 0.5em 0.8em;
  background-color: #003591;
  color: #fff;
}
.payment-container section .btn:hover {
  background-color: #0167d4;
}
.payment-container section .btn-lg {
  width: 17.5em;
}

/*---------------------------------------------
fv
---------------------------------------------*/
.fv {
  background-image: url(../img/fv_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 969px) {
  .fv {
    background-image: url(../img/fv_bg_sp.png);
  }
}
.fv .fv-box {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0 20px 10px;
}
@media screen and (max-width: 969px) {
  .fv .fv-box {
    min-height: auto;
    padding: 9.3333333333vw 0 6.6666666667vw;
  }
}
.fv .fv-box .fv-img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 59.8%;
  transform: translate(16.719%, -27.9%);
}
@media screen and (max-width: 1400px) {
  .fv .fv-box .fv-img {
    transform: translate(24%, -18%);
  }
}
@media screen and (max-width: 969px) {
  .fv .fv-box .fv-img {
    position: relative;
    top: inherit;
    right: inherit;
    transform: translate(0, 0);
    width: 84.6666666667vw;
    margin-top: 2vw;
  }
}
.fv .fv-box .fv-img img {
  width: 100%;
}
@media screen and (max-width: 969px) {
  .fv .fv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.fv .fv-content .copy {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
  color: #fff641;
  border-bottom: solid 2px #fff;
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 1319px) {
  .fv .fv-content .copy {
    font-size: 1.610738255vw;
  }
}
@media screen and (max-width: 969px) {
  .fv .fv-content .copy {
    font-size: 4.8vw;
  }
}
.fv .fv-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.47;
  margin-bottom: 0.3em;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1319px) {
  .fv .fv-content h1 {
    font-size: 1.8791946309vw;
  }
}
@media screen and (max-width: 969px) {
  .fv .fv-content h1 {
    font-size: 5.3333333333vw;
  }
}
.fv .fv-content h1 strong {
  font-size: 3.4rem;
}
@media only screen and (max-width: 1319px) {
  .fv .fv-content h1 strong {
    font-size: 2.2818791946vw;
  }
}
@media screen and (max-width: 969px) {
  .fv .fv-content h1 strong {
    font-size: 6.5333333333vw;
  }
}
.fv .fv-content h1 .memo {
  font-size: 2.2rem;
}
@media only screen and (max-width: 1319px) {
  .fv .fv-content h1 .memo {
    font-size: 1.4765100671vw;
  }
}
@media screen and (max-width: 969px) {
  .fv .fv-content h1 .memo {
    font-size: 4.1333333333vw;
  }
}
.fv .fv-content .fv-btn a {
  display: inline-block;
  transform: translate(-5%, 0);
  width: 424px;
}
@media only screen and (max-width: 1319px) {
  .fv .fv-content .fv-btn a {
    width: 28.4563758389vw;
  }
}
@media screen and (max-width: 969px) {
  .fv .fv-content .fv-btn a {
    transform: translate(0, 0);
    width: 93.0666666667vw;
  }
}
.fv .fv-content .notice {
  font-size: 1.2rem;
}
@media only screen and (max-width: 1319px) {
  .fv .fv-content .notice {
    font-size: 0.8053691275vw;
  }
}
@media screen and (max-width: 969px) {
  .fv .fv-content .notice {
    font-size: 2.6666666667vw;
    width: 100%;
    text-align: right;
    padding: 0 6.6666666667vw;
  }
}

/*---------------------------------------------
function
---------------------------------------------*/
.function {
  padding-top: 100px;
  padding-bottom: 40px;
}
@media screen and (max-width: 969px) {
  .function {
    padding-top: 13.3333333333vw;
    padding-bottom: 0;
  }
}
.function .bg-box {
  border-radius: 10px;
  background-color: #f1f3f4;
  margin-bottom: 25px;
  padding: 35px 0 20px;
  text-align: center;
}
@media screen and (max-width: 969px) {
  .function .bg-box {
    border-radius: 0;
    margin-bottom: 6.6666666667vw;
    padding: 9.3333333333vw 0 8vw;
  }
}
.function h3 {
  margin: 0 0 20px;
}
@media screen and (max-width: 969px) {
  .function h3 {
    margin: 0 0 9.3333333333vw;
  }
  .function h3 img {
    width: 30.1333333333vw;
  }
}
.function .function-items {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 969px) {
  .function .function-items {
    flex-wrap: wrap;
  }
}
.function .function-items .function-item {
  position: relative;
  overflow: hidden;
  width: 22.222%;
  background-color: #fff;
  border-radius: 10px;
  margin: 0 8px;
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 969px) {
  .function .function-items .function-item {
    width: 44.266%;
    margin: 0 1.733% 5.3333333333vw;
    padding: 3.3333333333vw 1.6vw;
  }
}
.function .function-items .function-item h4 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2538;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 969px) {
  .function .function-items .function-item h4 {
    font-size: 4.8vw;
  }
}
.function .function-items .function-item .image {
  margin-bottom: 15px;
}
@media screen and (max-width: 969px) {
  .function .function-items .function-item .image {
    margin-bottom: 4vw;
  }
}
.function .function-items .function-item p {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 969px) {
  .function .function-items .function-item p {
    font-size: 3.2vw;
  }
}
.function .function-items .function-item p strong {
  background-color: #fff665;
  font-weight: 700;
}
.function .function-items .function-item p .notes {
  font-size: 1.2rem;
}
@media screen and (max-width: 969px) {
  .function .function-items .function-item p .notes {
    font-size: 2.6666666667vw;
  }
}
.function .function-items .function-item.comingsoon:after {
  content: "";
  display: block;
  width: 35.45%;
  height: 0;
  padding-top: 35.45%;
  background-image: url(../img/comingsoon.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
  position: absolute;
  top: 0;
  right: 0;
}
.function .function-basic .function-items h4 {
  min-height: 2.8em;
}
@media screen and (max-width: 969px) {
  .function .function-basic .function-items .function-item:nth-child(1) .image {
    width: 30.5333333333vw;
  }
}
@media screen and (max-width: 969px) {
  .function .function-basic .function-items .function-item:nth-child(2) .image {
    width: 29.2vw;
  }
}
@media screen and (max-width: 969px) {
  .function .function-basic .function-items .function-item:nth-child(3) .image {
    width: 24vw;
  }
}
@media screen and (max-width: 969px) {
  .function .function-basic .function-items .function-item:nth-child(4) .image {
    width: 37.8666666667vw;
  }
}
@media screen and (max-width: 969px) {
  .function .function-pro .function-items .function-item:nth-child(1) .image {
    width: 20.9333333333vw;
  }
}
@media screen and (max-width: 969px) {
  .function .function-pro .function-items .function-item:nth-child(2) .image {
    width: 25.7333333333vw;
  }
}
@media screen and (max-width: 969px) {
  .function .function-pro .function-items .function-item:nth-child(3) .image {
    width: 30.6666666667vw;
  }
}
@media screen and (max-width: 969px) {
  .function .function-pro .function-items .function-item:nth-child(4) .image {
    width: 24.5333333333vw;
  }
}
.function .notice {
  text-align: center;
}

/*---------------------------------------------
point
---------------------------------------------*/
.point {
  padding: 80px 0;
}
@media only screen and (max-width: 1420px) {
  .point {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media screen and (max-width: 969px) {
  .point {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items {
    padding-left: 0;
    padding-right: 0;
  }
}
.point .point-items .point-item {
  display: flex;
  padding: 40px 0;
  align-items: center;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item {
    display: block;
    padding: 6.6666666667vw 0;
  }
}
.point .point-items .point-item .point-content {
  width: 52.5%;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item .point-content {
    width: 100%;
  }
}
.point .point-items .point-item .point-image {
  flex: 1;
  margin-left: 4.5%;
  text-align: center;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item .point-image {
    margin-top: 8.6666666667vw;
    margin-left: 0;
  }
}
.point .point-items .point-item .point-service {
  margin: 0 0 12px 95px;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item .point-service {
    margin: 0 0 12px 18.6666666667vw;
  }
}
.point .point-items .point-item .point-service .point-service-pc > * + * img {
  margin: 0 0 0 20px;
}
@media only screen and (max-width: 1319px) {
  .point .point-items .point-item .point-service .point-service-pc > * + * img {
    margin: 0 0 0 1.3422818792vw;
  }
}
.point .point-items .point-item .point-service img {
  width: 126px;
}
@media only screen and (max-width: 1319px) {
  .point .point-items .point-item .point-service img {
    width: 8.4563758389vw;
  }
}
.point .point-items .point-item .point-service .point-service-sp {
  display: flex;
  flex-wrap: wrap;
}
.point .point-items .point-item .point-service .point-service-sp > * + * {
  margin-left: 1.6vw;
}
.point .point-items .point-item .point-service span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21.3333333333vw;
  height: 5.6vw;
  border-radius: 5.6vw;
  font-size: 3.2vw;
  font-weight: 700;
  color: #493b31;
  line-height: 1.2;
  background-color: #eb8d73;
}
.point .point-items .point-item .point-service span.pro {
  background-color: #fedd24;
}
.point .point-items .point-item .point-title {
  display: flex;
  align-items: center;
  margin: 0 0 40px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.533;
  color: #222222;
}
.point .point-items .point-item .point-title h4 {
  flex: 1;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item .point-title {
    margin: 0 0 5.3333333333vw;
    font-size: 5.6vw;
  }
}
.point .point-items .point-item .point-number {
  width: 75px;
  margin-right: 20px;
  text-align: center;
  border-bottom: solid 2px #1c4fa1;
  padding: 12px 0;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item .point-number {
    margin-right: 5.3333333333vw;
    padding: 2vw 0;
  }
  .point .point-items .point-item .point-number img {
    width: 100%;
  }
}
.point .point-items .point-item .point-desc {
  line-height: 2;
}
.point .point-items .point-item:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.point .point-items .point-item:nth-child(2n+1) .point-image {
  margin-left: 0;
  margin-right: 4.5%;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(2n+1) .point-image {
    margin-right: 0;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(1) .point-number {
    width: 10.4vw;
    margin-right: 8.2666666667vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(1) .point-image img {
    width: 56.4vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(2) .point-number {
    width: 12.9333333333vw;
    margin-right: 5.7333333333vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(2) .point-image img {
    width: 73.3333333333vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(3) .point-number {
    width: 13.0666666667vw;
    margin-right: 5.6vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(3) .point-image img {
    width: 73.3333333333vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(4) .point-number {
    width: 13.6vw;
    margin-right: 5.0666666667vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(4) .point-image img {
    width: 60vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(5) .point-number {
    width: 13.0666666667vw;
    margin-right: 5.6vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(5) .point-image img {
    width: 85.3333333333vw;
  }
}

/*---------------------------------------------
case
---------------------------------------------*/
.payment-container .case h2 {
  margin-bottom: 2em;
}
.case .bg-box {
  padding: 90px 0;
  background-color: #f1f3f4;
}
@media screen and (max-width: 969px) {
  .case .bg-box {
    padding: 14.6666666667vw 0 6.6666666667vw;
  }
}
@media screen and (max-width: 969px) {
  .case .bg-box {
    padding-left: 4%;
    padding-right: 4%;
  }
}
.case .case-items {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 969px) {
  .case .case-items {
    display: block;
  }
}
.case .case-items .case-item {
  width: 28.28%;
  margin: 0 1.72%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 969px) {
  .case .case-items .case-item {
    display: block;
    width: 100%;
    margin: 0 0 13.3333333333vw;
  }
}
.case .case-items .pic {
  margin: 0 0 15px;
}
@media screen and (max-width: 969px) {
  .case .case-items .pic {
    margin: 0 0 4vw;
  }
}
.case .case-items .case-title {
  color: #003591;
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1em;
}
@media screen and (max-width: 969px) {
  .case .case-items .case-title {
    font-size: 4.2666666667vw;
  }
}
.case .case-items .case-title .students {
  display: inline-block;
  padding: 0 0.5em;
  border: solid 2px #003591;
}
.case .case-items .case-desc {
  line-height: 1.875;
  margin: 0 0 25px;
  color: #222;
}
@media screen and (max-width: 969px) {
  .case .case-items .case-desc {
    margin: 0 0 5.3333333333vw;
  }
}
.case .case-items .case-desc strong {
  background-color: #fff665;
  font-weight: 700;
}
.case .case-items .btn-container {
  margin: auto 0 0;
  display: flex;
  justify-content: center;
}

/*---------------------------------------------
result
---------------------------------------------*/
.result {
  padding: 100px 0 80px;
  text-align: center;
}
@media screen and (max-width: 969px) {
  .result {
    padding: 14.6666666667vw 0 10.6666666667vw;
  }
}
.payment-container .result h2 {
  margin-bottom: 2em;
}
@media only screen and (max-width: 1420px) {
  .result .result-data {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media screen and (max-width: 969px) {
  .result .result-data {
    padding-left: 4%;
    padding-right: 4%;
  }
}
.result .result-users {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 0;
}
@media screen and (max-width: 969px) {
  .result .result-users {
    margin: 4.6666666667vw 0 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.result .result-users li {
  margin: 5px 10px;
  width: 238px;
}
.result .result-users li img {
  width: 100%;
}
@media screen and (max-width: 969px) {
  .result .result-users li {
    margin: 0.6666666667vw 2.6666666667vw;
    width: 42.6666666667vw;
  }
}

/*---------------------------------------------
allinone
---------------------------------------------*/
.allinone {
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 969px) {
  .allinone {
    padding: 10.6666666667vw 0 21.3333333333vw;
  }
}
.payment-container .allinone h2 {
  margin-bottom: 1.5em;
  line-height: 1.263;
}
@media only screen and (max-width: 1420px) {
  .allinone .allinone-image {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media screen and (max-width: 969px) {
  .allinone .allinone-image {
    padding-left: 4%;
    padding-right: 4%;
  }
}
.allinone .btn-container {
  margin: 50px 0 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 969px) {
  .allinone .btn-container {
    margin: 6.6666666667vw 0 0;
  }
}

/*---------------------------------------------
faq
---------------------------------------------*/
.faq .bg-box {
  padding: 80px 0 50px;
  background-color: #f1f3f4;
}
@media screen and (max-width: 969px) {
  .faq .bg-box {
    padding: 13.3333333333vw 4vw 8vw;
  }
}
.payment-container .faq h2 {
  margin-bottom: 1.5em;
}
.faq .faq-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 969px) {
  .faq .faq-items {
    display: block;
  }
}
.faq .faq-items .faq-item {
  width: 44.44%;
  margin: 0 1.81% 35px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 969px) {
  .faq .faq-items .faq-item {
    width: 100%;
    margin: 0 0 5.3333333333vw;
  }
}
.faq .faq-items .faq-item .faq-q {
  display: flex;
  align-items: center;
  background-color: #1c4fa1;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 18px;
}
@media screen and (max-width: 969px) {
  .faq .faq-items .faq-item .faq-q {
    padding: 3.7333333333vw;
  }
}
.faq .faq-items .faq-item .faq-q img {
  width: 40px;
  margin: 0 18px 0 0;
}
@media screen and (max-width: 969px) {
  .faq .faq-items .faq-item .faq-q img {
    width: 8.6666666667vw;
    margin: 0 4vw 0 0;
  }
}
.faq .faq-items .faq-item .faq-q p {
  flex: 1;
  font-size: 2.2rem;
  line-height: 1.636;
}
@media screen and (max-width: 969px) {
  .faq .faq-items .faq-item .faq-q p {
    font-size: 4.8vw;
  }
}
.faq .faq-items .faq-item .faq-a {
  padding: 25px;
  line-height: 2;
}
@media screen and (max-width: 969px) {
  .faq .faq-items .faq-item .faq-a {
    padding: 5.3333333333vw;
  }
}

/*---------------------------------------------
price
---------------------------------------------*/
.price {
  padding: 100px 0 140px;
}
@media screen and (max-width: 969px) {
  .price {
    padding: 10.6666666667vw 0;
  }
}
.payment-container .price h2 {
  margin-bottom: 1.5em;
}
.price .price-notice {
  width: 612px;
  max-width: 96%;
  margin: 0 auto;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #003591;
  border: solid 3px #1c4fa1;
  background-color: #f1f3f4;
  padding: 1em;
}
@media screen and (max-width: 969px) {
  .price .price-notice {
    width: 92%;
    font-size: 4vw;
    line-height: 1.6;
  }
}
.price .price-notice a {
  text-decoration: underline;
}
.price .price-notice a:hover {
  color: #0167d4;
}

/*.fv {
    background-color: #6ed0f7;
    background-image: url(../img/fv_bg.png);
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: cover;
    color: #fff;
    margin: 0 0 120px;
    @media only screen and (max-width: 1319px) {
      background-image: url(../img/fv_bg_sp.png);
      background-position: 50% 100%;
    }

    .fv-box {
      position: relative;
      height: calc(100vw *(450 / 1490));
      margin: 0 calc(100vw *(50 / 1490)) 0 calc(100vw *(90 / 1490));
      @media only screen and (max-width: 1319px) {
        height: auto;
        margin: 0;
        padding: 52px 5px 290px;
      }
      @media screen and (max-width: 969px) {
        padding: calc(100vw *(80 / 750)) calc(100vw *(10 / 750)) calc(100vw *(440 / 750));
      }
    }
    .fv-txt {
      width: calc(100vw *(420 / 1490));
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      @media only screen and (max-width: 1319px) {
        width: auto;
        height: auto;
        text-align: center;
      }
      p {
        font-size: calc(100vw *(22 / 1490));
        line-height: 1.54;
        @media only screen and (max-width: 1319px) {
          font-size: 2.3rem;
        }
        @media screen and (max-width: 969px) {
          font-size: calc(100vw *(36 / 750));
        }
      }
      .copy {
        margin: 0 0 .8em;
        font-size: calc(100vw *(42 / 1490));
        font-weight: 700;
        line-height: 1.3;
        strong {
          font-size: calc(100vw *(54 / 1490));
        }
        @media only screen and (max-width: 1319px) {
          font-size: 4.4rem;
          strong {
            font-size:5.7rem;
          }
        }
        @media screen and (max-width: 969px) {
          font-size: calc(100vw *(67 / 750));
          strong {
            font-size: calc(100vw *(87 / 750));
          }
        }
      }
    }
    .fv-img {
      position: absolute;
      top: calc(100vw *(65 / 1490));
      right: 0;
      width: calc(100vw *(543 / 1490));
      img {
        width: 100%;
      }
      @media only screen and (max-width: 1319px) {
        top: inherit;
        left: 50%;
        bottom: 0;
        right: inherit;
        transform: translate(-50%, 16.97%);
        width: 360px;
      }
      @media screen and (max-width: 969px) {
        width: calc(100vw *(543 / 750));
      }
    }
}*/
/*---------------------------------------------
cando
---------------------------------------------

.cando {
  text-align: center;
  padding: 0 0 90px;
  @media screen and (max-width: 969px) {
    padding: 0 0 calc(100vw *(60 / 750));
  }
  h2 {
    font-size: 4.2rem;
    font-weight: bold;
    margin: 0 0 40px;
    img {
      width: 291px;
      vertical-align: middle;
      margin-right: .1em;
      margin-top: -0.22em;
    }
    @media screen and (max-width: 969px) {
      font-size: calc(100vw *(50 / 750));
      margin: 0 0 calc(100vw *(50 / 750));
      img {
        width: calc(100vw *(320 / 750));
      }
    }
  }
  .cando-img01 {
    margin: 0 0 50px;
    @media screen and (max-width: 969px) {
      margin: 0 0 calc(100vw *(70 / 750));
    }
  }
  h3 {
    font-size: 3.6rem;
    font-weight: 700;
    color: #6ed0f7;
    margin: 0 0 25px;
    @media screen and (max-width: 969px) {
      font-size: calc(100vw *(36 / 750));
      margin: 0 0 calc(100vw *(35 / 750));
    }
  }
  .point {
    ul {
      display: flex;
      justify-content: center;
      @media screen and (max-width: 969px) {
        flex-direction: column;
        align-items: center;
      }
      li {
        border: solid 3px #6ed0f7;
        border-radius: 16px;
        margin: 0 10px;
        padding: 30px 10px;
        width: 30%;
        font-size: 2.0rem;
        font-weight: 700;
        line-height: 1.7;
        strong {
          color: #2bb9f1;
        }
        @media screen and (max-width: 969px) {
          border-radius: calc(100vw *(16 / 750));
          margin: 0 auto;
          padding: calc(100vw *(30 / 750)) calc(100vw *(5 / 750));
          width: 91.159%;
          font-size: calc(100vw *(30 / 750));
          margin: 0 0 calc(100vw *(40 / 750));
        }
      }
    }
  }
}*/
/*---------------------------------------------
feature
---------------------------------------------

.feature {
  background-color: #f8f8f8;
  padding: 80px 0 120px;
  text-align: center;
  @media screen and (max-width: 969px) {
    padding: calc(100vw *(75 / 750)) 0 calc(100vw *(100 / 750));
  }
  .number {
    font-family: 'Jost', sans-serif;
    font-size: 4.8rem;
    font-weight: 600;
    color: #2bb9f1;
    display: inline-block;
    line-height: 1.4;
    margin: 0 0 .6em;
    position: relative;
    &:after {
      content: "";
      display: block;
      width: 85%;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 0);
      height: 3px;
      background-color: #2bb9f1;
    }
    @media screen and (max-width: 969px) {
      font-size: calc(100vw *(52 / 750));
    }
  }
  h2 {
    font-size: 4.2rem;
    font-weight: 700;
    margin: 0 0 1em;
    @media screen and (max-width: 969px) {
      font-size: calc(100vw *(52 / 750));
    }
  }
  h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 1em;
    line-height: 1.6;
    span {
      font-size: 2.2rem;
    }
    @media screen and (max-width: 969px) {
      font-size: calc(100vw *(32 / 750));
      span {
        font-size: calc(100vw *(30 / 750));
      }
    }
  }
  .feature-block-01 {
    .img-01 {
      margin: 65px 0 0;
      @media screen and (max-width: 969px) {
        margin: calc(100vw *(55 / 750)) 0 0;
        img {
          width: calc(100vw *(456 / 750));
        }
      }
    }
    .img-02 {
      margin: 55px 0 0;
      @media screen and (max-width: 969px) {
        margin: calc(100vw *(40 / 750)) 0 0;
      }
    }
  }
  .feature-block-02 {
    margin: 100px 0 0;
    .img-01 {
      margin: 45px 0 0;
    }
    @media screen and (max-width: 969px) {
      margin: calc(100vw *(100 / 750)) 0 0;
      .img-01 {
        margin: calc(100vw *(45 / 750)) 0 0;
      }
    }
  }
}*/
/*---------------------------------------------
case
---------------------------------------------

.case {
  padding: 80px 0;
  text-align: center;
  @media screen and (max-width: 969px) {
    padding: calc(100vw *(130 / 750)) 0 calc(100vw *(80 / 750));
  }
  .inner {
    max-width: 940px;
    margin: 0 auto;
  }
  strong {
    font-weight: 700;
  }
  h2 {
    font-size: 4.2rem;
    font-weight: 700;
    margin: 0 0 1.0em;
    @media screen and (max-width: 969px) {
      font-size: calc(100vw *(52 / 750));
    }
  }
  .case_client {
    color: #6ed0f7;
    font-weight: bold;
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0 0 .8em;
    @media screen and (max-width: 969px) {
      font-size: calc(100vw *(42 / 750));
    }
  }
  .case_details {
    width: 680px;
    margin: 0 auto;
    padding: 0 0 30px;
    @media screen and (max-width: 969px) {
      width: 100%;
      padding: 0 0 30px;
    }
    dl {
      text-align: left;
      display: flex;
      align-items: center;
      margin: 0 0 40px;
      @media screen and (max-width: 969px) {
        margin: 0 0 calc(100vw *(45 / 750));
      }
    }
    dt {
      width: 120px;
      height: 120px;
      border-radius: 60px;
      background-color: #6ed0f7;
      color: #fff;
      font-weight: bold;
      font-size: 2.4rem;
      line-height: 1.5;
      margin: 0 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      @media screen and (max-width: 969px) {
        width: calc(100vw *(145 / 750));
        height: calc(100vw *(145 / 750));
        border-radius: calc(100vw *(80 / 750));
        font-size: calc(100vw *(30 / 750));
        margin: 0 calc(100vw *(10 / 750));
      }
    }
    dd {
      flex: 1;
      ul {
        li {
          text-indent: -1em;
          padding-left: 1em;
          font-size: 2.0rem;
          @media screen and (max-width: 969px) {
            font-size: calc(100vw *(24 / 750));
          }
          span {
            display: inline-block;
            width: 1em;
            text-align: right;
            padding-right: .2em;
          }
        }
      }
    }
  }
  .case_profile {
    background-color: #f8f8f8;
    display: flex;
    padding: 50px 30px 50px 60px;
    text-align: left;
    @media screen and (max-width: 969px) {
      padding: calc(100vw *(45 / 750)) calc(100vw *(30 / 750)) calc(100vw *(55 / 750)) calc(100vw *(45 / 750));
      display: block;
    }
    .profile_photo {
      width: 250px;
      margin-right: 40px;
      @media screen and (max-width: 969px) {
        width: calc(100vw *(317 / 750));
        margin-right: calc(100vw *(45 / 750));
        float: left;
      }
      img {
        width: 100%;
      }
    }
    .profile_cont {
      flex: 1;
      line-height: 2;
      font-size: 1.8rem;

      @media screen and (max-width: 969px) {
        font-size: calc(100vw *(24 / 750));
        padding: calc(100vw *(130 / 750)) 0 0;
        margin: 0 0 calc(100vw *(45 / 750));
      }
      p {
        &.profile_meta {
          font-size: 2.0rem;
          line-height: 1.5;
          font-weight: bold;
          margin: 0 0 1.5em;
          @media screen and (max-width: 969px) {
            font-size: calc(100vw *(26 / 750));
          }
        }
      }
    }
  }
  .case_notice {
    text-align: right;
    margin-top: .5em;
    @media screen and (max-width: 969px) {
      text-align: left;
    }
  }
}
*/
/*---------------------------------------------
price
---------------------------------------------

.price {
  text-align: center;
  padding: 65px 0 0;
  @media screen and (max-width: 969px) {
    padding: calc(100vw *(90 / 750)) 0 0;
  }
  h2 {
    font-size: 4.2rem;
    font-weight: 700;
    margin: 0 0 .8em;
    & + p {
      font-size: 2.4rem;
    }
    @media screen and (max-width: 969px) {
      font-size: calc(100vw *(52 / 750));
      & + p {
        font-size: calc(100vw *(30 / 750));
      }
    }
  }
  .img-01 {
    margin: 40px 0 0;
    @media screen and (max-width: 969px) {
      margin: calc(100vw *(45 / 750)) 0 0;
      img {
        width: calc(100vw *(603 / 750));
      }
    }
  }
}*/