@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;300;400;500;600;700;800;900&display=swap");
body,
div,
dl, dt, dd,
ul, ol, li,
h1, h2, h3, h4, h5, h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th, td {
  margin: 0;
  padding: 0;
}

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

fieldset, img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em, strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

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

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

abbr, acronym {
  border: 0;
}

/*iosのフォームボタンリセット*/
input[type=submit],
input[type=button],
input[type=reset] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus,
input[type=reset]::focus {
  outline-offset: -2px;
}

/*変数設定用*/
/*変数設定用*/
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

a {
  pointer-events: auto;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

li {
  list-style: none;
}

a {
  color: #666666;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a:hover p:hover {
  opacity: 0.7;
}
a:hover img:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  font-size: 62.5%;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  letter-spacing: 0.1em;
  position: relative;
}

header {
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 1rem;
  }
}
header.-front {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
header .header__H1 {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translate(0, -50%);
  max-width: 10.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .header__H1 {
    position: static;
    transform: translate(0, 0);
    max-width: 8rem;
  }
}
@media screen and (max-width: 767px) {
  header .header__H1 {
    position: static;
    transform: translate(0, 0);
    max-width: 8rem;
  }
}
header .header__Inner {
  max-width: 90rem;
  margin: auto;
  display: flex;
  justify-content: flex-end;
}
header .header__Inner .navToggle {
  position: absolute;
  right: 2.7rem;
  top: 1.5rem;
  width: 1.7rem;
  height: 1rem;
  cursor: pointer;
  z-index: 10000;
  text-align: center;
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .header__Inner .navToggle {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header .header__Inner .navToggle {
    display: block;
  }
}
header .header__Inner .navToggle span {
  display: block;
  position: absolute;
  width: 1.6rem;
  border-bottom: solid 0.1rem #1B224C;
  transition: 0.35s ease-in-out;
  left: 0;
}
header .header__Inner .navToggle span:nth-child(1) {
  top: 0;
}
header .header__Inner .navToggle span:nth-child(2) {
  top: calc(50% - 0.1rem);
}
header .header__Inner .navToggle span:nth-child(3) {
  bottom: 0;
}
header .header__Inner .navToggle.active span:nth-child(1) {
  transform: rotate(-45deg);
}
header .header__Inner .navToggle.active span:nth-child(2) {
  opacity: 0;
}
header .header__Inner .navToggle.active span:nth-child(3) {
  top: 0;
  bottom: auto;
  transform: rotate(45deg);
}
header .header__Inner .header__Nav {
  padding: 3rem 0 1.8rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .header__Inner .header__Nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    color: #000;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #fff;
    padding-top: 7rem;
  }
}
@media screen and (max-width: 767px) {
  header .header__Inner .header__Nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    color: #000;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #fff;
    padding-top: 7rem;
  }
}
header .header__Inner .header__Nav .header__NavList {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .header__Inner .header__Nav .header__NavList {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header .header__Inner .header__Nav .header__NavList {
    display: block;
  }
}
header .header__Inner .header__Nav .header__NavList .header__NavItem {
  margin: 0 1.2rem;
  padding-bottom: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .header__Inner .header__Nav .header__NavList .header__NavItem {
    margin: 0;
    padding: 0;
    border-top: 0.1rem solid #1B224C;
  }
}
@media screen and (max-width: 767px) {
  header .header__Inner .header__Nav .header__NavList .header__NavItem {
    margin: 0;
    padding: 0;
    border-top: 0.1rem solid #1B224C;
  }
}
header .header__Inner .header__Nav .header__NavList .header__NavItem.current:before {
  content: "";
  position: absolute;
  left: calc(50% - 1.5rem);
  bottom: 0;
  width: 3rem;
  height: 0.4rem;
  background: #1B224C;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .header__Inner .header__Nav .header__NavList .header__NavItem.current:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header .header__Inner .header__Nav .header__NavList .header__NavItem.current:before {
    display: none;
  }
}
header .header__Inner .header__Nav .header__NavList .header__NavItem a {
  font-size: 1.6rem;
  color: #1B224C;
  font-weight: 600;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .header__Inner .header__Nav .header__NavList .header__NavItem a {
    padding: 2rem;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header .header__Inner .header__Nav .header__NavList .header__NavItem a {
    padding: 1.5rem;
    display: block;
  }
}
header .header__Inner .header__Nav .header__NavList .header__NavItem:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .header__Inner .header__Nav .header__NavList .header__NavItem:last-child {
    border-bottom: 0.1rem solid #1B224C;
  }
}
@media screen and (max-width: 767px) {
  header .header__Inner .header__Nav .header__NavList .header__NavItem:last-child {
    border-bottom: 0.1rem solid #1B224C;
  }
}
header .header__Inner .header__Nav.active {
  transform: translateX(0);
}

.breadcrumb {
  background: #FFEB9A;
  padding: 1.6rem 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 1rem 0;
  }
}
.breadcrumb .container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin: 1rem auto;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }
}
.breadcrumb li {
  margin-right: 2.4rem;
  font-size: 1.2rem;
  color: #1B224C;
  font-weight: 500;
}
.breadcrumb li a {
  font-size: 1.2rem;
  position: relative;
  color: #1B224C;
  font-weight: 500;
}
.breadcrumb li a:before {
  position: absolute;
  top: 0;
  right: -2rem;
  content: "＞";
}

