@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&family=Shippori+Mincho+B1:wght@400;500;600&display=swap");
@media (max-width: 768px) {
  .disp_pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .disp_pc {
    display: block;
  }
}

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

html, body {
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.07em;
}
html p, body p {
  font-weight: 500;
}
@media (max-width: 768px) {
  html p, body p {
    font-size: 4vw;
    line-height: 1.65;
  }
}
@media (min-width: 769px) {
  html p, body p {
    font-size: 18px;
    line-height: 1.85;
  }
}
@media (max-width: 768px) {
  html p.small, body p.small {
    font-size: 2.6666666667vw;
    line-height: 1.5;
  }
}
@media (min-width: 769px) {
  html p.small, body p.small {
    font-size: 12px;
    line-height: 1.5;
  }
}
html .sans, body .sans {
  font-family: "Noto Sans JP", sans-serif;
}
html .colored, body .colored {
  color: #a40001;
}
html .inner, body .inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  html img, body img {
    width: 100%;
    height: auto;
  }
}

.container {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
.container .contents a {
  color: #fff;
  text-decoration: underline;
}
.container .contents a:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media (max-width: 768px) {
  .container .contents section .inner {
    margin-left: 5.3333333333vw;
    margin-right: 5.3333333333vw;
    padding: 13.3333333333vw 0;
  }
}
@media (min-width: 769px) {
  .container .contents section .inner {
    padding: 70px 0;
  }
}
.container .contents section .inner h2 {
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .container .contents section .inner h2 {
    font-size: 5.6vw;
    line-height: 1;
    margin-bottom: 12vw;
  }
}
@media (min-width: 769px) {
  .container .contents section .inner h2 {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 60px;
  }
}

header {
  position: relative;
  z-index: 5;
}
header .inner {
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×に*/
}
@media (max-width: 768px) {
  header .inner {
    width: 100%;
  }
}
@media (min-width: 769px) {
  header .inner {
    padding: 28px 0 20px 0;
  }
}
header .inner .logo {
  display: block;
}
@media (max-width: 768px) {
  header .inner .logo {
    width: 45.3333333333vw;
    margin: 0 auto;
    padding: 2vw 0;
  }
}
@media (min-width: 769px) {
  header .inner .logo {
    width: 370px;
    height: 106px;
    margin: 0 auto 20px auto;
  }
}
header .inner .logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  header .inner nav {
    background-color: #fff;
    position: absolute;
    opacity: 0;
    width: 100%;
    top: 17.5vw;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  header .inner nav.open {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 769px) {
  header .inner nav {
    width: 860px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  header .inner nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 768px) {
  header .inner nav ul li {
    border-top: 1px solid #ddd;
  }
}
header .inner nav ul li a {
  color: #000;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 768px) {
  header .inner nav ul li a {
    font-size: 4.2666666667vw;
    text-align: center;
    padding: 6.6666666667vw 0;
  }
}
@media (min-width: 769px) {
  header .inner nav ul li a {
    font-size: 14px;
    padding: 19px 0;
  }
}
header .inner nav ul li a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  header .inner nav ul li a.apply {
    margin: 0 auto;
    width: 89.3333333333vw;
  }
}
@media (min-width: 769px) {
  header .inner nav ul li a.apply {
    padding: 0;
  }
}
header .inner nav ul li a.apply img {
  display: block;
}
@media (min-width: 769px) {
  header .inner nav ul li a.apply img {
    width: 230px;
  }
}
header .inner nav ul li a.current {
  color: #8b0004;
}
header .inner .menubtn {
  position: absolute; /*ボタン内側の基点となるためrelativeを指定*/
  width: 9.3333333333vw;
  height: 9.3333333333vw;
  cursor: pointer;
  background: #fff;
  top: 3.7333333333vw;
  right: 6vw;
  z-index: 100;
}
@media (min-width: 769px) {
  header .inner .menubtn {
    display: none;
  }
}
header .inner .menubtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 1.55vw;
  height: 2px;
  background-color: #000;
}
header .inner .menubtn span:nth-of-type(1) {
  top: 3.5vw;
  width: 6.6666666667vw;
}
header .inner .menubtn span:nth-of-type(2) {
  top: 5.8vw;
  width: 6.6666666667vw;
}
header .inner .menubtn.active span:nth-of-type(1) {
  top: 3vw;
  left: 1.8vw;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 7vw;
}
header .inner .menubtn.active span:nth-of-type(2) {
  top: 6vw;
  left: 1.8vw;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 7vw;
}

footer {
  background-color: #8b0004;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  footer .inner {
    padding: 12vw 10vw 12.6666666667vw 10vw;
  }
}
@media (min-width: 769px) {
  footer .inner {
    width: 810px;
    padding: 65px 0 50px 0;
  }
}
@media (max-width: 768px) {
  footer .inner .company {
    margin-bottom: 1em;
  }
}
@media (min-width: 769px) {
  footer .inner .company {
    font-size: 16px;
    position: absolute;
    top: 65px;
    left: 38px;
  }
}
@media (max-width: 768px) {
  footer .inner ul.footer_link {
    margin-bottom: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  footer .inner ul.footer_link {
    position: relative;
    left: 458px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  footer .inner ul.footer_link li {
    padding: 2vw 0;
  }
}
@media (min-width: 769px) {
  footer .inner ul.footer_link li {
    margin-bottom: 14px;
  }
}
footer .inner ul.footer_link li:last-child {
  margin-bottom: 0;
}
footer .inner ul.footer_link li a {
  color: #fff;
}
@media (max-width: 768px) {
  footer .inner ul.footer_link li a {
    font-size: 4vw;
  }
}
@media (min-width: 769px) {
  footer .inner ul.footer_link li a {
    font-size: 16px;
  }
}
footer .inner ul.footer_link li a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  footer .inner .copyright {
    font-size: 2.4vw;
  }
}
@media (min-width: 769px) {
  footer .inner .copyright {
    font-size: 12px;
    text-align: right;
  }
}

@media (max-width: 768px) {
  .backToTop {
    width: 11.4666666667vw;
    height: 11.4666666667vw;
    position: fixed;
    right: 3.3333333333vw;
    bottom: 6.6666666667vw;
    z-index: 50;
  }
}
@media (min-width: 769px) {
  .backToTop {
    display: none !important;
  }
}

.btn {
  background-image: url(../images/common/btn_arrow.png);
  background-repeat: no-repeat;
  color: #000 !important;
  display: block;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .btn {
    border: 2px solid #000;
    background-position: center bottom 3.2vw;
    background-size: 7.3333333333vw auto;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.4666666667vw;
    font-weight: 600;
    width: 28vw;
    padding: 4vw 0 9.3333333333vw 0;
  }
}
@media (min-width: 769px) {
  .btn {
    background-position: center bottom 30px;
    border: 3px solid #000;
    font-size: 26px;
    padding: 30px 0 85px 0;
    width: 245px;
  }
}
.btn:hover {
  opacity: 0.6;
}

body#top .mv {
  background-color: #8b0004;
  width: 100%;
}
@media (max-width: 768px) {
  body#top .mv .inner {
    height: 90vw;
  }
}
@media (min-width: 769px) {
  body#top .mv .inner {
    height: 452px;
  }
}
body#top .mv .inner .catch {
  position: absolute;
  z-index: 2;
}
@media (max-width: 768px) {
  body#top .mv .inner .catch {
    width: 85.3333333333vw;
    margin: auto;
    top: 43vw;
    left: 0;
    right: 0;
  }
}
@media (min-width: 769px) {
  body#top .mv .inner .catch {
    width: 676px;
    height: 42px;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
}
body#top .mv .inner .photo {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  body#top .mv .inner .photo {
    width: 95vw;
  }
}
body#top .mv .inner .name {
  position: absolute;
  z-index: 2;
}
@media (max-width: 768px) {
  body#top .mv .inner .name {
    top: 69vw;
    left: 11.1vw;
    width: 26vw;
  }
}
@media (min-width: 769px) {
  body#top .mv .inner .name {
    width: 130px;
    height: 72px;
    margin: auto;
    left: 0;
    right: -505px;
    top: auto;
    bottom: 28px;
  }
}
@media (max-width: 768px) {
  body#top .contents section .inner {
    margin-left: 5.3333333333vw;
    margin-right: 5.3333333333vw;
    padding: 13.3333333333vw 0;
  }
}
body#top .contents section .inner h2 {
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  body#top .contents section .inner h2 {
    font-size: 5.6vw;
    line-height: 1;
    margin-bottom: 12vw;
  }
}
@media (min-width: 769px) {
  body#top .contents section .inner h2 {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 60px;
  }
}
@media (min-width: 769px) {
  body#top .contents section.concept .inner {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  body#top .contents section.concept .inner h2 {
    line-height: 1.65;
  }
}
@media (min-width: 769px) {
  body#top .contents section.concept .inner h2 {
    line-height: 1.8;
  }
}
@media (max-width: 768px) {
  body#top .contents section.concept .inner .inner_wrap.cube {
    margin-bottom: 13.3333333333vw;
  }
}
body#top .contents section.concept .inner .inner_wrap h3 {
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  body#top .contents section.concept .inner .inner_wrap h3 {
    font-size: 4.8vw;
    margin-bottom: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  body#top .contents section.concept .inner .inner_wrap h3 {
    font-size: 28px;
    margin-bottom: 45px;
  }
}
body#top .contents section.concept .inner .inner_wrap img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  body#top .contents section.concept .inner .inner_wrap img.cube {
    width: 48vw;
    margin-bottom: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  body#top .contents section.concept .inner .inner_wrap img.cube {
    margin-bottom: 65px;
  }
}
@media (max-width: 768px) {
  body#top .contents section.concept .inner .inner_wrap img.steps {
    margin: 8vw auto;
  }
}
@media (min-width: 769px) {
  body#top .contents section.concept .inner .inner_wrap img.steps {
    margin: 40px auto 30px auto;
    width: 644px;
  }
}
@media (min-width: 769px) {
  body#top .contents section.concept .inner .inner_wrap p {
    text-align: center;
  }
}
@media (min-width: 769px) {
  body#top .contents section.concept .inner .inner_wrap p.small {
    width: 644px;
    margin: 0 auto;
    text-align: left;
  }
}
@media (min-width: 769px) {
  body#top .contents section.concept .inner .inner_wrap.cube {
    margin-bottom: 70px;
  }
}
body#top .contents section.teacher {
  background-color: #a40001;
}
body#top .contents section.teacher .inner {
  color: #fff;
}
@media (min-width: 769px) {
  body#top .contents section.teacher .inner {
    padding: 70px 0;
  }
}
@media (min-width: 769px) {
  body#top .contents section.teacher .inner h2 {
    margin-bottom: 45px;
  }
}
@media (min-width: 769px) {
  body#top .contents section.teacher .inner p {
    text-align: center;
  }
}
@media (max-width: 768px) {
  body#top .contents section.teacher .inner img {
    margin: 8vw auto;
    width: 100vw;
    position: relative;
    left: -5.3333333333vw;
  }
}
@media (min-width: 769px) {
  body#top .contents section.teacher .inner img {
    display: block;
    margin: 60px auto;
    width: 1094px;
  }
}
@media (min-width: 769px) {
  body#top .contents section.curriculum .inner {
    text-align: center;
    padding: 70px 0;
  }
}
@media (min-width: 769px) {
  body#top .contents section.curriculum .inner p {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  body#top .contents section.curriculum .inner p.small {
    margin-bottom: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  body#top .contents section.curriculum .inner p.small {
    text-align: left;
    margin: 0 auto 45px auto;
    width: 676px;
  }
}
@media (max-width: 768px) {
  body#top .contents section.curriculum .inner img.serif {
    margin: 8vw auto 4vw auto;
    width: 92.8vw;
    position: relative;
    left: -1.8vw;
  }
}
@media (min-width: 769px) {
  body#top .contents section.curriculum .inner img.serif {
    margin-bottom: 30px;
    width: 793px;
  }
}
body#top .contents section.report {
  background-color: #a40001;
}
body#top .contents section.report .inner {
  color: #fff;
}
@media (min-width: 769px) {
  body#top .contents section.report .inner {
    text-align: center;
    padding: 70px 0;
  }
}
@media (min-width: 769px) {
  body#top .contents section.report .inner p {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  body#top .contents section.report .inner img {
    display: block;
    margin: 8vw auto 0 auto;
    width: 50.6666666667vw;
    outline: 5px solid #fff;
  }
}
@media (min-width: 769px) {
  body#top .contents section.button_area .inner {
    width: 810px;
    padding: 70px 0;
  }
}
body#top .contents section.button_area .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  body#top .contents section.button_area .inner ul {
    margin-bottom: 8vw;
  }
}
@media (min-width: 769px) {
  body#top .contents section.button_area .inner ul {
    width: 810px;
    margin-bottom: 70px;
  }
}
body#top .contents section.button_area .inner a.btn_apply {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  body#top .contents section.button_area .inner a.btn_apply {
    width: 82.4vw;
  }
}
@media (min-width: 769px) {
  body#top .contents section.button_area .inner a.btn_apply {
    width: 758px;
  }
}

