@charset "UTF-8";
.lms {
  padding: 70px 0 0;
}
.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__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: 55%;
  transform: translateX(-50%);
}
@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: 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: "メイリオ", 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 {
    max-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: 1340px;
  }
}

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

.right-nav {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .right-nav {
    bottom: 10px;
    right: 10px;
  }
}
.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;
  }
}

.link-contact {
  position: relative;
  z-index: 100;
  padding: 90px 0;
}
@media screen and (max-width: 768px) {
  .link-contact {
    padding: 35px 0 40px !important;
  }
}
.link-contact.-first {
  padding: 60px 0;
}
.link-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 520px;
  height: 64px;
  margin: auto;
  background-color: #d52a46;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFD52A46', endColorstr='#FFF36590');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q1MmE0NiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YzNjU5MCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -moz-linear-gradient(top, #d52a46 0%, #f36590 100%);
  background-image: -webkit-linear-gradient(top, #d52a46 0%, #f36590 100%);
  background-image: linear-gradient(to bottom, #d52a46 0%, #f36590 100%);
  color: #FFF;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .link-contact a {
    width: 260px;
    height: 32px;
    font-size: 12px;
  }
}
.link-contact a:before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .link-contact a:before {
    right: -3px;
    bottom: -4px;
  }
}
.link-contact a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  #header {
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    background: #FFF;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1280px;
  height: 113px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .header__inner {
    width: 94%;
    padding: 2% 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 107px;
  }
}
.header__right {
  display: flex;
  align-items: center;
}
.header__tel a {
  position: relative;
  color: #000;
  font-family: 'Crimson Text', serif;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .header__tel a {
    font-size: 18px;
    letter-spacing: 2px;
  }
}
.header__tel a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.header__tel a:before {
  content: "";
  width: 31px;
  height: 31px;
  background: url("../img/header_tel_bg.png") left top no-repeat;
  position: absolute;
  left: -38px;
  top: -3px;
}
@media screen and (max-width: 768px) {
  .header__tel a:before {
    width: 16px;
    height: 16px;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
    left: -19px;
    top: -2px;
  }
}
@media screen and (max-width: 768px) {
  .header__tel__term {
    text-align: right;
  }
}
.header__tel__description {
  margin-top: 3px;
  font-size: 15px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .header__tel__description {
    font-size: 10px;
  }
}

/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
10.	#footer
----------------------------------------------------------------------*/
.footer__upper {
  padding: 100px 0;
  background: #775316;
}
@media screen and (max-width: 768px) {
  .footer__upper {
    padding: 7% 4%;
  }
}
.footer__upper__text {
  color: #FFF;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__upper__text {
    font-size: 11px;
    line-height: 1.63636;
    text-align: left;
  }
}
.footer__lower {
  padding: 40px 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: 10px;
  }
}
.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: 10px;
  }
}

/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
.main__visual {
  padding: 60px 0 40px;
  background: url("../img/main_visual_bg.gif") left top repeat;
}
@media screen and (max-width: 768px) {
  .main__visual {
    padding: 0;
  }
}
.main__visual__title {
  text-align: center;
}
.main__visual__title img {
  margin: auto;
}

.box__title {
  margin-bottom: 50px;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box__title {
    margin-bottom: 7%;
    font-size: 20px;
    line-height: 1.25;
  }
}
.box__title__text {
  display: block;
  position: relative;
  margin-top: 20px;
  padding-bottom: 20px;
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .box__title__text {
    margin: 12px 20px 0;
    padding-bottom: 15px;
    font-size: 12px;
  }
}
.box__title__text:before, .box__title__text:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 640px;
  margin: auto;
  background: #000;
}
@media screen and (max-width: 768px) {
  .box__title__text:before, .box__title__text:after {
    width: 100%;
  }
}
.box__title__text:before {
  bottom: 5px;
  height: 1px;
}
.box__title__text:after {
  bottom: 0;
  height: 3px;
}
@media screen and (max-width: 768px) {
  .box__title__text:after {
    bottom: 2px;
    height: 2px;
  }
}

