@charset "UTF-8";
.lms {
  position: relative;
  z-index: 10;
  padding: 70px 0 0;
}
.lms .inner {
  position: relative;
}
@media screen and (min-width: 769px) {
  .lms .inner {
    width: 1100px;
    margin: 0 auto;
  }
}
.lms__ttl {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
  word-wrap: break-word;
  margin-bottom: 48px;
}
.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: #EEF4FF;
  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: #E8FCFF;
}
.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: 191px;
}
@media screen and (max-width: 768px) {
  .lms {
    padding: 50px 0 15px;
  }
  .lms__ttl {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 30px;
  }
  .lms__txt {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
  }
  .lms__container {
    flex-direction: column;
    gap: 10px;
  }
  .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: 0;
    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: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", arial, helvetica, 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: 1220px;
  }
}

html {
  font-size: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #000;
  background: #FBFBF7;
}
body * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body ::selection {
  color: #F7F7F7;
  background: #c59d57;
  /* Safari */
}
body ::-moz-selection {
  color: #F7F7F7;
  background: #c59d57;
  /* Firefox */
}

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

/*----------------------------------------------------------------------
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: 620px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .link-contact {
    position: relative;
    z-index: 10;
    width: 90%;
    margin-top: -6%;
  }
  .link-contact:nth-of-type(2) {
    margin: 40px auto;
  }
}
.link-contact a {
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  width: 100%;
  height: 80px;
  background: #fc0053;
  padding-right: 20px;
  color: #FFF;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .link-contact a {
    height: auto;
    padding: 5% 5% 5% 4%;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
.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;
  right: 128px;
  top: 0;
  bottom: 0;
  content: "\f054";
  color: #FFF;
  font-family: "Font Awesome 5 Free";
  font-size: 26px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .link-contact a:before {
    right: 50px;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}

.right-nav {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.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
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
.box {
  padding: 100px 0 85px;
}
@media screen and (max-width: 768px) {
  .box {
    padding: 10% 0;
  }
}
.box__title {
  text-align: center;
}

/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
10.	#footer
----------------------------------------------------------------------*/
.footer__inner {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 5% 0;
  }
}
.footer__nav {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.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.	ページ別個別設定
----------------------------------------------------------------------*/
.main__visual {
  padding-top: 70px;
  background: url("../img/main_visual_bg.jpg") center top no-repeat;
}
.main__visual__title {
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
}
.main__visual__title img {
  width: 100%;
}

.effect {
  padding: 120px 0;
  background: url("../img/effect_bg.gif") center bottom no-repeat #f6f7ee;
}
.effect__title {
  margin-bottom: 57px;
}
.effect__inner {
  width: 1080px;
  margin: auto;
}
.effect__inner__lead {
  margin-bottom: 65px;
  font-size: 24px;
  line-height: 1.25;
}
.effect__box {
  position: relative;
  padding: 0 30px 70px 45px;
}
.effect__box__title {
  position: absolute;
}
.effect__box__text {
  font-size: 20px;
  line-height: 1.5;
}
.effect__box__text em {
  color: #F33;
}
.effect__before {
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px;
  border-radius: 10px 10px 0 0;
  position: relative;
  background-image: url("../img/effect_before_bg.gif"), url("../img/effect_before_bg2.gif");
  background-position: center top 72px, left bottom;
  background-repeat: no-repeat, repeat-x;
  background-color: #EBE9ED;
}
.effect__before:after {
  content: "";
  display: flex;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: -45px;
  width: 196px;
  height: 87px;
  margin: auto;
  background: url("../img/effect_arrow.png") left top no-repeat;
}
.effect__before__title {
  left: -32px;
  top: 40px;
}
.effect__before__text {
  padding-top: 465px;
}
.effect__after {
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0;
  border-radius: 0 0 10px 10px;
  background: url("../img/effect_after_bg.gif") center top 272px no-repeat #aae7ff;
}
.effect__after__title {
  left: -32px;
  top: 20px;
}
.effect__after__text {
  margin-bottom: 300px;
  padding-top: 160px;
}
.effect__after__list {
  display: flex;
  justify-content: space-between;
  width: 760px;
  margin: auto;
}
.effect__after__item {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 204px;
  height: 204px;
  padding-top: 60px;
  background: #FFF;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.effect__after__item em {
  color: #FF3D3C;
}

.about {
  margin: -95px 0 35px;
  background: url("../img/about_bg.gif") center top 65px no-repeat;
}
.about__title {
  margin-bottom: 45px;
}
.about__inner {
  width: 1193px;
  height: 1193px;
  margin: auto;
  padding-top: 780px;
  background: url("../img/about_inner_bg.png") center top no-repeat;
}
.about__list {
  margin: 0 80px;
}
.about__item {
  position: relative;
  padding-left: 1.5em;
  font-size: 21px;
  line-height: 1.90476;
}
.about__item:before {
  content: "●";
  position: absolute;
  left: 0;
}
.about__item em {
  color: #F33;
}
.about__item__inner {
  display: inline-block;
  text-indent: -13px;
}

.system {
  padding: 35px 0 100px;
  background: url("../img/system_bg.gif") center top 80px no-repeat;
}
.system__title {
  margin-bottom: 90px;
}
.system__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 1080px;
  margin: auto;
}
.system__inner:before {
  content: "";
  position: absolute;
  z-index: 1;
  right: -75px;
  top: -155px;
  width: 702px;
  height: 432px;
  background: url("../img/system_inner_right.png") left top no-repeat;
}
.system__inner__lead {
  width: 1080px;
  margin: 0 auto 40px;
  font-size: 24px;
  line-height: 1.25;
}
.system__inner > div {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  z-index: 10;
  width: 505px;
  padding: 60px 0;
  background: #FFF;
  text-align: center;
}
.system__inner > div:before {
  content: "";
  position: absolute;
  right: 15px;
  top: -6px;
  width: 94px;
  height: 63px;
}
.system__inner__left:before {
  background: url("../img/system_inner_left_icon.png") left top no-repeat;
}
.system__inner__right:before {
  background: url("../img/system_inner_right_icon.png") left top no-repeat;
}
.system__inner__title {
  margin-bottom: 35px;
}
.system__inner__item {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.625;
}
.system__inner__item:last-child {
  margin-bottom: 0;
}
.system__inner__item:before {
  content: "●";
  margin-right: 5px;
}
.system__inner__item.-left:before {
  color: #4789CA;
}
.system__inner__item.-right:before {
  color: #099;
}
.system__inner__item .big {
  font-size: 20px;
}
.system__inner__item em {
  font-weight: bold;
}