body.sub .container .mv {
  background-color: #a40001;
  width: 100%;
}
body.sub .container .mv .inner {
  display: -ms-grid;
  display: grid;
  place-items: center;
}
@media (max-width: 768px) {
  body.sub .container .mv .inner {
    height: 90vw;
  }
}
@media (min-width: 769px) {
  body.sub .container .mv .inner {
    height: 450px;
  }
}
body.sub .container .mv .inner h1 {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  body.sub .container .mv .inner h1 {
    font-size: 5.5vw;
    letter-spacing: 0.08em;
  }
}
@media (min-width: 769px) {
  body.sub .container .mv .inner h1 {
    font-size: 42px;
    letter-spacing: 0.1em;
  }
}
body.sub .container .mv .inner .photo {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
body.sub .container .list_box {
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 769px) {
  body.sub .container .list_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: between-space;
        -ms-flex-pack: between-space;
            justify-content: between-space;
    width: 780px;
    margin: 0 auto 45px auto;
  }
}
@media (max-width: 768px) {
  body.sub .container .list_box dl {
    -webkit-box-pack: between-space;
        -ms-flex-pack: between-space;
            justify-content: between-space;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 769px) {
  body.sub .container .list_box dl {
    width: 260px;
  }
}
body.sub .container .list_box dl dt {
  background-color: #8b0004;
}
@media (max-width: 768px) {
  body.sub .container .list_box dl dt {
    border-bottom: 2px solid #fff;
    padding: 2.5vw;
    text-align: center;
    width: 50%;
  }
}
@media (min-width: 769px) {
  body.sub .container .list_box dl dt {
    border-right: 1px solid #fff;
    text-align: center;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body.sub .container .list_box dl dt p {
  color: #fff;
  font-weight: bold;
}
@media (max-width: 768px) {
  body.sub .container .list_box dl dt p {
    font-size: 4.6666666667vw;
    line-height: 1.3;
  }
}
@media (min-width: 769px) {
  body.sub .container .list_box dl dt p {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  body.sub .container .list_box dl dt p span {
    font-size: 80%;
  }
}
@media (min-width: 769px) {
  body.sub .container .list_box dl dt p span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.sub .container .list_box dl dd {
    border-bottom: 2px solid #8b0004;
    border-right: 2px solid #8b0004;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 0.5em;
  }
}
@media (min-width: 769px) {
  body.sub .container .list_box dl dd {
    border-left: 1px solid #8b0004;
    border-bottom: 1px solid #8b0004;
    text-align: center;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body.sub .container .list_box dl dd p {
  color: #8b0004;
  font-weight: bold;
}
@media (max-width: 768px) {
  body.sub .container .list_box dl dd p {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  body.sub .container .list_box dl dd p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  body.sub .container .list_box dl.first dd {
    border-top: 2px solid #8b0004;
  }
}
@media (max-width: 768px) {
  body.sub .container .list_box dl.last dt {
    border-bottom: 2px solid #8b0004;
  }
}
@media (min-width: 769px) {
  body.sub .container .list_box dl.last dt {
    border-right: 1px solid #8b0004;
  }
}
@media (max-width: 768px) {
  body.sub .container .list_box dl.last dd {
    border-bottom: 2px solid #8b0004;
  }
}
@media (min-width: 769px) {
  body.sub .container .list_box dl.last dd {
    border-right: 1px solid #8b0004;
  }
}

#faq .container .contents section h1 {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  #faq .container .contents section h1 {
    font-size: 5.5vw;
    letter-spacing: 0.08em;
    margin-bottom: 12vw;
  }
}
@media (min-width: 769px) {
  #faq .container .contents section h1 {
    font-size: 32px;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
  }
}
#faq .container .contents section.faqlist {
  background-color: #8b0004;
  color: #fff;
}
#faq .container .contents section.faqlist .inner {
  padding-bottom: 0;
}
#faq .container .contents section.faqlist .inner .faq_wrap {
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  #faq .container .contents section.faqlist .inner .faq_wrap {
    margin-bottom: 8vw;
  }
}
@media (min-width: 769px) {
  #faq .container .contents section.faqlist .inner .faq_wrap {
    margin: 0 auto 40px auto;
    width: 860px;
  }
}
#faq .container .contents section.faqlist .inner .faq_wrap.last {
  margin-bottom: 0;
}
#faq .container .contents section.faqlist .inner .faq_wrap h2 {
  background-color: #fff;
  color: #8b0004;
  line-height: 1;
  margin: 0;
}
@media (max-width: 768px) {
  #faq .container .contents section.faqlist .inner .faq_wrap h2 {
    font-size: 4.6666666667vw;
    padding: 2.6666666667vw;
  }
}
@media (min-width: 769px) {
  #faq .container .contents section.faqlist .inner .faq_wrap h2 {
    font-size: 18px;
    padding: 15px 0;
  }
}
#faq .container .contents section.faqlist .inner .faq_wrap dl {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (max-width: 768px) {
  #faq .container .contents section.faqlist .inner .faq_wrap dl dt, #faq .container .contents section.faqlist .inner .faq_wrap dl dd {
    padding: 4vw 2.6666666667vw;
  }
}
@media (min-width: 769px) {
  #faq .container .contents section.faqlist .inner .faq_wrap dl dt, #faq .container .contents section.faqlist .inner .faq_wrap dl dd {
    padding: 10px 25px;
  }
}
#faq .container .contents section.faqlist .inner .faq_wrap dl dt.bg, #faq .container .contents section.faqlist .inner .faq_wrap dl dd.bg {
  background-color: #7b0000;
}
#faq .container .contents section.faqlist .inner .faq_wrap dl dt p, #faq .container .contents section.faqlist .inner .faq_wrap dl dd p {
  position: relative;
}
@media (max-width: 768px) {
  #faq .container .contents section.faqlist .inner .faq_wrap dl dt p, #faq .container .contents section.faqlist .inner .faq_wrap dl dd p {
    font-size: 3.2vw;
    padding: 0 0 0 5vw;
  }
}
@media (min-width: 769px) {
  #faq .container .contents section.faqlist .inner .faq_wrap dl dt p, #faq .container .contents section.faqlist .inner .faq_wrap dl dd p {
    font-size: 14px;
    padding: 0 0 0 30px;
  }
}
@media (max-width: 768px) {
  #faq .container .contents section.faqlist .inner .faq_wrap dl dt {
    padding-bottom: 1.8vw;
  }
}
@media (min-width: 769px) {
  #faq .container .contents section.faqlist .inner .faq_wrap dl dt {
    border-bottom: 1px dashed #fff;
  }
}
#faq .container .contents section.faqlist .inner .faq_wrap dl dt p:before {
  content: "Q. ";
  display: inline-block;
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  #faq .container .contents section.faqlist .inner .faq_wrap dl dd {
    border-bottom: 1px dashed #fff;
    padding-top: 0;
  }
}
@media (min-width: 769px) {
  #faq .container .contents section.faqlist .inner .faq_wrap dl dd {
    border-bottom: 1px solid #fff;
  }
}
#faq .container .contents section.faqlist .inner .faq_wrap dl dd p:before {
  content: "A. ";
  display: inline-block;
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  #faq .container .contents section.faqlist .inner .faq_wrap dl dd.last {
    border-bottom: 1px solid #fff;
  }
}
#faq .container .contents section.privacy {
  background-color: #8b0004;
  color: #fff;
}
@media (min-width: 769px) {
  #faq .container .contents section.privacy .inner {
    width: 860px;
    margin: 0 auto;
  }
}
#faq .container .contents section.privacy .inner .privacy_wrap {
  font-family: "Noto Sans JP", sans-serif;
}
#faq .container .contents section.privacy .inner .privacy_wrap h3 {
  font-weight: bold;
}
@media (max-width: 768px) {
  #faq .container .contents section.privacy .inner .privacy_wrap h3 {
    font-size: 3.2vw;
    line-height: 1;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
  }
}
@media (min-width: 769px) {
  #faq .container .contents section.privacy .inner .privacy_wrap h3 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.65;
    margin-top: 1.5em;
  }
}
@media (max-width: 768px) {
  #faq .container .contents section.privacy .inner .privacy_wrap p {
    font-size: 2.6666666667vw;
    line-height: 1.5;
  }
}
@media (min-width: 769px) {
  #faq .container .contents section.privacy .inner .privacy_wrap p {
    font-size: 12px;
    line-height: 1.65;
  }
}

