@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: #222222;
}

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;
}

sup {
  font-size: 50%;
  position: relative;
  top: -0.65em;
}

/*---------------------------------------------
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
---------------------------------------------*/
.accesscontrol-container {
  color: #222222;
  width: calc(100% - 390px);
  padding-top: 80px;
}
@media screen and (max-width: 969px) {
  .accesscontrol-container {
    width: 100%;
    padding-top: 44px;
  }
}
.accesscontrol-container section > .inner {
  position: relative;
  max-width: 940px;
  width: 92%;
  margin: 0 auto;
}
.accesscontrol-container section h2 {
  position: relative;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1538;
  text-align: center;
  color: #222222;
  padding-bottom: 0.8em;
  margin-bottom: 2em;
}
@media screen and (max-width: 969px) {
  .accesscontrol-container section h2 {
    font-size: 6.9333333333vw;
  }
}
.accesscontrol-container section h2:after {
  content: "";
  display: block;
  width: 75px;
  height: 5px;
  background-color: #ff3e03;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

/*---------------------------------------------
fv
---------------------------------------------*/
.fv {
  background-image: url(../img/fv_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 969px) {
  .fv {
    background-image: url(../img/fv_bg_sp.png);
  }
}
.fv .fv-box {
  position: relative;
  max-width: 940px;
  width: 96.36%;
  height: 480px;
  margin: 0 auto;
}
@media screen and (max-width: 969px) {
  .fv .fv-box {
    height: 146.6666666667vw;
    padding: 4.6666666667vw 0.6666666667vw 4.6666666667vw;
  }
}
.fv .fv-box .fv-img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 579px;
  transform: translate(-20%, -45%);
}
@media screen and (max-width: 1400px) {
  .fv .fv-box .fv-img {
    width: 41.3571428571vw;
  }
}
@media screen and (max-width: 969px) {
  .fv .fv-box .fv-img {
    max-width: inherit;
    transform: translate(-49%, -40%);
    width: 92.5333333333vw;
  }
}
.fv .fv-box .fv-img img {
  width: 100%;
}
.fv .fv-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 2em;
}
@media screen and (max-width: 969px) {
  .fv .fv-content {
    justify-content: space-between;
    text-align: center;
  }
}
.fv .fv-content h1 {
  margin-bottom: 20px;
}
.fv .fv-content h1 img {
  width: 593px;
}
@media only screen and (max-width: 1400px) {
  .fv .fv-content h1 img {
    width: 42.3571428571vw;
    margin-bottom: 1.4285714286vw;
  }
}
@media screen and (max-width: 969px) {
  .fv .fv-content h1 img {
    width: 100%;
    margin-bottom: 0;
  }
}
.fv .fv-content .fv-btn a {
  display: inline-block;
  width: 380px;
}
@media only screen and (max-width: 1400px) {
  .fv .fv-content .fv-btn a {
    width: 27.1428571429vw;
  }
}
@media screen and (max-width: 969px) {
  .fv .fv-content .fv-btn a {
    width: 81.3333333333vw;
  }
}
.fv .notice {
  margin-top: 1em;
  font-size: 12px;
}
@media screen and (max-width: 969px) {
  .fv .notice {
    font-size: 2.4vw;
  }
}

