@charset "UTF-8";
@font-face {
  font-family: 'notosansjp';
  font-weight: 400;
  src: url(../font/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 500;
  src: url(../font/NotoSansJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 600;
  src: url(../font/NotoSansJP-Bold.ttf) format("truetype");
}
@font-face {
  font-family: 'adventpro';
  font-weight: 600;
  src: url(../font/AdventPro-Bold.ttf) format("truetype");
}
.lms .inner {
  position: relative;
}
.lms__ttl {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
  word-wrap: break-word;
  margin-bottom: 48px;
}
.lms__ttl .deco {
  color: #412B95;
}
.lms__txt {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 36px;
  word-wrap: break-word;
  margin-bottom: 72px;
}
.lms__container {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.lms__container .container__item {
  width: 510px;
  background: #E7DAFF;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 18px 30px 51px;
}
.lms__container .container__item:nth-of-type(2) {
  max-height: 242px;
  background: #E7DAFF;
}
.lms__container .container__item:nth-of-type(2) .item__txt {
  background: #124F58;
}
.lms__container .container__item:nth-of-type(2) .container__list .list__item::after {
  background: #124F58;
}
.lms__container .container__item .item__txt {
  width: fit-content;
  background: #00236A;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 22px;
  word-wrap: break-word;
  padding: 3px 18px 6px;
  margin-bottom: 19px;
}
.lms__container .container__item .item__ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  word-wrap: break-word;
}
.lms__container .container__list {
  margin-bottom: 20px;
}
.lms__container .container__list:last-of-type {
  margin-bottom: 0;
}
.lms__container .container__list .list__item {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  padding-left: 1.5em;
}
.lms__container .container__list .list__item::after {
  position: absolute;
  content: "";
  background: #00236A;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 5px;
  left: 0;
}
.lms__img {
  position: relative;
  top: -90px;
  left: 55%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .lms {
    padding: 30px 0 45px;
  }
  .lms__ttl {
    font-size: 22px;
    font-weight: 700;
    line-height: 36px;
    padding: 0 5%;
    margin-bottom: 30px;
  }
  .lms__txt {
    font-size: 16px;
    line-height: 28px;
    padding: 0 5%;
    margin-bottom: 30px;
  }
  .lms__container {
    flex-direction: column;
    gap: 10px;
    padding: 0 5%;
  }
  .lms__container .container__item {
    width: 100%;
    padding: 20px 15px;
  }
  .lms__container .container__item:nth-of-type(2) {
    max-height: 100%;
  }
  .lms__container .container__item .item__txt {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .lms__container .container__list {
    margin-bottom: 17px;
  }
  .lms__container .container__list .list__item {
    font-size: 14px;
    line-height: 22px;
  }
  .lms__img {
    width: 100%;
    top: 0;
    left: 50%;
    margin-top: 20px;
  }
}

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

File Name: landing.scss

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	ブラウザデフォルトスタイルリセット
3.	HTMLタグ
4.	container
5.	共通部分
6.	header
7.	content
8.	main
9.	sub
10.	footer
11.	ページ別個別設定

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
2.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1, h2, h3, h4, h5, h6,
div,
p,
ul, ol, dl,
form, fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

body {
  font-size: 10px;
  font-family: "notosansjp", sans-serif;
}

* html body {
  font-size: 62.5%;
}

* + html body {
  font-size: 62.5%;
}

/* start \*/
html:\66irst-child body {
  font-size: 62.5%;
}

/* end */
body:first-of-type {
  font-size: 62.5%;
}

body > iframe {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: none;
}

legend {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  font-size: inherit;
  font: 100%;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

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

th, td {
  padding: 0px;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

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

header, footer, article, section, aside,
nav,
figure, figcaption {
  display: block;
  margin: 0;
  padding: 0;
}

/*----------------------------------------------------------------------
3.	HTMLタグ
----------------------------------------------------------------------*/
html,
body {
  height: 100%;
}
@media screen and (min-width: 769px) {
  html,
  body {
    min-width: 1260px;
  }
}

html {
  font-size: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #000;
}
body * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a, a:before, a:after {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a > * {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
a:hover > * {
  text-decoration: none;
}

span {
  font-weight: inherit;
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
}
* html #container {
  height: 100%;
}
body > #container {
  height: auto;
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
.fll {
  float: left;
}

.flr {
  float: right;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.link-contact {
  width: 440px;
  margin: 70px auto 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .link-contact {
    width: 80%;
    margin: 12% auto;
  }
}
@media screen and (min-width: 769px) {
  .link-contact.-upper-qa {
    margin-top: 320px;
  }
}
.link-contact.-follower {
  margin: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .link-contact.-follower {
    display: none;
  }
}
.link-contact-cap {
  display: block;
  margin-bottom: 10px;
  color: #000;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .link-contact-cap {
    font-size: 15px;
    font-size: 4vw;
  }
}
.link-contact-cap.-main, .link-contact-cap.-follower {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .link-contact-cap.-main, .link-contact-cap.-follower {
    font-size: 15px;
    font-size: 4vw;
  }
}
.link-contact a {
  -moz-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.4);
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  width: 100%;
  height: 50px;
  background: #FF4600;
  padding-left: 40px;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .link-contact a {
    height: auto;
    font-size: 13px;
    font-size: 3.46667vw;
    padding: 5% 0 5% 40px;
  }
}
.link-contact a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 5px;
}
.link-contact a:before {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 1;
  left: 26px;
  top: 2px;
  bottom: 0;
  content: "\f054";
  color: #FFD651;
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .link-contact a:before {
    left: 24px;
    font-size: 14px;
  }
}
.link-contact a:after {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .link-contact a:after {
    left: 15px;
  }
}
.link-contact a.-main {
  width: 304px;
  margin: auto;
  padding-left: 50px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .link-contact a.-main {
    width: 80%;
    font-size: 15px;
    font-size: 4vw;
  }
}
.link-contact a.-main:before {
  left: 45px;
}
@media screen and (max-width: 768px) {
  .link-contact a.-main:before {
    left: 58px;
  }
}
.link-contact a.-main:after {
  left: 39px;
}
@media screen and (max-width: 768px) {
  .link-contact a.-main:after {
    left: 50px;
  }
}
.link-contact a em {
  color: #F7FF00;
  font-weight: bold;
}

.follower {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .follower {
    padding: 0 5%;
    bottom: 20px;
  }
}
.follower__btn {
  display: block;
  max-width: 1920px;
  margin: 0 auto;
}
.follower__btn img {
  width: 100%;
}

.right-nav {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1500;
}
@media screen and (max-width: 768px) {
  .right-nav {
    display: none !important;
  }
}
.right-nav a {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  display: block;
}
.right-nav a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .right-nav img {
    width: 45px;
    height: 45px;
  }
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
#header {
  position: relative;
  width: 1240px;
  padding: 11px 0 10px;
  margin: 0 auto;
  background: #FFF;
}
@media screen and (max-width: 1280px) {
  #header {
    width: auto;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .header-inner {
    right: 0;
    width: 94%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .header-inner {
    justify-content: flex-end;
    right: 20px;
    top: 20px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 106.5px;
  }
}
.header-right {
  display: flex;
  align-items: center;
}
.header-right a img {
  display: block;
  width: 50%;
}
.header-hour {
  margin-right: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-hour {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin: 0 0 3%;
  }
}
.header-hour-term {
  width: 130px;
  margin-bottom: 6px;
  padding: 3px 0;
  background: #000;
  color: #FFF;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .header-hour-term {
    width: 30%;
    margin: 0 3% 0 0;
    padding: 1.2% 0;
    font-size: 10px;
    font-size: 2.66667vw;
    letter-spacing: 0;
  }
}
.header-hour-description {
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .header-hour-description {
    font-size: 11px;
    font-size: 2.93333vw;
  }
}
.header-tel {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .header-tel {
    text-align: right;
  }
}
.header-tel:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.header-tel picture {
  width: 50%;
}
.header-tel picture img {
  width: 100%;
}

/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
.box-title {
  margin-bottom: 60px;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.38889;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box-title {
    margin-bottom: 8%;
    font-size: 17px;
    font-size: 4.53333vw;
  }
}

/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
10.	#footer
----------------------------------------------------------------------*/
#footer.-thanks {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer-inner {
  padding: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 0 0 5%;
  }
}
.footer-lead {
  margin-bottom: 40px;
  padding: 60px 0;
  background: #9B79D1;
  color: #FFF;
  font-size: 18px;
  line-height: 1.88889;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-lead {
    margin-bottom: 5%;
    padding: 4% 5%;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.5;
    text-align: left;
  }
}
.footer-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    margin-bottom: 5%;
  }
}
.footer-nav-item {
  margin-right: 30px;
}
.footer-nav-item a {
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer-nav-item a {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.footer-nav-item:last-child {
  margin-right: 0;
}
.footer-copyright {
  font-size: 17px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    font-size: 11px;
    font-size: 2.93333vw;
  }
}

/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
.mv__container {
  position: relative;
}
.mv__container .cta__btn {
  display: block;
  width: 718px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.mv__container .cta__btn img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv__container .cta__btn {
    width: 100%;
    bottom: 30px;
    padding: 0 30px;
  }
}

.main-visual {
  max-width: 1920px;
  height: 500px;
  background: url("../img/main_visual.webp") no-repeat center/cover;
  margin: 0 auto;
}
@media screen and (min-width: 1921px) {
  .main-visual {
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .main-visual {
    height: 450px;
    background: url("../img/main_visual_sp.webp") no-repeat center/cover;
  }
}
.main-box {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .main-box {
    padding-top: 8%;
  }
}
.main-box-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  margin-bottom: 35px;
}
.main-box-title .purple {
  color: #412B95;
}
.main-box-title .gold {
  color: #B49400;
}
@media screen and (max-width: 768px) {
  .main-box-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    padding: 0 5%;
  }
}
.main-box-txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .main-box-txt {
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
    padding: 0 5%;
  }
}
.main-box-pic {
  text-align: center;
}
.main-box-pic img {
  max-width: 1000px;
  margin: auto;
}