.campaign {
  padding: 90px 0 0;
  background: url("../img/campaign_bg.jpg") center top no-repeat;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .campaign {
    padding: 3% 0 0;
  }
}
.campaign__title {
  margin-bottom: 45px;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -0.6px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .campaign__title {
    position: relative;
    z-index: 1;
    margin-bottom: 5%;
    font-size: 14px;
  }
}
@media screen and (max-width: 360px) {
  .campaign__title {
    font-size: 13px;
  }
}
.campaign__title img {
  display: block;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .campaign__title img {
    margin-top: 4%;
  }
}
.campaign__inner {
  position: relative;
  width: 1160px;
  margin: auto;
  padding: 75px 65px;
  background: #e2f0ff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .campaign__inner {
    width: 94.66667%;
    padding: 12% 3% 5%;
  }
}
.campaign__inner:before, .campaign__inner:after {
  content: "";
  position: absolute;
}
.campaign__inner:before {
  left: -123px;
  top: -35px;
  width: 506px;
  height: 212px;
  background: url("../img/campaign_bg2.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .campaign__inner:before {
    left: -3%;
    top: -1%;
    width: 174.73684px;
    height: 65.78947px;
    background: url("../img/campaign_bg2_sp.png") left top no-repeat;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.campaign__inner:after {
  right: -3%;
  top: -1.2%;
  width: 536px;
  height: 216px;
  background: url("../img/campaign_bg3.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .campaign__inner:after {
    width: 161.05263px;
    height: 67.89474px;
    background: url("../img/campaign_bg3_sp.png") left top no-repeat;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.campaign__inner__lead {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .campaign__inner__lead {
    margin-bottom: 5%;
    font-size: 10px;
  }
}
.campaign__inner__lead em {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .campaign__inner__lead em {
    font-size: 10px;
  }
}
.campaign__inner__lead em.red {
  color: #D82F4C;
}
.campaign__inner__lead em.black {
  color: #000;
}
.campaign__inner__lead .big {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .campaign__inner__lead .big {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .campaign__inner__lead .big em {
    font-size: 12px;
  }
}
.campaign__inner__date {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 47px;
  margin-bottom: 20px;
  background: #00B7B7;
  color: #FFF;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .campaign__inner__date {
    height: 33px;
    margin-bottom: 3%;
    font-size: 13px;
  }
}
.campaign__list {
  padding: 40px 0;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .campaign__list {
    padding: 2% 0 4%;
  }
}
.campaign__item {
  position: relative;
  margin: 0 0 15px 90px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  .campaign__item {
    margin: 0 0 3% 66px !important;
    font-size: 11px;
    line-height: 1.5;
    text-align: left;
  }
}
.campaign__item:first-child {
  margin-bottom: 25px;
}
.campaign__item:before {
  content: "";
  position: absolute;
  top: 6px;
  left: -8px;
  background-position: left top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .campaign__item:before {
    left: -61px !important;
    width: 57px !important;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.campaign__item:nth-child(1):before {
  background-image: url("../img/campaign_item_bg1.gif");
}
.campaign__item:nth-child(2):before {
  background-image: url("../img/campaign_item_bg2.gif");
}
.campaign__item:nth-child(3):before {
  background-image: url("../img/campaign_item_bg3.gif");
}
.campaign__item:nth-child(1):before {
  width: 129px;
  height: 36px;
  left: 74px;
  top: 12px;
}
@media screen and (max-width: 768px) {
  .campaign__item:nth-child(1):before {
    top: 11px;
  }
}
.campaign__item:nth-child(2):before {
  width: 100px;
  height: 26px;
  left: 66px;
  top: -4px;
}
@media screen and (max-width: 768px) {
  .campaign__item:nth-child(2):before {
    top: 0;
  }
}
.campaign__item:nth-child(3):before {
  width: 100px;
  height: 28px;
  left: -48px;
  top: -3px;
}
@media screen and (max-width: 768px) {
  .campaign__item:nth-child(3):before {
    top: 0;
  }
}
.campaign__item:last-child {
  margin-bottom: 0 !important;
}
.campaign__item em {
  position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .campaign__item em {
    font-size: 16px;
  }
}
.campaign__item em:before {
  position: absolute;
  z-index: -1;
  left: -1%;
  bottom: 2px;
  content: "";
  width: 102%;
  height: 15px;
  background: #FDFF6F;
}
@media screen and (max-width: 768px) {
  .campaign__item em:before {
    height: 6px;
  }
}
.campaign__item .big {
  position: relative;
  top: 6px;
  color: #FF184E;
  font-size: 54px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .campaign__item .big {
    top: 2px;
    font-size: 24px;
  }
}
.campaign__item .small {
  font-size: 10px;
  font-weight: bold;
}
.campaign__item__exclamation {
  display: inline-block;
  transform: skewX(-13deg);
  font-weight: bold;
}
.campaign__notice {
  position: relative;
  left: 419px;
  font-size: 14px;
  line-height: 1.57143;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .campaign__notice {
    left: unset;
    font-size: 10px;
  }
}

.reason {
  margin-bottom: 40px;
  padding: 85px 0;
  background: url("../img/reason_bg.jpg") center top no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .reason {
    padding: 8% 0;
    background: url("../img/reason_bg_sp.jpg") center top no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
.reason__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .reason__list {
    flex-wrap: wrap;
  }
}
.reason__item {
  margin: 0 28px;
}
@media screen and (max-width: 768px) {
  .reason__item {
    margin: 0 2.5%;
    width: 41%;
  }
}
@media screen and (max-width: 768px) {
  .reason__item:last-child {
    margin-top: 5%;
  }
}

.problem {
  position: relative;
  padding: 60px 0 120px;
  background: #F3F3F3;
}
@media screen and (max-width: 768px) {
  .problem {
    padding: 10% 0 16%;
    background: url(../img/problem_list_bg.png) center top 100% no-repeat #F3F3F3;
    -moz-background-size: 140%;
    -webkit-background-size: 140%;
    background-size: 140%;
  }
}
.problem:after {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  width: 163px;
  height: 37px;
  margin: auto;
  background: url("../img/arrow.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .problem:after {
    bottom: -15px;
    width: 108.66667px;
    height: 24.66667px;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
.problem__list {
  position: relative;
  z-index: 1;
}
.problem__list:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: -110px;
  width: 1013px;
  height: 463px;
  margin: auto;
  background: url("../img/problem_list_bg.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .problem__list:before {
    content: none;
  }
}
.problem__item {
  margin-bottom: 18px;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .problem__item {
    margin-bottom: 12px;
    font-size: 10px;
  }
}
.problem__item:last-child {
  margin-bottom: 0;
}

.solution {
  padding: 90px 0 100px;
  background: url("../img/solution_bg.jpg") center top no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .solution {
    padding: 10% 0;
  }
}
.solution__title {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=66);
  opacity: 0.66;
  margin-bottom: 60px;
  font-size: 52px;
}
@media screen and (max-width: 768px) {
  .solution__title {
    margin-bottom: 7%;
    font-size: 22px;
  }
}
.solution__title em {
  position: relative;
  color: #E14264;
  font-weight: bold;
}
.solution__title em:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: -14px;
  width: 125%;
  height: 3px;
  background: #ED3C77;
}
@media screen and (max-width: 768px) {
  .solution__title em:after {
    left: -3px;
    bottom: 0;
    width: 115%;
    height: 2px;
  }
}
.solution__title__exclamation {
  display: inline-block;
  transform: skewX(-13deg);
  margin-left: -8px;
  font-style: italic;
  font-weight: bold;
}
.solution__list {
  width: 620px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .solution__list {
    width: 80%;
  }
}
.solution__item {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  padding: 0 15px 7px 43px;
  color: #221815;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 2px dotted #000;
}
@media screen and (max-width: 768px) {
  .solution__item {
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 12px;
  }
}
.solution__item:last-child {
  margin-bottom: 0;
}
.solution__item:before {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  width: 41px;
  height: 27px;
  background: url("../img/solution_item_bg.png") left top no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .solution__item:before {
    left: -5px;
    top: -2px;
    width: 20.5px;
    height: 13.5px;
  }
}

.explanation {
  padding: 40px 0 70px;
}
@media screen and (max-width: 768px) {
  .explanation {
    padding: 0 0 5%;
  }
}
.explanation__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .explanation__title {
    margin-bottom: 6%;
  }
}
.explanation__box {
  *zoom: 1;
  position: relative;
  left: 20px;
  width: 960px;
  height: 366px;
  margin: 0 auto 43px;
  background-color: #CBEEF2;
  background-position: right 147px top 26px;
  background-repeat: no-repeat;
  border: 1px solid #000;
}
.explanation__box:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 768px) {
  .explanation__box {
    left: unset;
    width: 94.66667%;
    height: auto;
    margin-bottom: 5%;
    padding: 5%;
    background-position: left 10% bottom 14%;
    -moz-background-size: 16%;
    -webkit-background-size: 16%;
    background-size: 16%;
  }
}
.explanation__box:last-child {
  margin-bottom: 0;
}
.explanation__box:nth-child(1) {
  background-image: url("../img/explanation_box_bg01.gif");
}
.explanation__box:nth-child(2) {
  background-image: url("../img/explanation_box_bg02.gif");
}
.explanation__box:nth-child(3) {
  background-image: url("../img/explanation_box_bg03.gif");
}
@media screen and (max-width: 768px) {
  .explanation__box__video {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 0px;
    padding: 0 0 56.25%;
  }
}
.explanation__box iframe {
  position: absolute;
  left: -40px;
  top: -22px;
}
@media screen and (max-width: 768px) {
  .explanation__box iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
  }
}
.explanation__box__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  text-indent: -10px;
}
@media screen and (max-width: 768px) {
  .explanation__box__title {
    margin-bottom: 5px;
    font-size: 10px;
    text-indent: -6px;
  }
}
.explanation__box__lecturer {
  margin-bottom: 14px;
  padding-bottom: 12px;
  font-size: 16px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .explanation__box__lecturer {
    margin-bottom: 5px;
    padding-bottom: 5px;
    font-size: 10px;
  }
}
.explanation__box__info {
  float: right;
  width: 360px;
  padding: 133px 38px 0 0;
}
@media screen and (max-width: 768px) {
  .explanation__box__info {
    float: none;
    width: auto;
    margin: 5% 0 0 34%;
    padding: 0;
  }
}
.explanation__info {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .explanation__info {
    padding-left: 10px;
  }
}
.explanation__info__term, .explanation__info__description {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .explanation__info__term, .explanation__info__description {
    font-size: 10px;
  }
}
.explanation__info__list {
  margin-left: -4px;
}
.explanation__info__item {
  display: inline;
  margin-right: 25px;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .explanation__info__item {
    margin-right: 15px;
  }
}
.explanation__info__item:before {
  content: "・";
}

.feature {
  padding: 80px 0;
  background: #FFF5BE;
}
@media screen and (max-width: 768px) {
  .feature {
    padding: 10% 0;
  }
}
.feature__inner {
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .feature__inner {
    width: 100%;
  }
}
.feature__box__title {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  padding-left: 50px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .feature__box__title {
    margin-bottom: 4%;
    padding-left: 15%;
    font-size: 12px;
  }
}
.feature__box__title:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -96px;
}
@media screen and (max-width: 768px) {
  .feature__box__title:before {
    left: -7px;
  }
}
.feature__box__title.-feature01:before {
  width: 182px;
  height: 182px;
  background: url("../img/feature_box_title_bg1.png");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  top: -82px;
}
@media screen and (max-width: 768px) {
  .feature__box__title.-feature01:before {
    width: 72.8px;
    height: 72.8px;
    top: -24px;
  }
}
.feature__box__title.-feature02:before {
  width: 182px;
  height: 182px;
  background: url("../img/feature_box_title_bg2.png");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  top: -52px;
}
@media screen and (max-width: 768px) {
  .feature__box__title.-feature02:before {
    width: 72.8px;
    height: 72.8px;
    top: -22px;
  }
}
.feature__box__title em {
  color: #ED3E78;
  font-weight: bold;
}
.feature__box__inner {
  padding: 55px 0 80px;
  background: url("../img/feature_box_inner_bg.gif") left top no-repeat #FFF;
}
@media screen and (max-width: 768px) {
  .feature__box__inner {
    padding: 5% 0 10%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: left top 65px;
  }
}
.feature__box__inner__text {
  position: relative;
  z-index: 10;
  margin-bottom: 10px;
  padding-left: 60px;
  font-size: 18px;
  line-height: 1.66667;
}
@media screen and (max-width: 768px) {
  .feature__box__inner__text {
    position: relative;
    z-index: 10;
    margin-bottom: 5%;
    padding: 0 6%;
    font-size: 10px;
  }
}
.feature__box__inner__text em {
  color: #ED3E78;
}
.feature .feature01 {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .feature .feature01 {
    margin-bottom: 10%;
  }
}
.feature .feature01__pic {
  position: relative;
  z-index: 1;
}
.feature .feature01__pic:before {
  content: "";
  position: absolute;
  right: -23px;
  bottom: 12px;
  width: 347px;
  height: 46px;
  background: url("../img/feature01_pic_bg.png");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .feature .feature01__pic:before {
    right: 3%;
    bottom: 4%;
    width: 138.8px;
    height: 18.4px;
  }
}
.feature .feature02__pic {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature .feature02__pic {
    margin: -60px 0 20px;
  }
}
.feature .feature02__pic:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -17px;
  bottom: 90px;
  width: 1074px;
  height: 557px;
  background: url("../img/feature02_pic_bg.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .feature .feature02__pic:before {
    content: none;
  }
}
.feature__realization__term {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .feature__realization__term {
    margin-bottom: 14%;
  }
}
.feature__realization__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 30px 100px;
}
@media screen and (max-width: 768px) {
  .feature__realization__list {
    display: block;
    padding: 0 7% 15%;
  }
}
.feature__realization__list:after {
  content: "";
  position: absolute;
  bottom: 31px;
  left: 0;
  right: 0;
  width: 163px;
  height: 37px;
  margin: auto;
  background: url("../img/arrow02.gif");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .feature__realization__list:after {
    bottom: 22px;
    width: 108.66667px;
    height: 24.66667px;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .feature__realization__item {
    *zoom: 1;
    margin-bottom: 50px;
  }
  .feature__realization__item:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media screen and (max-width: 768px) {
  .feature__realization__item > * {
    float: left;
  }
}
@media screen and (max-width: 768px) {
  .feature__realization__item:last-child {
    margin-bottom: 0;
  }
}
.feature__realization__item__title {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  padding: 56px 0 0 60px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .feature__realization__item__title {
    width: 135px;
    margin: 0;
    padding: 0 0 0 30px;
    font-size: 12px;
  }
}
.feature__realization__item__title:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -10px;
  width: 85px;
  height: 85px;
  background-position: left top;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .feature__realization__item__title:before {
    bottom: -4px;
    width: 42.5px;
    height: 42.5px;
  }
}
.feature__realization__item:nth-child(1) h4:before {
  background-image: url("../img/feature_realization_item_title_bg01.gif");
}
.feature__realization__item:nth-child(2) h4:before {
  background-image: url("../img/feature_realization_item_title_bg02.gif");
}
.feature__realization__item:nth-child(3) h4:before {
  background-image: url("../img/feature_realization_item_title_bg03.gif");
}
@media screen and (max-width: 768px) {
  .feature__realization__sublist {
    margin-top: -30px;
  }
}
.feature__realization__subitem {
  font-size: 19px;
  line-height: 1.68421;
}
@media screen and (max-width: 768px) {
  .feature__realization__subitem {
    font-size: 10px;
  }
}
.feature__realization__subitem:before {
  content: "・";
}
.feature__realization__text {
  font-size: 44px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature__realization__text {
    font-size: 20px;
  }
}
.feature__realization__text__inner {
  display: inline-block;
  padding-bottom: 8px;
  font-weight: bold;
  border-bottom: 3px solid #ED4079;
}
.feature__realization__text em {
  color: #E14264;
  font-weight: bold;
}
.feature__realization__text__exclamation {
  display: inline-block;
  transform: skewX(-13deg);
  font-weight: bold;
}

.training__group.-basis, .training__group.-competency {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .training__group.-basis, .training__group.-competency {
    overflow-x: hidden;
  }
}
.training__group.-basis {
  background: url("../img/training_group_basis_bg.gif") center top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 1480px) {
  .training__group.-basis {
    -moz-background-size: unset;
    -webkit-background-size: unset;
    background-size: unset;
  }
}
@media screen and (max-width: 768px) {
  .training__group.-basis {
    -moz-background-size: 200%;
    -webkit-background-size: 200%;
    background-size: 200%;
  }
}
.training__group.-competency {
  background: url("../img/training_group_competency_bg.gif") center top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 1480px) {
  .training__group.-competency {
    -moz-background-size: unset;
    -webkit-background-size: unset;
    background-size: unset;
  }
}
@media screen and (max-width: 768px) {
  .training__group.-competency {
    -moz-background-size: 200%;
    -webkit-background-size: 200%;
    background-size: 200%;
  }
}
.training__group__inner {
  padding: 75px 0 90px;
}
@media screen and (max-width: 768px) {
  .training__group__inner {
    padding: 10% 0;
  }
}
.training__group__inner.-basis {
  background: url("../img/training_group_basis_bg02.gif") left bottom repeat-x;
}
@media screen and (max-width: 768px) {
  .training__group__inner.-basis {
    -moz-background-size: 2.5%;
    -webkit-background-size: 2.5%;
    background-size: 2.5%;
  }
}
.training__group__inner.-competency {
  background: url("../img/training_group_competency_bg02.gif") left bottom repeat-x;
}
@media screen and (max-width: 768px) {
  .training__group__inner.-competency {
    -moz-background-size: 2.5%;
    -webkit-background-size: 2.5%;
    background-size: 2.5%;
  }
}
.training__group__lead {
  margin: -13px 0 90px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .training__group__lead {
    margin: 0 0 50px;
    font-size: 10px;
  }
}

.course__box__title,
.hierarchy__box__title {
  display: inline-block;
  margin-bottom: 30px;
  font-family: 'Crimson Text', serif;
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .course__box__title,
  .hierarchy__box__title {
    margin-bottom: 4%;
    font-size: 20px;
  }
}
.course__box__title:before, .course__box__title:after,
.hierarchy__box__title:before,
.hierarchy__box__title:after {
  content: "／";
  padding: 0 10px;
}
.course__box__title__stage,
.hierarchy__box__title__stage {
  display: inline-block;
  margin-right: 15px;
  color: #D7195F;
  font-weight: bold;
}
.course__box__lead,
.hierarchy__box__lead {
  margin-bottom: 30px;
  color: #960;
  font-size: 22px;
  line-height: 1.72727;
}
@media screen and (max-width: 768px) {
  .course__box__lead,
  .hierarchy__box__lead {
    margin-bottom: 3%;
    font-size: 11px;
  }
}
.course__box__lead02,
.hierarchy__box__lead02 {
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 1.66667;
}
@media screen and (max-width: 768px) {
  .course__box__lead02,
  .hierarchy__box__lead02 {
    margin-bottom: 5%;
    font-size: 10px;
  }
}

.course__box {
  position: relative;
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .course__box {
    padding-bottom: 15%;
  }
}
.course__box:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  width: 48px;
  height: 48px;
  margin: auto;
  background: url("../img/arrow03.png") left top no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .course__box:after {
    bottom: 17px;
    width: 24px;
    height: 24px;
  }
}
.course__box:last-child {
  padding-bottom: 0;
}
.course__box:last-child:after {
  content: none;
}
.course__box__title:before, .course__box__title:after {
  color: #934201;
}
.course__box__info__term {
  margin-bottom: 26px;
  color: #ED3C77;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .course__box__info__term {
    margin-bottom: 4%;
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .course__box__info__term span {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .course__box__info__pic {
    width: 94.66667%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .course__box__info__pic.-pic03 {
    width: 67.2%;
  }
}
.course__box__info__pic.-pic03 img {
  margin: auto;
}

.hierarchy__box.basic {
  position: relative;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .hierarchy__box.basic {
    padding-bottom: 70px;
  }
}
.hierarchy__box.basic:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35px;
  width: 48px;
  height: 48px;
  margin: auto;
  background: url("../img/arrow03.png") left top no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .hierarchy__box.basic:after {
    bottom: 26px;
    width: 24px;
    height: 24px;
  }
}
.hierarchy__box__title:before, .hierarchy__box__title:after {
  color: #187bd0;
  padding: 0 15px;
}
.hierarchy__box__lead {
  color: #0056B4;
  font-weight: bold;
}
.hierarchy__box__inner {
  width: 1020px;
  margin: auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .hierarchy__box__inner {
    width: 90%;
  }
}
.hierarchy__box__inner.-basic {
  background: url("../img/hierarchy_box_inner_basic_bg.png") right 25px top no-repeat;
}
@media screen and (max-width: 768px) {
  .hierarchy__box__inner.-basic {
    padding-bottom: 180px;
    background: url("../img/hierarchy_box_inner_basic_bg.png") center bottom no-repeat;
    -moz-background-size: 80%;
    -webkit-background-size: 80%;
    background-size: 80%;
  }
}
.hierarchy__box__inner.-theme {
  position: relative;
}
@media screen and (max-width: 768px) {
  .hierarchy__box__inner.-theme {
    padding-bottom: 250px;
  }
}
.hierarchy__box__inner.-theme:before {
  content: "";
  position: absolute;
  right: -81px;
  top: 0;
  width: 633px;
  height: 393px;
  background: url("../img/hierarchy_box_inner_theme_bg.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .hierarchy__box__inner.-theme:before {
    right: unset;
    top: unset;
    bottom: 0;
    width: 110%;
    height: 100%;
    background: url("../img/hierarchy_box_inner_theme_bg.png") left bottom no-repeat;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.hierarchy__box__info:first-child {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .hierarchy__box__info:first-child {
    margin-bottom: 20px;
  }
}
.hierarchy__box__info__term {
  margin-bottom: 8px;
  color: #ED3C77;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.36364;
}
@media screen and (max-width: 768px) {
  .hierarchy__box__info__term {
    margin-bottom: 5px;
    font-size: 13px;
  }
}
.hierarchy__box__info__description {
  position: relative;
  margin-left: 18px;
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .hierarchy__box__info__description {
    margin-left: 0;
    font-size: 10px;
  }
}
.hierarchy__box__info__description:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 1px;
}
.hierarchy__box__info__pic {
  margin: 10px 0 0 21px;
}
@media screen and (max-width: 768px) {
  .hierarchy__box__info__pic {
    width: 65%;
    margin-left: 10px;
  }
}

.kantan {
  position: relative;
  z-index: 100;
  padding: 90px 0 80px;
  background: url("../img/kantan_bg.jpg") center top no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .kantan {
    padding: 5% 0 10%;
    background: url("../img/kantan_bg.jpg") center top 360px no-repeat;
    -moz-background-size: 230%;
    -webkit-background-size: 230%;
    background-size: 230%;
  }
}
.kantan__inner {
  *zoom: 1;
  width: 1280px;
  margin: auto;
}
.kantan__inner:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1280px) {
  .kantan__inner {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .kantan__inner {
    width: 90%;
  }
}
.kantan__title {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .kantan__title {
    margin-bottom: 0;
  }
}
.kantan__box {
  position: relative;
  float: right;
  width: 645px;
  padding: 25px 0 25px 35px;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  .kantan__box {
    float: none;
    width: auto;
    margin-top: 360px;
    padding: 4%;
  }
}
.kantan__box:before {
  content: "";
  position: absolute;
  left: -640px;
  top: 10px;
  width: 580px;
  height: 704px;
  background: url("../img/kantan_box_bg01.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .kantan__box:before {
    left: 0;
    right: 0;
    top: -340px;
    width: 322.22222px;
    height: 391.11111px;
    margin: auto;
  }
}
.kantan__box__lead {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .kantan__box__lead {
    margin-bottom: 15px;
    font-size: 10px;
  }
}
.kantan__box__lead em {
  font-weight: bold;
}
.kantan__item {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .kantan__item {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .kantan__item:last-child {
    margin-bottom: 0;
  }
}
.kantan__info__term {
  margin-bottom: 10px;
  color: #29147A;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .kantan__info__term {
    margin-bottom: 5px;
    font-size: 11px;
  }
}
.kantan__info__term.-new:after {
  content: "new!";
  color: #3399ff;
  padding-left: 5px;
}
.kantan__info__item {
  position: relative;
  padding-left: 1em;
  font-size: 18px;
  line-height: 1.66667;
}
@media screen and (max-width: 768px) {
  .kantan__info__item {
    font-size: 10px;
  }
}
.kantan__info__item:before {
  content: "●";
  position: absolute;
  left: 0;
  color: #A6A6A6;
}
.kantan__info__item em {
  color: #F51263;
  font-weight: bold;
}

.voice,
.message {
  padding: 120px 0 100px;
}
@media screen and (max-width: 768px) {
  .voice,
  .message {
    padding: 10% 0;
  }
}
.voice__title,
.message__title {
  font-family: 'Crimson Text', serif;
  font-size: 54px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .voice__title,
  .message__title {
    font-size: 27px;
  }
}
.voice__title__inner,
.message__title__inner {
  position: relative;
}
.voice__title__inner:before,
.message__title__inner:before {
  content: "";
  position: absolute;
  left: -109px;
  top: -11px;
  width: 81px;
  height: 64px;
  background: url("../img/voice_title_bg.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .voice__title__inner:before,
  .message__title__inner:before {
    left: -52px;
    top: -6px;
    width: 40.5px;
    height: 32px;
  }
}
.voice__title__text,
.message__title__text {
  margin-top: 10px;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", arial, helvetica, sans-serif;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .voice__title__text,
  .message__title__text {
    margin-top: 5px;
    font-size: 10px;
  }
}

.voice {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .voice {
    background: url(../img/voice_bg.jpg) center top -10% no-repeat;
    -moz-background-size: 200%;
    -webkit-background-size: 200%;
    background-size: 200%;
    overflow-x: hidden;
  }
}
.voice:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: -100px;
  width: 1480px;
  height: 1628px;
  margin: auto;
  background: url("../img/voice_bg.jpg") left top no-repeat;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .voice:before {
    content: none;
  }
}
.voice__inner {
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .voice__inner {
    width: 100%;
  }
}
.voice__box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .voice__box {
    display: block;
    margin-bottom: 30px;
  }
}
.voice__box:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .voice__pic {
    width: 35%;
    margin: 0 auto 20px;
  }
}
.voice__pic.-order2 {
  order: 2;
}
.voice__detail {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  position: relative;
  width: 760px;
  padding: 25px 20px;
  background: #FFF;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .voice__detail {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    width: 100%;
    padding: 4% 3%;
    background: rgba(255, 255, 255, 0.7);
    border-left: none;
    border-right: none;
  }
}
.voice__detail:before {
  content: url("../img/voice_detail_bg.gif");
  position: absolute;
  left: -22px;
  top: 67px;
}
@media screen and (max-width: 768px) {
  .voice__detail:before {
    content: none;
  }
}
.voice__detail.-order1 {
  order: 1;
}
.voice__detail.-order1:before {
  transform: scale(-1, 1);
  left: unset;
  right: -22px;
}
.voice__detail__term {
  position: relative;
  padding-bottom: 16px;
  font-size: 18px;
  border-bottom: 2px dotted #000;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .voice__detail__term {
    padding-bottom: 2%;
    font-size: 11px;
  }
}
.voice__detail__term.-voice1:before {
  content: "";
  position: absolute;
  left: -38px;
  bottom: 5px;
  width: 196px;
  height: 47px;
  background: url("../img/voice_detail_term_bg1.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .voice__detail__term.-voice1:before {
    left: -28px;
    bottom: 14px;
    width: 140px;
    height: 33.57143px;
  }
}
.voice__detail__term.-voice2:before {
  content: "";
  position: absolute;
  left: unset;
  right: -38px;
  bottom: 5px;
  width: 196px;
  height: 47px;
  background: url("../img/voice_detail_term_bg2.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .voice__detail__term.-voice2:before {
    right: -20px;
    bottom: 20px;
    width: 140px;
    height: 33.57143px;
  }
}
.voice__detail__term.-voice3:before {
  content: "";
  position: absolute;
  left: -38px;
  bottom: 5px;
  width: 196px;
  height: 47px;
  background: url("../img/voice_detail_term_bg3.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .voice__detail__term.-voice3:before {
    left: -15px;
    bottom: 12px;
    width: 140px;
    height: 33.57143px;
  }
}
.voice__detail__term.-order1 {
  text-align: left;
}
.voice__detail__description {
  padding: 20px 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .voice__detail__description {
    padding: 3% 0 0;
    font-size: 10px;
  }
}
.voice__detail__description em {
  color: #ED3C77;
  font-weight: bold;
}
.voice__detail__title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33333;
}
@media screen and (max-width: 768px) {
  .voice__detail__title {
    margin-bottom: 3%;
    font-size: 11px;
  }
}
.voice__detail__title em {
  color: #ED3C77;
  font-weight: bold;
}