/*---------------------------------------------
topcontent
---------------------------------------------*/
.topcontent {
  padding: 70px 0 60px;
}
@media screen and (max-width: 969px) {
  .topcontent {
    padding: 9.3333333333vw 0 8vw;
  }
}
.topcontent .data {
  display: flex;
}
@media screen and (max-width: 969px) {
  .topcontent .data {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 969px) {
  .topcontent .data img {
    width: 100%;
  }
}
.topcontent .data div:nth-child(1) {
  width: 38.08%;
  max-width: 358px;
  margin-right: 45px;
}
@media only screen and (max-width: 1400px) {
  .topcontent .data div:nth-child(1) {
    margin-right: 4.78%;
  }
}
@media screen and (max-width: 969px) {
  .topcontent .data div:nth-child(1) {
    max-width: inherit;
    width: 59.7333333333vw;
    margin-right: 0;
    margin-bottom: 4.2666666667vw;
  }
}
.topcontent .data div:nth-child(2) {
  width: 55.319%;
  max-width: 520px;
}
@media screen and (max-width: 969px) {
  .topcontent .data div:nth-child(2) {
    max-width: inherit;
    width: 100%;
  }
}
.topcontent .users {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 870px;
  border: solid 5px #f5f5f5;
  width: 92.55%;
  padding: 20px 10px;
  margin: 40px 0 0;
}
@media screen and (max-width: 969px) {
  .topcontent .users {
    width: 100%;
    gap: 2.6666666667vw;
  }
}
@media screen and (max-width: 969px) {
  .topcontent .users li:nth-child(1) {
    width: 25.2vw;
  }
}
@media screen and (max-width: 969px) {
  .topcontent .users li:nth-child(2) {
    width: 21.8666666667vw;
  }
}
@media screen and (max-width: 969px) {
  .topcontent .users li:nth-child(3) {
    width: 32vw;
  }
}
@media screen and (max-width: 969px) {
  .topcontent .users li:nth-child(4) {
    width: 22.8vw;
  }
}
@media screen and (max-width: 969px) {
  .topcontent .users li:nth-child(5) {
    width: 35.0666666667vw;
  }
}
@media screen and (max-width: 969px) {
  .topcontent .users li:nth-child(6) {
    width: 25.8666666667vw;
  }
}

/*---------------------------------------------
features
---------------------------------------------*/
.features {
  padding-bottom: 60px;
}
.features .features-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media only screen and (max-width: 1400px) {
  .features .features-items {
    gap: 5.319%;
  }
}
@media screen and (max-width: 969px) {
  .features .features-items {
    gap: 0;
  }
}
.features .features-items .features-item {
  background-color: #fffee3;
  border-radius: 20px;
  width: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5px 25px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1400px) {
  .features .features-items .features-item {
    width: 43.61%;
  }
}
@media screen and (max-width: 969px) {
  .features .features-items .features-item {
    width: 100%;
    border-radius: 2.6666666667vw;
    padding: 0 3.3333333333vw 8vw;
    margin-bottom: 10vw;
  }
}
.features .features-items .features-item .number {
  transform: translate(0, -23.25%);
}
@media screen and (max-width: 969px) {
  .features .features-items .features-item .number img {
    width: 17.4666666667vw;
  }
}
.features .features-items .features-item h3 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.357;
  text-align: center;
  min-height: 3em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 969px) {
  .features .features-items .features-item h3 {
    font-size: 5.6vw;
    min-height: inherit;
    display: block;
  }
}
.features .features-items .features-item .image {
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 969px) {
  .features .features-items .features-item .image {
    margin-top: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
    width: 25.3333333333vw;
  }
  .features .features-items .features-item .image img {
    width: 100%;
  }
}
@media screen and (max-width: 969px) {
  .features .features-items .features-item:nth-child(2) .image {
    width: 25.8666666667vw;
  }
  .features .features-items .features-item:nth-child(3) .image {
    width: 25.8666666667vw;
  }
  .features .features-items .features-item:nth-child(4) .image {
    width: 24vw;
  }
}
.features .features-items .features-item p:last-child {
  padding: 0 15px;
}
.features .features-items .features-item p:last-child span {
  font-size: 1.4rem;
}
@media screen and (max-width: 969px) {
  .features .features-items .features-item p:last-child {
    padding: 0;
    font-size: 3.2vw;
  }
  .features .features-items .features-item p:last-child span {
    font-size: 2.6666666667vw;
  }
}
.features .usageImage {
  background-color: #fffee3;
  margin: 0 auto;
  width: 92.55%;
  padding: 60px 25px;
  text-align: center;
}
@media screen and (max-width: 969px) {
  .features .usageImage {
    width: 100%;
    padding: 9.3333333333vw 4.6666666667vw;
  }
}
.features .usageImage h3 {
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1538;
  text-align: center;
  padding-bottom: 0.8em;
  margin-bottom: 1em;
}
@media screen and (max-width: 969px) {
  .features .usageImage h3 {
    font-size: 5.6vw;
  }
}
.features .usageImage h3 span {
  display: inline-block;
  padding-bottom: 0.5em;
  border-bottom: solid 3px #ff3e03;
}
@media screen and (max-width: 969px) {
  .features .usageImage .image img {
    width: 71.4666666667vw;
  }
}
.features .btn_cv {
  text-align: center;
  margin-top: 70px;
}
@media screen and (max-width: 969px) {
  .features .btn_cv {
    margin-top: 9.3333333333vw;
  }
}

/*---------------------------------------------
point
---------------------------------------------*/
.point {
  padding-top: 80px;
  padding-bottom: 40px;
}
@media screen and (max-width: 969px) {
  .point .point-items {
    padding-top: 0;
    padding-bottom: 5.3333333333vw;
  }
}
.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: 50%;
}
@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-title {
  display: flex;
  align-items: center;
  margin: 0 0 35px;
  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: 3.3333333333vw;
  max-width: 48px;
  margin-right: 20px;
  text-align: center;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item .point-number {
    max-width: inherit;
    margin-right: 3.3333333333vw;
  }
  .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.1333333333vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(1) .point-image img {
    width: 100%;
  }
}
.point .point-items .point-item:nth-child(2) .point-number {
  width: 3.6805555556vw;
  max-width: 53px;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(2) .point-number {
    width: 10.5333333333vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(2) .point-image img {
    width: 78.2666666667vw;
  }
}
.point .point-items .point-item:nth-child(3) .point-number {
  width: 3.6805555556vw;
  max-width: 53px;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(3) .point-number {
    width: 10.5333333333vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(3) .point-image img {
    width: 69.0666666667vw;
  }
}
.point .point-items .point-item:nth-child(4) .point-number {
  width: 3.8194444444vw;
  max-width: 55px;
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(4) .point-number {
    width: 11.2vw;
  }
}
@media screen and (max-width: 969px) {
  .point .point-items .point-item:nth-child(4) .point-image img {
    width: 70.8vw;
  }
}

/*---------------------------------------------
case
---------------------------------------------*/
.case {
  background-color: #f6f6f6;
  padding: 80px 0;
}
.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: 29.78%;
  margin: 0 1.7%;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
@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;
    width: 100%;
  }
}
.case .case-items .case-title {
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 1em;
  min-height: 3em;
  display: flex;
  align-items: center;
}
@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;
}
.case .btn {
  display: inline-block;
  width: 14em;
  max-width: 100%;
  text-align: center;
  padding: 0.7em 0.5em 0.8em;
  background-color: #ff3e03;
  color: #fff;
  border-radius: 50px;
}
.case .btn:hover {
  background-color: #ff6a48;
}

/*---------------------------------------------
faq
---------------------------------------------*/
.faq {
  padding: 100px 0 60px;
}
.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;
  background-color: #f6f6f6;
}
@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: #ffce3f;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 18px;
  font-weight: bold;
  line-height: 1.25;
  min-height: 7em;
}
@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: 41px;
  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;
  }
}
.accesscontrol-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;
  border: solid 3px #ff3e03;
  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 {
  display: inline-block;
  padding-bottom: 0.1em;
  text-decoration: none;
  border-bottom: solid 2px #ff3e03;
  color: #ff3e03;
}
.price .price-notice a:hover {
  border-bottom-color: transparent;
}