.recommend {
  padding: 15px 0 85px;
  background: url("../img/recommend_bg.gif") center top 10px no-repeat;
}
.recommend__title {
  margin-bottom: 35px;
}
.recommend__pic {
  margin-bottom: 40px;
  text-align: center;
}

.manual {
  *zoom: 1;
  padding: 15px 0 95px;
  background-image: url("../img/manual_bg.gif"), url("../img/manual_bg2.png");
  background-position: center top, left bottom;
  background-repeat: no-repeat, repeat-x;
  background-color: #f6f7ee;
}
.manual:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 768px) {
  .manual {
    padding: 0;
    background: url("../img/manual_bg2.png") left bottom repeat-x #f6f7ee;
  }
}
.manual__title {
  margin-bottom: 65px;
}
.manual__lead {
  width: 1080px;
  margin: 0 auto 45px;
  font-size: 24px;
  line-height: 1.25;
}
.manual__pdf {
  -moz-box-shadow: 0 0 4px rgba(0, 51, 102, 0.7);
  -webkit-box-shadow: 0 0 4px rgba(0, 51, 102, 0.7);
  box-shadow: 0 0 4px rgba(0, 51, 102, 0.7);
  position: relative;
  width: 1020px;
  margin: 0 auto 26px;
}
@media screen and (max-width: 768px) {
  .manual__pdf {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    margin-bottom: 10%;
  }
}
.manual__pdf:before {
  content: "";
  position: absolute;
  right: -48px;
  top: 21px;
  width: 30px;
  height: 251px;
  background: url("../img/manual_pdf_bg.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .manual__pdf:before {
    content: none;
  }
}
.manual__pdf iframe {
  width: 100%;
  height: 1385px;
}
@media screen and (max-width: 768px) {
  .manual__pdf iframe {
    height: 500px;
  }
}
.manual__download {
  display: flex;
  justify-content: flex-end;
  width: 1020px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .manual__download {
    width: 94%;
    margin-top: 5%;
  }
}
.manual__download a {
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 432px;
  height: 55px;
  padding-right: 40px;
  background: #00A2E1;
  color: #FFF;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .manual__download a {
    width: 250px;
    height: 35px;
    padding-right: 20px;
    font-size: 12px;
  }
}
.manual__download a:before {
  display: flex;
  align-items: center;
  position: absolute;
  right: 32px;
  bottom: 17px;
  content: "\f1c1";
  color: #FFF;
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .manual__download a:before {
    right: 14px;
    bottom: 11px;
    font-size: 13px;
  }
}

