@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
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,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1;
}

body {
  font-size: 100%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

body,
button,
input,
select,
textarea {
  font-size: 1rem;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

img {
  width: 100%;
  max-width: initial;
  vertical-align: bottom;
}
img[src$=".svg"] {
  max-width: 100%;
}

label {
  margin-bottom: 0;
}

input[type=search] {
  color: inherit;
  border: 1px solid #333;
  border-radius: 0;
  padding: 0.3em 0.3em 0.3em 35px;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1;
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
}

figure {
  margin: 0;
}

h1 {
  font-size: inherit;
}

p {
  margin: 0;
}

h2 {
  color: inherit;
  font-size: 1rem;
}

h3 {
  color: inherit;
}

dl {
  margin: 0;
}

dd {
  margin: 0;
}

h3 {
  font-size: 1rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 0;
}

h4 {
  color: inherit;
  font-size: inherit;
  font-weight: normal;
}

button,
input[type=button],
input[type=submit] {
  background-color: transparent;
}

ol {
  list-style: none;
}

a:hover,
a:active {
  color: inherit;
}

/*================================
	サイトごとに設定
=================================*/
/*================================
	メディアクエリの設定
=================================*/
.siteHeader {
  z-index: 99;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.siteHeader .btnBox {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.siteHeader .btnBox::before {
  content: "";
  position: absolute;
  background-color: #4d4d4d;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.siteHeader .btnBox .freeTrialLink {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
  color: #4d4d4d;
}
.siteHeader .btnBox .freeTrialLink figure {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #449cfd;
  border-radius: 100%;
}
.siteHeader .btnBox .btnWrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.siteHeader .btnBox .btnWrap::before {
  content: "";
  position: absolute;
  background-color: #4d4d4d;
  top: 50%;
  transform: translateY(-50%);
}
.siteHeader .btnBox .hamburgerMenu {
  z-index: 99;
  position: relative;
  display: block;
  border: none;
  outline: none;
  cursor: pointer;
}
.siteHeader .btnBox .hamburgerMenu.open span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}
.siteHeader .btnBox .hamburgerMenu.open span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
.siteHeader .btnBox .hamburgerMenu.open span:nth-child(3) {
  opacity: 0;
}
.siteHeader .btnBox .hamburgerMenu span {
  transition: 0.2s;
  display: block;
}
.siteHeader .btnBox .hamburgerMenu span:nth-child(1), .siteHeader .btnBox .hamburgerMenu span:nth-child(2) {
  background-color: #4d4d4d;
}
.siteHeader .btnBox .hamburgerMenu span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.siteHeader .btnBox .hamburgerMenu span:nth-child(1) {
  width: 100%;
  top: 0;
}
.siteHeader .btnBox .hamburgerMenu span:nth-child(2) {
  width: 70%;
  top: 50%;
  transform: translate(-30%, -50%);
}
.siteHeader .btnBox .hamburgerMenu span:nth-child(3) {
  width: 100%;
  font-weight: 700;
  text-align: center;
  color: #4d4d4d;
}
@media print, screen and (min-width: 768px) {
  .siteHeader {
    height: 5rem;
    max-width: 1750px;
  }
  .siteHeader .logo {
    width: 17.5rem;
    margin-left: 2.5rem;
  }
  .siteHeader .btnBox::before {
    height: 2.5rem;
    width: 0.125rem;
  }
  .siteHeader .btnBox .freeTrialLink {
    width: 17.5rem;
    font-size: 1.125rem;
    transition: 0.2s;
  }
  .siteHeader .btnBox .freeTrialLink:hover {
    background-color: #fbd327;
  }
  .siteHeader .btnBox .freeTrialLink figure {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.5rem;
  }
  .siteHeader .btnBox .freeTrialLink figure img {
    width: 1.4375rem;
  }
  .siteHeader .btnBox .btnWrap {
    width: 12.5rem;
  }
  .siteHeader .btnBox .btnWrap::before {
    height: 2.5rem;
    width: 0.125rem;
    left: -0.125rem;
  }
  .siteHeader .btnBox .hamburgerMenu {
    width: 3.125rem;
    height: 1.875rem;
  }
  .siteHeader .btnBox .hamburgerMenu.open span:nth-child(1) {
    width: 3.125rem;
  }
  .siteHeader .btnBox .hamburgerMenu.open span:nth-child(2) {
    width: 3.125rem;
  }
  .siteHeader .btnBox .hamburgerMenu.open span:nth-child(3) {
    bottom: -1.25rem;
  }
  .siteHeader .btnBox .hamburgerMenu span:nth-child(1), .siteHeader .btnBox .hamburgerMenu span:nth-child(2) {
    height: 0.25rem;
  }
  .siteHeader .btnBox .hamburgerMenu span:nth-child(1) {
    width: 100%;
    top: 0;
  }
  .siteHeader .btnBox .hamburgerMenu span:nth-child(2) {
    width: 70%;
    top: 50%;
    transform: translate(-30%, -50%);
  }
  .siteHeader .btnBox .hamburgerMenu span:nth-child(3) {
    bottom: -0.625rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .siteHeader {
    height: 11.71875vw;
    width: 100%;
  }
  .siteHeader .logo {
    width: 31.25vw;
    margin-left: 3.90625vw;
  }
  .siteHeader .btnBox::before {
    height: 6.5104166667vw;
    width: 0.2604166667vw;
  }
  .siteHeader .btnBox .freeTrialLink {
    width: 39.0625vw;
    margin-right: 0.78125vw;
    font-size: 0.7142857143rem;
  }
  .siteHeader .btnBox .freeTrialLink figure {
    width: 6.25vw;
    height: 6.25vw;
    margin-right: 1.3020833333vw;
  }
  .siteHeader .btnBox .freeTrialLink figure img {
    width: 2.8645833333vw;
  }
  .siteHeader .btnBox .btnWrap {
    width: 18.2291666667vw;
  }
  .siteHeader .btnBox .btnWrap::before {
    height: 6.5104166667vw;
    width: 0.2604166667vw;
    left: -0.2604166667vw;
  }
  .siteHeader .btnBox .hamburgerMenu {
    width: 9.375vw;
    height: 5.2083333333vw;
  }
  .siteHeader .btnBox .hamburgerMenu.open {
    top: 10.4166666667vw;
  }
  .siteHeader .btnBox .hamburgerMenu.open span:nth-child(1) {
    width: 7.2916666667vw;
  }
  .siteHeader .btnBox .hamburgerMenu.open span:nth-child(2) {
    width: 7.2916666667vw;
  }
  .siteHeader .btnBox .hamburgerMenu.open span:nth-child(3) {
    bottom: -5.2083333333vw;
  }
  .siteHeader .btnBox .hamburgerMenu span:nth-child(1), .siteHeader .btnBox .hamburgerMenu span:nth-child(2) {
    height: 0.78125vw;
  }
  .siteHeader .btnBox .hamburgerMenu span:nth-child(1) {
    width: 90%;
    top: 0;
  }
  .siteHeader .btnBox .hamburgerMenu span:nth-child(2) {
    width: 60%;
    top: 50%;
    transform: translate(-30%, -50%);
  }
  .siteHeader .btnBox .hamburgerMenu span:nth-child(3) {
    width: 100%;
    bottom: -2.6041666667vw;
    font-size: 0.7142857143rem;
  }
}

.siteFooter {
  position: relative;
  background-color: #449cfd;
}
.siteFooter::after {
  position: absolute;
  content: "";
  width: 100%;
  background-color: #f5f5f5;
  left: 0;
}
.siteFooter .contBox .innerConts .iconList {
  display: flex;
  justify-content: center;
  align-items: center;
}
.siteFooter .contBox .innerConts .copy {
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .siteFooter {
    margin-top: 8.125rem;
    padding: 3.75rem 0;
  }
  .siteFooter::after {
    height: 0.625rem;
    top: -0.625rem;
  }
  .siteFooter .contBox {
    display: flex;
    justify-content: space-between;
  }
  .siteFooter .contBox .logoBox img {
    width: 17.5rem;
    height: 2.375rem;
  }
  .siteFooter .contBox .innerConts .iconList .iconItem {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.9375rem;
  }
  .siteFooter .contBox .innerConts .iconList .iconItem .icon {
    transition: 0.2s;
  }
  .siteFooter .contBox .innerConts .iconList .iconItem .icon:hover {
    opacity: 0.5;
  }
  .siteFooter .contBox .innerConts .copy {
    font-size: 0.875rem;
    padding-top: 1.5625rem;
  }
}
@media only screen and (max-width: 767px) {
  .siteFooter {
    margin-top: 5.2083333333vw;
    padding: 7.8125vw 0;
  }
  .siteFooter::after {
    height: 2.0833333333vw;
    top: -2.0833333333vw;
  }
  .siteFooter .contBox .logoBox {
    text-align: center;
  }
  .siteFooter .contBox .logoBox img {
    width: 52.0833333333vw;
    height: 7.03125vw;
  }
  .siteFooter .contBox .innerConts .iconList {
    margin: auto;
    padding-top: 13.0208333333vw;
    width: 52.0833333333vw;
    justify-content: space-between;
  }
  .siteFooter .contBox .innerConts .iconList .iconItem {
    width: 9.375vw;
    height: 9.375vw;
  }
  .siteFooter .contBox .innerConts .copy {
    text-align: center;
    font-size: 0.875rem;
    padding-top: 1.5625rem;
  }
}

/*================================
	サイト共通設定
=================================*/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", YuGothic, "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-size: 16px;
  word-wrap: break-word;
  width: 100%;
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
  color: #4d4d4d;
}
html {
  height: 100%;
}

/*================================
	PC 共通設定
=================================*/
@media print, screen and (min-width: 768px) {
  html {
    overflow-y: scroll;
  }
  .sp {
    display: none;
  }
  .inner {
    width: 75%;
    max-width: 1200px;
    margin: auto;
  }
}
/*================================
	PC 相対値範囲設定
=================================*/
@media print, screen and (min-width: 768px) and (max-width: 1600px) {
  html {
    font-size: 1vw;
  }
}
/*================================
	SP 共通設定
=================================*/
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.6458333333vw;
  }
  .inner {
    width: 92%;
    margin: auto;
  }
  .pc {
    display: none;
  }
}
/*================================
	JS処理系
=================================*/
.sa {
  opacity: 0;
  transition: all 1s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-6.25rem, 0);
}

.sa--rl {
  transform: translate(6.25rem, 0);
}

.sa--up {
  transform: translate(0, 6.25rem);
}

.sa--down {
  transform: translate(0, -6.25rem);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

.swiper_mv .swiper-pagination-bullets {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.swiper_mv .swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}
.swiper_mv .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #449cfd;
}
@media print, screen and (min-width: 768px) {
  .swiper_mv .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 0.8125rem;
    height: 0.8125rem;
    margin-bottom: 0.75rem !important;
    border: 0.0625rem solid #449cfd;
  }
  .swiper_mv .swiper-pagination {
    padding: 0 2rem;
    bottom: 50% !important;
    transform: translateY(50%);
  }
}
@media only screen and (max-width: 767px) {
  .swiper_mv .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 2.6041666667vw;
    height: 2.6041666667vw;
    margin-bottom: 2.0833333333vw !important;
    border: 0.2604166667vw solid #449cfd;
  }
  .swiper_mv .swiper-pagination {
    padding-right: 2.6041666667vw;
    bottom: 60% !important;
    transform: translateY(60%);
  }
}