.message {
  padding: 100px 0 75px;
  background: #DBF3F6;
}
@media screen and (max-width: 768px) {
  .message {
    padding: 10% 0;
  }
}
.message__title__inner:before {
  content: "";
  position: absolute;
  left: unset;
  right: -163px;
  top: -13px;
  width: 95px;
  height: 94px;
  background: url("../img/message_title_bg.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .message__title__inner:before {
    right: -57px;
    top: -21px;
    width: 47.5px;
    height: 47px;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
.message__inner {
  text-align: center;
}
.message__item {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 45px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .message__item {
    margin: 0 4% 15px;
    padding-bottom: 20px;
    font-size: 10px;
    line-height: 1.3;
    text-align: left;
  }
}
.message__item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 639px;
  height: 13px;
  margin: auto;
  background: url("../img/message_item_arrow.png") center top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .message__item:after {
    width: 100%;
    height: 6.5px;
  }
}
.message__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.message__item:last-child:after {
  content: none;
}
@media screen and (max-width: 768px) {
  .message__item__video {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 0px;
    margin-top: 5px;
    padding: 0 0 56.25%;
  }
}
.message__item iframe {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .message__item iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
  }
}

.president__inner {
  width: 1160px;
  margin: 75px auto 120px;
  padding-bottom: 10px;
  background: url("../img/president_bg.jpg") right bottom no-repeat;
}
@media screen and (max-width: 768px) {
  .president__inner {
    *zoom: 1;
    width: 100%;
    margin: 0 auto 12%;
    padding: 40% 4% 0;
    background: url("../img/president_bg_sp.jpg") center top no-repeat;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
  .president__inner:after {
    content: "";
    display: table;
    clear: both;
  }
}
.president__title {
  margin-bottom: 35px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .president__title {
    margin-bottom: 20px;
  }
}
.president__text {
  width: 830px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .president__text {
    width: 100%;
    margin-bottom: 10px;
    font-size: 11px;
  }
}
.president__sign {
  width: 830px;
  padding-right: 17px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .president__sign {
    float: right;
    width: 120px;
    padding-right: 0;
  }
}

.contact__title {
  line-height: 1.33333;
}
@media screen and (max-width: 768px) {
  .contact__title {
    margin-bottom: 3%;
  }
}
.contact__title em {
  color: #D82F4C;
  font-weight: bold;
}
.contact .applicationform-link {
  display: block;
  width: fit-content;
  font-size: 16px;
  text-decoration: underline;
  margin: 0 auto 2em;
  transition: .3s;
}
.contact .applicationform-link:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .contact .applicationform-link {
    font-size: 12px;
  }
}
.contact__inner {
  width: 950px;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    width: 100%;
    padding-bottom: 15%;
  }
}
.contact__subtitle {
  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;
}
@media screen and (max-width: 768px) {
  .contact__subtitle {
    margin-bottom: 5%;
    padding-bottom: 3%;
    font-size: 20px;
    line-height: 1.2;
  }
}
.contact__subtitle:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  margin: 0 auto;
  background: #000;
}
@media screen and (max-width: 768px) {
  .contact__subtitle:before {
    width: 40px;
  }
}
.contact__table {
  width: 100%;
  margin-bottom: 45px;
  table-layout: fixed;
}
@media screen and (max-width: 1200px) {
  .contact__table {
    width: 100%;
    margin-bottom: 5%;
  }
}
.contact__table th,
.contact__table td {
  line-height: 1.3;
  font-size: 1.6em;
  border: 10px solid #FFF;
  vertical-align: middle;
}
@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% 5%;
  }
}
.contact__table td {
  padding: 15px 20px;
  background: #F8F5EE;
}
@media screen and (max-width: 768px) {
  .contact__table td {
    padding: 3% 5%;
    background: none;
  }
}
.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: 5px;
  border: 2px solid #B0B0B0;
}
.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: 40%;
}
@media screen and (max-width: 768px) {
  .contact__table .short {
    width: 100%;
  }
}
.contact__table textarea {
  width: 100%;
  padding: 5px;
  resize: vertical;
  line-height: 1.2;
  border: 2px solid #B0B0B0;
}
@media screen and (max-width: 1200px) {
  .contact__table select {
    width: 100%;
  }
}
.contact__table__text {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact__table__text {
    margin: 0 5% 3%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.42857;
    text-align: left;
  }
}
.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: 420px;
  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: 1.8em;
  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: 19px;
    font-size: 5.06667vw;
    font-weight: bold;
  }
}
.contact__button input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}
.contact__button input[type="reset"] {
  background: #c7c7c7;
}
.contact__button input[type="button"], .contact__button input[type="submit"] {
  background: #509df7;
}