@media (max-width: 768px) {
  #fee .container .contents p.lead {
    margin-bottom: 8vw;
  }
}
@media (min-width: 769px) {
  #fee .container .contents p.lead {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 60px;
    text-align: center;
  }
}
#fee .container .contents section.course {
  background-color: #8b0004;
  color: #fff;
}
@media (max-width: 768px) {
  #fee .container .contents section.course .inner .cource_wrap {
    margin-bottom: 8vw;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.course .inner .cource_wrap {
    margin: 0 auto 40px auto;
    width: 860px;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.course .inner .cource_wrap.last {
    margin-bottom: 4vw;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.course .inner .cource_wrap.last {
    margin-bottom: 20px;
  }
}
#fee .container .contents section.course .inner .cource_wrap dl {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  color: #fff;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#fee .container .contents section.course .inner .cource_wrap dl dt {
  font-weight: bold;
}
@media (max-width: 768px) {
  #fee .container .contents section.course .inner .cource_wrap dl dt {
    font-size: 4.6666666667vw;
    line-height: 1.35;
    padding: 4vw 4vw 2.6666666667vw 4vw;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.course .inner .cource_wrap dl dt {
    float: left;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 20px;
    border-right: 1px solid #fff;
    width: 230px;
    height: 80px;
    display: -webkit-box;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.course .inner .cource_wrap dl dt span.icon {
    display: inline;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.course .inner .cource_wrap dl dt span.font-1 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.course .inner .cource_wrap dl dt span.font-2 {
    font-size: 80%;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.course .inner .cource_wrap dl dt span.font-2 {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.course .inner .cource_wrap dl dd {
    padding: 0 4vw 4vw 4vw;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.course .inner .cource_wrap dl dd {
    margin-left: 230px;
    padding: 0 25px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.course .inner .cource_wrap dl dd p {
    font-size: 3.2vw;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.course .inner .cource_wrap dl dd p {
    font-size: 14px;
    line-height: 1.5;
  }
}
#fee .container .contents section.course .inner .cource_wrap dl.title {
  background-color: #fff;
}
#fee .container .contents section.course .inner .cource_wrap dl.title dt {
  color: #8b0004;
}
@media (min-width: 769px) {
  #fee .container .contents section.course .inner .cource_wrap dl.title dt {
    border-right: 1px solid #8b0004;
    font-size: 18px;
    line-height: 1;
  }
}
#fee .container .contents section.course .inner .cource_wrap dl.title dd {
  color: #8b0004;
}
@media (min-width: 769px) {
  #fee .container .contents section.course .inner .small {
    margin-left: auto;
    margin-right: auto;
    width: 830px;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.feelist .inner .lead {
    margin-bottom: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.feelist .inner .lead {
    margin-bottom: 45px;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.feelist .inner p.small {
    width: 760px;
    margin: 0 auto 20px auto;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.feelist .inner .list_box {
    margin-bottom: 4vw;
  }
}
#fee .container .contents section.feelist .inner dl.notice {
  font-weight: 500;
}
@media (max-width: 768px) {
  #fee .container .contents section.feelist .inner dl.notice {
    font-size: 2.6666666667vw;
    margin-top: 1em;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.feelist .inner dl.notice {
    font-size: 12px;
    width: 760px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.feelist .inner dl.notice dt {
    margin-bottom: 0.65em;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.feelist .inner dl.notice dt {
    margin-bottom: 0.7em;
  }
}
#fee .container .contents section.feelist .inner dl.notice dt span {
  border-bottom: 1px solid #000;
}
#fee .container .contents section.feelist .inner dl.notice dd {
  line-height: 1.5;
}
@media (max-width: 768px) {
  #fee .container .contents section.feelist .inner dl.notice dd {
    margin-bottom: 1em;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.feelist .inner dl.notice dd {
    margin-bottom: 18px;
  }
}
#fee .container .contents section.lessontime {
  background-color: #8b0004;
  color: #fff;
}
@media (max-width: 768px) {
  #fee .container .contents section.lessontime .inner .lead {
    margin-bottom: 8vw;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.lessontime .inner .list_box {
    margin-bottom: 4vw;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.lessontime .inner .list_box {
    margin-bottom: 20px;
  }
}
#fee .container .contents section.lessontime .inner .list_box dl dt {
  background-color: #fff;
}
@media (max-width: 768px) {
  #fee .container .contents section.lessontime .inner .list_box dl dt {
    border-bottom: 2px solid #8b0004;
    height: 15vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.lessontime .inner .list_box dl dt {
    border-right: 1px solid #8b0004;
  }
}
#fee .container .contents section.lessontime .inner .list_box dl dt p {
  color: #8b0004;
}
@media (max-width: 768px) {
  #fee .container .contents section.lessontime .inner .list_box dl dt p {
    font-size: 3.6vw;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.lessontime .inner .list_box dl dt p span {
    font-size: 75%;
  }
}
#fee .container .contents section.lessontime .inner .list_box dl dd {
  background-color: #8b0004;
}
@media (max-width: 768px) {
  #fee .container .contents section.lessontime .inner .list_box dl dd {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 15vw;
    padding: 0;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.lessontime .inner .list_box dl dd {
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
}
#fee .container .contents section.lessontime .inner .list_box dl dd p {
  color: #fff;
}
@media (max-width: 768px) {
  #fee .container .contents section.lessontime .inner .list_box dl.first dt, #fee .container .contents section.lessontime .inner .list_box dl.first dd {
    border-top: 2px solid #fff;
  }
}
@media (max-width: 768px) {
  #fee .container .contents section.lessontime .inner .list_box dl.last dt {
    border-bottom: 2px solid #fff;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.lessontime .inner .list_box dl.last dt {
    border-right: 1px solid #fff;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.lessontime .inner .list_box dl.last dd {
    border-right: 1px solid #fff;
  }
}
@media (min-width: 769px) {
  #fee .container .contents section.lessontime .inner p.small {
    width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  #apply .mv .inner .photo {
    width: 60vw;
    right: -3vw;
  }
}
#apply .container .contents section.flow {
  text-align: center;
}
@media (max-width: 768px) {
  #apply .container .contents section.flow img {
    width: 85.8666666667vw;
    height: auto;
  }
}
@media (min-width: 769px) {
  #apply .container .contents section.flow img {
    width: 612px;
    height: auto;
  }
}
#apply .container .contents section.apply_form {
  background-color: #8b0004;
  color: #fff;
}
#apply .container .contents section.apply_form .inner .apply_form_wrap {
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 769px) {
  #apply .container .contents section.apply_form .inner .apply_form_wrap {
    margin: 0 auto;
    width: 850px;
  }
}
@media (max-width: 768px) {
  #apply .container .contents section.apply_form .inner ul.notice {
    font-size: 3vw;
    margin-top: 2vw;
  }
}
@media (min-width: 769px) {
  #apply .container .contents section.apply_form .inner ul.notice {
    margin-left: 1.5em;
  }
}
#apply .container .contents section.apply_form .inner ul.notice li {
  list-style-type: disc;
  list-style-position: outside;
}
@media (max-width: 768px) {
  #apply .container .contents section.apply_form .inner ul.notice li {
    line-height: 1.3;
    margin: 0 0 1vw 6vw;
  }
}
@media (min-width: 769px) {
  #apply .container .contents section.apply_form .inner ul.notice li {
    font-size: 13px;
    margin-left: 2em;
    padding: 0 0 0.5em 0;
  }
}