.swiper-flowing .swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper-flowing {
  /* 画像のサイズ調整 */
}
.swiper-flowing .swiper-slide {
  margin: 0.25rem;
}
.swiper-flowing .swiper-slide img {
  height: auto;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .swiper-flowing {
    padding-top: 23.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .swiper-flowing {
    padding-top: 7.8125vw;
  }
}

.arrowBoxS {
  z-index: 2;
  position: relative;
  margin: auto;
}
.arrowBoxS .swiper-button-prev,
.arrowBoxS .swiper-button-next {
  background-color: #449cfd;
  border-radius: 100%;
}
.arrowBoxS .swiper-button-prev::after,
.arrowBoxS .swiper-button-next::after {
  color: #fff;
}
.arrowBoxS .swiper-button-prev::after {
  content: "◀︎";
}
.arrowBoxS .swiper-button-next::after {
  content: "▶︎";
}
@media print, screen and (min-width: 768px) {
  .arrowBoxS {
    width: 75rem;
    top: -15rem;
    height: 6.25rem;
    margin: auto;
  }
  .arrowBoxS .swiper-button-prev,
  .arrowBoxS .swiper-button-next {
    width: 3rem;
    height: 3rem;
  }
  .arrowBoxS .swiper-button-prev::after,
  .arrowBoxS .swiper-button-next::after {
    font-size: 1.125rem;
  }
  .arrowBoxS .swiper-button-prev {
    left: -1.5rem;
  }
  .arrowBoxS .swiper-button-prev::after {
    padding-right: 0.125rem;
  }
  .arrowBoxS .swiper-button-next {
    right: -1.5rem;
  }
  .arrowBoxS .swiper-button-next::after {
    padding-left: 0.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .arrowBoxS {
    width: 100%;
    top: -52.0833333333vw;
    height: 10.4166666667vw;
  }
  .arrowBoxS .swiper-button-prev,
  .arrowBoxS .swiper-button-next {
    width: 9.375vw;
    height: 9.375vw;
  }
  .arrowBoxS .swiper-button-prev::after,
  .arrowBoxS .swiper-button-next::after {
    font-size: 1.1428571429rem;
  }
  .arrowBoxS .swiper-button-prev {
    left: -4.1666666667vw;
  }
  .arrowBoxS .swiper-button-prev::after {
    padding-right: 0.5208333333vw;
  }
  .arrowBoxS .swiper-button-next {
    right: -4.1666666667vw;
  }
  .arrowBoxS .swiper-button-next::after {
    padding-left: 0.5208333333vw;
  }
}

.cBlue {
  color: #449cfd;
}

.cYellow {
  color: #fbd327;
}

.cRed {
  color: #ff6974;
}

.cGreen {
  color: #65be65;
}

.cOrange {
  color: #fc9f42;
}

.titBox {
  text-align: center;
}
.titBox.type02 {
  position: relative;
}
.titBox.type02 .imgBox {
  position: absolute;
}
.titBox .tit {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  display: inline-block;
}
.titBox .tit .microTxt {
  display: block;
  color: #449cfd;
  font-weight: normal;
}
.titBox .tit .bottomTxt {
  font-weight: 600;
  position: absolute;
  width: 100%;
}
.titBox .tit .bottomTxt::before {
  content: "";
}
.titBox .txtBox {
  margin: auto;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .titBox {
    font-size: 1.125rem;
  }
  .titBox.type02 {
    width: 22.5rem;
    text-align: left;
  }
  .titBox.type02 .txtBox {
    text-align: justify;
    font-size: 1.25rem;
  }
  .titBox.type02 .imgBox {
    width: 6.25rem;
    top: 1.25rem;
    right: -1rem;
  }
  .titBox .tit {
    font-size: 5.5rem;
  }
  .titBox .tit .microTxt {
    font-size: 0.875rem;
  }
  .titBox .tit .bottomTxt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    font-size: 1.25rem;
    padding-top: 0.6875rem;
  }
  .titBox .tit .bottomTxt::before {
    flex: 1;
    content: "";
    height: 0.0625rem;
    margin-right: 1rem;
    padding-bottom: 0.03125rem;
    border-bottom: 0.375rem dotted #fbd327;
  }
  .titBox .txtBox {
    text-align: center;
    padding-top: 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .titBox.type02 {
    margin: auto;
    display: block;
    width: 100%;
  }
  .titBox.type02 .imgBox {
    width: 5rem;
    top: -2.6041666667vw;
    right: 2.6041666667vw;
  }
  .titBox .tit {
    font-size: 3.4285714286rem;
  }
  .titBox .tit .microTxt {
    font-size: 0.7142857143rem;
  }
  .titBox .tit .bottomTxt {
    font-weight: 600;
    padding-top: 2.0833333333vw;
    font-size: 1rem;
  }
  .titBox .tit .bottomTxt::before {
    content: "";
    display: block;
    height: 0.2604166667vw;
    padding-top: 2.6041666667vw;
    border-top: 1.5625vw dotted #fbd327;
  }
  .titBox .txtBox {
    text-align: justify;
    padding: 13.0208333333vw 3.90625vw 0;
  }
}

.txt .linkTxt {
  display: block;
  color: blue;
  text-decoration: underline;
  font-weight: 500;
}
.txt .linkTxt.type02 {
  display: inline-block;
}

.bgGray {
  position: relative;
}
.bgGray::after {
  position: absolute;
  z-index: -2;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
@media print, screen and (min-width: 768px) {
  .bgGray {
    margin-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .bgGray.reason {
    margin-top: 13.0208333333vw;
  }
  .bgGray {
    margin-top: 20.8333333333vw;
    padding-bottom: 20.8333333333vw;
  }
}

.siteTable.type02 .txt {
  text-align: center;
}
.siteTable.type02 tr:nth-of-type(2) .txt {
  background-color: #449cfd;
  color: #fff;
  font-weight: 600;
}
.siteTable.type02 tr:not(:nth-of-type(2)) .txt {
  position: relative;
}
.siteTable.type02 tr:not(:nth-of-type(2)) .txt img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.siteTable {
  width: 100%;
}
.siteTable .tableTit,
.siteTable .headTxt,
.siteTable .txt {
  line-height: 1.6;
}
.siteTable .headTxt {
  font-weight: 700;
  background-color: #449cfd;
  color: #fff;
}
.siteTable .txt {
  border-collapse: collapse;
  text-align: justify;
}
.siteTable .tableTit {
  width: 100%;
  background-color: #ff6974;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .siteTable {
    margin-top: 2.5rem;
  }
  .siteTable.type02 tr:nth-of-type(2) .txt {
    font-size: 1.25rem;
  }
  .siteTable.type02 tr:not(:nth-of-type(2)) .txt:not(:first-child) {
    padding: 3.75rem 1.875rem 1.25rem;
  }
  .siteTable.type02 tr:not(:nth-of-type(2)) .txt img {
    top: 1.25rem;
    width: 2rem;
    height: 2rem;
  }
  .siteTable .tableTit,
  .siteTable .headTxt,
  .siteTable .txt {
    padding: 1.5625rem 1.875rem;
    font-size: 1.125rem;
  }
  .siteTable .headTxt {
    width: 26.375rem;
    border: 0.0625rem solid #ddd;
  }
  .siteTable .txt {
    border: 0.0625rem solid #ddd;
    width: 50rem;
  }
  .siteTable .tableTit {
    font-size: 1.5rem;
    border-radius: 2rem 2rem 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .siteTable {
    margin-top: 10.4166666667vw;
  }
  .siteTable.type01 tr {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  .siteTable.type02 .txt {
    width: 26.0416666667vw;
  }
  .siteTable.type02 tr:not(:nth-of-type(2)) .txt {
    line-height: 1.4;
  }
  .siteTable.type02 tr:not(:nth-of-type(2)) .txt:first-child {
    padding: 0;
  }
  .siteTable.type02 tr:not(:nth-of-type(2)) .txt:not(:first-child) {
    padding: 10.4166666667vw 2.6041666667vw 2.6041666667vw;
  }
  .siteTable.type02 tr:not(:nth-of-type(2)) .txt img {
    top: 3.3854166667vw;
    width: 4.6875vw;
    height: 4.6875vw;
  }
  .siteTable .tableTit,
  .siteTable .headTxt,
  .siteTable .txt {
    width: 100%;
  }
  .siteTable .headTxt {
    padding: 2.6041666667vw;
    border: 0.2604166667vw solid #ddd;
    text-align: center;
  }
  .siteTable .txt {
    padding: 3.90625vw 5.2083333333vw;
    border: 0.2604166667vw solid #ddd;
    background-color: #fff;
  }
  .siteTable .tableTit {
    padding: 5.2083333333vw 2.6041666667vw;
    font-size: 1.1428571429rem;
    border-radius: 4.1666666667vw 4.1666666667vw 0 0;
  }
}

.scroll {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.3125rem;
  transform: translateX(-50%);
}
.scroll .border {
  position: relative;
  left: 0;
  top: -3.125rem;
  width: 5px;
  height: 6.25rem;
  overflow: hidden;
  border-radius: 0.625rem;
}
.scroll .border::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.3125rem;
  border-radius: 0.625rem;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.scroll .border::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.3125rem;
  height: 6.25rem;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ff6974;
  animation: scrollbar 2s ease-in-out infinite;
  margin: auto;
}

.accoBox .panel .panelHeader {
  width: 100%;
  background-color: #449cfd;
  text-align: left;
  border: none;
}
.accoBox .panel .panelHeader .questTxt {
  position: relative;
  font-weight: 600;
  color: #fff;
}
.accoBox .panel .panelHeader .questTxt::before {
  position: absolute;
  content: "Q.";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: normal;
  font-family: "Oswald", sans-serif;
  color: #fbd327;
}
.accoBox .panel .panelHeader .headTxt {
  position: relative;
  font-weight: 600;
  display: flex;
  color: #fff;
}
.accoBox .panel .panelHeader .headTxt::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  background-color: #fbd327;
  transform: translateY(-50%);
}
.accoBox .panel .panelHeader .courseName {
  color: #fff;
}
.accoBox .panel .panelHeader .typeBox {
  position: relative;
  margin-left: auto;
  background-color: #fff;
}
.accoBox .panel .panelHeader .typeBox .txt {
  color: #449cfd;
  font-weight: 600;
  text-align: center;
}
.accoBox .panel .panelHeader .typeBox figure {
  position: absolute;
}
.accoBox .panel .panelHeader .innerWrap {
  display: flex;
  align-items: center;
  flex: 1;
}
.accoBox .panel .panelHeader.active .panelIcon {
  transform: rotate(0deg);
}
.accoBox .panel .panelHeader .panelIcon {
  transition: transform 0.2s;
  border-radius: 100%;
  transform: rotate(180deg);
}
.accoBox .panel .panelCont {
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease-out;
}
.accoBox .panel .panelBody {
  background-color: #fff;
}
.accoBox .panel .panelBody .contBox .txtBox .headTxt {
  font-weight: 600;
}
.accoBox .panel .panelBody .contBox .txtBox .txt {
  position: relative;
  line-height: 1.6;
  text-align: justify;
}
.accoBox .panel .panelBody .contBox .txtBox .txt::after {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
}
.accoBox .panel .panelBody .contBox .linkBtn {
  display: block;
  font-weight: 600;
  background-color: #fbd327;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  transition: 0.2s;
}
.accoBox .panel .panelBody .contBox .linkBtn:hover {
  opacity: 0.7;
}
.accoBox .panel .panelBody .contBox .answerTxt {
  position: relative;
  line-height: 1.6;
  width: 100%;
}
.accoBox .panel .panelBody .contBox .answerTxt::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
}
.accoBox .panel .panelBody .contBox .answerTxt::after {
  position: absolute;
  content: "A.";
  left: 0;
  font-weight: normal;
  font-family: "Oswald", sans-serif;
  color: #449cfd;
}
@media print, screen and (min-width: 768px) {
  .accoBox {
    padding-top: 2.5rem;
  }
  .accoBox .panel {
    border-radius: 1rem;
    margin-bottom: 0.5rem;
    border: 0.0625rem solid #449cfd;
  }
  .accoBox .panel .panelHeader {
    padding: 1.875rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem;
    cursor: pointer;
    transition: 0.2s;
  }
  .accoBox .panel .panelHeader:hover {
    opacity: 0.7;
  }
  .accoBox .panel .panelHeader .questTxt {
    font-size: 1.5rem;
    flex: 1;
    padding-left: 3.75rem;
  }
  .accoBox .panel .panelHeader .questTxt::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.25rem;
  }
  .accoBox .panel .panelHeader .headTxt {
    font-size: 1.5rem;
    width: 16.5625rem;
    display: flex;
  }
  .accoBox .panel .panelHeader .headTxt::after {
    top: 50%;
    right: 0;
    width: 0.1875rem;
    height: 4.375rem;
    transform: translateY(-50%);
  }
  .accoBox .panel .panelHeader .courseName {
    font-size: 1.375rem;
    padding-left: 2.8125rem;
  }
  .accoBox .panel .panelHeader .typeBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0.75rem 0;
    width: 15.25rem;
    border-radius: 2rem;
  }
  .accoBox .panel .panelHeader .typeBox .txt {
    font-size: 1rem;
  }
  .accoBox .panel .panelHeader .typeBox figure {
    top: -0.75rem;
    right: -2.5rem;
    width: 3.5rem;
  }
  .accoBox .panel .panelHeader .innerWrap {
    display: flex;
    align-items: center;
    flex: 1;
  }
  .accoBox .panel .panelHeader.active {
    border-radius: 1rem 1rem 0 0;
  }
  .accoBox .panel .panelHeader .panelIcon {
    font-size: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: 5.625rem;
    border: 0.125rem solid #fff;
  }
  .accoBox .panel .panelBody {
    padding: 2.5rem;
    border-top: 0.0625rem solid #eee;
    border-radius: 0 0 1rem 1rem;
  }
  .accoBox .panel .panelBody .contBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .accoBox .panel .panelBody .contBox figure {
    width: 17.5rem;
  }
  .accoBox .panel .panelBody .contBox .txtBox {
    width: 32.625rem;
  }
  .accoBox .panel .panelBody .contBox .txtBox .headTxt {
    font-size: 1.5rem;
    padding-bottom: 0.9375rem;
  }
  .accoBox .panel .panelBody .contBox .txtBox .txt {
    padding-top: 1.875rem;
    font-size: 1.125rem;
  }
  .accoBox .panel .panelBody .contBox .txtBox .txt::after {
    height: 0.0625rem;
    border-bottom: 0.25rem dotted #b3b3b3;
  }
  .accoBox .panel .panelBody .contBox .linkBtn {
    font-size: 1.125rem;
    width: 12.5rem;
    height: 3rem;
    border-radius: 2rem;
    transition: 0.2s;
  }
  .accoBox .panel .panelBody .contBox .linkBtn:hover {
    opacity: 0.7;
  }
  .accoBox .panel .panelBody .contBox .answerTxt {
    font-size: 1.125rem;
    padding-top: 1.875rem;
  }
  .accoBox .panel .panelBody .contBox .answerTxt::before {
    height: 0.125rem;
    top: 0.625rem;
    left: 0;
    border-top: 0.25rem dotted #b3b3b3;
  }
  .accoBox .panel .panelBody .contBox .answerTxt::after {
    top: -2.8125rem;
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .accoBox {
    padding-top: 10.4166666667vw;
  }
  .accoBox .panel {
    border-radius: 4.1666666667vw;
    margin-bottom: 2.0833333333vw;
    border: 0.2604166667vw solid #449cfd;
  }
  .accoBox .panel .panelHeader {
    position: relative;
    padding: 5.2083333333vw 3.90625vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4.1666666667vw;
  }
  .accoBox .panel .panelHeader .questTxt {
    font-size: 1.1428571429rem;
    padding-left: 10.4166666667vw;
    line-height: 1.4;
    flex: 1;
  }
  .accoBox .panel .panelHeader .questTxt::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4.6875vw;
  }
  .accoBox .panel .panelHeader .headTxt {
    font-size: 1.0714285714rem;
    width: 22.1354166667vw;
    line-height: 1.4;
  }
  .accoBox .panel .panelHeader .headTxt::after {
    right: -0.78125vw;
    width: 0.5208333333vw;
    height: 15.625vw;
  }
  .accoBox .panel .panelHeader .courseName {
    position: absolute;
    left: 32.5520833333vw;
    top: 5.7291666667vw;
    font-size: 0.7142857143rem;
  }
  .accoBox .panel .panelHeader .typeBox {
    margin: 5.2083333333vw auto 0;
    padding: 1.8229166667vw 0;
    width: 41.6666666667vw;
    border-radius: 4.1666666667vw;
  }
  .accoBox .panel .panelHeader .typeBox .txt {
    font-size: 0.7142857143rem;
  }
  .accoBox .panel .panelHeader .typeBox figure {
    top: -1.3020833333vw;
    right: -5.2083333333vw;
    width: 7.8125vw;
  }
  .accoBox .panel .panelHeader.active {
    border-radius: 1rem 1rem 0 0;
  }
  .accoBox .panel .panelHeader .panelIcon {
    width: 5.7291666667vw;
    height: 5.7291666667vw;
    margin-left: 3.90625vw;
    border: 0.5208333333vw solid #fff;
  }
  .accoBox .panel .panelBody {
    padding: 7.8125vw;
    border-top: 0.2604166667vw solid #eee;
    border-radius: 0 0 4.1666666667vw 4.1666666667vw;
  }
  .accoBox .panel .panelBody .contBox figure {
    width: 46.875vw;
    margin: auto;
  }
  .accoBox .panel .panelBody .contBox .txtBox .headTxt {
    text-align: center;
    font-size: 1.4285714286rem;
    padding: 3.90625vw 0;
    line-height: 1.3;
  }
  .accoBox .panel .panelBody .contBox .txtBox .txt {
    padding-top: 5.2083333333vw;
  }
  .accoBox .panel .panelBody .contBox .txtBox .txt::after {
    height: 0.2604166667vw;
    border-bottom: 1.3020833333vw dotted #b3b3b3;
  }
  .accoBox .panel .panelBody .contBox .linkBtn {
    font-size: 1.1428571429rem;
    width: 49.4791666667vw;
    height: 11.71875vw;
    border-radius: 8.3333333333vw;
    margin: 5.2083333333vw auto 0;
  }
  .accoBox .panel .panelBody .contBox .answerTxt {
    padding-top: 7.8125vw;
  }
  .accoBox .panel .panelBody .contBox .answerTxt::before {
    height: 0.5208333333vw;
    top: 2.6041666667vw;
    left: 0;
    border-top: 1.3020833333vw dotted #b3b3b3;
  }
  .accoBox .panel .panelBody .contBox .answerTxt::after {
    top: -7.8125vw;
    font-size: 7.2916666667vw;
  }
}