.case-inner {
  width: 1160px;
  margin: 50px auto 70px;
}
@media screen and (max-width: 1160px) {
  .case-inner {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .case-inner {
    margin: 8% 0;
  }
}
.case-inner ul {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .case-inner ul {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .case-inner ul li {
    margin: 0 5px;
  }
}
.case-inner ul li img {
  border: 1px solid #B9B9B9;
}
.case-title {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5625;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .case-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    padding: 0 5%;
    margin-bottom: 5%;
    text-align-last: left;
  }
}
.case-lead {
  margin-bottom: 55px;
  color: #333;
  font-size: 18px;
  line-height: 1.88889;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .case-lead {
    margin-bottom: 8%;
    padding: 0 5%;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
  }
}

.feature {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .feature {
    padding-top: 15px;
  }
}
.feature-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .feature-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    padding: 0 5%;
    margin-bottom: 25px;
  }
}
.feature-title .deco {
  color: #412B95;
}
@media screen and (max-width: 768px) {
  .feature-inner {
    padding-bottom: 12%;
  }
}
.feature-pic {
  position: relative;
  width: 1000px;
  margin: 0 auto 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature-pic {
    margin-bottom: 30px;
  }
}
.feature-pic img {
  width: 100%;
}
.feature-movie {
  height: 445px;
  background: #B9A5E1;
  margin-bottom: 145px;
}
@media screen and (max-width: 768px) {
  .feature-movie {
    height: auto;
    background: #000;
    margin-bottom: 0;
  }
}
.feature-movie-box {
  box-shadow: 0px 0px 15px 3px rgba(106, 0, 255, 0.2);
  position: relative;
  top: -90px;
  width: 900px;
  margin: auto;
  padding: 50px 0 30px;
  background: #FFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature-movie-box {
    top: 0;
    width: 100%;
    padding: 5% 3% 3%;
  }
}
.feature-movie-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .feature-movie-title {
    margin-bottom: 4%;
    font-size: 11px;
    font-size: 2.93333vw;
  }
}
.feature-movie-title em {
  color: #403999;
  font-weight: bold;
}
.feature-movie-wrapper {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .feature-movie-wrapper {
    margin-bottom: 4%;
  }
}
.feature-movie-lead {
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .feature-movie-lead {
    margin-bottom: 4%;
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 1.8;
  }
}
@media screen and (max-width: 375px) {
  .feature-movie-lead {
    margin-bottom: 0;
  }
}
.feature-movie-lead small {
  display: block;
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.42857;
}
@media screen and (max-width: 768px) {
  .feature-movie-lead small {
    margin-top: 3%;
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .feature-movie-wrapper {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 0px;
    padding: 0 0 56.25% !important;
  }
}
@media screen and (max-width: 768px) {
  .feature-movie iframe {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .feature__container {
    margin-bottom: 27px;
  }
  .feature__list {
    padding: 0 20px;
    overflow-x: hidden;
  }
  .feature__img {
    position: relative;
    margin: 10px 0;
  }
  .feature__img img {
    display: block;
    position: relative;
    z-index: 10;
    width: 87px;
    background: #fff;
    padding-right: 12px;
  }
  .feature__img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    top: 50%;
    left: 0;
  }
  .feature__img02 {
    padding: 0 7%;
  }
  .feature__txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    padding-left: 1em;
    margin-bottom: 25px;
  }
  .feature__txt .deco {
    color: #412B95;
  }
}