#contact .container .contents {
  background-color: #8b0004;
}
@media (max-width: 768px) {
  #contact .container .contents {
    padding-top: 12vw;
  }
}
@media (min-width: 769px) {
  #contact .container .contents {
    padding-top: 60px;
  }
}
#contact .container .contents h1 {
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  #contact .container .contents h1 {
    font-size: 5.3333333333vw;
    line-height: 1;
    margin-bottom: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #contact .container .contents h1 {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 70px;
  }
}
#contact .container .contents section.contact_form {
  background-color: #8b0004;
  color: #fff;
}
@media (max-width: 768px) {
  #contact .container .contents section.contact_form .inner {
    padding-top: 0;
  }
}
@media (min-width: 769px) {
  #contact .container .contents section.contact_form .inner {
    margin: 0 auto;
    padding: 0 0 70px 0;
    width: 800px;
  }
}
#contact .container .contents section.contact_form .inner ul.contact_notice {
  font-weight: 500;
}
@media (max-width: 768px) {
  #contact .container .contents section.contact_form .inner ul.contact_notice {
    margin-bottom: 13.3333333333vw;
  }
}
@media (min-width: 769px) {
  #contact .container .contents section.contact_form .inner ul.contact_notice {
    margin-bottom: 50px;
  }
}
#contact .container .contents section.contact_form .inner ul.contact_notice li {
  list-style-type: disc;
}
@media (max-width: 768px) {
  #contact .container .contents section.contact_form .inner ul.contact_notice li {
    font-size: 4vw;
    line-height: 1.35;
    margin: 0 0 0 1.3em;
  }
}
@media (min-width: 769px) {
  #contact .container .contents section.contact_form .inner ul.contact_notice li {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 15px;
  }
}