.blobBox {
  z-index: -1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  pointer-events: none;
}
.blobBox .blob {
  position: absolute;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  animation: blob-ani 5s linear alternate infinite;
  opacity: 0.4;
}
.blobBox .blob:nth-child(1) {
  background-color: #449cfd;
}
.blobBox .blob:nth-child(2) {
  background-color: #fbd327;
  animation-delay: 1s;
}
.blobBox .blob:nth-child(3) {
  background-color: #ff6974;
  animation-delay: 2s;
}
@media print, screen and (min-width: 768px) {
  .blobBox {
    top: 7.5rem;
  }
  .blobBox .blob:nth-child(1) {
    width: 25rem;
    height: 18.75rem;
    right: -10%;
    top: 35%;
    transform: translateY(-35%);
  }
  .blobBox .blob:nth-child(2) {
    animation-delay: 1s;
    width: 31.25rem;
    height: 25rem;
    top: 15%;
    left: -5%;
  }
  .blobBox .blob:nth-child(3) {
    animation-delay: 2s;
    width: 30rem;
    height: 30rem;
    top: 3%;
    right: -3%;
  }
}
@media only screen and (max-width: 767px) {
  .blobBox {
    top: 20.8333333333vw;
  }
  .blobBox .blob:nth-child(1) {
    width: 39.0625vw;
    height: 39.0625vw;
    right: -15%;
    top: 9%;
    transform: translateY(-9%);
  }
  .blobBox .blob:nth-child(2) {
    animation-delay: 1s;
    width: 39.0625vw;
    height: 26.0416666667vw;
    top: 5%;
    left: -10%;
  }
  .blobBox .blob:nth-child(3) {
    animation-delay: 2s;
    width: 44.2708333333vw;
    height: 33.8541666667vw;
    top: 0%;
    right: -3%;
  }
}