.problem {
  background: #E7DAFF;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .problem {
    background: url("../img/problem_bg_sp.jpg") center top no-repeat;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.problem__upper {
  position: relative;
  background: #f1f1f1;
}
.problem__upper::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #f1f1f1 transparent transparent transparent;
  border-width: 220px 960px 0px 960px;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .problem__upper::after {
    border-width: 70px 200px 0px 200px;
    bottom: -70px;
  }
}
.problem-inner {
  position: relative;
  z-index: 10;
  width: 1000px;
  margin: auto;
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .problem-inner {
    width: auto;
    padding: 60px 5% 0;
  }
}
.problem-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
}
@media screen and (max-width: 768px) {
  .problem-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 5%;
  }
}
.problem-title .deco {
  color: #412B95;
}
.problem__list {
  display: flex;
  gap: 70px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .problem__list {
    flex-direction: column;
    gap: 24px;
  }
}
.problem__item {
  width: 322px;
}
@media screen and (max-width: 768px) {
  .problem__item {
    width: 100%;
  }
}
.problem__item img {
  display: block;
  width: 230px;
  height: 230px;
  margin: 0 auto 14px;
}
@media screen and (max-width: 768px) {
  .problem__item img {
    width: 90px;
    height: 90px;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .problem .flex__container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }
}
.problem__txt {
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .problem__txt {
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    margin-bottom: 0;
  }
}
.problem__voice {
  position: relative;
  min-height: 338px;
  background: #fff;
  filter: drop-shadow(0px 0px 15px rgba(106, 0, 255, 0.2));
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  padding: 28px 15px 30px 21px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .problem__voice {
    min-height: auto;
  }
}
.problem__voice::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 0px 23px 23px 23px;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.problem__voice .deco {
  color: #412B95;
}
.problem__lower {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
  padding-top: 275px;
  padding-bottom: 105px;
}
.problem__lower img {
  width: 239px;
}
@media screen and (max-width: 768px) {
  .problem__lower {
    display: block;
    background: #E7DAFF;
    padding-top: 125px;
    padding-bottom: 0;
  }
  .problem__lower img {
    display: block;
    width: 240px;
    margin: 0 auto;
  }
}
.problem-pic {
  margin-bottom: 135px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .problem-pic {
    margin-bottom: 47%;
  }
}
.problem-support {
  position: relative;
  margin-left: 75px;
}
@media screen and (max-width: 768px) {
  .problem-support {
    margin: 0;
    text-align: center;
  }
}
.problem-support-term {
  margin-bottom: 40px;
  color: #403999;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .problem-support-term {
    margin-bottom: 4%;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
  }
}
.problem-support-description {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .problem-support-description {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    padding: 0 5%;
    margin-bottom: 12px;
  }
}
.problem-support-description em {
  color: #403999;
  font-weight: bold;
}