.footwagaco {
  padding: 5.7rem 0 11.7rem;
  background: #E4E4E4;
  position: relative;
}
.footwagaco.-white {
  padding-top: 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .footwagaco {
    padding: 2.8rem 0 10rem;
  }
}
.footwagaco:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 8rem;
  background: url("./../img/img_wagaco_bg.svg");
  background-repeat: repeat-x;
}
.footwagaco:after {
  position: absolute;
  bottom: -6.2rem;
  left: calc(50% + 7.7rem);
  content: "";
  width: 27.6rem;
  height: 10.3rem;
  background: url("./../img/illust_wagaco_child.svg");
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .footwagaco:after {
    bottom: -3rem;
    left: calc(50% - 7.8rem);
    content: "";
    width: 15.7rem;
    height: 5.9rem;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.footwagaco .footwagaco__List {
  display: flex;
  max-width: 90rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .footwagaco .footwagaco__List {
    display: block;
    max-width: 27rem;
  }
}
.footwagaco .footwagaco__List .footwagaco__Item {
  width: 30%;
  margin: 0 1rem;
}
@media screen and (max-width: 767px) {
  .footwagaco .footwagaco__List .footwagaco__Item {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

footer {
  background: #00ACBA;
  padding-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 4rem;
  }
}
footer .foot__Inner {
  max-width: 90rem;
  margin: auto;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  footer .foot__Inner {
    width: 95%;
  }
}
footer .foot__Logo {
  max-width: 14rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  footer .foot__Logo {
    max-width: 13.8rem;
    margin: 0 auto 2rem;
  }
}
footer .foot__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9.6rem;
}
@media screen and (max-width: 767px) {
  footer .foot__nav {
    max-width: 22.4rem;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  footer .foot__nav .foot__navList {
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  footer .foot__nav .foot__navList:nth-child(3n+2) {
    margin: 0 1.5rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  footer .foot__nav .foot__navList:last-child {
    margin: auto;
  }
}
footer .foot__nav .foot__navList a {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  footer .foot__nav .foot__navList a {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
footer .foot__White {
  background: #fff;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  footer .foot__White {
    padding: 1rem 0 2rem;
  }
}
footer .foot__White .foot__Inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .foot__White .foot__Inner {
    width: 90%;
  }
}
footer .foot__White .foot__Inner .foot__Fl {
  display: flex;
  align-items: center;
}
footer .foot__White .foot__Inner .foot__Fl a {
  color: #1B224C;
}
footer .foot__White .foot__Inner .foot__Fl a.-privacy {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  footer .foot__White .foot__Inner .foot__Fl a.-privacy {
    font-size: 1.4rem;
  }
}
footer .foot__White .foot__Inner .foot__Fl a.-law {
  margin-left: 2rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  footer .foot__White .foot__Inner .foot__Fl a.-law {
    margin-left: 0;
  }
}
footer .foot__White .foot__Inner .foot__Fr .copyright {
  font-size: 1.2rem;
  color: #1B224C;
}
@media screen and (max-width: 767px) {
  footer .foot__White .foot__Inner .foot__Fr .copyright {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .vpc {
    display: none;
  }
}

.vsp {
  display: none;
}
@media screen and (max-width: 767px) {
  .vsp {
    display: block;
  }
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.container {
  max-width: 128rem;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .container {
    max-width: 90rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 90%;
  }
}

.under__Fv {
  padding: 8.8rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .under__Fv {
    padding: 4rem 0;
  }
}
.under__Fv .under__FvTtl {
  text-align: center;
}
.under__Fv .under__FvTtl span {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: bold;
  color: #1B224C;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvTtl span {
    font-size: 2rem;
  }
}
.under__Fv .under__FvTtl span:before {
  content: "";
  position: absolute;
  left: -7.2rem;
  bottom: 0;
  width: 5.3rem;
  height: 5.2rem;
  background: url("./../img/icon_underfv_before.svg");
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvTtl span:before {
    left: -4.2rem;
    bottom: -1rem;
    width: 3.5rem;
    height: 3.4rem;
    background: url(./../img/icon_underfv_before.svg);
    background-size: cover;
  }
}
.under__Fv .under__FvTtl span.-company:after {
  content: "";
  position: absolute;
  right: -11rem;
  bottom: -4.3rem;
  width: 7.7rem;
  height: 9rem;
  background: url("./../img/icon_underfv_company.svg");
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvTtl span.-company:after {
    right: -7rem;
    bottom: -2.3rem;
    width: 4.5rem;
    height: 5.4rem;
    background-size: cover;
  }
}
.under__Fv .under__FvTtl span.-contact:before {
  left: -16.2rem;
}
.under__Fv .under__FvTtl span.-contact:after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -3rem;
  width: 6rem;
  height: 9.2rem;
  background: url("./../img/icon_underfv_contact.svg");
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvTtl span.-contact:after {
    right: -6rem;
    bottom: -2rem;
    width: 4rem;
    height: 6.2rem;
    background-size: cover;
  }
}
.under__Fv .under__FvTtl span.-privacy:after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -2.3rem;
  width: 5.3rem;
  height: 12.2rem;
  background: url("./../img/icon_underfv_privacy.svg");
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvTtl span.-privacy:after {
    right: -5rem;
    bottom: -4.3rem;
    width: 4.3rem;
    height: 10.2rem;
    background-size: cover;
  }
}
.under__Fv .under__FvTtl span.-law:after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -2.3rem;
  width: 8.1rem;
  height: 12rem;
  background: url("./../img/icon_underfv_law.svg");
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvTtl span.-law:after {
    right: -5rem;
    bottom: -2.3rem;
    width: 4.9rem;
    height: 7.6rem;
    background-size: cover;
  }
}
.under__Fv .under__FvTtl span.-privacy:after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -2.3rem;
  width: 5.3rem;
  height: 12.2rem;
  background: url("./../img/icon_underfv_privacy.svg");
}
.under__Fv .under__FvTtl span.-advertising:after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -5.3rem;
  width: 7.6rem;
  height: 16rem;
  background: url("./../img/icon_underfv_advertising.svg");
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvTtl span.-advertising:after {
    right: -5rem;
    bottom: -4.3rem;
    width: 4.6rem;
    height: 9.8rem;
    background-size: cover;
  }
}
.under__Fv .under__FvTtl span.-news:after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -1.3rem;
  width: 6.2rem;
  height: 7.7rem;
  background: url("./../img/icon_underfv_news.svg");
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvTtl span.-news:after {
    right: -6rem;
    bottom: -1.3rem;
    width: 4.2rem;
    height: 5.4rem;
    background-size: cover;
  }
}
.under__Fv .under__FvTtl span.-school:after {
  content: "";
  position: absolute;
  right: -15rem;
  bottom: -5.3rem;
  width: 10.4rem;
  height: 10.9rem;
  background: url("./../img/icon_underfv_school.svg");
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvTtl span.-school:after {
    right: -7rem;
    bottom: -3rem;
    width: 5.6rem;
    height: 5.8rem;
    background-size: cover;
  }
}
.under__Fv .under__FvTtl span.-column:after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -2.3rem;
  width: 7.7rem;
  height: 9.4rem;
  background: url(./../img/icon_underfv_column.svg);
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvTtl span.-column:after {
    right: -6rem;
    bottom: -1.3rem;
    width: 4.2rem;
    height: 5.2rem;
    background-size: cover;
  }
}
.under__Fv .under__FvSubTtl {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvSubTtl {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
}
.under__Fv .under__FvEnglish {
  position: absolute;
  left: 0;
  top: 4.5rem;
  font-size: 10rem;
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke: 0.1rem #D5D5D5;
  text-stroke: 0.1rem #D5D5D5;
  z-index: -1;
  line-height: 1;
  font-family: "Noto Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvEnglish {
    font-size: 5rem;
    top: -1.3rem;
    left: -0.3rem;
    font-weight: bold;
  }
}
.under__Fv .under__FvEnglish.-school {
  left: calc(50% - 55rem);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .under__Fv .under__FvEnglish.-school {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvEnglish.-school {
    left: 0;
  }
}
.under__Fv .under__FvEnglish.-column {
  left: calc(50% - 51.5rem);
  top: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .under__Fv .under__FvEnglish.-column {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvEnglish.-column {
    left: 0;
  }
}
.under__Fv .under__FvEnglish.-news {
  left: calc(50% - 45rem);
  top: 3.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .under__Fv .under__FvEnglish.-news {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvEnglish.-news {
    left: 0;
    top: 0;
  }
}
.under__Fv .under__FvEnglish.-advertising {
  left: calc(50% - 66rem);
  top: 0.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .under__Fv .under__FvEnglish.-advertising {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvEnglish.-advertising {
    left: 0;
    top: 0;
  }
}
.under__Fv .under__FvEnglish.-company {
  left: calc(50% - 64rem);
  top: 0.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .under__Fv .under__FvEnglish.-company {
    left: 0;
    font-size: 8rem;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvEnglish.-company {
    left: 0;
    top: 0;
    font-size: 4rem;
  }
}
.under__Fv .under__FvEnglish.-contact {
  left: calc(50% - 65rem);
  top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvEnglish.-contact {
    left: 0;
    top: 0;
  }
}
.under__Fv .under__FvEnglish.-privacy {
  left: calc(50% - 65rem);
  top: 0.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .under__Fv .under__FvEnglish.-privacy {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvEnglish.-privacy {
    left: 0;
  }
}
.under__Fv .under__FvEnglish.-law {
  left: calc(50% - 61rem);
  top: 4rem;
  font-size: 6rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .under__Fv .under__FvEnglish.-law {
    left: 0;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .under__Fv .under__FvEnglish.-law {
    left: 0;
    top: 0;
    font-size: 3rem;
  }
}

/*ページャー*/
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6.6rem;
}
@media screen and (max-width: 767px) {
  .pager {
    margin-top: 3rem;
  }
}
.pager a {
  width: 5rem;
  text-align: center;
  line-height: 5rem;
  font-size: 1.6rem;
  margin: 0 1rem;
  color: #1B224C;
  border: 0.1rem solid #1B224C;
}
@media screen and (max-width: 767px) {
  .pager a {
    font-size: 1.6rem;
  }
}
.pager a.next {
  margin-left: 1rem;
  width: 1.5rem;
  height: 2.6rem;
  background-image: url(./../img/icon_pagearrow_next.svg);
  border: none;
}
.pager a.prev {
  margin-right: 1rem;
  width: 1.5rem;
  height: 2.6rem;
  background-image: url(./../img/icon_pagearrow_prev.svg);
  border: none;
}
.pager span {
  width: 5rem;
  text-align: center;
  line-height: 5rem;
  font-size: 1.6rem;
  margin: 0 1rem;
  color: #fff;
  background: #1B224C;
  border: 0.1rem solid #1B224C;
}

/*検索フォーム*/
.search__Wrap {
  background: #00ACBA;
  padding: 1.8rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .search__Wrap {
    width: 81%;
    margin: auto;
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .search__Wrap {
    width: 81%;
    margin: auto;
    padding: 2rem;
  }
}
.search__Wrap .search__Ttl {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .search__Wrap .search__Ttl {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .search__Wrap .search__Ttl {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}
.search__Wrap form {
  width: 100%;
}
.search__Wrap form ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .search__Wrap form ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .search__Wrap form ul {
    display: block;
  }
}
.search__Wrap form ul li {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .search__Wrap form ul li {
    max-width: 40rem;
    margin: 0 auto 1rem !important;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .search__Wrap form ul li {
    display: block;
    max-width: 18rem;
    margin: 0 auto 1rem !important;
    padding: 0;
  }
}
.search__Wrap form ul li.sf-field-category {
  margin-right: 1.5rem;
}
.search__Wrap form ul li.sf-field-tag {
  margin-right: 1.5rem;
}
.search__Wrap form ul li.sf-field-post-meta-features_tag {
  margin-right: 1.3rem;
}
.search__Wrap form ul li.sf-field-submit {
  width: 7.8rem;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .search__Wrap form ul li.sf-field-submit {
    width: calc(100% - 6rem);
  }
}
.search__Wrap form ul li.sf-field-submit input {
  width: 100%;
  background-color: #1B224C;
  background-image: url("./../img/icon_megane.svg");
  background-repeat: no-repeat;
  background-position: center left 1rem;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 3rem;
  padding: 0.7rem 1.4rem 0.7rem 3.2rem;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .search__Wrap form ul li.sf-field-submit input {
    max-width: 20rem;
    margin: auto;
    text-align: center;
    padding: 0.7rem 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .search__Wrap form ul li.sf-field-submit input {
    font-size: 1.4rem;
    padding: 0.5rem 1.4rem 0.5rem 3.2rem;
  }
}
.search__Wrap form ul li h4 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-right: 0.8rem;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .search__Wrap form ul li h4 {
    width: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .search__Wrap form ul li h4 {
    display: none;
  }
}
.search__Wrap form ul li label {
  position: relative;
}
.search__Wrap form ul li label:before {
  content: "";
  width: 1.1rem;
  height: 1rem;
  background: url("./../img/icon_select_arrow.svg");
  background-size: cover;
  position: absolute;
  right: 1rem;
  top: calc(50% - 0.5rem);
}
.search__Wrap form ul li label select.sf-input-select {
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  min-width: none;
  min-width: auto;
  min-width: 18rem;
  padding: 1rem;
  color: #919191;
  border: 0.1rem solid #707070;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .search__Wrap form ul li label select.sf-input-select {
    min-width: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .search__Wrap form ul li label select.sf-input-select {
    text-align: center;
  }
}
.search__Wrap .icon_child {
  position: absolute;
  right: -10.5rem;
  bottom: -1rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .search__Wrap .icon_child {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .search__Wrap .icon_child {
    display: none;
  }
}

.separateWrap.-school {
  padding-bottom: 10rem;
  margin-top: 5rem;
}
.separateWrap.-single {
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .separateWrap.-single {
    margin-bottom: 3rem;
  }
}
.separateWrap.-bg {
  position: relative;
}
.separateWrap.-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: calc(128rem + 30vw);
  width: 100%;
  height: 100%;
  background: url("./../img/img_separate_bg.png");
  background-position: top center;
  background-size: 100%;
  background-repeat: repeat-x;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .separateWrap.-bg:before {
    max-width: 135.8rem;
  }
}
.separateWrap .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .separateWrap .container {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .separateWrap .container {
    display: block;
  }
}
.separateWrap .Main {
  width: calc(100% - 31rem);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .separateWrap .Main {
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .separateWrap .Main {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.separateWrap .Sidebar {
  width: 27rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .separateWrap .Sidebar {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .separateWrap .Sidebar {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .separateWrap .Sidebar .Sidebar__BnrList {
    max-width: 27rem;
    margin: auto;
  }
}
.separateWrap .Sidebar .Sidebar__BnrList .Sidebar__Bnritem {
  margin-bottom: 3rem;
  text-align: center;
}
.separateWrap .Sidebar .Sidebar__BnrList .Sidebar__Bnritem a {
  display: block;
}
.separateWrap .Sidebar .Sidebar__Column {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .separateWrap .Sidebar .Sidebar__Column {
    margin-bottom: 5rem;
  }
}
.separateWrap .Sidebar .Sidebar__Column .Sidebar__ColumnTtl {
  font-size: 1.6rem;
  color: #1B224C;
  font-weight: bold;
  border-bottom: 0.1rem solid #1B224C;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}
.separateWrap .Sidebar .Sidebar__Column .Sidebar__ColumnItem:last-child {
  margin-bottom: 0;
}
.separateWrap .Sidebar .Sidebar__Column .Sidebar__ColumnAnchor {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.separateWrap .Sidebar .Sidebar__Column .Sidebar__ColumnAnchor .Sidebar__ColumnFl {
  min-width: 10rem;
  width: 38.2%;
  position: relative;
}
.separateWrap .Sidebar .Sidebar__Column .Sidebar__ColumnAnchor .Sidebar__ColumnFl .Sidebar__ColumnThumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 9rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .separateWrap .Sidebar .Sidebar__Column .Sidebar__ColumnAnchor .Sidebar__ColumnFl .Sidebar__ColumnThumbnail {
    padding-bottom: 18rem;
  }
}
.separateWrap .Sidebar .Sidebar__Column .Sidebar__ColumnAnchor .Sidebar__ColumnFl .Sidebar__ColumnThumbnail img {
  width: 150%;
  max-width: none;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.separateWrap .Sidebar .Sidebar__Column .Sidebar__ColumnAnchor .Sidebar__ColumnFl .Sidebar__ColumnSubttl {
  font-size: 1.2rem;
  background: #1B224C;
  padding: 0.1rem;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.separateWrap .Sidebar .Sidebar__Column .Sidebar__ColumnAnchor .Sidebar__ColumnFr {
  width: 54%;
  font-size: 1.6rem;
  color: #1B224C;
  font-weight: 300;
  line-height: 1.375em;
}

.front__Mv {
  position: relative;
  min-height: 55rem;
  background: url(./../img/img_fv_bg1920.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1280px) {
  .front__Mv {
    background: url(./../img/img_fv_bg1280.png);
    background-size: cover;
    background-position: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Mv {
    background: url(./../img/img_fv_bgsp.png);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .front__Mv {
    background: url(./../img/img_fv_bgsp.png);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: auto;
  }
}
.front__Mv .front__Mvbox {
  max-width: 90rem;
  width: 100%;
  margin: auto;
  padding-top: 16.5rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Mv .front__Mvbox {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .front__Mv .front__Mvbox {
    padding-top: 2rem;
  }
}
.front__Mv .front__Mvbox .front__Mvillust01 {
  position: absolute;
  max-width: 16rem;
  left: 0;
  top: 12rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Mv .front__Mvbox .front__Mvillust01 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .front__Mv .front__Mvbox .front__Mvillust01 {
    display: none;
  }
}
.front__Mv .front__Mvbox .front__Mvillust02 {
  position: absolute;
  max-width: 9.7rem;
  left: 2rem;
  bottom: 10rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Mv .front__Mvbox .front__Mvillust02 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .front__Mv .front__Mvbox .front__Mvillust02 {
    display: none;
  }
}
.front__Mv .front__Mvbox .front__Mvillust03 {
  position: absolute;
  max-width: 11rem;
  right: -9rem;
  bottom: 9rem;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Mv .front__Mvbox .front__Mvillust03 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .front__Mv .front__Mvbox .front__Mvillust03 {
    display: none;
  }
}
.front__Mv .front__Mvbox .front__H1 {
  text-align: center;
  margin-bottom: 1rem;
}
.front__Mv .front__Mvbox .front__H2 {
  text-align: center;
  font-size: 4.8rem;
  font-weight: bold;
  color: #1B224C;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Mv .front__Mvbox .front__H2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .front__Mv .front__Mvbox .front__H2 {
    font-size: 2.6rem;
  }
}
.front__Mv .front__Mvbox .front__H2 span {
  color: #fff;
  -webkit-text-stroke: 0.1rem #D5D5D5;
  text-stroke: 0.1rem #D5D5D5;
}
.front__Mv .front__Mvbox .front__Subttl {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 400;
  color: #1B224C;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Mv .front__Mvbox .front__Subttl {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .front__Mv .front__Mvbox .front__Subttl {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
}
.front__Mv .front__Mvbox .search__Wrap {
  padding: 0.7rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Mv .front__Mvbox .search__Wrap {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .front__Mv .front__Mvbox .search__Wrap {
    padding: 2rem;
  }
}
.front__Mv .front__Mvbox .search__Wrap .search__Ttl {
  margin-bottom: -0.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Mv .front__Mvbox .search__Wrap .search__Ttl {
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .front__Mv .front__Mvbox .search__Wrap .search__Ttl {
    margin-bottom: 1.2rem;
  }
}

.front__News {
  position: relative;
  padding: 3rem 0;
  background: #FFD738;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__News {
    padding: 0 4% 2.5rem;
    margin-top: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .front__News {
    padding: 0 4% 2.5rem;
    margin-top: 7.5rem;
  }
}
.front__News:before {
  position: absolute;
  top: -8rem;
  left: 0;
  content: "";
  width: 100%;
  height: 8rem;
  background: url(./../img/img_frontmv_bg.svg);
  background-repeat: repeat-x;
}
@media screen and (max-width: 767px) {
  .front__News:before {
    top: -7rem;
    height: 7rem;
  }
}
.front__News .front__NewsInner {
  max-width: 90rem;
  margin: auto;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__News .front__NewsInner {
    width: 95%;
  }
}
.front__News .front__NewsTxt {
  color: #1B224C;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2em;
  text-align: center;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__News .front__NewsTxt {
    font-size: 1.4rem;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .front__News .front__NewsTxt {
    font-size: 1.4rem;
    text-align: left;
  }
}
.front__News .front__NewsBox {
  max-width: 60rem;
  background: #fff;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 1.2rem 14rem 1.2rem 3.7rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__News .front__NewsBox {
    max-width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .front__News .front__NewsBox {
    display: block;
    padding: 1rem;
  }
}
.front__News .front__NewsBox .front__NewsTtl {
  font-size: 1.6rem;
  padding-right: 3rem;
  margin-right: 1.6rem;
  color: #00ACBA;
  position: relative;
}
.front__News .front__NewsBox .front__NewsTtl:before {
  position: absolute;
  right: 0;
  bottom: calc(50% - 0.1rem);
  width: 2rem;
  height: 0.1rem;
  content: "";
  background: #00ACBA;
  transform: rotate(-45deg);
}
.front__News .front__NewsBox .front__NewsDate {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  margin-right: 3rem;
}
.front__News .front__NewsBox .front__NewsSubttl {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
}
@media screen and (max-width: 767px) {
  .front__News .front__NewsBox .front__NewsSubttl {
    text-align: center;
  }
}
.front__News .front__NewsBox .tar {
  position: absolute;
  right: 1rem;
}
@media screen and (max-width: 767px) {
  .front__News .front__NewsBox .tar {
    position: static;
    text-align: right;
  }
}
.front__News .front__NewsBox a {
  font-size: 1.6rem;
  padding-right: 3rem;
  color: #00ACBA;
}
@media screen and (max-width: 767px) {
  .front__News .front__NewsBox a {
    position: relative;
  }
}
.front__News .front__NewsBox a:before {
  position: absolute;
  right: 0;
  top: calc(50% - 0.75em);
  bottom: calc(50% - 0.1rem);
  content: "＞";
  color: #00ACBA;
}

.front__Area {
  background: #FFFCEF;
  padding: 6.7rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .front__Area {
    position: relative;
    overflow: hidden;
    padding: 3.6rem 0 0.6rem;
  }
}
.front__Area .container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .front__Area .container {
    position: static;
  }
}
.front__Area .front__AreaTtl {
  text-align: center;
}
.front__Area .front__AreaTtl span {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: bold;
  color: #1B224C;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaTtl span {
    font-size: 2rem;
  }
}
.front__Area .front__AreaTtl span:before {
  content: "";
  position: absolute;
  left: -7.2rem;
  bottom: 0;
  width: 5.3rem;
  height: 5.2rem;
  background: url("./../img/icon_underfv_before.svg");
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaTtl span:before {
    left: -4.2rem;
    bottom: -1rem;
    width: 3.5rem;
    height: 3.4rem;
    background: url(./../img/icon_underfv_before.svg);
    background-size: cover;
  }
}
.front__Area .front__AreaTtl span:after {
  content: "";
  position: absolute;
  right: -15rem;
  bottom: -5.3rem;
  width: 10.4rem;
  height: 10.9rem;
  background: url("./../img/icon_underfv_school.svg");
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaTtl span:after {
    right: -7rem;
    bottom: -3rem;
    width: 5.6rem;
    height: 5.8rem;
    background: url(./../img/icon_underfv_school.svg);
    background-size: cover;
  }
}
.front__Area .front__AreaEnglish {
  position: absolute;
  left: calc(50% - 42rem);
  top: -4rem;
  font-size: 10rem;
  color: #FFFCEF;
  -webkit-text-stroke: 0.1rem #D5D5D5;
  text-stroke: 0.1rem #D5D5D5;
  font-weight: bold;
  line-height: 1;
  font-family: "Noto Sans", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Area .front__AreaEnglish {
    left: -0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaEnglish {
    font-size: 5rem;
    top: -1.3rem;
    left: -0.3rem;
    font-weight: bold;
  }
}
.front__Area .front__AreaFlex {
  max-width: 72.5rem;
  margin: 6.5rem auto 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaFlex {
    margin: 3.2rem auto 0;
    display: block;
  }
}
.front__Area .front__AreaFlex .front__AreaIllust01 {
  position: absolute;
  left: -10rem;
  top: -3rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Area .front__AreaFlex .front__AreaIllust01 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaFlex .front__AreaIllust01 {
    display: none;
  }
}
.front__Area .front__AreaFlex .front__AreaIllust02 {
  position: absolute;
  right: -19rem;
  bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Area .front__AreaFlex .front__AreaIllust02 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaFlex .front__AreaIllust02 {
    display: none;
  }
}
.front__Area .front__AreaFlex .front__AreaFl {
  width: 43.4%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaFlex .front__AreaFl {
    width: 100%;
    max-width: 28rem;
  }
}
.front__Area .front__AreaFlex .front__AreaFr {
  width: 43.4%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaFlex .front__AreaFr {
    width: 100%;
    max-width: 28rem;
  }
}
.front__Area .front__AreaFlex .front__AreaPref {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaFlex .front__AreaPref {
    margin-bottom: 3rem;
  }
}
.front__Area .front__AreaFlex .front__AreaPref .front__AreaPref-Ttl {
  font-size: 1.6rem;
  color: #1B224C;
  font-weight: bold;
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  position: relative;
}
.front__Area .front__AreaFlex .front__AreaPref .front__AreaPref-Ttl:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 3.2rem;
  height: 0.4rem;
  background: url(./../img/icon_popular_mark.svg);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Area .front__AreaFlex .front__AreaPref .front__AreaPref-Wrap {
    position: relative;
  }
}
.front__Area .front__AreaFlex .front__AreaPref .front__AreaPref-Wrap .front__AreaPref-List {
  display: flex;
  flex-wrap: wrap;
}
.front__Area .front__AreaFlex .front__AreaPref .front__AreaPref-Wrap .front__AreaPref-List .front__AreaPref-Item {
  margin-right: 1.5rem;
}
.front__Area .front__AreaFlex .front__AreaPref .front__AreaPref-Wrap .front__AreaPref-List .front__AreaPref-Item.-mr0 {
  margin-right: 0;
}
.front__Area .front__AreaFlex .front__AreaPref .front__AreaPref-Wrap .front__AreaPref-List .front__AreaPref-Item a {
  font-size: 1.6rem;
  color: #1B224C;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .front__Area .front__AreaFlex .front__AreaPref .front__AreaPref-Wrap .front__AreaPref-List .front__AreaPref-Item a {
    font-size: 1.4rem;
  }
}

.front__Point {
  padding: 7.5rem 0 10rem;
  background: #F2F2F3;
}
@media screen and (max-width: 767px) {
  .front__Point {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3.6rem;
  }
}
.front__Point .container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .front__Point .container {
    position: static;
  }
}
.front__Point .front__PointTtl {
  text-align: center;
  margin-bottom: 6.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Point .front__PointTtl {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .front__Point .front__PointTtl {
    margin-bottom: 4rem;
  }
}
.front__Point .front__PointTtl span {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: bold;
  color: #1B224C;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .front__Point .front__PointTtl span {
    font-size: 2rem;
  }
}
.front__Point .front__PointTtl span:before {
  content: "";
  position: absolute;
  left: -7.2rem;
  bottom: 0;
  width: 5.3rem;
  height: 5.2rem;
  background: url("./../img/icon_underfv_before.svg");
}
@media screen and (max-width: 767px) {
  .front__Point .front__PointTtl span:before {
    left: -4.2rem;
    bottom: -1rem;
    width: 3.5rem;
    height: 3.4rem;
    background-size: cover;
  }
}
.front__Point .front__PointTtl span:after {
  content: "";
  position: absolute;
  left: -15.2rem;
  bottom: -3.3rem;
  width: 4.6rem;
  height: 9.4rem;
  background: url("./../img/icon_underfv_point.svg");
}
.front__Point .front__PointTtl span .front__PointBtn {
  position: absolute;
  right: -20rem;
  top: calc(50% - 2rem);
  width: 19.1rem;
  background: #1B224C;
  color: #fff;
  padding: 1rem;
  border-radius: 5rem;
  padding: 1.4rem;
  text-align: center;
  font-size: 1.6rem;
  padding-right: 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Point .front__PointTtl span .front__PointBtn {
    display: none;
  }
}
.front__Point .front__PointTtl span .front__PointBtn:before {
  position: absolute;
  right: 3rem;
  width: 1rem;
  height: 1rem;
  top: calc(50% - 0.5rem);
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  content: "";
  transform: rotate(45deg);
}
.front__Point .front__PointEnglish {
  position: absolute;
  left: 0;
  top: -6rem;
  font-size: 10rem;
  font-weight: bold;
  color: #F2F2F3;
  -webkit-text-stroke: 0.1rem #fff;
  text-stroke: 0.1rem #fff;
  line-height: 1;
  font-family: "Noto Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .front__Point .front__PointEnglish {
    font-size: 5rem;
    top: -1.3rem;
    left: -0.3rem;
    font-weight: bold;
  }
}
.front__Point .recommendpost__ColumnTtl {
  font-size: 1.6rem;
  color: #1B224C;
  font-weight: bold;
  border-bottom: 0.1rem solid #1B224C;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}
.front__Point .front__PointList {
  display: flex;
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .front__Point .front__PointList {
    display: block;
  }
}
.front__Point .front__PointList .front__PointItem {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .front__Point .front__PointList .front__PointItem {
    width: 100%;
    margin-bottom: 2.7rem;
  }
}
.front__Point .front__PointAnchor {
  display: flex;
  justify-content: space-between;
}
.front__Point .front__PointAnchor .front__PointFl {
  min-width: 10rem;
  width: 35%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .front__Point .front__PointAnchor .front__PointFl {
    width: 45%;
  }
}
.front__Point .front__PointAnchor .front__PointFl .front__PointThumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 9rem;
  overflow: hidden;
}
.front__Point .front__PointAnchor .front__PointFl .front__PointThumbnail img {
  width: 150%;
  max-width: none;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.front__Point .front__PointAnchor .front__PointFl .front__PointSubttl {
  font-size: 1.2rem;
  background: #1B224C;
  padding: 0.1rem;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.front__Point .front__PointAnchor .front__PointFr {
  width: calc(65% - 2rem);
  font-size: 1.6rem;
  color: #1B224C;
  font-weight: 300;
  line-height: 1.375em;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .front__Point .front__PointAnchor .front__PointFr {
    width: 50%;
  }
}
.front__Point .front__PointAnchor .front__PointFr p {
  font-size: 1.2rem;
}
.front__Point .front__PointBtn.vsp {
  margin: 2rem auto 0;
  width: 15rem;
  background: #00ACBA;
  color: #fff;
  padding: 1rem;
  border-radius: 5rem;
  padding: 1rem;
  text-align: center;
  font-size: 1.4rem;
  padding-right: 3rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__Point .front__PointBtn.vsp {
    margin: 4rem auto 0;
    display: block;
  }
}
.front__Point .front__PointBtn.vsp:before {
  position: absolute;
  right: 2rem;
  width: 0.6rem;
  height: 0.6rem;
  top: calc(50% - 0.3rem);
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
  content: "";
  transform: rotate(45deg);
}

.front__School {
  padding: 9rem 0 7rem;
}
@media screen and (max-width: 767px) {
  .front__School {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3rem;
  }
}
.front__School .container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .front__School .container {
    position: static;
  }
}
.front__School .front__SchoolEnglish {
  position: absolute;
  right: calc(50% - 52rem);
  top: -4rem;
  font-weight: bold;
  font-size: 10rem;
  color: #fff;
  -webkit-text-stroke: 0.1rem #D5D5D5;
  text-stroke: 0.1rem #D5D5D5;
  line-height: 1;
  z-index: -1;
  font-family: "Noto Sans", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__School .front__SchoolEnglish {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .front__School .front__SchoolEnglish {
    font-size: 5rem;
    top: -1.3rem;
    left: -0.3rem;
    font-weight: bold;
  }
}
.front__School .front__SchoolTtl {
  text-align: center;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .front__School .front__SchoolTtl {
    margin-bottom: 3.3rem;
  }
}
.front__School .front__SchoolTtl span {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: bold;
  color: #1B224C;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .front__School .front__SchoolTtl span {
    font-size: 2rem;
  }
}
.front__School .front__SchoolTtl span:before {
  content: "";
  position: absolute;
  left: -7.2rem;
  bottom: 0;
  width: 5.3rem;
  height: 5.2rem;
  background: url("./../img/icon_underfv_before.svg");
}
@media screen and (max-width: 767px) {
  .front__School .front__SchoolTtl span:before {
    left: -4.2rem;
    bottom: -1rem;
    width: 3.5rem;
    height: 3.4rem;
    background-size: cover;
  }
}
.front__School .front__SchoolTtl span:after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -1.3rem;
  width: 6.2rem;
  height: 7.7rem;
  background: url("./../img/icon_underfv_news.svg");
}
@media screen and (max-width: 767px) {
  .front__School .front__SchoolTtl span:after {
    right: -5rem;
    bottom: -0.3rem;
    width: 4.1rem;
    height: 5.1rem;
    background-size: cover;
  }
}
.front__School .front__SchoolList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 90rem;
  margin: auto;
}
.front__School .front__SchoolList .front__SchoolItem {
  width: 16.6%;
  margin-bottom: 4rem;
  margin-right: 3%;
}
@media screen and (max-width: 767px) {
  .front__School .front__SchoolList .front__SchoolItem {
    width: calc(50% - 0.7rem);
    margin: 0 0 1.4rem;
  }
}
.front__School .front__SchoolList .front__SchoolItem:nth-child(5n) {
  margin-right: 0;
}
.front__School .front__SchoolList .front__SchoolItem figure {
  height: 8rem;
  overflow: hidden;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .front__School .front__SchoolList .front__SchoolItem figure {
    height: 6.5rem;
  }
}
.front__School .front__SchoolList .front__SchoolItem .front__SchoolSubttl {
  text-align: center;
  color: #fff;
  background: #1B224C;
  padding: 0.5rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.law {
  margin-bottom: 13.5rem;
}
@media screen and (max-width: 767px) {
  .law {
    margin-bottom: 5rem;
  }
}
.law .law__Txt {
  font-size: 1.6rem;
  color: #1B224C;
  text-align: center;
  line-height: 1.375em;
  margin-bottom: 1.8rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .law .law__Txt {
    font-size: 1.4rem;
    text-align: left;
  }
}
.law .law__Date {
  font-size: 1.6rem;
  color: #1B224C;
  text-align: right;
  line-height: 1.375em;
  margin-bottom: 1.8rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .law .law__Date {
    font-size: 1.4rem;
  }
}
.law .law__Table {
  width: 100%;
}
.law .law__Table .law__TableTr .law__TableTh {
  width: 15.8rem;
  padding: 1.4rem 0;
  font-size: 1.6rem;
  color: #1B224C;
  line-height: 1.375em;
  font-weight: 300;
  position: relative;
  border-top: 0.1rem solid #707070;
}
@media screen and (max-width: 767px) {
  .law .law__Table .law__TableTr .law__TableTh {
    text-align: left;
    width: 100%;
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    background: #707070;
    color: #fff;
  }
}
.law .law__Table .law__TableTr .law__TableTd {
  width: calc(100% - 15.8rem);
  padding: 1.4rem 0;
  font-size: 1.6rem;
  color: #1B224C;
  line-height: 1.375em;
  font-weight: 300;
  position: relative;
  border-top: 0.1rem solid #4DA9B8;
}
@media screen and (max-width: 767px) {
  .law .law__Table .law__TableTr .law__TableTd {
    text-align: left;
    width: 100%;
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 1.4rem;
    border: none;
  }
}
.law .law__Table .law__TableTr:last-child .law__TableTh {
  border-bottom: 0.1rem solid #707070;
}
@media screen and (max-width: 767px) {
  .law .law__Table .law__TableTr:last-child .law__TableTh {
    border: none;
  }
}
.law .law__Table .law__TableTr:last-child .law__TableTd {
  border-bottom: 0.1rem solid #4DA9B8;
}
@media screen and (max-width: 767px) {
  .law .law__Table .law__TableTr:last-child .law__TableTd {
    border: none;
  }
}

.privacy {
  margin-bottom: 13.5rem;
}
@media screen and (max-width: 767px) {
  .privacy {
    margin-bottom: 5rem;
  }
}
.privacy .privacy__Catchtxt {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.375em;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 767px) {
  .privacy .privacy__Catchtxt {
    font-size: 1.4rem;
    margin: 0 auto 2rem;
  }
}
.privacy .privacy__Ttl {
  font-size: 1.8rem;
  font-weight: 400;
  color: #1B224C;
  background: #F0F2F4;
  padding: 0.4rem 4.5rem;
  margin-bottom: 2.1rem;
}
@media screen and (max-width: 767px) {
  .privacy .privacy__Ttl {
    font-size: 1.6rem;
    padding: 0.4rem 2.5rem;
    margin-bottom: 1.5rem;
  }
}
.privacy .privacy__Txt {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.375em;
  margin: 0 auto 3rem;
  padding: 0 2.3rem;
}
@media screen and (max-width: 767px) {
  .privacy .privacy__Txt {
    padding: 0;
    font-size: 1.4rem;
  }
}
.privacy .privacy__Txt .tar {
  display: block;
  text-align: right;
}
.privacy .privacy__List {
  counter-reset: number 0;
  margin-bottom: 3rem;
}
.privacy .privacy__List .privacy__Item {
  width: calc(100% - 4rem);
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.625em;
  position: relative;
  padding-left: 2rem;
  margin-left: 4rem;
}
@media screen and (max-width: 767px) {
  .privacy .privacy__List .privacy__Item {
    padding-left: 2rem;
    margin-left: 1rem;
    font-size: 1.4rem;
  }
}
.privacy .privacy__List .privacy__Item:before {
  counter-increment: number 1;
  content: counter(number) ". ";
  position: absolute;
  left: 0;
}

.contact {
  margin-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-bottom: 5rem;
  }
}
.contact .contact__Inner {
  max-width: 70rem;
  margin: auto;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .contact .contact__Inner {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner {
    width: 90%;
  }
}
.contact .contact__Inner .contact__Txt {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.375em;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner .contact__Txt {
    font-size: 1.4rem;
    margin: 0 auto 2rem;
  }
}
.contact .contact__Inner .contact__Txt.-thanks {
  text-align: center;
  font-weight: 600;
  line-height: 1.81em;
}
.contact .contact__Inner .contact__Table {
  width: 100%;
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tableth {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tableth {
    font-size: 1.5rem;
  }
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tableth .require {
  font-size: 1.2rem;
  color: #00ACBA;
  border: 0.1rem solid #00ACBA;
  border-radius: 0.5rem;
  font-weight: 400;
  padding: 0.1rem 0.6rem;
  margin-right: 0.7rem;
  line-height: 1;
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  padding-bottom: 1.8rem;
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd.-pb5 {
  padding-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd.-pb5 {
    padding-bottom: 2rem;
  }
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd input[type=text] {
  width: 100%;
  padding: 2rem;
  border: 0.1rem solid #1B224C;
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd input[type=text] {
    padding: 1.5rem;
  }
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd .mwform-radio-field {
  display: block;
  margin-left: 0 !important;
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd input[type=radio] {
  display: none;
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding: 0.75rem 2rem 0.75rem 4rem;
  border-radius: 0.2rem;
  color: #1B224C;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd input[type=radio] + span {
    font-size: 1.4rem;
  }
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd input[type=radio] + span:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  content: "";
  margin-top: -1rem;
  border: 0.1rem solid #1B224C;
  background: #fff;
  border-radius: 3rem;
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd input[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.4rem;
  margin-top: -0.6rem;
  width: 1.4rem;
  height: 1.4rem;
  background: #1B224C;
  border-radius: 3rem;
}
.contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd textarea {
  width: 100%;
  padding: 2rem;
  border: 0.1rem solid #1B224C;
  min-height: 24rem;
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner .contact__Table .contact__Tabletr .contact__Tabletd textarea {
    padding: 1.5rem;
  }
}
.contact .contact__Inner .doui_txt {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1B224C;
  margin-bottom: 1.7rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner .doui_txt {
    font-size: 1.4rem;
  }
}
.contact .contact__Inner .doui_txt a {
  color: #00ACBA;
  text-decoration: underline;
}
.contact .contact__Inner .doui_box .inner {
  max-width: 62rem;
  margin: auto;
}
.contact .contact__Inner .doui_box h2 {
  text-align: center;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner .doui_box h2 {
    margin: 0 auto 30px;
  }
}
.contact .contact__Inner .doui_box h2 span {
  font-weight: bold;
  display: inline-block;
  padding-bottom: 15px;
  border-bottom: 1px solid #1B224C;
  font-size: 1.8rem;
  color: #1B224C;
}
.contact .contact__Inner .doui_box .doui_txt {
  font-size: 1.6rem;
  margin-bottom: 30px;
  line-height: 1.8em;
  color: #191919;
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner .doui_box .doui_txt {
    font-size: 1.4rem;
  }
}
.contact .contact__Inner .doui_box .doui_txt a {
  text-decoration: underline;
  color: #191919;
}
.contact .contact__Inner .doui_box .tac {
  text-align: center;
  position: relative;
  max-width: 350px;
  margin: auto;
}
.contact .contact__Inner .doui_box .horizontal-item {
  display: inline-block;
}
.contact .contact__Inner .doui_box input[type=checkbox] {
  display: none;
}
.contact .contact__Inner .doui_box input[type=checkbox] + span.mwform-checkbox-field-text {
  display: inline-block;
  position: relative;
  padding: 0.8rem 0 0.8rem 4rem;
  border-radius: 2px;
  color: #1B224C;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 5rem;
  cursor: pointer;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact .contact__Inner .doui_box input[type=checkbox] + span.mwform-checkbox-field-text {
    font-size: 1.4rem;
  }
}
.contact .contact__Inner .doui_box input[type=checkbox] + span.mwform-checkbox-field-text:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  content: "";
  margin-top: -1rem;
  border: 0.1rem solid #1B224C;
  background: #fff;
}
.contact .contact__Inner .doui_box input[type=checkbox]:checked + span.mwform-checkbox-field-text::after {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -0.8rem;
  left: 0.75rem;
  width: 0.6rem;
  height: 1.2rem;
  border-right: 0.3rem solid #1B224C;
  border-bottom: 0.3rem solid #1B224C;
  transform: rotate(45deg);
}
.contact .contact__Inner .doui_box .red {
  color: #c60808;
  font-size: 1.4rem;
  padding-left: 10px;
  position: absolute;
  top: 14px;
  right: 0px;
}
.contact .contact__Inner .submit__Btn {
  max-width: 19.4rem;
  width: 100%;
  margin: auto;
  background: #00ACBA;
  color: #fff;
  padding: 1.5rem;
  border-radius: 3rem;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
}

.mw_wp_form_confirm .doui_txt,
.mw_wp_form_confirm .doui_box {
  display: none;
}

.company {
  margin-bottom: 13.5rem;
}
@media screen and (max-width: 767px) {
  .company {
    margin-bottom: 5rem;
  }
}
.company .company__Catch {
  margin: 3.5rem auto 6rem;
}
@media screen and (max-width: 767px) {
  .company .company__Catch {
    margin: 5rem auto;
  }
}
.company .company__Catch .company__CatchTtl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .company .company__Catch .company__CatchTtl {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.company .company__Catch .company__CatchTxt {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1B224C;
  font-weight: 300;
  line-height: 1.68em;
}
@media screen and (max-width: 767px) {
  .company .company__Catch .company__CatchTxt {
    text-align: left;
    font-size: 1.4rem;
  }
}
.company .company__Mission {
  padding: 7rem 0;
  background: #D5D5D5;
}
@media screen and (max-width: 767px) {
  .company .company__Mission {
    padding: 5rem 0;
  }
}
.company .company__Mission .company__MissionTtl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .company .company__Mission .company__MissionTtl {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.company .company__Mission .company__MissionTtl.-mt {
  margin-top: 3rem;
}
.company .company__Mission .company__MissionTxt {
  font-size: 2.4rem;
  font-weight: 500;
  color: #1B224C;
  font-weight: 300;
  line-height: 1.68em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company .company__Mission .company__MissionTxt {
    font-size: 2.2rem;
  }
}
.company .company__TableWrap {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .company .company__TableWrap {
    margin-top: 5rem;
  }
}
.company .company__TableWrap .company__TableTtl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 6.2rem;
}
@media screen and (max-width: 767px) {
  .company .company__TableWrap .company__TableTtl {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.company .company__TableWrap .company__Table {
  width: 100%;
}
.company .company__TableWrap .company__Table .company__TableTr .company__TableTh {
  width: 15.8rem;
  padding: 2rem 0;
  font-size: 1.6rem;
  color: #1B224C;
  line-height: 1.875em;
  font-weight: 300;
  position: relative;
  border-top: 0.1rem solid #707070;
}
@media screen and (max-width: 767px) {
  .company .company__TableWrap .company__Table .company__TableTr .company__TableTh {
    text-align: left;
    width: 100%;
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    background: #707070;
    color: #fff;
  }
}
.company .company__TableWrap .company__Table .company__TableTr .company__TableTh.-vat {
  vertical-align: top;
}
.company .company__TableWrap .company__Table .company__TableTr .company__TableTd {
  width: calc(100% - 15.8rem);
  padding: 2rem 0;
  font-size: 1.6rem;
  color: #1B224C;
  line-height: 1.875em;
  font-weight: 300;
  position: relative;
  border-top: 0.1rem solid #4DA9B8;
}
@media screen and (max-width: 767px) {
  .company .company__TableWrap .company__Table .company__TableTr .company__TableTd {
    text-align: left;
    width: 100%;
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 1.4rem;
    border: none;
  }
}
.company .company__TableWrap .company__Table .company__TableTr .company__TableTd a {
  color: #00ACBA;
  text-decoration: underline;
}
.company .company__TableWrap .company__Table .company__TableTr:last-child .company__TableTh {
  border-bottom: 0.1rem solid #707070;
}
@media screen and (max-width: 767px) {
  .company .company__TableWrap .company__Table .company__TableTr:last-child .company__TableTh {
    border: none;
  }
}
.company .company__TableWrap .company__Table .company__TableTr:last-child .company__TableTd {
  border-bottom: 0.1rem solid #4DA9B8;
}
@media screen and (max-width: 767px) {
  .company .company__TableWrap .company__Table .company__TableTr:last-child .company__TableTd {
    border: none;
  }
}

.advertisingBnr {
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .advertisingBnr {
    margin-bottom: 5rem;
  }
}
.advertisingBnr .advertisingBnr__List {
  display: flex;
  justify-content: space-between;
}
.advertisingBnr .advertisingBnr__List .advertisingBnr__Item {
  width: 30%;
}
.advertisingBnr .advertisingBnr__List .advertisingBnr__Item .advertisingBnr__Item-Thumbnail {
  margin-bottom: 1.5rem;
}
.advertisingBnr .advertisingBnr__List .advertisingBnr__Item .advertisingBnr__Item-Ttl {
  text-align: center;
  font-size: 1.8rem;
  color: #00ACBA;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .advertisingBnr .advertisingBnr__List .advertisingBnr__Item .advertisingBnr__Item-Ttl {
    font-size: 1.4rem;
  }
}

.reason {
  margin-bottom: 13.5rem;
  background: #00ACBA;
  padding: 6rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .reason {
    margin-bottom: 5rem;
    padding: 5rem 0;
  }
}
.reason .reason__Ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .reason .reason__Ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.reason .reason__List {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .reason .reason__List {
    display: block;
  }
}
.reason .reason__List .reason__Item {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .reason .reason__List .reason__Item {
    width: 100%;
  }
}
.reason .reason__List .reason__Item .reason__Thumbnail {
  max-width: 12rem;
  margin: 0 auto 2rem;
}
.reason .reason__List .reason__Item .reason__Subttl {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 3.5rem;
  line-height: 1.38em;
  min-height: 7rem;
}
@media screen and (max-width: 767px) {
  .reason .reason__List .reason__Item .reason__Subttl {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    min-height: auto;
  }
}
.reason .reason__List .reason__Item .reason__Txt {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.375em;
}
@media screen and (max-width: 767px) {
  .reason .reason__List .reason__Item .reason__Txt {
    font-size: 1.4rem;
  }
}
.reason.-orange {
  background: #DC8766;
}
.reason .slick-dots {
  text-align: center;
}
.reason .slick-dots li {
  width: 1rem;
  height: 1rem;
}
.reason .slick-dots li button:before {
  width: 1rem;
  height: 1rem;
  border-radius: 0%;
  background-color: #fff;
  opacity: 1;
  font-size: 0;
  line-height: 0;
  border-radius: 5rem;
  border: 0.1rem solid #707070;
}
.reason .slick-dots li.slick-active button:before {
  background-color: #707070;
}

.service {
  margin: 11rem auto 15.7rem;
}
@media screen and (max-width: 767px) {
  .service {
    margin: 5rem auto;
  }
}
.service .service__Ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .service .service__Ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.service .service__FLex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .service .service__FLex {
    display: block;
    margin-bottom: 3rem;
  }
}
.service .service__FLex.-reverse {
  flex-direction: row-reverse;
}
.service .service__FLex:last-child {
  margin-bottom: 0;
}
.service .service__FLex .service__Thumbnail {
  width: 38.8%;
}
@media screen and (max-width: 767px) {
  .service .service__FLex .service__Thumbnail {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.service .service__FLex .service__Detail {
  padding-top: 2.6rem;
  width: 55.5%;
}
@media screen and (max-width: 767px) {
  .service .service__FLex .service__Detail {
    padding-top: 0;
    width: 100%;
  }
}
.service .service__FLex .service__Detail .service__Label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00ACBA;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .service .service__FLex .service__Detail .service__Label {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.service .service__FLex .service__Detail .service__Subttl {
  font-size: 2.6rem;
  font-weight: 600;
  color: #00ACBA;
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .service .service__FLex .service__Detail .service__Subttl {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.service .service__FLex .service__Detail .service__Txt {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.375em;
}
@media screen and (max-width: 767px) {
  .service .service__FLex .service__Detail .service__Txt {
    font-size: 1.4rem;
  }
}

.popularfeature {
  padding: 9rem 0 15rem;
  background: #F2F2F3;
}
@media screen and (max-width: 767px) {
  .popularfeature {
    padding: 5rem 0;
  }
}
.popularfeature .popularfeature__Ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .popularfeature .popularfeature__Ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.popularfeature .popularfeature__Ttl span {
  position: relative;
}
.popularfeature .popularfeature__Ttl span:before {
  content: "";
  position: absolute;
  left: -9.2rem;
  bottom: -3rem;
  width: 9rem;
  height: 9.1rem;
  background: url(./../img/icon_popular_feature.svg);
}
@media screen and (max-width: 767px) {
  .popularfeature .popularfeature__Ttl span:before {
    left: -6.2rem;
    bottom: 0rem;
    width: 5rem;
    height: 5.1rem;
    background-size: cover;
  }
}
.popularfeature .popularfeature__FLex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .popularfeature .popularfeature__FLex {
    display: block;
    margin-bottom: 3rem;
  }
}
.popularfeature .popularfeature__FLex.-reverse {
  flex-direction: row-reverse;
}
.popularfeature .popularfeature__FLex:last-child {
  margin-bottom: 0;
}
.popularfeature .popularfeature__FLex .popularfeature__Thumbnail {
  width: 38.8%;
}
@media screen and (max-width: 767px) {
  .popularfeature .popularfeature__FLex .popularfeature__Thumbnail {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.popularfeature .popularfeature__FLex .popularfeature__Detail {
  padding-top: 2.6rem;
  width: 55.5%;
}
@media screen and (max-width: 767px) {
  .popularfeature .popularfeature__FLex .popularfeature__Detail {
    padding-top: 0;
    width: 100%;
  }
}
.popularfeature .popularfeature__FLex .popularfeature__Detail .popularfeature__Label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00ACBA;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .popularfeature .popularfeature__FLex .popularfeature__Detail .popularfeature__Label {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.popularfeature .popularfeature__FLex .popularfeature__Detail .popularfeature__Subttl {
  font-size: 2.6rem;
  font-weight: 600;
  color: #00ACBA;
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .popularfeature .popularfeature__FLex .popularfeature__Detail .popularfeature__Subttl {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.popularfeature .popularfeature__FLex .popularfeature__Detail .popularfeature__Txt {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.375em;
}
@media screen and (max-width: 767px) {
  .popularfeature .popularfeature__FLex .popularfeature__Detail .popularfeature__Txt {
    font-size: 1.4rem;
  }
}

.price {
  padding: 8rem 0 9rem;
  background: #D5D5D5;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 5rem 0;
  }
}
.price .price__Ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .price .price__Ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.price .price__List {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .price .price__List {
    display: block;
    margin-bottom: 2rem;
  }
}
.price .price__List .price__Item {
  padding: 3rem 7rem 3rem 13rem;
  line-height: 1;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  background: #00ACBA;
  border: 0.1rem solid #1B224C;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price .price__List .price__Item {
    padding: 1.5rem;
    font-size: 1.6rem;
    display: block;
    width: 90%;
    margin-left: auto;
  }
}
.price .price__List .price__Item.-service01:before {
  position: absolute;
  left: -5rem;
  top: calc(50% - 7.5rem);
  content: "";
  width: 15rem;
  height: 15rem;
  background: url("./../img/icon_price_list01.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .price .price__List .price__Item.-service01:before {
    width: 8rem;
    height: 8rem;
    top: calc(50% - 4rem);
    left: -10%;
  }
}
.price .price__List .price__Item.-service02 {
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .price .price__List .price__Item.-service02 {
    margin-left: 10%;
  }
}
.price .price__List .price__Item.-service02:before {
  position: absolute;
  left: -5rem;
  top: calc(50% - 7.5rem);
  content: "";
  width: 15rem;
  height: 15rem;
  background: url("./../img/icon_price_list02.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .price .price__List .price__Item.-service02:before {
    width: 8rem;
    height: 8rem;
    top: calc(50% - 4rem);
    left: -10%;
  }
}
.price .price__List .price__Item.-add1:before {
  position: absolute;
  left: -5rem;
  top: calc(50% - 7.5rem);
  content: "";
  width: 15rem;
  height: 15rem;
  background: url("./../img/icon_add_price_list01.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .price .price__List .price__Item.-add1:before {
    width: 8rem;
    height: 8rem;
    top: calc(50% - 4rem);
    left: -10%;
  }
}
.price .price__List .price__Item.-add2 {
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .price .price__List .price__Item.-add2 {
    margin-left: 10%;
  }
}
.price .price__List .price__Item.-add2:before {
  position: absolute;
  left: -5rem;
  top: calc(50% - 7.5rem);
  content: "";
  width: 15rem;
  height: 15rem;
  background: url("./../img/icon_add_price_list02.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .price .price__List .price__Item.-add2:before {
    width: 8rem;
    height: 8rem;
    top: calc(50% - 4rem);
    left: -10%;
  }
}
.price .price__List .price__Plus {
  margin: 0 3rem;
  font-size: 5.2rem;
  font-weight: 100;
  color: #1B224C;
}
@media screen and (max-width: 767px) {
  .price .price__List .price__Plus {
    margin: 0 auto;
    text-align: center;
    font-size: 4.2rem;
    display: block;
  }
}
.price .price__Txt {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.375em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price .price__Txt {
    font-size: 1.4rem;
  }
}

.pricetable {
  padding: 8rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .pricetable {
    padding: 5rem 0;
  }
}
.pricetable .pricetable__Ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .pricetable .pricetable__Ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.pricetable .pricetable__Flex {
  display: flex;
  justify-content: space-between;
  max-width: 67rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .pricetable .pricetable__Flex {
    display: block;
  }
}
.pricetable .pricetable__Flex .pricetable__List {
  width: 32%;
  border: 0.1rem solid #1B224C;
  padding-bottom: 11.3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pricetable .pricetable__Flex .pricetable__List {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Subttl {
  background: #1B224C;
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 1.7rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Subttl {
    font-size: 1.8rem;
    padding: 1.3rem 0;
  }
}
.pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Money {
  margin: 3rem auto;
  color: #1B224C;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Money {
    margin: 1.5rem auto;
  }
}
.pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Money span {
  font-size: 2.6rem;
  font-weight: bold;
  display: block;
}
.pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Anchor {
  max-width: 18rem;
  width: 100%;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #1B224C;
  border: 0.1rem solid #1B224C;
  border-radius: 3rem;
  display: block;
  padding: 1.2rem 0;
}
@media screen and (max-width: 767px) {
  .pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Anchor {
    font-size: 1.4rem;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
  }
}
.pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Support {
  max-width: 15rem;
  margin: auto;
}
.pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Support li {
  padding-left: 2.5rem;
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  position: relative;
  margin-bottom: 1rem;
}
.pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Support li:before {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -0.8rem;
  left: 0.75rem;
  width: 0.6rem;
  height: 1rem;
  border-right: 0.3rem solid #1B224C;
  border-bottom: 0.3rem solid #1B224C;
  transform: rotate(45deg);
}
.pricetable .pricetable__Flex .pricetable__List .pricetable__Item .pricetable__Support li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .pricetable .pricetable__Flex .pricetable__List.-recommend {
    border-top: none;
  }
}
.pricetable .pricetable__Flex .pricetable__List.-recommend .pricetable__Subttl {
  background: #00ACBA;
  width: calc(100% + 0.2rem);
  margin-left: -0.1rem;
}
.pricetable .pricetable__Flex .pricetable__List.-recommend .pricetable__Subttl span {
  background: #00ACBA;
  font-size: 1.6rem;
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .pricetable .pricetable__Flex .pricetable__List.-recommend .pricetable__Subttl span {
    position: static;
    display: block;
    padding-top: 0;
  }
}
.pricetable .pricetable__Flex .pricetable__List .pricetable__Icon {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
}
.pricetable .pricetable__Flex .pricetable__List .pricetable__Icon img {
  height: 7rem;
}
.pricetable .pricetable__BtnWrap {
  display: flex;
  justify-content: space-between;
  max-width: 67rem;
  margin: 1rem auto 0;
}
@media screen and (max-width: 767px) {
  .pricetable .pricetable__BtnWrap {
    display: none;
  }
}
.pricetable .pricetable__BtnWrap .pricetable__Btn {
  border-radius: 1rem;
  width: 32%;
  background: #1B224C;
  display: block;
  padding: 3rem 1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.66em;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .pricetable .pricetable__BtnWrap .pricetable__Btn {
    font-size: 1.6rem;
  }
}
.pricetable .pricetable__BtnWrap .pricetable__Btn.-recommend {
  background: #00ACBA;
}
.pricetable .pricetable__Btn.vsp {
  border-radius: 5rem;
  max-width: 28rem;
  margin: 0 auto 3rem;
  width: 100%;
  background: #1B224C;
  padding: 1.5rem 1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.66em;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .pricetable .pricetable__Btn.vsp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pricetable .pricetable__Btn.vsp {
    display: block;
  }
}
.pricetable .pricetable__Btn.vsp.-recommend {
  background: #00ACBA;
}

.advertising__Contact {
  margin: 10rem auto;
}
@media screen and (max-width: 767px) {
  .advertising__Contact {
    margin: 5rem auto;
  }
}
.advertising__Contact .advertising__Contact-Ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .advertising__Contact .advertising__Contact-Ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.advertising__Contact .advertising__Contact-Txt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1B224C;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .advertising__Contact .advertising__Contact-Txt {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}
.advertising__Contact .advertising__Contact-Btn {
  max-width: 27rem;
  display: block;
  background: #00ACBA;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 5rem;
  padding: 2.5rem;
  text-align: center;
  margin: auto;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .advertising__Contact .advertising__Contact-Btn {
    padding: 2rem;
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}

.news {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .news {
    margin-bottom: 5rem;
  }
}
.news .news__List .news__Item .news__Anchor {
  display: flex;
}
@media screen and (max-width: 767px) {
  .news .news__List .news__Item .news__Anchor {
    display: block;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 0.1rem solid #4DA9B8;
  }
}
.news .news__List .news__Item .news__Anchor .news__Date {
  width: 15.8rem;
  padding: 1.4rem 0;
  font-size: 1.6rem;
  color: #1B224C;
  line-height: 1.375em;
  font-weight: 300;
  position: relative;
  border-top: 0.1rem solid #707070;
}
@media screen and (max-width: 767px) {
  .news .news__List .news__Item .news__Anchor .news__Date {
    border-top: none;
    width: 100%;
    font-size: 1.4rem;
    padding: 0 0 0.5rem;
    display: block;
  }
}
.news .news__List .news__Item .news__Anchor .news__Ttl {
  width: calc(100% - 15.8rem);
  padding: 1.4rem 0;
  font-size: 1.6rem;
  color: #1B224C;
  line-height: 1.375em;
  font-weight: 400;
  position: relative;
  border-top: 0.1rem solid #4DA9B8;
}
@media screen and (max-width: 767px) {
  .news .news__List .news__Item .news__Anchor .news__Ttl {
    border-top: none;
    width: 100%;
    padding: 0;
  }
}
.news .news__List .news__Item:last-child .news__Anchor .news__Date {
  border-bottom: 0.1rem solid #707070;
}
@media screen and (max-width: 767px) {
  .news .news__List .news__Item:last-child .news__Anchor .news__Date {
    border-bottom: none;
  }
}
.news .news__List .news__Item:last-child .news__Anchor .news__Ttl {
  border-bottom: 0.1rem solid #4DA9B8;
}
@media screen and (max-width: 767px) {
  .news .news__List .news__Item:last-child .news__Anchor .news__Ttl {
    border-bottom: none;
  }
}

.popular {
  background: #EA825E;
  padding: 5rem 0 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .popular {
    padding: 3.6rem 0;
    overflow: hidden;
  }
}
.popular .popular__Ttl {
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .popular .popular__Ttl {
    position: relative;
    z-index: 1;
  }
}
.popular .popular__Ttl span {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .popular .popular__Ttl span {
    font-size: 2rem;
  }
}
.popular .popular__Ttl span:before {
  content: "";
  position: absolute;
  left: -7.2rem;
  top: 0;
  width: 5.3rem;
  height: 5.2rem;
  background: url("./../img/icon_underfv_before.svg");
}
@media screen and (max-width: 767px) {
  .popular .popular__Ttl span:before {
    left: -4.2rem;
    bottom: -1rem;
    width: 3.5rem;
    height: 3.4rem;
    background: url(./../img/icon_underfv_before.svg);
    background-size: cover;
  }
}
.popular .popular__Ttl span:after {
  content: "";
  position: absolute;
  left: -18rem;
  bottom: -3rem;
  width: 6.3rem;
  height: 9rem;
  background: url("./../img/icon_underfv_popular.svg");
}
@media screen and (max-width: 767px) {
  .popular .popular__Ttl span:after {
    left: auto;
    right: -4rem;
    bottom: -0.3rem;
    width: 3.5rem;
    height: 5rem;
    background-size: cover;
  }
}
.popular .popular__English {
  position: absolute;
  right: calc(50% - 52rem);
  top: 1rem;
  font-size: 10rem;
  font-weight: bold;
  color: #EA825E;
  -webkit-text-stroke: 0.1rem #fff;
  text-stroke: 0.1rem #fff;
  line-height: 1;
  font-family: "Noto Sans", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .popular .popular__English {
    left: -0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .popular .popular__English {
    font-size: 5rem;
    top: -1.3rem;
    left: -0.3rem;
  }
}
.popular .popular__List {
  margin-top: 5rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .popular .popular__List {
    margin-top: 3rem;
    display: block;
  }
}
.popular .popular__List .popular__Item {
  width: 31.8%;
  background: #fff;
  padding: 3.3rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .popular .popular__List .popular__Item {
    width: 100%;
    margin-bottom: 2rem;
    padding: 3rem 2rem;
  }
}
.popular .popular__List .popular__Item:nth-child(2) {
  margin: 0 2.3%;
}
@media screen and (max-width: 767px) {
  .popular .popular__List .popular__Item:nth-child(2) {
    margin: 0 auto 2rem;
  }
}
@media screen and (max-width: 767px) {
  .popular .popular__List .popular__Item:last-child {
    margin-bottom: 0;
  }
}
.popular .popular__List .popular__Item .popular__Anchor {
  display: block;
}
.popular .popular__List .popular__Item .popular__Anchor .popular__Logo {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1.9rem;
  padding-bottom: 1.9rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__Logo {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__Logo {
    font-size: 1.6rem;
  }
}
.popular .popular__List .popular__Item .popular__Anchor .popular__Logo:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 3.2rem;
  height: 0.4rem;
  background: url("./../img/icon_popular_mark.svg");
}
.popular .popular__List .popular__Item .popular__Anchor .popular__Schoolttl {
  color: #1B224C;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1.9rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__Schoolttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__Schoolttl {
    font-size: 1.6rem;
  }
}
.popular .popular__List .popular__Item .popular__Anchor .popular__Thumbnail {
  position: relative;
  margin-bottom: 1.5rem;
}
.popular .popular__List .popular__Item .popular__Anchor .popular__Thumbnail:after {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: calc(100% - 0.5rem);
  height: 100%;
  content: "";
  background: #1B224C;
}
.popular .popular__List .popular__Item .popular__Anchor .popular__Thumbnail img {
  width: calc(100% - 0.5rem);
  position: relative;
  z-index: 10;
}
.popular .popular__List .popular__Item .popular__Anchor .popular__Schoolcategory {
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
  text-align: center;
  background: #1B224C;
  color: #fff;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__Schoolcategory {
    font-size: 1.4rem;
  }
}
.popular .popular__List .popular__Item .popular__Anchor .popular__Schoolarea {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.popular .popular__List .popular__Item .popular__Anchor .popular__Schoolarea .popular__Schoolpref {
  width: 36.1%;
  background: #F8F8F8;
  color: #1B224C;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.6rem 0.7rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__Schoolarea .popular__Schoolpref {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__Schoolarea .popular__Schoolpref {
    font-size: 1.4rem;
  }
}
.popular .popular__List .popular__Item .popular__Anchor .popular__Schoolarea .popular__Schoolcity {
  width: 61%;
  background: #F8F8F8;
  color: #1B224C;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.6rem 0.7rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__Schoolarea .popular__Schoolcity {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__Schoolarea .popular__Schoolcity {
    font-size: 1.4rem;
  }
}
.popular .popular__List .popular__Item .popular__Anchor .popular__SchoolComment {
  background: #F8F8F8;
  color: #1B224C;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.6rem 0.7rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__SchoolComment {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .popular .popular__List .popular__Item .popular__Anchor .popular__SchoolComment {
    font-size: 1.4rem;
  }
}

.school .school__List .school__Item {
  width: calc(100% - 1rem);
  border: 0.2rem solid #1B224C;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 5rem;
  background: #fff;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .school .school__List .school__Item {
    padding: 2rem;
    display: block;
  }
}
.school .school__List .school__Item:hover {
  opacity: 1;
}
.school .school__List .school__Item:after {
  position: absolute;
  right: -1rem;
  top: 1rem;
  width: 100%;
  height: 100%;
  content: "";
  background: #1B224C;
  z-index: -1;
}
.school .school__List .school__Item .school__Thumbnail {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .school .school__List .school__Item .school__Thumbnail {
    width: 100%;
  }
}
.school .school__List .school__Item .school__Detail {
  width: 52.1%;
}
@media screen and (max-width: 767px) {
  .school .school__List .school__Item .school__Detail {
    width: 100%;
  }
}
.school .school__List .school__Item .school__Detail .school__Category {
  max-width: 20rem;
  width: 100%;
  display: block;
  text-align: center;
  background: #1B224C;
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .school .school__List .school__Item .school__Detail .school__Category {
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
    display: block;
    max-width: none;
  }
}
.school .school__List .school__Item .school__Detail .school__Logo {
  max-width: 15rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .school .school__List .school__Item .school__Detail .school__Logo {
    max-width: none;
    text-align: center;
  }
}
.school .school__List .school__Item .school__Detail .school__Name {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1.9rem;
  padding-bottom: 1.9rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .school .school__List .school__Item .school__Detail .school__Name {
    font-size: 2rem;
  }
}
.school .school__List .school__Item .school__Detail .school__Name:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 3.2rem;
  height: 0.4rem;
  background: url("./../img/icon_popular_mark.svg");
}
.school .school__List .school__Item .school__Detail .school__Area {
  display: flex;
  align-items: center;
}
.school .school__List .school__Item .school__Detail .school__Area li {
  background: #F8F8F8;
  color: #1B224C;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.6rem 0.7rem;
  margin-right: 1.2rem;
}
@media screen and (max-width: 767px) {
  .school .school__List .school__Item .school__Detail .school__Area li {
    font-size: 1.4rem;
  }
}
.school .pager {
  margin-top: 17rem;
}
@media screen and (max-width: 767px) {
  .school .pager {
    margin-top: 3rem;
  }
}
.school .notfound {
  font-size: 2.4rem;
  color: #1B224C;
}

.schoolDetail {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail {
    margin-bottom: 5rem;
    margin-top: 5rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Ttltop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Ttltop .schoolDetail__Ttltopcategory {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  background: #1B224C;
  padding: 1rem 0;
  width: 15rem;
  text-align: center;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Ttltop .schoolDetail__Area {
  display: flex;
  align-items: center;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Ttltop .schoolDetail__Area li {
  background: #F8F8F8;
  color: #1B224C;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.6rem 0.7rem;
  margin-left: 1.2rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__Ttltop .schoolDetail__Area li {
    font-size: 1.4rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Ttl {
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__Ttl {
    font-size: 2rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Slidewrap {
  margin-bottom: 1rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Slidewrap .slick-dots {
  text-align: right;
  bottom: 2rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Slidewrap .slick-dots li {
  width: 1rem;
  height: 1rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Slidewrap .slick-dots li button:before {
  width: 1rem;
  height: 1rem;
  border-radius: 0%;
  background-color: #fff;
  opacity: 1;
  font-size: 0;
  line-height: 0;
  border-radius: 5rem;
  border: 0.1rem solid #707070;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Slidewrap .slick-dots li.slick-active button:before {
  background-color: #707070;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Comment {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Sns {
  display: flex;
  justify-content: flex-end;
  height: 2rem;
  margin-bottom: 1rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Sns .icon__twitter {
  margin-left: 0.4rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Cont {
  margin: 9rem auto 11rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__Cont {
    margin: 5rem auto;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Cont h3 {
  font-size: 1.8rem;
  color: #00ACBA;
  font-weight: 500;
  margin-bottom: 3.5rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Cont .wp-caption {
  text-align: center;
  margin: 3.3rem auto;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Cont .wp-caption img {
  margin-bottom: 1rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Cont p {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.375em;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__Cont p {
    font-size: 1.4rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__profile {
    margin-bottom: 5rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__profile .schoolDetail__profileThumbnail {
  width: 16.3rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__profile .schoolDetail__profileThumbnail {
    width: 30%;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__profile .schoolDetail__profileDetail {
  width: calc(100% - 21.3rem);
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__profile .schoolDetail__profileDetail {
    width: 65%;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__profile .schoolDetail__profileDetail h3 {
  font-size: 1.8rem;
  color: #1B224C;
  font-weight: bold;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 0.1rem solid #707070;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__profile .schoolDetail__profileDetail h3 {
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__profile .schoolDetail__profileDetail p {
  font-size: 1.6rem;
  color: #1B224C;
  font-weight: 300;
  line-height: 1.375em;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__profile .schoolDetail__profileDetail p {
    font-size: 1.4rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__base {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__base {
    margin-bottom: 5rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basettl {
  font-size: 1.8rem;
  color: #00ACBA;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable {
  width: 100%;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable .schoolDetail__basetr .schoolDetail__baseth {
  text-align: right;
  width: 12.4rem;
  padding: 1.1rem 1.5rem;
  font-size: 1.8rem;
  color: #1B224C;
  line-height: 1.375em;
  font-weight: 300;
  position: relative;
  border-top: 0.1rem solid #707070;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable .schoolDetail__basetr .schoolDetail__baseth {
    text-align: left;
    width: 100%;
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    background: #707070;
    color: #fff;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable .schoolDetail__basetr .schoolDetail__basetd {
  width: calc(100% - 12.4rem);
  padding: 1.1rem 0 1.1rem 2.3rem;
  font-size: 1.8rem;
  color: #1B224C;
  line-height: 1.375em;
  font-weight: 400;
  position: relative;
  border-top: 0.1rem solid #4DA9B8;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable .schoolDetail__basetr .schoolDetail__basetd {
    text-align: left;
    width: 100%;
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 1.4rem;
    border: none;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable .schoolDetail__basetr .schoolDetail__basetd a {
  font-size: 1.8rem;
  color: #1B224C;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable .schoolDetail__basetr .schoolDetail__basetd a {
    font-size: 1.4rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable .schoolDetail__basetr:last-child .schoolDetail__baseth {
  border-bottom: 0.1rem solid #707070;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable .schoolDetail__basetr:last-child .schoolDetail__baseth {
    border-bottom: none;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable .schoolDetail__basetr:last-child .schoolDetail__basetd {
  border-bottom: 0.1rem solid #4DA9B8;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__base .schoolDetail__basetable .schoolDetail__basetr:last-child .schoolDetail__basetd {
    border-bottom: none;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__access {
  margin-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__access {
    margin-bottom: 5rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__access.-free {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__access.-free {
    margin-bottom: 5rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__googlemap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 3rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__googlemap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__accessflex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__accessflex {
    display: block;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__accessflex .schoolDetail__accessDl {
  width: calc(100% - 21rem);
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__accessflex .schoolDetail__accessDl {
    width: 100%;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__accessflex .schoolDetail__accessDl .schoolDetail__accessDt {
  font-size: 1.8rem;
  color: #00ACBA;
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__accessflex .schoolDetail__accessDl .schoolDetail__accessDd {
  font-size: 1.8rem;
  color: #1B224C;
  font-weight: 400;
  line-height: 1.72em;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__accessflex .schoolDetail__accessDl .schoolDetail__accessDd {
    font-size: 1.4rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__accessflex .schoolDetail__accessBtn {
  width: 20rem;
  background: #1B224C;
  color: #fff;
  padding: 1rem;
  border-radius: 5rem;
  padding: 1.4rem;
  text-align: center;
  font-size: 1.6rem;
  padding-right: 3rem;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__accessflex .schoolDetail__accessBtn {
    width: 100%;
    max-width: 20rem;
    margin: 2rem auto;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__access .schoolDetail__accessflex .schoolDetail__accessBtn:before {
  position: absolute;
  right: 3rem;
  width: 1rem;
  height: 1rem;
  top: calc(50% - 0.5rem);
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  content: "";
  transform: rotate(45deg);
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Freecontent .wp-caption {
  max-width: 100%;
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Freecontent img {
  max-width: 100%;
  display: block;
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__Freecontent img {
    margin-top: 5rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Freecontent .wp-video {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__Freecontent .wp-video {
    margin-top: 5rem;
  }
}
.schoolDetail .schoolDetail__Wrap .schoolDetail__Freecontent .wp-caption-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1B224C;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__Wrap .schoolDetail__Freecontent .wp-caption-text {
    font-size: 1.4rem;
  }
}
.schoolDetail .schoolDetail__upsell {
  border: 0.1rem solid #707070;
  display: flex;
  align-items: center;
  padding: 3.4rem 5.3rem 3.4rem 2.7rem;
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__upsell {
    display: block;
    padding: 2rem;
    margin-bottom: 5rem;
  }
}
.schoolDetail .schoolDetail__upsell .schoolDetail__upsellDl .schoolDetail__upsellDt {
  font-size: 1.8rem;
  color: #1B224C;
  line-height: 1.3em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__upsell .schoolDetail__upsellDl .schoolDetail__upsellDt {
    margin-bottom: 2rem;
  }
}
.schoolDetail .schoolDetail__upsell .schoolDetail__upsellDl .schoolDetail__upsellDd {
  font-size: 1.8rem;
  color: #1B224C;
  line-height: 1.3em;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__upsell .schoolDetail__upsellDl .schoolDetail__upsellDd {
    font-size: 1.4rem;
  }
}
.schoolDetail .schoolDetail__upsell .schoolDetail__upsellBtn {
  width: 20rem;
  background: #1B224C;
  color: #fff;
  padding: 1rem;
  border-radius: 5rem;
  padding: 1.4rem;
  text-align: center;
  font-size: 1.6rem;
  padding-right: 3rem;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .schoolDetail .schoolDetail__upsell .schoolDetail__upsellBtn {
    width: 100%;
    max-width: 20rem;
    margin: 2rem auto 0;
  }
}
.schoolDetail .schoolDetail__upsell .schoolDetail__upsellBtn:before {
  position: absolute;
  right: 3rem;
  width: 1rem;
  height: 1rem;
  top: calc(50% - 0.5rem);
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  content: "";
  transform: rotate(45deg);
}

.column .column__List .column__Item {
  width: calc(100% - 1rem);
  border: 0.2rem solid #1B224C;
  margin-bottom: 5rem;
  background: #fff;
  position: relative;
}
.column .column__List .column__Item:after {
  position: absolute;
  right: -1rem;
  top: 1rem;
  width: 100%;
  height: 100%;
  content: "";
  background: #1B224C;
  z-index: -1;
}
.column .column__List .column__Item .column__Anchor {
  display: block;
  padding: 4rem 3rem 3rem;
}
@media screen and (max-width: 767px) {
  .column .column__List .column__Item .column__Anchor {
    padding: 2rem;
  }
}
.column .column__List .column__Item .column__Anchor .column__Ttltop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .column .column__List .column__Item .column__Anchor .column__Ttltop {
    margin-bottom: 1.5rem;
  }
}
.column .column__List .column__Item .column__Anchor .column__Ttltop .column__Ttltopcategory {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  background: #1B224C;
  padding: 1rem 0;
  width: 15rem;
  text-align: center;
}
.column .column__List .column__Item .column__Anchor .column__Ttltop .column__Ttltopdate {
  font-size: 1.2rem;
  font-weight: 400;
  color: #1B224C;
}
.column .column__List .column__Item .column__Anchor .column__Ttl {
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .column .column__List .column__Item .column__Anchor .column__Ttl {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.column .column__List .column__Item .column__Anchor .column__Thumbnail {
  width: 100%;
  margin-bottom: 1.7rem;
}
.column .column__List .column__Item .column__Anchor .column__Thumbnail img:hover {
  opacity: 1;
}
.column .column__List .column__Item .column__Anchor .column__Cont h3 {
  font-size: 1.8rem;
  color: #00ACBA;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.column .column__List .column__Item .column__Anchor .column__Cont p {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.375em;
}
@media screen and (max-width: 767px) {
  .column .column__List .column__Item .column__Anchor .column__Cont p {
    font-size: 1.4rem;
  }
}
.column .column__List .column__Item .column__Anchor:hover .column__Thumbnail img:hover {
  opacity: 1;
}
.column .column__List .column__Item .column__Anchor:hover .column__Thumbnail:hover {
  opacity: 1;
}
.column .pager {
  margin-top: 17rem;
}
@media screen and (max-width: 767px) {
  .column .pager {
    margin-top: 3rem;
  }
}

.columnDetail {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .columnDetail {
    margin-bottom: 5rem;
  }
}
.columnDetail .columnDetail__Wrap {
  padding: 4rem 3rem 3rem;
}
@media screen and (max-width: 767px) {
  .columnDetail .columnDetail__Wrap {
    padding: 0;
  }
}
.columnDetail .columnDetail__Wrap .columnDetail__Ttltop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.columnDetail .columnDetail__Wrap .columnDetail__Ttltop .columnDetail__Ttltopcategory {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  background: #1B224C;
  padding: 1rem 0;
  width: 15rem;
  text-align: center;
}
.columnDetail .columnDetail__Wrap .columnDetail__Ttltop .columnDetail__Ttltopdate {
  font-size: 1.2rem;
  font-weight: 400;
  color: #1B224C;
}
.columnDetail .columnDetail__Wrap .columnDetail__Ttl {
  font-size: 3.2rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .columnDetail .columnDetail__Wrap .columnDetail__Ttl {
    font-size: 2rem;
  }
}
.columnDetail .columnDetail__Wrap .columnDetail__Thumbnail {
  width: 100%;
  margin-bottom: 1.7rem;
}
.columnDetail .columnDetail__Wrap .columnDetail__Comment {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1B224C;
  margin-bottom: 1rem;
}
.columnDetail .columnDetail__Wrap .columnDetail__Sns {
  display: flex;
  justify-content: flex-end;
  height: 2rem;
  margin-bottom: 1rem;
}
.columnDetail .columnDetail__Wrap .columnDetail__Sns .icon__twitter {
  margin-left: 0.4rem;
}
.columnDetail .columnDetail__Wrap .columnDetail__Cont h3 {
  font-size: 1.8rem;
  color: #00ACBA;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.columnDetail .columnDetail__Wrap .columnDetail__Cont .wp-caption {
  text-align: center;
  margin: 3.3rem auto;
}
.columnDetail .columnDetail__Wrap .columnDetail__Cont .wp-caption img {
  margin-bottom: 1rem;
}
.columnDetail .columnDetail__Wrap .columnDetail__Cont p {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1B224C;
  line-height: 1.375em;
}
@media screen and (max-width: 767px) {
  .columnDetail .columnDetail__Wrap .columnDetail__Cont p {
    font-size: 1.4rem;
  }
}

.recommendpost .recommendpost__ColumnTtl {
  font-size: 1.6rem;
  color: #1B224C;
  font-weight: bold;
  border-bottom: 0.1rem solid #1B224C;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}
.recommendpost .recommendpost__ColumnList {
  display: flex;
}
.recommendpost .recommendpost__ColumnList .recommendpost__ColumnItem {
  width: 28.8%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .recommendpost .recommendpost__ColumnList .recommendpost__ColumnItem {
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .recommendpost .recommendpost__ColumnList .recommendpost__ColumnItem {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.recommendpost .recommendpost__ColumnList .recommendpost__ColumnItem:nth-child(3n+2) {
  margin: 0 6.8%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .recommendpost .recommendpost__ColumnList .recommendpost__ColumnItem:nth-child(3n+2) {
    margin: 0 auto 3rem;
  }
}
@media screen and (max-width: 767px) {
  .recommendpost .recommendpost__ColumnList .recommendpost__ColumnItem:nth-child(3n+2) {
    margin: 0 auto 3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .recommendpost .recommendpost__ColumnList .recommendpost__ColumnItem:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .recommendpost .recommendpost__ColumnList .recommendpost__ColumnItem:last-child {
    margin-bottom: 0;
  }
}
.recommendpost .recommendpost__ColumnAnchor {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.recommendpost .recommendpost__ColumnAnchor .recommendpost__ColumnFl {
  min-width: 10rem;
  width: 38.2%;
  position: relative;
}
.recommendpost .recommendpost__ColumnAnchor .recommendpost__ColumnFl .recommendpost__ColumnThumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 9rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .recommendpost .recommendpost__ColumnAnchor .recommendpost__ColumnFl .recommendpost__ColumnThumbnail {
    padding-bottom: 18rem;
  }
}
.recommendpost .recommendpost__ColumnAnchor .recommendpost__ColumnFl .recommendpost__ColumnThumbnail img {
  width: 150%;
  max-width: none;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.recommendpost .recommendpost__ColumnAnchor .recommendpost__ColumnFl .recommendpost__ColumnSubttl {
  font-size: 1.2rem;
  background: #1B224C;
  padding: 0.1rem;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.recommendpost .recommendpost__ColumnAnchor .recommendpost__ColumnFr {
  width: 54%;
  font-size: 1.6rem;
  color: #1B224C;
  font-weight: 300;
  line-height: 1.375em;
}/*# sourceMappingURL=style.css.map */