#thanks .container .contents {
  background-color: #8b0004;
}
@media (max-width: 768px) {
  #thanks .container .contents {
    padding-top: 12vw;
  }
}
@media (min-width: 769px) {
  #thanks .container .contents {
    padding-top: 60px;
  }
}
#thanks .container .contents h1 {
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  #thanks .container .contents h1 {
    font-size: 5.3333333333vw;
    line-height: 1;
    margin-bottom: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #thanks .container .contents h1 {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 70px;
  }
}
#thanks .container .contents .thanks_wrap .inner p {
  color: #fff;
  text-align: center;
}
#thanks .container .contents .thanks_wrap .inner .btn {
  background-image: none;
  border-color: #fff;
  color: #fff !important;
}
@media (max-width: 768px) {
  #thanks .container .contents .thanks_wrap .inner .btn {
    margin-top: 4vw;
    padding: 4vw 0;
  }
}
@media (min-width: 769px) {
  #thanks .container .contents .thanks_wrap .inner .btn {
    margin-top: 50px;
    padding: 30px 0;
  }
}

dl.form {
  font-family: "Noto Sans JP", sans-serif;
}
dl.form dt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media (max-width: 768px) {
  dl.form dt {
    font-size: 4vw;
    font-weight: bold;
    margin-bottom: 0.75em;
  }
}
@media (min-width: 769px) {
  dl.form dt {
    float: left;
    font-size: 18px;
    text-align: right;
    width: 350px;
    padding-right: 80px;
    padding-top: 15px;
    line-height: 1;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  dl.form dt.line-2 {
    line-height: 1.5;
  }
}
@media (min-width: 769px) {
  dl.form dt.line-2 {
    line-height: 1.35;
  }
}
dl.form dt .required,
dl.form dt .optional {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}
@media (min-width: 769px) {
  dl.form dt .required,
  dl.form dt .optional {
    margin-left: 0.5em;
    right: 0;
  }
}
dl.form dt .required {
  color: #e4aa04;
}
dl.form dd {
  /* チェックボックスデザイン */
}
@media (max-width: 768px) {
  dl.form dd {
    margin-bottom: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  dl.form dd {
    margin-left: 370px;
    margin-bottom: 30px;
  }
}
dl.form dd input[type=text],
dl.form dd input[type=email],
dl.form dd input[type=tel] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
}
@media (max-width: 768px) {
  dl.form dd input[type=text],
  dl.form dd input[type=email],
  dl.form dd input[type=tel] {
    font-size: 4vw;
    width: 100%;
    padding: 2vw;
  }
}
@media (min-width: 769px) {
  dl.form dd input[type=text],
  dl.form dd input[type=email],
  dl.form dd input[type=tel] {
    font-size: 18px;
    width: 460px;
    padding: 15px;
  }
}
@media (min-width: 769px) {
  dl.form dd p {
    line-height: 1;
    margin-bottom: 0.5em;
    padding-top: 15px;
  }
}
dl.form dd p a {
  color: #fff;
  text-decoration: underline;
}
dl.form dd input[type=date] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
}
@media (max-width: 768px) {
  dl.form dd input[type=date] {
    font-size: 4vw;
  }
}
@media (min-width: 769px) {
  dl.form dd input[type=date] {
    font-size: 18px;
    font-weight: normal;
    width: 180px;
    padding: 11px 15px;
  }
}
dl.form dd textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  dl.form dd textarea {
    font-size: 4vw;
    padding: 2vw;
    width: 100% !important;
    height: 30vw !important;
  }
}
@media (min-width: 769px) {
  dl.form dd textarea {
    font-size: 18px;
    padding: 15px;
    width: 460px !important;
    height: 180px !important;
  }
}
dl.form dd .select_wrap {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  dl.form dd .select_wrap {
    width: 460px;
  }
}
@media (min-width: 769px) {
  dl.form dd .select_wrap.time {
    width: 180px;
  }
}
dl.form dd .select_wrap::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #8b0004;
  border-right: 2px solid #8b0004;
  z-index: -1;
}
dl.form dd select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  width: 100%;
}
@media (max-width: 768px) {
  dl.form dd select {
    font-size: 4vw;
    padding: 2vw;
  }
}
@media (min-width: 769px) {
  dl.form dd select {
    font-size: 18px;
    padding: 15px;
    height: 100%;
    padding: 15px;
  }
}
dl.form dd label {
  display: block;
}
@media (max-width: 768px) {
  dl.form dd label {
    font-size: 4vw;
    margin-bottom: 2.4vw;
    padding: 0 0 0 10vw;
    position: relative;
    line-height: 1.3;
  }
}
@media (min-width: 769px) {
  dl.form dd label {
    padding-top: 15px;
  }
}
@media (max-width: 768px) {
  dl.form dd label.privacy {
    margin-top: 0.5em;
  }
}
dl.form dd input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
dl.form dd input[type=checkbox] {
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}
@media (max-width: 768px) {
  dl.form dd input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 2.5vw;
  }
}
@media (min-width: 769px) {
  dl.form dd input[type=checkbox] {
    padding-left: 40px;
    top: -1px;
  }
}
dl.form dd input[type=checkbox].iphone {
  top: 0.8vw;
}
dl.form dd input[type=checkbox]::before,
dl.form dd input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
dl.form dd input[type=checkbox]::before {
  background-color: #8b0004;
  border-radius: 0%;
  border: 1px solid #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
@media (max-width: 768px) {
  dl.form dd input[type=checkbox]::before {
    left: 2vw;
    width: 4vw;
    height: 4vw;
  }
}
@media (min-width: 769px) {
  dl.form dd input[type=checkbox]::before {
    left: 5px;
    width: 20px; /*チェックボックスの横幅*/
    height: 20px; /*チェックボックスの縦幅*/
  }
}
dl.form dd input[type=checkbox]::after {
  border-bottom: 3px solid #fff; /*チェックの太さ*/
  border-left: 3px solid #fff; /*チェックの太さ*/
  opacity: 0; /*チェック前は非表示*/
  height: 6px; /*チェックの高さ*/
  width: 11px; /*チェックの横幅*/
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 768px) {
  dl.form dd input[type=checkbox]::after {
    top: -2vw;
    left: 2.5vw;
  }
}
@media (min-width: 769px) {
  dl.form dd input[type=checkbox]::after {
    top: -7px; /*チェック時の位置調整*/
    left: 10px; /*チェック時の位置調整*/
  }
}
@media (max-width: 768px) {
  dl.form dd input[type=checkbox].iphone::after {
    top: 0vw;
    left: 2.5vw;
  }
}
dl.form dd input[type=checkbox]:checked::after {
  opacity: 1; /*チェック後表示*/
}
dl.form dd input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
}
dl.form dd input[type=date] {
  background-image: url(../images/apply/icon_calendar.png);
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  dl.form dd input[type=date] {
    background-position: right 1.3333333333vw center;
    background-size: 4vw auto;
  }
}
@media (min-width: 769px) {
  dl.form dd input[type=date] {
    background-position: right 10px center;
    background-size: 24px auto;
    text-align: left !important;
  }
}
dl.form dd input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}
dl.form dd table {
  width: 100%;
}
dl.form dd table th {
  white-space: nowrap;
}
@media (max-width: 768px) {
  dl.form dd table th {
    width: 20%;
  }
}
dl.form dd table td {
  vertical-align: top;
}
@media (max-width: 768px) {
  dl.form dd table td {
    width: 40%;
  }
}
dl.form dd table td input[type=date] {
  background-color: #fff;
  color: #000;
}
@media (max-width: 768px) {
  dl.form dd table td input[type=date] {
    height: 8.7vw;
  }
}
@media (max-width: 768px) {
  dl.form dd table td input[type=date],
  dl.form dd table td select {
    width: 100%;
  }
}
@media (max-width: 768px) {
  dl.form dd table, dl.form dd th, dl.form dd td {
    border: 1vw #8b0004 solid;
    font-size: 4vw;
  }
}
@media (min-width: 769px) {
  dl.form dd table, dl.form dd th, dl.form dd td {
    border: 10px #8b0004 solid;
  }
}

button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  display: block;
  margin: 0 auto;
}
@media (min-width: 769px) {
  button {
    margin-top: 50px;
    width: 622px;
  }
}
button:hover {
  cursor: pointer;
}

#mfp_overlay_inner h4 {
  margin-bottom: 1em;
}

#mfp_confirm_table {
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 769px) {
  #mfp_confirm_table th {
    font-size: 18px;
    padding: 15px;
  }
}
@media (min-width: 769px) {
  #mfp_confirm_table td {
    font-size: 18px;
    padding: 15px;
  }
}