.reason {
  padding: 80px 0 95px;
  background: #ECE2FF;
}
@media screen and (max-width: 768px) {
  .reason {
    margin-bottom: 10%;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 768px) {
  .reason-title {
    margin-bottom: 5%;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
  }
}
.reason-list {
  display: flex;
  justify-content: space-between;
  width: 1100px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .reason-list {
    flex-direction: column;
    width: auto;
    margin-top: -5%;
    padding: 2% 7% 30px;
  }
}
.reason-item {
  position: relative;
  width: 250px;
  height: 308px;
  padding: 30px 15px 25px 30px;
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 0px 0px 15px 3px rgba(106, 0, 255, 0.2);
  -moz-background-size: 25%;
  -webkit-background-size: 25%;
  background-size: 25%;
}
@media screen and (max-width: 768px) {
  .reason-item {
    width: 100%;
    height: 210px;
    margin-top: 5%;
    padding: 22px 5% 0;
    background-position: center top 29%;
    -moz-background-size: 18%;
    -webkit-background-size: 18%;
    background-size: 18%;
  }
}
@media screen and (max-width: 768px) {
  .reason-item:last-child {
    margin-bottom: 0;
  }
}
.reason-item-term {
  color: #412B95;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .reason-item-term {
    margin-bottom: 5%;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
  }
}
.reason-item-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .reason-item-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
  }
}
.reason-item-icon {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -18px;
  top: -30px;
  width: 92px;
  height: 92px;
  background: #928eff;
  background: linear-gradient(45deg, #928eff 0%, #7930dc 100%);
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.28571;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reason-item-icon {
    right: 0;
    bottom: unset;
    top: -24px;
    font-size: 14px;
    padding: 0 10px;
    background: linear-gradient(313deg, #c7ddff 5.7%, #9da4f3 20.38%, #7d62f3 49.44%, rgba(68, 50, 228, 0.99) 88.22%);
  }
}

.voice-inner {
  width: 1000px;
  margin: auto;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .voice-inner {
    width: auto;
    padding-bottom: 0;
  }
}
.voice-title {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .voice-title {
    margin-bottom: 10%;
  }
}
.voice-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -75px;
}
@media screen and (max-width: 768px) {
  .voice-list {
    width: 90%;
    margin: -12% auto 0;
  }
}
.voice-item {
  position: relative;
  width: 470px;
  margin-top: 75px;
  padding: 20px 25px;
  background: url("../img/voice_item_bg.gif") left top repeat #CFECFF;
}
@media screen and (max-width: 768px) {
  .voice-item {
    width: auto;
    margin-top: 12%;
    padding: 5%;
  }
}
.voice-item:before {
  content: "";
  position: absolute;
  left: 26px;
  top: -30px;
  width: 112px;
  height: 113px;
  background-position: left top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .voice-item:before {
    top: -20px;
    width: 80px;
    height: 80.71429px;
  }
}
.voice-item:nth-child(1):before {
  background-image: url("../img/voice_item_icon1.png");
}
@media screen and (max-width: 768px) {
  .voice-item:nth-child(1):before {
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.voice-item:nth-child(2):before {
  background-image: url("../img/voice_item_icon2.png");
}
@media screen and (max-width: 768px) {
  .voice-item:nth-child(2):before {
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.voice-item:nth-child(3):before {
  background-image: url("../img/voice_item_icon3.png");
}
@media screen and (max-width: 768px) {
  .voice-item:nth-child(3):before {
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.voice-item:nth-child(4):before {
  background-image: url("../img/voice_item_icon4.png");
}
@media screen and (max-width: 768px) {
  .voice-item:nth-child(4):before {
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.voice-item-term {
  margin-bottom: 22px;
  padding-left: 135px;
  color: #403999;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .voice-item-term {
    margin-bottom: 10px;
    padding-left: 105px;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.5;
  }
}
.voice-item-term em {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.voice-item-term em:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: #FFFC00;
}
.voice-item-description {
  font-size: 14px;
  line-height: 1.71429;
}
@media screen and (max-width: 768px) {
  .voice-item-description {
    font-size: 11px;
    font-size: 2.93333vw;
    line-height: 1.81818;
  }
}
.voice-item-description em {
  color: #403999;
}

.program {
  position: relative;
  background: #ECE2FF;
  padding-top: 110px;
}
@media screen and (max-width: 768px) {
  .program {
    padding-top: 10%;
    background: #ECE2FF;
  }
}
@media screen and (max-width: 768px) {
  .program-upper {
    margin-bottom: 60px;
  }
}
.program-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .program-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 5%;
  }
}
.program-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .program-lead {
    margin-bottom: 4%;
    padding: 0 5%;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
  }
}
.program-lead em {
  color: #403999;
}
.program-pic {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .program-pic {
    padding: 0 5%;
    margin: 0;
  }
}
.program-pic img {
  margin: auto;
}
.program-box {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .program-box {
    margin-bottom: 0;
  }
  .program-box.-step02 {
    margin-top: 20px;
  }
  .program-box.-step03 {
    margin-top: 80px;
  }
  .program-box.-step04 {
    margin-top: 70px;
  }
}
.program-box.-step05 {
  padding-bottom: 1125px;
}
@media screen and (max-width: 768px) {
  .program-box.-step05 {
    margin-top: 30px;
    padding-bottom: 0;
  }
}
.program-box-inner {
  width: 1110px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .program-box-inner {
    width: auto;
    padding: 5%;
  }
}
@media screen and (max-width: 768px) {
  .program-box-inner.-step02 {
    margin-top: 0;
    padding: 5% 0;
  }
}
.program-box-inner.relative {
  position: relative;
}
@media screen and (max-width: 768px) {
  .program-box-inner.relative {
    padding: 5% 0;
  }
  .program-box-inner.relative .program-box-title {
    padding-bottom: 15px;
  }
}
.program-box-inner img.absolute {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .program-box-inner img.absolute {
    max-width: 1065px;
  }
}
@media screen and (max-width: 768px) {
  .program-box-inner img.absolute {
    position: static;
  }
}
.program-box-inner img.absolute02 {
  z-index: 10;
  width: 50%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .program-box-inner img.absolute02 {
    width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .program-box-inner.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .program-box-inner.-step05 {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .program-box-title {
    position: relative;
    padding: 0 5%;
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.29412;
  }
}
.program-box-title.-step03, .program-box-title.-step04 {
  display: block;
  position: relative;
  z-index: 10;
  width: 1110px;
  margin: auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 35px;
}
.program-box-title.-step03::before, .program-box-title.-step04::before {
  position: absolute;
  content: "";
  width: 360px;
  height: 232px;
  background: url(../img/program_number03.webp) no-repeat center/contain;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .program-box-title.-step03, .program-box-title.-step04 {
    width: auto;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 0;
  }
  .program-box-title.-step03::before, .program-box-title.-step04::before {
    position: absolute;
    z-index: -1;
    content: "";
    width: 180px;
    height: 116px;
    background: url(../img/program_number03.webp) no-repeat center/contain;
    top: -100%;
    right: 5%;
  }
}
.program-box-title.-step04::before {
  background: url(../img/program_number04.webp) no-repeat center/contain;
}
.program-box-title-wrapper {
  display: block;
  position: relative;
  width: 1110px;
  margin: auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .program-box-title-wrapper {
    width: auto;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 0;
  }
}
.program-box-title-wrapper::after {
  position: absolute;
  content: "";
  width: 75px;
  height: 4px;
  background: #fff;
  bottom: -10px;
  left: 0;
}
.program-box-title-wrapper::before {
  position: absolute;
  content: "";
  width: 280px;
  height: 232px;
  background: url(../img/program_number01.webp) no-repeat center/contain;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .program-box-title-wrapper::before {
    width: 140px;
    height: 116px;
    top: -100%;
  }
}
@media screen and (max-width: 768px) {
  .program-box-title-wrapper img {
    width: 27px;
  }
}
.program-box-title-wrapper.-step02::before {
  width: 360px;
  background: url(../img/program_number02.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .program-box-title-wrapper.-step02::before {
    width: 180px;
  }
}
.program-box-title-wrapper.-step03::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .program-box-title-wrapper.-step03::before {
    display: none;
  }
}
.program-box-title-wrapper.-step04::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .program-box-title-wrapper.-step04::before {
    display: none;
  }
}
.program-box-title-wrapper.-step05 {
  margin-bottom: 25px;
}
.program-box-title-wrapper.-step05::before {
  width: 360px;
  background: url(../img/program_number05.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .program-box-title-wrapper.-step05::before {
    width: 180px;
  }
}
.program-box-title small {
  display: block;
  margin-top: 30px;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .program-box-title small {
    position: absolute;
    left: 0;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
}
.program-box-title small em {
  color: #403999;
  font-weight: bold;
}
.program-box-practice-theme {
  padding: 12px 0 0;
}
.program-box-basic {
  position: relative;
  padding: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .program-box-basic {
    margin-bottom: 10%;
    padding: 0;
    background: none;
  }
  .program-box-basic.-step03 {
    margin-bottom: 0;
  }
}
.program-box-subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .program-box-subtitle {
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
  }
}
.program-box-subtitle.-new {
  position: relative;
}
.program-box-subtitle.-new:before {
  content: "";
  position: absolute;
  right: -50px;
  top: -5px;
  width: 54px;
  height: 36px;
  background: url("../img/icon_new.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .program-box-subtitle.-new:before {
    right: -23px;
    top: 8px;
    width: 27px;
    height: 18px;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.program-box-subtitle em {
  color: #412B95;
  font-weight: inherit;
}
@media screen and (max-width: 768px) {
  .program-box-detail {
    position: relative;
    padding: 0 5%;
  }
  .program-box-detail.-step01, .program-box-detail.-step04 {
    padding: 0;
  }
}
.program-box-detail.-pbl {
  background: url(../img/program_box_detail_bg.jpg) right 0 center no-repeat;
}
@media screen and (max-width: 768px) {
  .program-box-detail.-pbl {
    padding-bottom: 44%;
    background: url(../img/program_box_detail_bg.jpg) center bottom no-repeat;
    -moz-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
  }
}
.program-box-detail.-step05 {
  padding: 0;
}
.program-box-detail-term {
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 7px;
}
@media screen and (max-width: 768px) {
  .program-box-detail-term {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .program-box-detail-term.-step02 {
    padding: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .program-box-detail-term.-step03 {
    position: relative;
    z-index: 10;
    padding: 0 5%;
    margin-bottom: 30px;
  }
}
.program-box-detail-term em {
  color: #412B95;
  font-weight: bold;
}
.program-box-detail-term .lower_txt {
  display: inline-block;
  width: 465px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 20px;
  margin-bottom: 86px;
}
@media screen and (max-width: 768px) {
  .program-box-detail-term .lower_txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.program-box-detail-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .program-box-detail-description {
    width: auto;
    padding-bottom: 0px;
    margin-bottom: 5% !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
  }
}
.program-box-detail-description.txtbox {
  width: 440px;
  margin-bottom: 756px;
}
@media screen and (max-width: 768px) {
  .program-box-detail-description.txtbox {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .program-box-detail-description.-step02 {
    padding: 0 5%;
  }
}
.program-box-detail-description.-step05 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .program-box-detail-description.-step05 {
    padding-bottom: 50px;
  }
}
.program-box-detail-description.-step05 img {
  position: absolute;
  top: -145px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 956px;
}
@media screen and (max-width: 768px) {
  .program-box-detail-description.-step05 img {
    position: static;
    transform: none;
    max-width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .program-box-detail-description img {
    margin: 3% 0 5%;
  }
}
.program-box-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 15px;
}
@media screen and (max-width: 768px) {
  .program-box-detail-list {
    justify-content: space-between;
    gap: auto;
  }
}
.program-box-detail-item {
  display: flex;
  gap: 8px;
  width: 210px;
  height: 90px;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .program-box-detail-item {
    width: 48%;
    height: 76px;
  }
}
.program-box-detail-item img {
  width: 70px;
  height: 70px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .program-box-detail-item img {
    width: 56px;
    height: 56px;
  }
}
.program-box-detail-item p {
  color: #44474A;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}
@media screen and (max-width: 768px) {
  .program-box-detail-item p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
}
.program-box-detail-movie {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  -moz-box-shadow: 0 5px 0 rgba(106, 142, 175, 0.75);
  -webkit-box-shadow: 0 5px 0 rgba(106, 142, 175, 0.75);
  box-shadow: 0 5px 0 rgba(106, 142, 175, 0.75);
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  position: relative;
  top: 0;
  display: block;
  width: 282px;
  margin: 25px 0 0 20px;
  padding: 12px 0 12px 50px;
  background: #FFF;
  color: #000;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1.5px;
  border: 2px solid #403999;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .program-box-detail-movie {
    display: inline-block;
    width: 50%;
    margin: 5% 0 0;
    padding: 3% 8% 3% 5%;
    font-size: 13px;
    font-size: 3.46667vw;
    text-align: center;
  }
}
.program-box-detail-movie:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 5px;
}
.program-box-detail-movie:before {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 1;
  right: 55px;
  top: 0;
  bottom: 0;
  content: "\f054";
  color: #f6ab00;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .program-box-detail-movie:before {
    right: 15px;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.program-box-detail-pic {
  margin-top: -20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .program-box-detail-pic {
    margin-top: 0;
  }
}
.program-box-detail-pic .-shadow {
  -moz-box-shadow: 0 0 12px rgba(92, 92, 92, 0.2);
  -webkit-box-shadow: 0 0 12px rgba(92, 92, 92, 0.2);
  box-shadow: 0 0 12px rgba(92, 92, 92, 0.2);
}
.program-box-detail-txtlist {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 570px;
  margin-top: 5px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .program-box-detail-txtlist {
    width: 100%;
    margin-top: 10px;
  }
}
.program-box-detail-txtitem {
  width: fit-content;
  background: #E7499E;
  color: white;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 10px;
}
.program-box-detail-txtitem:nth-of-type(2) {
  background: #375CBC;
}
.program-box-detail-txtitem:nth-of-type(3) {
  background: #249C71;
}
.program-box-detail-txtitem:nth-of-type(4) {
  background: #ED6B32;
}
.program-box-detail-txtitem:nth-of-type(5) {
  background: #5CC34C;
}
.program-box-detail-txtitem:nth-of-type(6) {
  background: #6B6B6B;
}
.program-box-detail-txtitem:nth-of-type(7) {
  background: #A38A33;
}
.program-box-detail-txtitem:nth-of-type(8) {
  background: #192347;
}
.program-box-detail-txtitem:nth-of-type(9) {
  background: #AE4CC6;
}
.program-box-flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .program-box-flex {
    display: block;
  }
}
.program-box-flex > *:first-child {
  margin-right: 70px;
}
@media screen and (max-width: 768px) {
  .program-box-flex > *:first-child {
    margin: 0;
  }
}
.program-box-expertise.relative {
  position: relative;
}
.program-box-expertise img.absolute {
  position: absolute;
  width: 650px;
  top: -55px;
  left: 450px;
}
@media screen and (max-width: 768px) {
  .program-box-expertise img.absolute.-step04 {
    position: static;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .program-subbox.-mgb {
    margin-bottom: 5%;
  }
}
.program-subbox.-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .program-subbox.-flex {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .program-subbox.-flex > *:first-child {
    margin-right: 0;
  }
}
.program-subbox.-flex.-mgb {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .program-subbox.-flex.-mgb {
    margin-bottom: 10%;
  }
}
.program-subbox.-flex.-center {
  align-items: center;
}
.program-subbox.-flexbox {
  display: flex;
  align-items: flex-start;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .program-subbox.-flexbox {
    flex-direction: column;
    gap: 15px;
  }
}
.program-subbox.-flexbox.-center {
  align-items: center;
  gap: 125px;
}
@media screen and (max-width: 768px) {
  .program-subbox.-flexbox.-center {
    gap: 0;
  }
  .program-subbox.-flexbox.-center img {
    width: 215px;
  }
}
.program-subbox.-flexbox .txt_container {
  margin-bottom: 57px;
}
@media screen and (max-width: 768px) {
  .program-subbox.-flexbox .txt_container {
    margin-bottom: 0;
  }
}
.program-subbox-lead {
  color: #333;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.63636;
}
@media screen and (max-width: 768px) {
  .program-subbox-lead {
    margin-bottom: 5%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
}
@media screen and (max-width: 768px) {
  .program-subbox-lead.-mgb-sp {
    margin-bottom: 0;
  }
}
.program-subbox-lead em {
  color: #403999;
  font-weight: bold;
}
.program-subbox-lead img {
  display: block;
  margin: 20px 0 0 50px;
}
@media screen and (max-width: 768px) {
  .program-subbox-lead img {
    display: none;
  }
}
.program-subbox.-career {
  position: relative;
  padding-bottom: 560px;
  background: url("../img/program_subbox_career_bg.png") center bottom 110px no-repeat;
}
@media screen and (max-width: 768px) {
  .program-subbox.-career {
    padding-bottom: 72%;
    background: url("../img/program_subbox_career_bg_sp.jpg") center bottom 20% no-repeat;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.program-subbox-text {
  position: absolute;
  right: 80px;
  bottom: 145px;
  width: 350px;
  background: #FFF;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .program-subbox-text {
    position: unset;
    width: auto;
    padding: 3% 4% 2%;
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 1.5;
  }
}
.program-subbox-text em {
  color: #403999;
}
.program-subbox .txt_list {
  width: 440px;
  padding-left: 2em;
}
@media screen and (max-width: 768px) {
  .program-subbox .txt_list {
    width: 100%;
  }
}
.program-subbox .txt_item {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  list-style-type: disc;
}
.program-contents {
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .program-contents {
    width: auto !important;
    margin: auto !important;
  }
}
.program-contents-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -20px;
}
.program-contents-item {
  width: 133px;
  height: 172px;
  margin-top: 20px;
  padding-top: 12px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #F8F6F0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .program-contents-item {
    width: 30%;
    height: 224px;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
@media screen and (max-width: 640px) {
  .program-contents-item {
    height: 180px;
  }
}
@media screen and (max-width: 560px) {
  .program-contents-item {
    height: 158px;
    -moz-background-size: inherit;
    -webkit-background-size: inherit;
    background-size: inherit;
  }
}
@media screen and (max-width: 375px) {
  .program-contents-item {
    height: 128px;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.program-contents-item:nth-child(1) {
  background-image: url("../img/program_contents_item_bg1.jpg");
}
.program-contents-item:nth-child(2) {
  background-image: url("../img/program_contents_item_bg2.jpg");
}
.program-contents-item:nth-child(3) {
  background-image: url("../img/program_contents_item_bg3.jpg");
}
.program-contents-item:nth-child(4) {
  background-image: url("../img/program_contents_item_bg4.jpg");
}
.program-contents-item:nth-child(5) {
  background-image: url("../img/program_contents_item_bg5.jpg");
}
.program-contents-item:nth-child(6) {
  background-image: url("../img/program_contents_item_bg6.jpg");
}
.program-contents-item:nth-child(7) {
  background-image: url("../img/program_contents_item_bg7.jpg");
}
.program-contents-item.-medical {
  width: 150px;
  background-image: url("../img/program_contents_item_bg_medical.jpg");
}
@media screen and (max-width: 768px) {
  .program-contents-item.-medical {
    width: 43%;
  }
}
@media screen and (max-width: 375px) {
  .program-contents-item.-medical {
    background-position: center bottom -80%;
  }
}
.program-contents-item.-welfare {
  width: 150px;
  background-image: url("../img/program_contents_item_bg_welfare.jpg");
}
@media screen and (max-width: 768px) {
  .program-contents-item.-welfare {
    width: 43%;
  }
}
@media screen and (max-width: 375px) {
  .program-contents-item.-welfare {
    background-position: center bottom -80%;
  }
}
.program-contents-item-term {
  display: inline-block;
  margin-bottom: 5px;
  padding: 7px 6px 5px;
  background: #6C8CD4;
  color: #FFF;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .program-contents-item-term {
    font-size: 10px;
    font-size: 2.66667vw;
  }
}
.program-contents-item-description {
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .program-contents-item-description {
    font-size: 10px;
    font-size: 2.66667vw;
  }
}
.program-contents-notice {
  margin-top: 15px;
  font-size: 11px;
  text-align: right;
}

.package {
  height: 750px;
  margin-bottom: 260px;
  background: #D1E8FF;
}
@media screen and (max-width: 768px) {
  .package {
    height: auto;
    margin-bottom: 10%;
  }
}
.package-inner {
  width: 1000px;
  margin: auto;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .package-inner {
    width: auto;
    padding: 8% 0 6%;
  }
}
.package-title {
  margin-bottom: 35px;
  line-height: 1.44444;
}
@media screen and (max-width: 768px) {
  .package-title {
    margin-bottom: 4%;
  }
}
.package-lead {
  margin-bottom: 35px;
  color: #333;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.63636;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .package-lead {
    margin-bottom: 5%;
    padding: 0 5%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.71429;
    text-align: left;
  }
}
.package-lead em {
  color: #403999;
  font-weight: bold;
}

.news-movie {
  height: 766px;
  padding: 65px 0 150px;
  background: #ECE2FF;
}
@media screen and (max-width: 768px) {
  .news-movie {
    height: auto;
    padding: 8% 4%;
  }
}
.news-movie-inner {
  position: relative;
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .news-movie-inner {
    width: auto;
  }
}
.news-movie-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .news-movie-title {
    margin-bottom: 5%;
  }
}
.news-movie-lead {
  position: relative;
  margin-bottom: 50px;
  color: #333;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.63636;
}
@media screen and (max-width: 768px) {
  .news-movie-lead {
    margin-bottom: 8%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.71429;
  }
}
.news-movie-lead em {
  color: #403999;
  font-weight: bold;
}
.news-movie-flex {
  display: flex;
  justify-content: space-between;
  width: 910px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .news-movie-flex {
    display: block;
    width: auto;
  }
}
.news-movie-box {
  width: 420px;
}
@media screen and (max-width: 768px) {
  .news-movie-box {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .news-movie-box:first-child {
    margin-bottom: 10%;
  }
}
.news-movie-box-title {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 18px 10px 18px;
  background: #FFF;
  color: #6C8CD4;
  font-size: 18px;
  border: 2px solid #6C8CD4;
}
@media screen and (max-width: 768px) {
  .news-movie-box-title {
    margin-bottom: 4%;
    padding: 3% 3% 2%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.news-movie-detail-term {
  margin-bottom: 22px;
  font-size: 22px;
  line-height: 1.63636;
}
@media screen and (max-width: 768px) {
  .news-movie-detail-term {
    margin-bottom: 4%;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.news-movie-detail-term em {
  color: #403999;
  font-weight: bold;
}
.news-movie-detail-pic {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news-movie-detail-pic {
    margin-bottom: 4%;
  }
}
.news-movie-detail-pic img {
  -moz-box-shadow: 0 0 12px rgba(92, 92, 92, 0.2);
  -webkit-box-shadow: 0 0 12px rgba(92, 92, 92, 0.2);
  box-shadow: 0 0 12px rgba(92, 92, 92, 0.2);
}
@media screen and (max-width: 768px) {
  .news-movie-detail-pic img {
    width: 74.62687%;
    margin: auto;
  }
}
.news-movie-detail-description {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .news-movie-detail-description {
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 2;
  }
}

.qa {
  padding: 80px 0 55px;
}
@media screen and (max-width: 768px) {
  .qa {
    padding: 57px 5% 5%;
  }
}
.qa-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .qa-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 5%;
  }
}
.qa-list {
  width: 900px;
  margin: auto;
  padding: 0 30px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .qa-list {
    width: auto;
    padding: 0 5%;
  }
}
.qa-item {
  padding: 7px;
}
.qa-item:not(:last-child) {
  border-bottom: 1px solid #000;
}
.qa-item-term, .qa-item-description {
  position: relative;
  padding: 10px 0 10px 52px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .qa-item-term, .qa-item-description {
    padding: 2% 0 2% 8%;
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 1.5;
  }
}
.qa-item-term:before, .qa-item-description:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 33px;
  height: 33px;
  background-position: left top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .qa-item-term:before, .qa-item-description:before {
    width: 17px;
    height: 17px;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.qa-item-term {
  font-weight: bold;
}
.qa-item-term:before {
  background-image: url("../img/qa_item_term_bg.webp");
}
.qa-item-description:before {
  background-image: url("../img/qa_item_description_bg.webp");
}

.president-inner {
  width: 1000px;
  margin: auto;
  padding: 100px 0 120px;
}
@media screen and (max-width: 768px) {
  .president-inner {
    *zoom: 1;
    width: auto;
    padding: 8% 5% 5%;
  }
  .president-inner:after {
    content: "";
    display: table;
    clear: both;
  }
}
.president-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .president-title {
    margin-bottom: 6%;
  }
}
.president-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .president-flex {
    flex-wrap: wrap;
  }
}
.president-text {
  width: 700px;
  font-size: 17px;
  line-height: 2.11765;
}
@media screen and (max-width: 768px) {
  .president-text {
    order: 2;
    width: auto;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.83333;
  }
}
@media screen and (max-width: 768px) {
  .president-pic {
    order: 1;
    margin-bottom: 4%;
  }
}
.president-pic img {
  -moz-box-shadow: 0 0 12px rgba(92, 92, 92, 0.2);
  -webkit-box-shadow: 0 0 12px rgba(92, 92, 92, 0.2);
  box-shadow: 0 0 12px rgba(92, 92, 92, 0.2);
}
.president-sign {
  width: 700px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .president-sign {
    float: right;
    width: 35.40741%;
    margin-top: 4%;
  }
}

.contact {
  padding: 80px 0;
  background: #ECE8DC;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 8% 5%;
  }
}
@media screen and (max-width: 768px) {
  .contact-title {
    margin-bottom: 4%;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
  }
}
.contact-inner {
  width: 1000px;
  margin: auto;
  padding: 50px 50px 60px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .contact-inner {
    width: auto;
    padding: 5% 5% 8%;
  }
}
.contact-inner .applicationform-link {
  display: block;
  width: fit-content;
  font-size: 16px;
  text-decoration: underline;
  margin: 0 auto 2em;
  transition: .3s;
}
.contact-inner .applicationform-link:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .contact-inner .applicationform-link {
    font-size: 12px;
  }
}
.contact-inner-lead {
  margin-bottom: 28px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contact-inner-lead {
    margin-bottom: 4%;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.contact-table {
  width: 880px;
  margin: 0 auto 35px;
  border-collapse: separate;
  border-spacing: 12px;
}
@media screen and (max-width: 768px) {
  .contact-table {
    width: 100%;
    margin-bottom: 5%;
    border-spacing: 0;
  }
}
.contact-table th,
.contact-table td {
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .contact-table th,
  .contact-table td {
    display: list-item;
    list-style: none;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.contact-table th {
  width: 200px;
  padding-right: 40px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .contact-table th {
    width: auto;
    margin-bottom: 2%;
    padding: 0;
    text-align: left;
  }
}
.contact-table td {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 6px 12px;
  border: 2px solid #e4dfd5;
}
@media screen and (max-width: 768px) {
  .contact-table td {
    margin-bottom: 4%;
    padding: 2% 3%;
    border-width: 1px;
  }
}
.contact-table .required {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 2px 5px;
  background: #FF2E90;
  color: #FFF;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .contact-table .required {
    font-size: 10px;
    font-size: 2.66667vw;
  }
}
.contact-table input,
.contact-table textarea {
  border: none;
}
@media screen and (max-width: 768px) {
  .contact-table input,
  .contact-table textarea {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.contact-table input:focus,
.contact-table textarea:focus {
  outline: none;
}
.contact-table input.short {
  width: 360px;
}
@media screen and (max-width: 768px) {
  .contact-table input.short {
    width: 100%;
  }
}
.contact-table input.long {
  width: 100%;
}
.contact-table textarea {
  width: 100%;
  padding: 3px 0;
  line-height: 1.5;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .contact-table textarea {
    height: 100px;
    padding: 0;
  }
}
.contact-table .errortxt {
  display: none;
  color: #f00;
  font-weight: bold;
  margin-top: 5px;
}
.contact-table-text {
  margin-bottom: 45px;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-table-text {
    margin-bottom: 8%;
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 1.66667;
  }
}
.contact-table-text a {
  color: #000;
  text-decoration: underline;
}
.contact-table-text a:hover {
  text-decoration: none;
}
.contact-button {
  display: flex;
  justify-content: space-between;
  width: 284px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contact-button {
    width: 90%;
  }
}
.contact-button.-thanks {
  justify-content: center;
}
.contact-button input {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 5px 5px 0 rgba(92, 92, 92, 0.2);
  -webkit-box-shadow: 5px 5px 0 rgba(92, 92, 92, 0.2);
  box-shadow: 5px 5px 0 rgba(92, 92, 92, 0.2);
  width: 125px;
  height: 37px;
  color: #FFF;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
.contact-button input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}
.contact-button input[type="reset"] {
  background: #ababab;
}
.contact-button input[type="button"], .contact-button input[type="submit"] {
  background: #39F;
}

.confirm .main-box,
.error .main-box,
.thanks .main-box {
  padding-top: 50px;
}
.confirm .main-box-title,
.error .main-box-title,
.thanks .main-box-title {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 18px;
  color: #630;
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.confirm .main-box-title:before,
.error .main-box-title:before,
.thanks .main-box-title:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  margin: 0 auto;
  background: #000;
}
.confirm .main-box-text,
.error .main-box-text,
.thanks .main-box-text {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.55556;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .confirm .main-box-text,
  .error .main-box-text,
  .thanks .main-box-text {
    margin: 5%;
    font-size: 17px;
    font-size: 4.53333vw;
    font-weight: normal;
    line-height: 1.47059;
    text-align: left;
  }
}
.confirm .contact-table,
.error .contact-table,
.thanks .contact-table {
  width: 100%;
  margin-bottom: 45px;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (max-width: 1200px) {
  .confirm .contact-table,
  .error .contact-table,
  .thanks .contact-table {
    width: 100%;
    margin-bottom: 5%;
  }
}
.confirm .contact-table th,
.confirm .contact-table td,
.error .contact-table th,
.error .contact-table td,
.thanks .contact-table th,
.thanks .contact-table td {
  line-height: 1.3;
  font-size: 1.6em;
  border: 10px solid #FFF;
  vertical-align: middle;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .confirm .contact-table th,
  .confirm .contact-table td,
  .error .contact-table th,
  .error .contact-table td,
  .thanks .contact-table th,
  .thanks .contact-table td {
    display: list-item;
    font-size: 16px;
    font-size: 4.26667vw;
    list-style: none;
    border: none;
  }
}
.confirm .contact-table th,
.error .contact-table th,
.thanks .contact-table th {
  width: 220px;
  padding: 15px 10px 15px 30px;
  background: #E4DFD5;
}
@media screen and (max-width: 768px) {
  .confirm .contact-table th,
  .error .contact-table th,
  .thanks .contact-table th {
    position: relative;
    width: 100%;
    padding: 2% 5%;
  }
}
.confirm .contact-table td,
.error .contact-table td,
.thanks .contact-table td {
  padding: 15px 20px;
  background: #F8F5EE;
}
@media screen and (max-width: 768px) {
  .confirm .contact-table td,
  .error .contact-table td,
  .thanks .contact-table td {
    padding: 3% 5%;
    background: none;
  }
}

.confirm .contact-button input[type="button"] {
  background: #c7c7c7;
}

.error .contact-button {
  justify-content: center;
}

.thanks .main-box {
  padding-top: 100px;
}

.data-r {
  color: #E35580;
  font-weight: bold;
}