@media print, screen and (min-width: 768px) {
  .gCtaBox {
    padding-top: 7.5rem;
  }
  .gCtaBox .ctaBtn {
    transition: 0.2s;
  }
  .gCtaBox .ctaBtn:hover {
    opacity: 0.6;
  }
}
@media only screen and (max-width: 767px) {
  .gCtaBox {
    padding-top: 20.8333333333vw;
  }
  .gCtaBox img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.sideCtaBox {
  z-index: 3;
  position: fixed;
}
@media print, screen and (min-width: 768px) {
  .sideCtaBox {
    right: 0;
    top: 6.25rem;
    width: 13.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .sideCtaBox {
    display: none;
  }
}

.pageTopBox {
  z-index: 98;
  position: relative;
  position: fixed;
  right: -100%;
  transition: 0.6s;
}
.pageTopBox::after {
  z-index: -1;
  position: absolute;
  content: "";
  right: 0;
  background-color: #449cfd;
  width: 100%;
  height: 50%;
}
.pageTopBox.active {
  right: 0;
}
.pageTopBox .pageTop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d4d4d;
  background-color: #fff;
  border-right: none;
}
.pageTopBox .pageTop::before, .pageTopBox .pageTop::after {
  position: absolute;
  content: "";
  transform: rotate(-45deg);
  border-top: 0.25rem solid #449cfd;
  border-right: 0.25rem solid #449cfd;
}
@media print, screen and (min-width: 768px) {
  .pageTopBox {
    bottom: 3%;
  }
  .pageTopBox::after {
    bottom: -0.5rem;
    border-radius: 0 0 0 1.75rem;
  }
  .pageTopBox .pageTop {
    padding: 5rem 1.5rem 2rem;
    font-size: 1.25rem;
    border-radius: 2rem 0 0 2rem;
    transition: 0.2s;
  }
  .pageTopBox .pageTop:hover {
    padding: 5rem 3rem 2rem;
  }
  .pageTopBox .pageTop::before, .pageTopBox .pageTop::after {
    width: 1.25rem;
    height: 1.25rem;
  }
  .pageTopBox .pageTop::before {
    top: 2.375rem;
  }
  .pageTopBox .pageTop::after {
    top: 3.4375rem;
  }
}
@media only screen and (max-width: 767px) {
  .pageTopBox {
    top: 8%;
  }
  .pageTopBox::after {
    bottom: -1.3020833333vw;
    border-radius: 0 0 0 3.6458333333vw;
  }
  .pageTopBox .pageTop {
    padding: 9.1145833333vw 2.6041666667vw 2.6041666667vw;
    font-size: 0.8571428571rem;
    border-radius: 3.6458333333vw 0 0 3.6458333333vw;
  }
  .pageTopBox .pageTop::before, .pageTopBox .pageTop::after {
    width: 3.125vw;
    height: 3.125vw;
  }
  .pageTopBox .pageTop::before {
    top: 3.6458333333vw;
  }
  .pageTopBox .pageTop::after {
    top: 5.9895833333vw;
  }
}

body.isFixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-1.25rem); /* 上に20px移動 */
  }
}
@keyframes scrollbar {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(350%);
  }
}
@keyframes blob-ani {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: scale(1, 1) rotate(0deg);
  }
  50% {
    border-radius: 30% 80% 70% 40%/40% 60% 30% 60%;
    transform: scale(1.1, 0.9) rotate(5deg);
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: scale(0.9, 1.1) rotate(-5deg);
  }
}
.mv {
  position: relative;
}
.mv::after {
  z-index: -2;
  position: absolute;
  content: "";
  background-color: #f5f5f5;
}
.mv .object {
  display: block;
  position: absolute;
  animation: float 1.5s ease-in-out infinite alternate;
}
.mv .object:nth-child(1) {
  border-radius: 100%;
  animation-delay: 1s;
}
.mv .object:nth-child(2) {
  z-index: -1;
  animation-delay: 0.5s;
}
.mv .object:nth-child(3) {
  z-index: -1;
}
.mv .mvImg {
  margin-left: auto;
}
.mv .contentBox {
  z-index: 2;
  position: absolute;
}
.mv .contentBox .txtBox .subTxt {
  color: #ff6974;
  font-weight: 700;
}
.mv .contentBox .txtBox .txt {
  line-height: 1.5;
  color: #4d4d4d;
  font-weight: 900;
}
.mv .contentBox .listBox {
  display: flex;
  justify-content: left;
  align-items: center;
}
.mv .contentBox .listBox .listItem {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 100%;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
}
.mv .contentBox .listBox .listItem::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}
.mv .contentBox .listBox .listItem:nth-child(1) {
  background-color: #fbd327;
  color: #4d4d4d;
}
.mv .contentBox .listBox .listItem:nth-child(2) {
  background-color: #449cfd;
}
.mv .contentBox .listBox .listItem:nth-child(3) {
  background-color: #ff6974;
}
.mv .ctaBtn {
  display: block;
}
.mv .scrollBox {
  position: absolute;
  bottom: 0;
}
.mv .scrollBox img {
  -o-object-fit: contain;
     object-fit: contain;
  animation: 6s spin infinite linear;
}
.mv .scrollBox::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../../../img/common/arrow01.svg);
}
@media print, screen and (min-width: 768px) {
  .mv {
    margin: 5rem auto 0;
    height: 50rem;
    width: 100rem;
  }
  .mv::after {
    top: 10%;
    left: 0;
    width: 87.5%;
    padding-top: 44.875rem;
    border-radius: 1.5rem;
  }
  .mv .object:nth-child(1) {
    left: -11%;
    top: 6%;
    width: 20.625rem;
    height: 20.625rem;
    background-color: #449cfd;
  }
  .mv .object:nth-child(2) {
    right: 1.5rem;
    bottom: 5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 1rem;
    background-color: #fbd327;
  }
  .mv .object:nth-child(3) {
    left: 3.5rem;
    bottom: 5rem;
    width: 7.75rem;
    height: 7.75rem;
    border-radius: 1rem;
    background-color: #ff6974;
  }
  .mv .mvImg {
    width: 60rem;
  }
  .mv .contentBox {
    width: 75rem;
    max-width: 1200px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .mv .contentBox .txtBox .subTxt {
    font-size: 2.0625rem;
  }
  .mv .contentBox .txtBox .txt {
    font-size: 3.5rem;
    padding-top: 0.625rem;
  }
  .mv .contentBox .listBox {
    padding-top: 2.5rem;
  }
  .mv .contentBox .listBox .listItem {
    width: 14.5rem;
    height: 14.5rem;
    font-size: 1.75rem;
  }
  .mv .contentBox .listBox .listItem::after {
    width: 13rem;
    height: 13rem;
    border: 0.25rem dotted #fff;
  }
  .mv .contentBox .listBox .listItem:not(:last-child) {
    margin-right: 1rem;
  }
  .mv .ctaBtn {
    width: 60rem;
    padding: 3.125rem 0 1.4375rem;
    transition: 0.2s;
  }
  .mv .ctaBtn:hover {
    opacity: 0.6;
  }
  .mv .scrollBox {
    right: 6%;
    bottom: 0;
    transform: translateX(20%);
    width: 10.25rem;
    height: 10.25rem;
  }
  .mv .scrollBox::after {
    width: 1.5rem;
    height: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .mv {
    margin: 11.71875vw auto 0;
    height: 132.8125vw;
  }
  .mv::after {
    top: 20%;
    left: 0;
    width: 91%;
    border-radius: 3.125vw;
  }
  .mv .object:nth-child(1) {
    background-color: #fbd327;
    left: -25%;
    top: 6%;
    width: 44.2708333333vw;
    height: 44.2708333333vw;
  }
  .mv .object:nth-child(2) {
    background-color: #ff6974;
    right: 3.125vw;
    top: 5.2083333333vw;
    width: 13.671875vw;
    height: 13.671875vw;
    border-radius: 3.125vw;
  }
  .mv .object:nth-child(3) {
    background-color: #449cfd;
    right: 3.125vw;
    bottom: 28.6458333333vw;
    width: 18.2291666667vw;
    height: 18.2291666667vw;
    border-radius: 3.125vw;
  }
  .mv .mvImg {
    padding-top: 34.5052083333vw;
    width: 92%;
    overflow: hidden;
  }
  .mv .contentBox {
    width: 100%;
    height: 100%;
    top: 2.6041666667vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
  .mv .contentBox .txtBox {
    padding-left: 3.90625vw;
  }
  .mv .contentBox .txtBox .subTxt {
    font-size: 1.0714285714rem;
  }
  .mv .contentBox .txtBox .txt {
    font-size: 1.8571428571rem;
    padding-top: 2.0833333333vw;
  }
  .mv .contentBox .listBox {
    position: absolute;
    bottom: 33.8541666667vw;
    padding-left: 3.90625vw;
  }
  .mv .contentBox .listBox .listItem {
    width: 22.5260416667vw;
    height: 22.5260416667vw;
    font-size: 0.7857142857rem;
  }
  .mv .contentBox .listBox .listItem::after {
    width: 19.921875vw;
    height: 19.921875vw;
    border: 0.78125vw dotted #fff;
  }
  .mv .contentBox .listBox .listItem:not(:last-child) {
    margin-right: 2.6041666667vw;
  }
  .mv .ctaBtn {
    width: 100%;
  }
  .mv .scrollBox {
    position: absolute;
    right: 7.8125vw;
    bottom: 36.4583333333vw;
    transform: translateX(20%);
    width: 15.625vw;
    height: 15.625vw;
  }
  .mv .scrollBox::after {
    width: 2.34375vw;
    height: 4.4270833333vw;
  }
}

.navBox {
  color: #4d4d4d;
}
.navBox .navList {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.navBox .navList .navItem {
  position: relative;
  line-height: 1.4;
}
.navBox .navList .navItem::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
.navBox .navList .navItem::after {
  background-image: url(../../../img/common/btn_arrow01.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.navBox .navList .navItem a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
.navBox .navList .navItem {
  background-color: #fbd327;
  font-weight: 600;
  color: #4d4d4d;
}
@media print, screen and (min-width: 768px) {
  .navBox {
    padding: 6.25rem 0;
  }
  .navBox .navList .navItem::after {
    right: 1.125rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .navBox .navList .navItem a {
    padding: 2.5rem 0;
    transition: 0.2s;
  }
  .navBox .navList .navItem a:hover {
    background-color: #449cfd;
    color: #fff;
  }
  .navBox .navList .navItem {
    width: 18.75rem;
    font-size: 1.125rem;
    border: 0.0625rem solid #fff;
  }
  .navBox .navList .navItem:nth-child(n+5) {
    width: 25rem;
  }
}
@media only screen and (max-width: 767px) {
  .navBox {
    padding: 13.0208333333vw 0 0;
  }
  .navBox .navList {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .navBox .navList .navItem::after {
    right: 3.125vw;
    width: 4.1666666667vw;
    height: 4.1666666667vw;
    margin-top: 0.1302083333vw;
  }
  .navBox .navList .navItem a {
    padding: 6.5104166667vw 0;
  }
  .navBox .navList .navItem {
    width: 50%;
    font-size: 1rem;
    border: 0.1302083333vw solid #fff;
  }
  /* .navBox .navList .navItem:nth-child(1) {
    width: 100%;
  } */
}

.globalMenuBox {
  z-index: 98;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #449cfd;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.open .globalMenuBox {
  display: flex;
  top: 0;
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
.globalMenuBox .menuItem {
  text-align: center;
}
.globalMenuBox .menuItem > a {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 500;
}
.globalMenuBox .iconList {
  display: flex;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .globalMenuBox .menuItem > a {
    font-size: 1.5rem;
    padding: 1.5625rem 0;
    transition: 0.1s;
  }
  .globalMenuBox .menuItem > a:hover {
    transform: scale(1.1);
  }
  .globalMenuBox .menuItem > a:hover::after {
    transform: scaleX(1);
  }
  .globalMenuBox .menuItem > a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.0625rem;
    background-color: #fff;
    left: 0;
    bottom: 0.9375rem;
    transform: scaleX(0);
    transition: 0.2s;
    transition-delay: 0.2s;
  }
  .globalMenuBox .iconList {
    padding-top: 6.25rem;
    width: 17.5rem;
  }
  .globalMenuBox .iconList .iconItem {
    width: 3rem;
    height: 3rem;
  }
  .globalMenuBox .iconList .iconItem .icon {
    transition: 0.2s;
  }
  .globalMenuBox .iconList .iconItem .icon:hover {
    opacity: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .globalMenuBox .menuItem > a {
    font-size: 1.1428571429rem;
    padding: 3.90625vw 0;
  }
  .globalMenuBox .iconList {
    padding-top: 7.8125vw;
    width: 41.6666666667vw;
  }
  .globalMenuBox .iconList .iconItem {
    width: 7.2916666667vw;
    height: 7.2916666667vw;
  }
}

.bestFor {
  position: relative;
  width: 100%;
  color: #4d4d4d;
  overflow: hidden;
}
.bestFor .contList {
  position: relative;
}
.bestFor .contList .contItem {
  position: relative;
}
.bestFor .contList .contItem .cont {
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  transition: 0.2s;
}
.bestFor .contList .contItem .cont::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../../img/common/dot.svg);
}
.bestFor .contList .contItem .cont .btnArrow {
  position: absolute;
  transition: 0.4s;
}
.bestFor .contList .contItem.active .descBox {
  visibility: visible;
  opacity: 1;
}
.bestFor .contList .contItem .descBox {
  left: 0;
  line-height: 1.6;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  transition-delay: 0.2s;
}
.bestFor .contList .contItem .descBox::before, .bestFor .contList .contItem .descBox::after {
  content: "";
  position: absolute;
}
.bestFor .contList .contItem .descBox::before {
  border-style: solid;
  border-color: transparent transparent #ddd transparent;
}
.bestFor .contList .contItem .descBox::after {
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  z-index: 2;
}
.bestFor .contList .contItem .descBox .iconBox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.bestFor .contList .contItem .descBox .topTxt,
.bestFor .contList .contItem .descBox .txt {
  text-align: justify;
  margin-left: auto;
}
.bestFor .contList .contItem .descBox .topTxt {
  position: relative;
  font-weight: 500;
}
.bestFor .contList .contItem .descBox .topTxt::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
}
.bestFor .howToBox .conts {
  position: relative;
  background-color: #449cfd;
}
.bestFor .howToBox .conts::before {
  position: absolute;
  content: "";
  background-image: url(../../../img/common/how_to_dot.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.bestFor .howToBox .conts::after {
  position: absolute;
  content: "";
  background-image: url(../../../img/common/how_to02.svg);
  background-size: contain;
  animation: 1.5s float infinite alternate linear;
}
.bestFor .howToBox .conts .txtBox .topTxt {
  font-weight: 600;
  color: #fff;
}
.bestFor .howToBox .conts .txtBox .txt {
  line-height: 1.6;
  color: #fff;
}
.bestFor .howToList {
  position: relative;
}
.bestFor .howToList::after {
  position: absolute;
  z-index: -1;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: 10s spin infinite linear;
}
.bestFor .howToList .howToItem {
  background-color: #fbd327;
  color: #4d4d4d;
  text-align: justify;
}
.bestFor .howToList .howToItem .topTxt {
  position: relative;
  font-weight: 500;
  text-align: center;
}
.bestFor .howToList .howToItem .topTxt::after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bestFor .howToList .howToItem .txt {
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .bestFor {
    padding: 7.5rem 0 4.0625rem;
  }
  .bestFor .contList {
    padding-top: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .bestFor .contList::after {
    z-index: -1;
    position: absolute;
    right: 0;
    top: 9.375rem;
    content: "";
    margin: 0 calc(50% - 55vw);
    width: 100vw;
    height: 18.75rem;
    background-color: #449cfd;
    border-radius: 12.5rem 0 0 12.5rem;
  }
  .bestFor .contList .contItem .cont {
    width: 14rem;
    height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.375rem;
    border: 0.125rem solid #ddd;
    cursor: pointer;
  }
  .bestFor .contList .contItem .cont::before {
    width: 9.375rem;
    height: 2.3125rem;
    bottom: 4.375rem;
  }
  .bestFor .contList .contItem .cont .txt {
    padding-bottom: 2.5rem;
  }
  .bestFor .contList .contItem .cont .btnArrow {
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    bottom: 1.25rem;
    width: 1.875rem;
    height: 1.875rem;
  }
  .bestFor .contList .contItem.active .btnArrow {
    transform: translateX(-50%) rotate(0deg);
  }
  .bestFor .contList .contItem.active .cont {
    transform: translateY(10%);
    border: 0.25rem solid #fbd327;
  }
  .bestFor .contList .contItem.active .descBox {
    top: 15.625rem;
  }
  .bestFor .contList .contItem .descBox {
    position: absolute;
    top: 14.375rem;
    margin-top: 0.9375rem;
    width: 57.5rem;
    padding: 1.875rem;
    border-radius: 1rem;
    border: 0.125rem solid #ddd;
  }
  .bestFor .contList .contItem .descBox::before, .bestFor .contList .contItem .descBox::after {
    left: 5.75rem;
  }
  .bestFor .contList .contItem .descBox::before {
    top: -2rem;
    border-width: 0 1.125rem 2rem 1.125rem;
  }
  .bestFor .contList .contItem .descBox::after {
    top: -1.6875rem;
    border-width: 0 1.125rem 2rem 1.125rem;
  }
  .bestFor .contList .contItem .descBox .iconBox {
    left: 1.875rem;
    width: 6rem;
    height: 6rem;
  }
  .bestFor .contList .contItem .descBox .topTxt,
  .bestFor .contList .contItem .descBox .txt {
    width: 45rem;
  }
  .bestFor .contList .contItem .descBox .topTxt {
    font-size: 1.5rem;
    padding-bottom: 1.25rem;
  }
  .bestFor .contList .contItem .descBox .topTxt::after {
    height: 0.0625rem;
    border-bottom: 0.25rem dotted #ddd;
  }
  .bestFor .contList .contItem .descBox .txt {
    padding-top: 1.25rem;
  }
  .bestFor .contList .contItem:nth-child(3) .descBox {
    left: 50%;
    transform: translateX(-50%);
  }
  .bestFor .contList .contItem:nth-child(3) .descBox::before, .bestFor .contList .contItem:nth-child(3) .descBox::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .bestFor .contList .contItem:nth-child(n+4) .descBox {
    left: auto;
    right: 0;
  }
  .bestFor .contList .contItem:nth-child(n+4) .descBox::before, .bestFor .contList .contItem:nth-child(n+4) .descBox::after {
    left: auto;
    right: 5.75rem;
  }
  .bestFor .howToBox {
    padding-top: 7.5rem;
  }
  .bestFor .howToBox .siteTable {
    margin-top: 4.375rem;
  }
  .bestFor .howToBox .conts {
    border-radius: 12.5rem;
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .bestFor .howToBox .conts span {
    font-size: 3rem;
    color: #fff;
  }
  .bestFor .howToBox .conts::before {
    left: 0;
    top: 0;
    width: 30rem;
    height: 100%;
  }
  .bestFor .howToBox .conts::after {
    width: 10.25rem;
    height: 8.625rem;
    top: -2.5rem;
    right: -4.75rem;
  }
  .bestFor .howToBox .conts .hawToImg {
    width: 23.75rem;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .bestFor .howToBox .conts .txtBox {
    width: 40.625rem;
  }
  .bestFor .howToBox .conts .txtBox .topTxt {
    font-size: 1.75rem;
  }
  .bestFor .howToBox .conts .txtBox .txt {
    padding-top: 1.5625rem;
    font-size: 1.125rem;
  }
  .bestFor .howToList {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 1.625rem;
  }
  .bestFor .howToList::after {
    left: -4.0625rem;
    bottom: -4.0625rem;
    width: 8.125rem;
    height: 8.125rem;
    background-image: url(../../../img/common/how_to03_pc.svg);
  }
  .bestFor .howToList .howToItem {
    width: 23.75rem;
    height: 11.875rem;
    padding: 1.875rem;
    border-radius: 1rem;
  }
  .bestFor .howToList .howToItem .topTxt {
    font-size: 1.375rem;
    padding-bottom: 1.1875rem;
  }
  .bestFor .howToList .howToItem .topTxt::after {
    height: 0.0625rem;
    border-bottom: 0.25rem dotted #fff;
  }
  .bestFor .howToList .howToItem .txt {
    padding-top: 0.75rem;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .bestFor {
    padding-top: 20.8333333333vw;
  }
  .bestFor .contList {
    padding-top: 13.0208333333vw;
  }
  .bestFor .contList::after {
    z-index: -1;
    position: absolute;
    right: 0;
    top: 23.4375vw;
    content: "";
    margin: 0 calc(50% - 52vw);
    width: 100vw;
    height: 100%;
    background-color: #449cfd;
    border-radius: 10.4166666667vw 0 0 10.4166666667vw;
  }
  .bestFor .contList .contItem:not(:last-child) {
    margin-bottom: 3.125vw;
  }
  .bestFor .contList .contItem .cont {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2.0833333333vw;
    font-size: 1.2857142857rem;
    border: 0.5208333333vw solid #ddd;
  }
  .bestFor .contList .contItem .cont::before {
    width: 46.875vw;
    height: 13.0208333333vw;
    top: 70%;
    transform: translateY(-70%);
  }
  .bestFor .contList .contItem .cont .txt {
    padding: 4.9479166667vw 0;
  }
  .bestFor .contList .contItem .cont .btnArrow {
    right: 2.0833333333vw;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 7.2916666667vw;
    height: 7.2916666667vw;
  }
  .bestFor .contList .contItem.active .btnArrow {
    transform: translateY(-50%) rotate(180deg);
  }
  .bestFor .contList .contItem.active .cont {
    border: 0.5208333333vw solid #fbd327;
  }
  .bestFor .contList .contItem.active .descBox {
    height: auto;
    max-height: 130.2083333333vw;
    margin-top: 3.90625vw;
    padding: 6.5104166667vw 1.75rem;
    border: 0.5208333333vw solid #ddd;
  }
  .bestFor .contList .contItem .descBox {
    position: relative;
    max-height: 0;
    border-radius: 2.0833333333vw;
    padding: 0 1.75rem;
  }
  .bestFor .contList .contItem .descBox::before, .bestFor .contList .contItem .descBox::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .bestFor .contList .contItem .descBox::before {
    top: -4.1666666667vw;
    border-width: 0 2.34375vw 4.1666666667vw 2.34375vw;
  }
  .bestFor .contList .contItem .descBox::after {
    top: -3.515625vw;
    border-width: 0 2.34375vw 4.1666666667vw 2.34375vw;
  }
  .bestFor .contList .contItem .descBox .iconBox {
    top: 8.3333333333vw;
    left: 6.25vw;
    width: 8.3333333333vw;
    height: 8.3333333333vw;
  }
  .bestFor .contList .contItem .descBox .topTxt {
    font-size: 1.0714285714rem;
    padding-bottom: 3.90625vw;
    padding-left: 10.4166666667vw;
  }
  .bestFor .contList .contItem .descBox .topTxt::after {
    height: 0.2604166667vw;
    border-bottom: 1.3020833333vw dotted #ddd;
  }
  .bestFor .contList .contItem .descBox .txt {
    padding-top: 3.90625vw;
  }
  .bestFor .howToBox {
    padding-top: 20.8333333333vw;
  }
  .bestFor .howToBox .tableWrap {
    overflow-x: auto;
    white-space: nowrap;
  }
  .bestFor .howToBox .siteTable {
    margin-top: 0;
    margin-bottom: 10.4166666667vw;
    width: 125vw;
  }
  .bestFor .howToBox .conts {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 7.8125vw 5.2083333333vw 13.0208333333vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .bestFor .howToBox .conts::before {
    left: 0;
    top: 0;
    width: 62.5vw;
    height: 31.25vw;
    background-position: left 0.78125vw;
    opacity: 0.6;
  }
  .bestFor .howToBox .conts::after {
    width: 29.9479166667vw;
    height: 25.2604166667vw;
    top: -6.5104166667vw;
    right: 3%;
  }
  .bestFor .howToBox .conts .hawToImg {
    display: none;
  }
  .bestFor .howToBox .conts .txtBox .topTxt .bTxt {
    color: #fff;
    font-size: 2rem;
  }
  .bestFor .howToBox .conts .txtBox .topTxt {
    font-size: 1.4285714286rem;
    line-height: 1.4;
  }
  .bestFor .howToBox .conts .txtBox .txt {
    padding-top: 5.2083333333vw;
    font-size: 1.1428571429rem;
  }
  .bestFor .howToList {
    top: -7.8125vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .bestFor .howToList::after {
    z-index: 2;
    right: 3.90625vw;
    top: -7.8125vw;
    width: 15.625vw;
    height: 15.625vw;
    background-image: url(../../../img/common/how_to03_sp.svg);
  }
  .bestFor .howToList .howToItem {
    padding: 6.5104166667vw 10.4166666667vw;
    border-radius: 2.0833333333vw;
  }
  .bestFor .howToList .howToItem:not(:last-child) {
    margin-bottom: 3.2552083333vw;
  }
  .bestFor .howToList .howToItem .topTxt {
    font-size: 1.4285714286rem;
    padding-bottom: 4.1666666667vw;
  }
  .bestFor .howToList .howToItem .topTxt::after {
    height: 0.2604166667vw;
    border-bottom: 1.3020833333vw dotted #fff;
  }
  .bestFor .howToList .howToItem .txt {
    padding-top: 2.6041666667vw;
    font-size: 1.1428571429rem;
  }
}

.reason {
  color: #4d4d4d;
}
.reason .reasonList {
  margin: auto;
}
.reason .reasonList .reasonItem {
  z-index: 2;
  position: relative;
  color: #4d4d4d;
}
.reason .reasonList .reasonItem::after {
  z-index: -1;
  position: absolute;
  content: "";
}
.reason .reasonList .reasonItem:nth-child(even) {
  flex-direction: row-reverse;
  margin-left: auto;
}
.reason .reasonList .reasonItem:nth-child(1)::after,
.reason .reasonList .reasonItem:nth-child(1) .noBox::after {
  background-color: #449cfd;
}
.reason .reasonList .reasonItem:nth-child(2)::after,
.reason .reasonList .reasonItem:nth-child(2) .noBox::after {
  background-color: #ff6974;
}
.reason .reasonList .reasonItem:nth-child(3)::after,
.reason .reasonList .reasonItem:nth-child(3) .noBox::after {
  background-color: #fbd327;
}
.reason .reasonList .reasonItem:nth-child(4)::after,
.reason .reasonList .reasonItem:nth-child(4) .noBox::after {
  background-color: #65be65;
}
.reason .reasonList .reasonItem:nth-child(5)::after,
.reason .reasonList .reasonItem:nth-child(5) .noBox::after {
  background-color: #fc9f42;
}
.reason .reasonList .reasonItem .reasonImg {
  position: relative;
}
.reason .reasonList .reasonItem .txtBox .topConts {
  display: flex;
  align-items: center;
}
.reason .reasonList .reasonItem .txtBox .topConts .noBox {
  position: relative;
  display: inline-flex;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.reason .reasonList .reasonItem .txtBox .topConts .noBox::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../../../img/common/emphasis.png);
}
.reason .reasonList .reasonItem .txtBox .topConts .noBox::after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  right: 0;
}
.reason .reasonList .reasonItem .txtBox .topConts .topTxt {
  position: relative;
  line-height: 1.2;
  font-weight: 700;
}
.reason .reasonList .reasonItem .txtBox .topConts .topTxt::after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
}
.reason .reasonList .reasonItem .txtBox .txt {
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .reason {
    padding: 7.5rem 0;
  }
  .reason .reasonList {
    padding: 3.75rem 0 1.875rem;
  }
  .reason .reasonList .reasonItem {
    width: 67.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .reason .reasonList .reasonItem::after {
    width: 10rem;
    height: 6.25rem;
    border-radius: 1rem;
    bottom: -1.875rem;
  }
  .reason .reasonList .reasonItem:not(:first-child) {
    padding-top: 3.75rem;
  }
  .reason .reasonList .reasonItem:nth-child(odd)::after {
    left: -1.875rem;
  }
  .reason .reasonList .reasonItem:nth-child(even)::after {
    right: -1.875rem;
  }
  .reason .reasonList .reasonItem .reasonImg {
    width: 30rem;
  }
  .reason .reasonList .reasonItem .reasonImg img {
    border-radius: 1rem;
  }
  .reason .reasonList .reasonItem .txtBox {
    width: 34.875rem;
  }
  .reason .reasonList .reasonItem .txtBox .topConts .noBox {
    font-size: 3.5rem;
    padding: 1.25rem 1.25rem 1.25rem 2.1875rem;
    margin-right: 1.25rem;
  }
  .reason .reasonList .reasonItem .txtBox .topConts .noBox::before {
    width: 2.1875rem;
    height: 2.375rem;
  }
  .reason .reasonList .reasonItem .txtBox .topConts .noBox::after {
    height: 1rem;
  }
  .reason .reasonList .reasonItem .txtBox .topConts .topTxt {
    font-size: 1.5rem;
  }
  .reason .reasonList .reasonItem .txtBox .topConts .topTxt::after {
    height: 0.0625rem;
    border-bottom: 0.25rem dotted #b3b3b3;
    bottom: -1.125rem;
  }
  .reason .reasonList .reasonItem .txtBox .txt {
    padding-top: 1.75rem;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .reason {
    padding: 20.8333333333vw 0;
  }
  .reason .reasonList {
    overflow: hidden;
    padding: 10.4166666667vw 0 0;
  }
  .reason .reasonList .reasonItem::after {
    width: 31.25vw;
    height: 19.53125vw;
    border-radius: 2.0833333333vw;
    top: 43.6197916667vw;
  }
  .reason .reasonList .reasonItem:not(:first-child) {
    margin-top: 13.0208333333vw;
  }
  .reason .reasonList .reasonItem:nth-child(odd)::after {
    right: 0;
  }
  .reason .reasonList .reasonItem:nth-child(even) .reasonImg {
    margin-left: auto;
  }
  .reason .reasonList .reasonItem:nth-child(even)::after {
    left: 0;
  }
  .reason .reasonList .reasonItem .reasonImg {
    width: 87.2395833333vw;
  }
  .reason .reasonList .reasonItem .reasonImg img {
    border-radius: 4.1666666667vw;
  }
  .reason .reasonList .reasonItem .txtBox {
    padding: 0 3.90625vw;
  }
  .reason .reasonList .reasonItem .txtBox .topConts {
    padding-top: 7.8125vw;
    width: 100%;
  }
  .reason .reasonList .reasonItem .txtBox .topConts .noBox {
    font-size: 2.4285714286rem;
    padding: 1.8229166667vw 0 2.0833333333vw 3.6458333333vw;
    left: -3.90625vw;
  }
  .reason .reasonList .reasonItem .txtBox .topConts .noBox::before {
    width: 3.90625vw;
    height: 4.296875vw;
  }
  .reason .reasonList .reasonItem .txtBox .topConts .noBox::after {
    height: 1.3020833333vw;
    width: 70%;
  }
  .reason .reasonList .reasonItem .txtBox .topConts .topTxt {
    font-size: 1.4285714286rem;
  }
  .reason .reasonList .reasonItem .txtBox .txt {
    position: relative;
    margin-top: 5.2083333333vw;
    padding-top: 5.2083333333vw;
    font-size: 1.1428571429rem;
  }
  .reason .reasonList .reasonItem .txtBox .txt::after {
    position: absolute;
    content: "";
    height: 0.2604166667vw;
    border-top: 1.3020833333vw dotted #b3b3b3;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.skills {
  color: #4d4d4d;
  overflow: hidden;
}
.skills .skillWrap {
  background-color: #fbd327;
}
.skills .skillList .skillItem:nth-child(1) {
  background-color: #fff;
}
.skills .skillList .skillItem:nth-child(1).show .topConts::after {
  transition: 0.4s;
  transition-delay: 0.8s;
}
.skills .skillList .skillItem:nth-child(1) .topConts {
  position: relative;
  background-color: #f5f5f5;
  border: none;
  height: 100%;
}
.skills .skillList .skillItem:nth-child(1) .topConts::before {
  z-index: 2;
  position: absolute;
  content: "";
  background-color: #f5f5f5;
}
.skills .skillList .skillItem:nth-child(1) .topConts::after {
  position: absolute;
  content: "";
  background-image: url(../../../img/common/skill_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.skills .skillList .skillItem:nth-child(1) .topConts .headTxt {
  position: relative;
  z-index: 2;
  color: #4d4d4d;
}
.skills .skillList .skillItem:nth-child(1) .topConts .headTxt .subTxt {
  display: block;
  font-weight: normal;
  color: #ff6974;
}
.skills .skillList .skillItem .topConts {
  text-align: center;
  background-color: #449cfd;
}
.skills .skillList .skillItem .topConts .headTxt {
  font-weight: 700;
  color: #fbd327;
  line-height: 1.2;
}
.skills .skillList .skillItem .txt {
  text-align: center;
  line-height: 1.6;
  font-weight: 600;
}
.skills .conts {
  position: relative;
}
.skills .conts::after {
  z-index: -1;
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
.skills .conts .contWrap {
  display: flex;
  justify-content: space-between;
  margin: auto;
}
.skills .conts .txtBox {
  position: relative;
}
.skills .conts .txtBox::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../../../img/common/scratch_block.png);
}
.skills .conts .txtBox .headTxt {
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
}
.skills .conts .txtBox .headTxt .bgBlue {
  align-self: flex-start;
  color: #f5f5f5;
  background-color: #449cfd;
}
.skills .conts .txtBox .txt {
  position: relative;
}
.skills .conts .txtBox .txt::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
}
.skills .conts .txtBox .txt {
  color: #4d4d4d;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .skills {
    padding: 7.5rem 0;
  }
  .skills .skillWrap {
    margin-top: 3.75rem;
    padding: 3rem;
    border-radius: 1rem;
  }
  .skills .skillList {
    display: flex;
    align-items: stretch;
  }
  .skills .skillList:nth-child(2) {
    margin-top: 1.5rem;
  }
  .skills .skillList .skillItem {
    width: 14.5rem;
  }
  .skills .skillList .skillItem:nth-child(1) {
    transition-delay: 0.1s;
  }
  .skills .skillList .skillItem:nth-child(2) {
    transition-delay: 0.2s;
  }
  .skills .skillList .skillItem:nth-child(3) {
    transition-delay: 0.3s;
  }
  .skills .skillList .skillItem:nth-child(4) {
    transition-delay: 0.4s;
  }
  .skills .skillList .skillItem:nth-child(5) {
    transition-delay: 0.5s;
  }
  .skills .skillList .skillItem:nth-child(1) {
    border-radius: 1rem;
  }
  .skills .skillList .skillItem:nth-child(1).show .topConts::after {
    left: 96%;
  }
  .skills .skillList .skillItem:nth-child(1) .topConts {
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0.1875rem solid #449cfd;
  }
  .skills .skillList .skillItem:nth-child(1) .topConts::before {
    width: 5rem;
    height: 5rem;
    right: 0;
  }
  .skills .skillList .skillItem:nth-child(1) .topConts::after {
    width: 7.5625rem;
    height: 4.9375rem;
    left: 74%;
  }
  .skills .skillList .skillItem:nth-child(1) .topConts .iconBox {
    margin: 0;
  }
  .skills .skillList .skillItem:nth-child(n+2) {
    margin-left: 1.5rem;
  }
  .skills .skillList .skillItem:nth-child(2) {
    margin-left: auto;
  }
  .skills .skillList .skillItem .topConts {
    padding: 0.9375rem 0;
    border: 0.0625rem solid #449cfd;
    border-radius: 1rem 1rem 0 0;
  }
  .skills .skillList .skillItem .topConts .iconBox {
    margin: auto;
    width: 3rem;
    height: 3rem;
  }
  .skills .skillList .skillItem .topConts .headTxt {
    padding-top: 0.75rem;
    font-size: 1.625rem;
  }
  .skills .skillList .skillItem .topConts .headTxt .subTxt {
    font-size: 0.875rem;
    padding-top: 0.375rem;
  }
  .skills .skillList .skillItem .topConts .headTxt.small {
    font-size: 1.375rem;
    line-height: 1.2;
  }
  .skills .skillList .skillItem .txt {
    background-color: #fff;
    padding: 1.875rem 0.5rem 1.875rem;
    border: 0.0625rem solid #449cfd;
    border-radius: 0 0 1rem 1rem;
  }
  .skills .conts {
    margin-top: 5rem;
  }
  .skills .conts::after {
    top: 1.5625rem;
    border-radius: 1rem;
  }
  .skills .conts .contWrap {
    width: 67.5rem;
  }
  .skills .conts .txtBox {
    width: 32.625rem;
  }
  .skills .conts .txtBox::after {
    bottom: -0.3125rem;
    right: -4rem;
    width: 8.125rem;
    height: 5.75rem;
  }
  .skills .conts .txtBox .headTxt {
    font-size: 1.625rem;
    padding-bottom: 1.25rem;
  }
  .skills .conts .txtBox .headTxt .bgBlue {
    padding: 0.5rem 0.75rem;
  }
  .skills .conts .txtBox .headTxt .bgBlue:nth-child(1) {
    margin-bottom: 0.5rem;
  }
  .skills .conts .txtBox .headTxt .bgBlue:nth-child(2) {
    margin-bottom: 0.9375rem;
  }
  .skills .conts .txtBox .txt {
    padding-top: 1.25rem;
  }
  .skills .conts .txtBox .txt::after {
    height: 0.0625rem;
    border-bottom: 0.25rem dotted #b3b3b3;
  }
  .skills .conts .txtBox .txt {
    font-size: 1.125rem;
  }
  .skills .conts .imgBox {
    padding-left: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .skills {
    padding-top: 20.8333333333vw;
  }
  .skills .skillWrap {
    margin-top: 10.4166666667vw;
    padding: 10.4166666667vw 5.2083333333vw;
    width: 100vw;
    margin: 10.4166666667vw calc(50% - 50vw) 0;
  }
  .skills .skillList:not(:last-child) {
    margin-bottom: 10.4166666667vw;
    padding-bottom: 10.4166666667vw;
    border-bottom: 1.3020833333vw dotted #fff;
  }
  .skills .skillList .skillItem:nth-child(1) {
    border-radius: 4.1666666667vw;
  }
  .skills .skillList .skillItem:nth-child(1).show .topConts {
    margin-bottom: 13.0208333333vw;
  }
  .skills .skillList .skillItem:nth-child(1).show .topConts::after {
    top: 96%;
  }
  .skills .skillList .skillItem:nth-child(1) .topConts {
    border-radius: 4.1666666667vw;
    border: 0.390625vw solid #449cfd;
    padding: 7.8125vw 0;
    transition: 0.6s;
    transition-delay: 0.6s;
  }
  .skills .skillList .skillItem:nth-child(1) .topConts::before {
    width: 10.4166666667vw;
    height: 16.9270833333vw;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .skills .skillList .skillItem:nth-child(1) .topConts::after {
    width: 15.7552083333vw;
    height: 10.2864583333vw;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .skills .skillList .skillItem:nth-child(1) .topConts .iconBox {
    margin: 0;
  }
  .skills .skillList .skillItem:not(:last-child) {
    margin-bottom: 2.6041666667vw;
  }
  .skills .skillList .skillItem .topConts {
    position: relative;
    padding: 5.859375vw 0;
    border: 0.2604166667vw solid #449cfd;
    border-radius: 4.1666666667vw 4.1666666667vw 0 0;
  }
  .skills .skillList .skillItem .topConts .iconBox {
    position: absolute;
    top: 50%;
    left: 7.2916666667vw;
    transform: translateY(-50%);
    width: 11.71875vw;
    height: 11.71875vw;
  }
  .skills .skillList .skillItem .topConts .headTxt {
    font-size: 1.4285714286rem;
    text-align: center;
  }
  .skills .skillList .skillItem .topConts .headTxt .subTxt {
    padding-top: 1.8229166667vw;
    font-size: 1rem;
  }
  .skills .skillList .skillItem .topConts .headTxt.small {
    padding-left: 3%;
  }
  .skills .skillList .skillItem .txt {
    padding: 2.6041666667vw 7.8125vw 3.90625vw;
    background-color: #fff;
    border: 0.2604166667vw solid #449cfd;
    border-radius: 0 0 4.1666666667vw 4.1666666667vw;
    font-size: 1.1428571429rem;
  }
  .skills .conts {
    margin-top: 13.0208333333vw;
  }
  .skills .conts .contWrap {
    flex-direction: column-reverse;
  }
  .skills .conts .txtBox::after {
    top: -4.5572916667vw;
    right: 3.90625vw;
    width: 23.4375vw;
    height: 15.625vw;
  }
  .skills .conts .txtBox .headTxt {
    font-size: 1.7142857143rem;
    padding-bottom: 5.2083333333vw;
    margin-left: 3.90625vw;
  }
  .skills .conts .txtBox .headTxt .bgBlue {
    padding: 1.0416666667vw 1.5625vw;
  }
  .skills .conts .txtBox .headTxt .bgBlue:nth-child(1) {
    margin-bottom: 2.0833333333vw;
  }
  .skills .conts .txtBox .headTxt .bgBlue:nth-child(2) {
    margin-bottom: 3.90625vw;
  }
  .skills .conts .txtBox .txt {
    padding: 5.2083333333vw 3.90625vw 0;
  }
  .skills .conts .txtBox .txt::after {
    height: 0.2604166667vw;
    border-bottom: 1.3020833333vw dotted #b3b3b3;
  }
  .skills .conts .txtBox .txt {
    font-size: 1.1428571429rem;
  }
}

.flow {
  position: relative;
  color: #4d4d4d;
}
.flow .flowList {
  position: relative;
}
.flow .flowList::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100vw;
  margin-left: calc(50% - 55vw);
  background-color: #449cfd;
}
.flow .flowList .flowItem {
  position: relative;
  text-align: center;
}
.flow .flowList .flowItem .dotBox {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../../../img/common/circle_dot.svg);
}
.flow .flowList .flowItem:nth-child(even) {
  position: relative;
}
.flow .flowList .flowItem:nth-child(1) .dotBox {
  content: "";
  right: -80%;
  transform: translateX(-80%);
}
.flow .flowList .flowItem:nth-child(1) .contBox::after {
  content: "01";
}
.flow .flowList .flowItem:nth-child(2) .dotBox {
  content: "";
}
.flow .flowList .flowItem:nth-child(2) .contBox::after {
  content: "02";
}
.flow .flowList .flowItem:nth-child(3) .dotBox {
  content: "";
}
.flow .flowList .flowItem:nth-child(3) .contBox::after {
  content: "03";
}
.flow .flowList .flowItem:nth-child(4) .contBox::after {
  content: "04";
}
.flow .flowList .flowItem .contBox {
  position: relative;
  background-color: #fff;
  border-radius: 100%;
}
.flow .flowList .flowItem .contBox::after {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 100%;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  color: #449cfd;
  background-color: #fbd327;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow .flowList .flowItem .contBox .imgBox {
  position: relative;
  margin: auto;
}
.flow .flowList .flowItem .contBox .topTxt {
  font-weight: 600;
  line-height: 1.4;
}
.flow .flowList .flowItem .txt {
  color: #fff;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .flow {
    padding: 7.5rem 0 14.375rem;
  }
  .flow .blobBox .blob:nth-child(1) {
    top: 70%;
    transform: translateY(-70%);
  }
  .flow .flowList {
    margin-top: 3.75rem;
    display: flex;
    justify-content: space-between;
  }
  .flow .flowList::after {
    top: 6.875rem;
    height: 20rem;
    border-radius: 0 12.5rem 12.5rem 0;
  }
  .flow .flowList .flowItem:nth-child(1) .contBox {
    transition-delay: 0.1s;
  }
  .flow .flowList .flowItem:nth-child(1) .dotBox {
    transition-delay: 0.45s;
  }
  .flow .flowList .flowItem:nth-child(2) .contBox {
    transition-delay: 0.2s;
  }
  .flow .flowList .flowItem:nth-child(2) .dotBox {
    transition-delay: 0.9s;
  }
  .flow .flowList .flowItem:nth-child(3) .contBox {
    transition-delay: 0.3s;
  }
  .flow .flowList .flowItem:nth-child(3) .dotBox {
    transition-delay: 1.35s;
  }
  .flow .flowList .flowItem:nth-child(4) .contBox {
    transition-delay: 0.4s;
  }
  .flow .flowList .flowItem:nth-child(4) .dotBox {
    transition-delay: 1.8s;
  }
  .flow .flowList .flowItem:nth-child(5) .contBox {
    transition-delay: 0.5s;
  }
  .flow .flowList .flowItem:nth-child(5) .dotBox {
    transition-delay: 2.25s;
  }
  .flow .flowList .flowItem .dotBox {
    width: 9.75rem;
    height: 4.1875rem;
  }
  .flow .flowList .flowItem:nth-child(even) {
    top: 3.75rem;
  }
  .flow .flowList .flowItem:nth-child(1) .dotBox {
    bottom: 4.375rem;
  }
  .flow .flowList .flowItem:nth-child(2) .dotBox {
    right: -80%;
    top: 35%;
    transform: translate(-80%, -35%) rotate(180deg);
  }
  .flow .flowList .flowItem:nth-child(3) .dotBox {
    content: "";
    right: -80%;
    bottom: 4.375rem;
    transform: translateX(-80%);
  }
  .flow .flowList .flowItem .contBox {
    width: 16.875rem;
    height: 16.875rem;
  }
  .flow .flowList .flowItem .contBox::after {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.8125rem;
  }
  .flow .flowList .flowItem .contBox .imgBox {
    width: 10rem;
    top: -1.25rem;
  }
  .flow .flowList .flowItem .contBox .topTxt {
    font-size: 1.5rem;
    padding-top: 0.625rem;
  }
  .flow .flowList .flowItem .txt {
    padding-top: 0.625rem;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .flow {
    padding: 20.8333333333vw 0 0;
  }
  .flow .flowList {
    margin-top: 10.4166666667vw;
    padding: 13.0208333333vw 0 20.8333333333vw;
  }
  .flow .flowList::after {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100%;
  }
  .flow .flowList .flowItem:nth-child(1) .dotBox {
    transition-delay: 0.6s;
  }
  .flow .flowList .flowItem:nth-child(2) .dotBox {
    transition-delay: 1.2s;
  }
  .flow .flowList .flowItem:nth-child(3) .dotBox {
    transition-delay: 1.8s;
  }
  .flow .flowList .flowItem:nth-child(4) .dotBox {
    transition-delay: 2.4s;
  }
  .flow .flowList .flowItem:nth-child(5) .dotBox {
    transition-delay: 3s;
  }
  .flow .flowList .flowItem:not(:last-child) {
    margin-bottom: 10.4166666667vw;
  }
  .flow .flowList .flowItem .dotBox {
    width: 52.0833333333vw;
    height: 31.25vw;
    bottom: -10%;
  }
  .flow .flowList .flowItem:nth-child(odd) .dotBox {
    transform: rotate(90deg) !important;
    left: -10%;
  }
  .flow .flowList .flowItem:nth-child(even) .dotBox {
    transform: rotate(-90deg) !important;
    right: -10%;
  }
  .flow .flowList .flowItem .contBox {
    margin: auto;
    width: 62.5vw;
    height: 62.5vw;
  }
  .flow .flowList .flowItem .contBox::after {
    width: 16.6666666667vw;
    height: 16.6666666667vw;
    font-size: 2.8571428571rem;
  }
  .flow .flowList .flowItem .contBox .imgBox {
    width: 41.6666666667vw;
    top: 0;
  }
  .flow .flowList .flowItem .contBox .topTxt {
    font-size: 1.4285714286rem;
    padding-top: 2.6041666667vw;
  }
  .flow .flowList .flowItem .txt {
    padding-top: 2.6041666667vw;
    font-size: 1.1428571429rem;
  }
}

.course {
  position: relative;
  color: #4d4d4d;
  background-color: #f5f5f5;
}
@media print, screen and (min-width: 768px) {
  .course {
    padding: 7.5rem 0;
  }
  .course .stepImg {
    padding-top: 3.75rem;
  }
  .course .collageBox {
    padding-top: 6.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .course {
    padding: 20.8333333333vw 0;
  }
  .course .stepImg {
    padding-top: 13.0208333333vw;
  }
  .course .collageBox {
    padding-top: 13.0208333333vw;
  }
}

.instructor {
  position: relative;
}
.instructor .modalTxtBox {
  z-index: 99;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.2s;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
.instructor .modalTxtBox.active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
.instructor .modalTxtBox.active .modalTxt {
  transform: scale(1);
}
.instructor .modalTxtBox .modalTxt {
  position: relative;
  background-color: #fff;
  transition: 0.2s;
  transform: scale(0.5);
}
.instructor .modalTxtBox .modalTxt::before, .instructor .modalTxtBox .modalTxt::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.instructor .modalTxtBox .modalTxt .txt {
  line-height: 1.7;
}
.instructor .modalTxtBox .closeBtn {
  position: absolute;
  right: 0;
  border: none;
  background-color: #fff;
}
.instructor .modalTxtBox .closeBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 72%;
  background-color: #449cfd;
}
.instructor .modalTxtBox .closeBtn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.instructor .modalTxtBox .closeBtn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.instructor .swiper-instructor {
  overflow: hidden;
}
.instructor .instructorList {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.instructor .instructorList .instructorItem {
  position: relative;
  background-color: #f5f5f5;
}
.instructor .instructorList .instructorItem .imgBox {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f5f5f5;
  border-radius: 100%;
  margin: auto;
}
.instructor .instructorList .instructorItem .headTxt {
  font-weight: 600;
  color: #449cfd;
  text-align: center;
}
.instructor .instructorList .instructorItem .txt {
  line-height: 1.6;
}
.instructor .instructorList .instructorItem .btnBox {
  display: inline-block;
  color: #ff6974;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .instructor {
    padding-top: 7.5rem;
  }
  .instructor .modalTxtBox .modalTxt {
    padding: 3.125rem 2.25rem;
    width: 45rem;
    border-radius: 1rem 0 1rem 1rem;
  }
  .instructor .modalTxtBox .modalTxt::before, .instructor .modalTxtBox .modalTxt::after {
    height: 0.25rem;
    border-bottom: 0.25rem dotted #ddd;
  }
  .instructor .modalTxtBox .modalTxt::before {
    top: 1.25rem;
  }
  .instructor .modalTxtBox .modalTxt::after {
    bottom: 1.25rem;
  }
  .instructor .modalTxtBox .modalTxt .txt {
    font-size: 1.25rem;
  }
  .instructor .modalTxtBox .closeBtn {
    top: -3.75rem;
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem 0.5rem 0 0;
    cursor: pointer;
    transition: 0.2s;
    transform-origin: right;
  }
  .instructor .modalTxtBox .closeBtn:hover {
    transform: scale(1.2);
  }
  .instructor .modalTxtBox .closeBtn span {
    height: 0.25rem;
    border-radius: 0.5rem;
  }
  .instructor .blobBox .blob:nth-child(1) {
    top: 65%;
    right: 10%;
  }
  .instructor .instructorList {
    margin-top: 8.4375rem;
  }
  .instructor .instructorList .instructorItem {
    width: 23rem;
    border-radius: 1rem;
    padding: 2.1875rem 1.875rem;
  }
  .instructor .instructorList .instructorItem .imgBox {
    top: -4.6875rem;
    width: 9.375rem;
    height: 9.375rem;
    padding: 0.625rem;
  }
  .instructor .instructorList .instructorItem .headTxt {
    font-size: 1.5rem;
    padding-top: 3.5rem;
  }
  .instructor .instructorList .instructorItem .txt {
    padding-top: 1.5625rem;
    font-size: 1rem;
  }
  .instructor .instructorList .instructorItem .btnBox {
    font-size: 1rem;
    width: 15rem;
    height: 3.125rem;
    border-radius: 2rem;
    margin: 1.5625rem auto 0;
    transition: 0.2s;
  }
  .instructor .instructorList .instructorItem .btnBox:hover {
    transform: scale(1.1);
  }
}
@media only screen and (max-width: 767px) {
  .instructor {
    padding-top: 20.8333333333vw;
  }
  .instructor .modalTxtBox .modalTxt {
    padding: 10.4166666667vw 5.2083333333vw;
    width: 90%;
    border-radius: 4.1666666667vw 0 4.1666666667vw 4.1666666667vw;
  }
  .instructor .modalTxtBox .modalTxt .txt {
    font-size: 0.8571428571rem;
  }
  .instructor .modalTxtBox .modalTxt::before, .instructor .modalTxtBox .modalTxt::after {
    height: 1.0416666667vw;
    border-bottom: 1.3020833333vw dotted #ddd;
  }
  .instructor .modalTxtBox .modalTxt::before {
    top: 5.2083333333vw;
  }
  .instructor .modalTxtBox .modalTxt::after {
    bottom: 5.2083333333vw;
  }
  .instructor .modalTxtBox .closeBtn {
    top: -15.625vw;
    width: 15.625vw;
    height: 15.625vw;
    border-radius: 2.0833333333vw 2.0833333333vw 0 0;
  }
  .instructor .modalTxtBox .closeBtn span {
    height: 1.0416666667vw;
    border-radius: 2.0833333333vw;
  }
  .instructor .blobBox .blob:nth-child(1) {
    top: 25%;
  }
  .instructor .blobBox .blob:nth-child(2) {
    top: 15%;
  }
  .instructor .instructorList {
    margin-top: 26.0416666667vw;
  }
  .instructor .instructorList .instructorItem {
    border-radius: 4.1666666667vw;
    padding: 7.8125vw;
  }
  .instructor .instructorList .instructorItem .imgBox {
    top: -18.2291666667vw;
    width: 31.9010416667vw;
    height: 31.9010416667vw;
    padding: 2.6041666667vw;
  }
  .instructor .instructorList .instructorItem .imgBox img {
    width: 100%;
    height: 100%;
  }
  .instructor .instructorList .instructorItem .headTxt {
    font-size: 1.4285714286rem;
    padding-top: 10.4166666667vw;
  }
  .instructor .instructorList .instructorItem .txt {
    text-align: justify;
    padding-top: 5.2083333333vw;
  }
  .instructor .instructorList .instructorItem .btnBox {
    font-size: 1.1428571429rem;
    width: 52.0833333333vw;
    height: 10.4166666667vw;
    border-radius: 8.3333333333vw;
    margin: 6.5104166667vw auto 0;
  }
}

.voice .tabWrap .tabNav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.voice .tabWrap .tabNav .tabBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  opacity: 0.6;
  transition: 0.2s;
}
.voice .tabWrap .tabNav .tabBtn.active {
  opacity: 1;
}
.voice .tabWrap .tabNav .tabBtn:nth-child(1) {
  background-color: #fbd327;
}
.voice .tabWrap .tabNav .tabBtn:nth-child(2) {
  color: #fff;
  background-color: #449cfd;
}
.voice .tabWrap .tabContainer {
  background-color: #f5f5f5;
}
.voice .tabWrap .tabCont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 0;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(0, 1);
}
.voice .tabWrap .tabCont:nth-child(1) {
  background-color: #fbd327;
  transform-origin: left;
}
.voice .tabWrap .tabCont:nth-child(2) {
  color: #fff;
  background-color: #449cfd;
  transform-origin: right;
}
.voice .tabWrap .tabCont.active {
  height: 100%;
  width: 100%;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: background-color 0.2s, opacity 0.2s, transform 0.2s;
  transform: scale(1);
}
.voice .tabWrap .tabCont.active .voiceItem {
  transition: 0.2s;
  transition-delay: 0.2s;
  opacity: 1;
}
.voice .tabWrap .voiceItem {
  background-color: #f5f5f5;
  opacity: 0;
}
.voice .tabWrap .voiceItem .topCont {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.voice .tabWrap .voiceItem .topCont::after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
}
.voice .tabWrap .voiceItem .topCont .name {
  font-weight: 600;
  background-color: #ff6974;
  color: #fff;
}
.voice .tabWrap .voiceItem .topCont .voiceNo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.voice .tabWrap .voiceItem .topCont .voiceNo .num {
  display: inline-block;
  font-family: "Oswald", sans-serif;
}
.voice .tabWrap .voiceItem .txt {
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .voice {
    padding-top: 7.5rem;
  }
  .voice .tabWrap {
    padding-top: 3.125rem;
  }
  .voice .tabWrap .tabNav .tabBtn {
    width: 36.25rem;
    height: 6.25rem;
    border-radius: 1rem 1rem 0 0;
    font-size: 1.25rem;
  }
  .voice .tabWrap .tabNav .tabBtn:hover {
    width: 43.75rem;
  }
  .voice .tabWrap .tabNav .tabBtn:hover:nth-child(1) {
    margin-right: 1.25rem;
  }
  .voice .tabWrap .tabNav .tabBtn:hover:nth-child(2) {
    margin-left: 1.25rem;
  }
  .voice .tabWrap .tabNav .tabBtn img {
    width: 3.5rem;
    height: 3.0625rem;
    margin-right: 1rem;
  }
  .voice .tabWrap .tabContainer {
    border-radius: 0 0 1rem 1rem;
  }
  .voice .tabWrap .tabCont {
    border-radius: 0 0 1rem 1rem;
  }
  .voice .tabWrap .tabCont.active {
    padding: 2.5rem;
  }
  .voice .tabWrap .tabCont.active .voiceItem {
    margin-top: 0;
  }
  .voice .tabWrap .tabCont.active .voiceItem:nth-child(n+4) {
    margin-top: 0.625rem;
  }
  .voice .tabWrap .voiceItem {
    width: 22.75rem;
    padding: 1.5625rem;
    border-radius: 1rem;
    margin-top: 1.5625rem;
  }
  .voice .tabWrap .voiceItem .topCont {
    padding-bottom: 1.25rem;
  }
  .voice .tabWrap .voiceItem .topCont::after {
    height: 0.0625rem;
    border-bottom: 0.3125rem dotted #fbd327;
  }
  .voice .tabWrap .voiceItem .topCont .name {
    padding: 0.375rem 1.5625rem;
    font-size: 1.25rem;
    border-radius: 2rem;
  }
  .voice .tabWrap .voiceItem .topCont .voiceNo {
    font-size: 1.75rem;
    padding-right: 1.75rem;
  }
  .voice .tabWrap .voiceItem .txt {
    padding-top: 1.25rem;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .voice {
    padding-top: 20.8333333333vw;
  }
  .voice .tabWrap {
    padding-top: 3.125rem;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .voice .tabWrap .tabNav .tabBtn {
    position: relative;
    width: 49%;
    height: 28.6458333333vw;
    border-radius: 4.1666666667vw 4.1666666667vw 0 0;
    padding-top: 10.4166666667vw;
    display: block;
    line-height: 1.4;
    text-align: center;
    font-size: 1.1428571429rem;
  }
  .voice .tabWrap .tabNav .tabBtn img {
    position: absolute;
    left: 50%;
    top: 3.90625vw;
    width: 9.6354166667vw;
    height: 7.8125vw;
    transform: translateX(-50%);
  }
  .voice .tabWrap .tabContainer {
    border-radius: 0 0 4.1666666667vw 4.1666666667vw;
  }
  .voice .tabWrap .tabCont {
    border-radius: 0 0 4.1666666667vw 4.1666666667vw;
  }
  .voice .tabWrap .tabCont.active {
    padding: 5.2083333333vw;
  }
  .voice .tabWrap .tabCont.active .voiceItem {
    margin-top: 2.6041666667vw;
  }
  .voice .tabWrap .tabCont.active .voiceItem:first-child {
    margin-top: 0;
  }
  .voice .tabWrap .voiceItem {
    padding: 5.2083333333vw;
    border-radius: 4.1666666667vw;
    margin-top: 6.5104166667vw;
  }
  .voice .tabWrap .voiceItem .topCont {
    padding-bottom: 3.90625vw;
  }
  .voice .tabWrap .voiceItem .topCont::after {
    height: 0.2604166667vw;
    border-bottom: 1.3020833333vw dotted #fbd327;
  }
  .voice .tabWrap .voiceItem .topCont .name {
    padding: 1.0416666667vw 5.2083333333vw;
    font-size: 1.2857142857rem;
    border-radius: 4.1666666667vw;
  }
  .voice .tabWrap .voiceItem .topCont .voiceNo {
    font-size: 2rem;
    padding-right: 3.6458333333vw;
  }
  .voice .tabWrap .voiceItem .txt {
    padding-top: 3.90625vw;
  }
}

@media print, screen and (min-width: 768px) {
  .faq {
    padding: 7.5rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .faq {
    padding: 20.8333333333vw 0;
  }
}

.trust .trustItem {
  position: relative;
}
.trust .trustItem figure {
  width: 100%;
}
.trust .trustItem figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trust .trustItem .noBox {
  position: absolute;
  left: 0;
  z-index: 2;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust .trustItem .noBox::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  background-image: url(../../../img/common/no_bg.svg);
}
.trust .trustItem .txtBox {
  background-color: #fff;
  position: relative;
}
.trust .trustItem .txtBox::after {
  z-index: -1;
  position: absolute;
  content: "";
  left: 0;
  background-color: #f5f5f5;
}
.trust .trustItem .txtBox .headTxt {
  position: absolute;
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
}
.trust .trustItem .txtBox .headTxt .bgBlue {
  align-self: flex-start;
  color: #f5f5f5;
  background-color: #449cfd;
}
.trust .trustItem .txtBox .txt {
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .trust {
    padding-top: 7.5rem;
  }
  .trust .trustList {
    padding-top: 5.625rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .trust .trustItem {
    width: 35rem;
  }
  .trust .trustItem:nth-child(n+3) {
    margin-top: 4.6875rem;
  }
  .trust .trustItem:nth-child(n+3) .txtBox {
    height: 14.6875rem;
  }
  .trust .trustItem figure {
    height: 17.5rem;
  }
  .trust .trustItem figure img {
    border-radius: 1rem 1rem 0 0;
  }
  .trust .trustItem .noBox {
    top: -2.8125rem;
    font-size: 3.375rem;
    width: 5.8125rem;
    height: 5.875rem;
  }
  .trust .trustItem .noBox::after {
    top: 0.5rem;
  }
  .trust .trustItem .txtBox {
    height: 9.375rem;
    padding: 2.5rem 1.75rem 0;
    border-radius: 1rem;
  }
  .trust .trustItem .txtBox::after {
    width: 35rem;
    height: 5rem;
    bottom: -0.625rem;
    border-radius: 0 0 1rem 1rem;
  }
  .trust .trustItem .txtBox .headTxt {
    top: -4rem;
    left: 1.75rem;
    font-size: 1.5rem;
  }
  .trust .trustItem .txtBox .headTxt .bgBlue {
    padding: 0.5rem 0.625rem;
  }
  .trust .trustItem .txtBox .headTxt .bgBlue:nth-child(1) {
    margin-bottom: 0.375rem;
  }
  .trust .trustItem .txtBox .headTxt .bgBlue:nth-child(2) {
    margin-bottom: 1.625rem;
  }
  .trust .trustItem .txtBox .txt {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .trust {
    padding-top: 20.8333333333vw;
  }
  .trust .titBox .tit {
    font-size: 2.8571428571rem;
    letter-spacing: -0.01em;
  }
  .trust .trustList {
    padding-top: 15.625vw;
  }
  .trust .trustItem:not(:last-child) {
    margin-bottom: 15.625vw;
  }
  .trust .trustItem figure {
    height: 41.40625vw;
  }
  .trust .trustItem figure img {
    border-radius: 4.1666666667vw 4.1666666667vw 0 0;
  }
  .trust .trustItem .noBox {
    top: -7.2916666667vw;
    font-size: 2.2857142857rem;
    width: 15.625vw;
    height: 15.7552083333vw;
  }
  .trust .trustItem .noBox::after {
    top: 1.0416666667vw;
  }
  .trust .trustItem .txtBox {
    padding: 5.2083333333vw;
    border-radius: 4.1666666667vw;
    text-align: justify;
  }
  .trust .trustItem .txtBox::after {
    width: 100%;
    height: 13.0208333333vw;
    bottom: -2.0833333333vw;
    border-radius: 0 0 4.1666666667vw 4.1666666667vw;
  }
  .trust .trustItem .txtBox .headTxt {
    top: -13.0208333333vw;
    left: 5.2083333333vw;
    font-size: 1.4285714286rem;
  }
  .trust .trustItem .txtBox .headTxt .bgBlue {
    padding: 1.3020833333vw 1.8229166667vw;
  }
  .trust .trustItem .txtBox .headTxt .bgBlue:nth-child(1) {
    margin-bottom: 1.3020833333vw;
  }
  .trust .trustItem .txtBox .headTxt .bgBlue:nth-child(2) {
    margin-bottom: 5.2083333333vw;
  }
}

.blog {
  position: relative;
}
.blog .swiper-blog {
  overflow: hidden;
}
.blog .blogItem {
  background-color: #fff;
}
.blog .blogItem figure {
  width: 100%;
}
.blog .blogItem figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .blogItem .dateBox {
  background-color: #ff6974;
  text-align: center;
  margin-left: auto;
  color: #fff;
}
.blog .blogItem .txtBox .headTxt {
  position: relative;
  font-weight: 600;
  line-height: 1.4;
}
.blog .blogItem .txtBox .headTxt::after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
}
.blog .blogItem .txtBox .txt {
  line-height: 1.6;
}
.blog .blogItem .txtBox .txt .readMore {
  color: blue;
  text-decoration: underline;
}
.blog .linkBtnBox {
  position: relative;
  text-align: center;
}
.blog .linkBtnBox .linkBtn {
  display: inline-block;
  font-weight: 600;
  color: #4d4d4d;
  background-color: #fbd327;
}
@media print, screen and (min-width: 768px) {
  .blog {
    padding: 7.5rem 0;
    padding-bottom: 4.375rem;
  }
  .blog .blobBox .blob:nth-child(1) {
    top: 65%;
    right: 10%;
  }
  .blog .blobBox {
    z-index: 1;
  }
  .blog .blobBox .blob:nth-child(1) {
    top: 50%;
    transform: translateY(-50%);
  }
  .blog .arrowBoxS {
    top: -18.75rem;
  }
  .blog .blogList {
    padding-top: 3.125rem;
  }
  .blog .blogItem {
    width: 23rem !important;
    margin: 0 1rem;
    padding: 1.25rem 1.25rem 1.5625rem;
    border-radius: 1rem;
  }
  .blog .blogItem figure {
    height: 11.875rem;
  }
  .blog .blogItem figure img {
    border-radius: 1rem 1rem 0 0;
  }
  .blog .blogItem .dateBox {
    margin: 0.9375rem 0;
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    width: 6.25rem;
  }
  .blog .blogItem .txtBox {
    padding: 0 1.25rem;
  }
  .blog .blogItem .txtBox .headTxt {
    font-size: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .blog .blogItem .txtBox .headTxt::after {
    height: 0.0625rem;
    border-bottom: 0.25rem dotted #b3b3b3;
  }
  .blog .blogItem .txtBox .txt {
    padding-top: 0.9375rem;
    font-size: 1rem;
  }
  .blog .linkBtnBox {
    top: -3.125rem;
  }
  .blog .linkBtnBox .linkBtn {
    padding: 1rem 4rem;
    font-size: 1.125rem;
    border-radius: 2rem;
    transition: 0.2s;
  }
  .blog .linkBtnBox .linkBtn:hover {
    opacity: 0.6;
  }
}
@media only screen and (max-width: 767px) {
  .blog {
    padding: 20.8333333333vw 0;
    padding-bottom: 18.2291666667vw;
  }
  .blog .blobBox .blob:nth-child(1) {
    top: 15%;
  }
  .blog .arrowBoxS {
    top: -65.1041666667vw;
  }
  .blog .blogList {
    padding-top: 13.0208333333vw;
  }
  .blog .blogItem {
    width: 100%;
    padding: 5.2083333333vw 5.2083333333vw 6.5104166667vw;
    border-radius: 4.1666666667vw;
  }
  .blog .blogItem figure {
    height: 49.4791666667vw;
  }
  .blog .blogItem figure img {
    border-radius: 4.1666666667vw 4.1666666667vw 0 0;
  }
  .blog .blogItem .dateBox {
    margin: 3.90625vw 0;
    font-size: 0.7142857143rem;
    padding: 1.0416666667vw 4.1666666667vw;
    border-radius: 4.1666666667vw;
    width: 26.0416666667vw;
  }
  .blog .blogItem .txtBox {
    padding: 0 5.2083333333vw;
  }
  .blog .blogItem .txtBox .headTxt {
    font-size: 1.4285714286rem;
    padding-bottom: 5.2083333333vw;
  }
  .blog .blogItem .txtBox .headTxt::after {
    height: 0.2604166667vw;
    border-bottom: 1.3020833333vw dotted #b3b3b3;
  }
  .blog .blogItem .txtBox .txt {
    padding-top: 3.90625vw;
    text-align: justify;
  }
  .blog .linkBtnBox .linkBtn {
    padding: 4.6875vw 15.625vw;
    font-size: 1.1428571429rem;
    border-radius: 8.3333333333vw;
  }
}

.tableBox .midTitle {
  font-weight: 600;
}
@media print, screen and (min-width: 768px) {
  .tableBox {
    padding: 7.5rem 0;
  }
  .tableBox .midTitle {
    font-size: 1.25rem;
    padding-top: 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .tableBox {
    padding: 10.4166666667vw 0 20.8333333333vw;
  }
  .tableBox .midTitle {
    font-size: 1.2857142857rem;
    padding-top: 10.4166666667vw;
    text-align: center;
  }
}

.overview {
  position: relative;
}
.overview::after {
  position: absolute;
  content: "";
  background-image: url(../../../img/common/how_to03_pc.svg);
  animation: 10s spin infinite linear;
}
.overview .imgTxtBox {
  background-color: #f5f5f5;
}
.overview .imgTxtBox .headTxt {
  font-weight: 600;
  color: #ff6974;
}
.overview .imgTxtBox .bgTxt {
  z-index: 2;
  position: relative;
  font-weight: 600;
  display: inline-flex;
  background-color: #fbd327;
}
.overview .imgTxtBox .txt {
  line-height: 1.6;
  text-align: justify;
}
@media print, screen and (min-width: 768px) {
  .overview {
    margin-top: 5rem;
  }
  .overview::after {
    right: 8%;
    top: -4.0625rem;
    width: 8.125rem;
    height: 8.125rem;
  }
  .overview .imgTxtBox {
    padding: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 1rem;
  }
  .overview .imgTxtBox figure {
    width: 30rem;
  }
  .overview .imgTxtBox .txtBox {
    flex: 1;
    margin-left: 1.875rem;
  }
  .overview .imgTxtBox .headTxt {
    font-size: 1.75rem;
  }
  .overview .imgTxtBox .bgTxt {
    margin-top: 1.5625rem;
    font-size: 1.375rem;
    padding-bottom: 0.125rem;
  }
  .overview .imgTxtBox .txt {
    padding-top: 1.5625rem;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .overview {
    margin-top: 10.4166666667vw;
  }
  .overview::after {
    width: 18.2291666667vw;
    height: 18.2291666667vw;
    top: -9.1145833333vw;
    left: 37.7604166667vw;
  }
  .overview .imgTxtBox {
    padding: 10.4166666667vw 5.2083333333vw 5.2083333333vw;
    border-radius: 4.1666666667vw;
  }
  .overview .imgTxtBox figure img {
    border-radius: 4.1666666667vw;
  }
  .overview .imgTxtBox .headTxt {
    font-size: 1.4285714286rem;
    margin-top: 5.2083333333vw;
  }
  .overview .imgTxtBox .bgTxt {
    margin-top: 5.2083333333vw;
    font-size: 1.2857142857rem;
    padding-bottom: 0.390625vw;
  }
  .overview .imgTxtBox .txt {
    padding-top: 5.2083333333vw;
  }
}