.faq {
  padding: 110px 0 125px;
  background: url("../img/faq_bg.png") left bottom repeat-x #54CFFF;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 10% 0;
    background: url("../img/faq_bg_sp.png") left bottom repeat-x #54CFFF;
  }
}
.faq__title {
  margin-bottom: 55px;
  font-size: 42px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .faq__title {
    margin-bottom: 8%;
    font-size: 21px;
  }
}
.faq__list {
  width: 1080px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .faq__list {
    width: 94%;
  }
}
.faq__item {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 17px 25px;
  background: #FFF;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .faq__item {
    margin-bottom: 4%;
    padding: 4%;
    font-size: 12px;
  }
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__item__term {
  margin-bottom: 13px;
  padding: 10px 0 22px 62px;
  background-image: url("../img/faq_item_term_bg.gif"), url("../img/faq_item_term_bg2.gif");
  background-position: left top, left bottom;
  background-repeat: no-repeat, repeat-x;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .faq__item__term {
    margin-bottom: 3%;
    padding: 1.5% 0 4% 10%;
    background-size: 8%, 2%;
    line-height: 1.25;
  }
}
.faq__item__description {
  padding: 10px 0 6px 62px;
  background: url("../img/faq_item_description_bg.gif") left top no-repeat;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .faq__item__description {
    padding: 1.5% 0 0 10%;
    background-size: 8%;
    line-height: 1.25;
  }
}
.faq__item__description a {
  color: #000;
  text-decoration: underline;
}

.contact {
  padding: 110px 0;
  background: #F7F5C2;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 15% 0;
    background: #CDF1FF;
  }
}
.contact__inner {
  width: 1160px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    width: 100%;
  }
}
.contact__title {
  margin-bottom: 65px;
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact__title {
    margin-bottom: 8%;
    font-size: 20px;
  }
}
.contact__lead {
  margin-bottom: 30px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .contact__lead {
    width: 94%;
    margin: 0 auto 5%;
    font-size: 14px;
  }
}
.contact__table {
  width: 100%;
  margin-bottom: 40px;
  table-layout: fixed;
  border-collapse: collapse;
  border: 20px solid #FFF;
}
@media screen and (max-width: 1200px) {
  .contact__table {
    width: 100%;
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 768px) {
  .contact__table {
    border: none;
  }
}
.contact__table th,
.contact__table td {
  line-height: 1.3;
  font-size: 15px;
  border: 10px solid #FFF;
  vertical-align: middle;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact__table th,
  .contact__table td {
    display: list-item;
    font-size: 16px;
    font-size: 4.26667vw;
    list-style: none;
    border: none;
  }
}
.contact__table th {
  width: 340px;
  padding: 15px 10px 15px 30px;
  background: #E4DFD5;
}
@media screen and (max-width: 768px) {
  .contact__table th {
    position: relative;
    width: 100%;
    padding: 2% 3%;
  }
}
.contact__table td {
  padding: 15px 20px;
  background: #F8F5EE;
}
@media screen and (max-width: 768px) {
  .contact__table td {
    padding: 3%;
    background: none;
  }
}
.contact__table label {
  cursor: pointer;
}
.contact__table .required {
  display: inline-block;
  width: 40px;
  margin-right: 4px;
  padding: 4px 0;
  background: #E35580;
  color: #FFF;
  font-size: 0.875em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__table .required {
    width: auto;
    margin-right: 1%;
    padding: 1% 2%;
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.contact__table input[type="text"] {
  padding: 10px;
  border: 2px solid #B0B0B0;
  font-size: 15px;
}
.contact__table .long {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .contact__table .long {
    width: 100%;
  }
}
.contact__table .middle {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .contact__table .middle {
    width: 100%;
  }
}
.contact__table .short {
  width: 18%;
}
@media screen and (max-width: 768px) {
  .contact__table .short {
    width: 35%;
  }
}
.contact__button {
  display: flex;
  justify-content: space-between;
  width: 440px;
  margin: 0 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;
  width: 200px;
  height: 50px;
  color: #FFF;
  font-size: 19px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact__button input {
    width: 47.16418%;
    height: auto;
    padding: 4% 0;
    font-size: 16px;
    font-size: 4.26667vw;
    font-weight: bold;
  }
}
.contact__button input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}
.contact__button input[type="reset"] {
  width: 200px;
  background: #c7c7c7;
}
@media screen and (max-width: 768px) {
  .contact__button input[type="reset"] {
    width: 47.16418%;
  }
}
.contact__button input[type="button"], .contact__button input[type="submit"] {
  background: #509df7;
}

.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__button input[type="button"] {
  background: #c7c7c7;
}

.error .contact__button {
  justify-content: center;
}

.thanks .main__box {
  padding-bottom: 80px;
}

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