.follower {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #775316;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .follower {
    display: none !important;
  }
}
.follower-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1060px;
  margin: 0 auto;
  padding: 0 0;
}
@media screen and (max-width: 1060px) {
  .follower-inner {
    width: 96%;
  }
}
.follower-text {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1.28571;
}
@media screen and (max-width: 1060px) {
  .follower-text br {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  .follower-left {
    width: 67%;
  }
}
.follower-left-lower {
  display: flex;
  align-items: center;
}
.follower-hour {
  margin-right: 35px;
  color: #fff;
}
.follower-hour > * {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.28571;
}
.follower-tel a {
  padding-left: 39px;
  color: #FFF;
  background: url("../img/header_tel_bg.png") left center no-repeat;
  -moz-background-size: 31px;
  -webkit-background-size: 31px;
  background-size: 31px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 26px;
  font-weight: bold;
}
.follower-tel a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

.link-contact02 {
  position: relative;
  z-index: 100;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .link-contact02 {
    padding: 35px 0 40px !important;
  }
}
.link-contact02.-first {
  padding: 60px 0;
}
.link-contact02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 400px;
  height: 64px;
  margin: auto;
  background-color: #d52a46;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFD52A46', endColorstr='#FFF36590');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q1MmE0NiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YzNjU5MCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -moz-linear-gradient(top, #d52a46 0%, #f36590 100%);
  background-image: -webkit-linear-gradient(top, #d52a46 0%, #f36590 100%);
  background-image: linear-gradient(to bottom, #d52a46 0%, #f36590 100%);
  color: #FFF;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .link-contact02 a {
    width: 260px;
    height: 32px;
    font-size: 12px;
  }
}
.link-contact02 a:before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .link-contact02 a:before {
    right: -3px;
    bottom: -4px;
  }
}
.link-contact02 a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

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

.faq {
  padding: 80px;
  background: url("../img/faq_bg.gif") left top repeat;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 10% 3%;
    -moz-background-size: 20%;
    -webkit-background-size: 20%;
    background-size: 20%;
  }
}
.faq__title {
  margin-bottom: 50px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .faq__title {
    margin-bottom: 5%;
    font-size: 16px;
  }
}
.faq__item {
  -moz-box-shadow: 3px 3px 0 rgba(62, 0, 21, 0.25);
  -webkit-box-shadow: 3px 3px 0 rgba(62, 0, 21, 0.25);
  box-shadow: 3px 3px 0 rgba(62, 0, 21, 0.25);
  position: relative;
  width: 1000px;
  margin: 0 auto 25px;
  padding: 45px 30px 30px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .faq__item {
    -moz-box-shadow: 2px 2px 0 rgba(62, 0, 21, 0.25);
    -webkit-box-shadow: 2px 2px 0 rgba(62, 0, 21, 0.25);
    box-shadow: 2px 2px 0 rgba(62, 0, 21, 0.25);
    width: 100%;
    margin-bottom: 15px;
    padding: 6% 3% 4%;
  }
}
@media screen and (max-width: 768px) {
  .faq__item:last-child {
    margin-bottom: 0;
  }
}
.faq__detail__term {
  position: relative;
  margin-bottom: 30px;
  color: #1B3F91;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .faq__detail__term {
    margin-bottom: 20px;
    font-size: 11px;
  }
}
.faq__detail__term:before {
  content: "";
  position: absolute;
  left: -30px;
  top: -26px;
  width: 10px;
  height: 74px;
  background: #5472B6;
}
@media screen and (max-width: 768px) {
  .faq__detail__term:before {
    left: -10px;
    top: -12px;
    width: 4px;
    height: 37px;
  }
}
.faq__detail__description {
  font-size: 16px;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .faq__detail__description {
    font-size: 10px;
  }
}

/*# sourceMappingURL=landing.css.map */
