@charset "UTF-8";

p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

@media (max-width: 780px) {
  p {
    font-size: 13px;
    font-size: 4.0625vw;
  }
}

p:last-of-type {
  margin-bottom: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  background: #ffffff;
  color: #333333;
  -webkit-font-feature-settings: 'palt'1;
  font-feature-settings: 'palt'1;
  letter-spacing: 1px;
  line-height: 1.8;
}

#wrapper {
  overflow: hidden;
}

.flex {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
}

img {
  vertical-align: bottom;
}

@media (max-width: 780px) {
  img {
    width: 100%;
  }
}

.pc {
  display: block;
}

@media (max-width: 780px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media (max-width: 780px) {
  .sp {
    display: block;
  }
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

@media (max-width: 780px) {
  h2 {
    font-size: 19px;
    font-size: 5.9375vw;
    margin-bottom: 15px;
  }
}

a:hover img {
  opacity: 0.8;
}

header {
  padding: 10px 20px;
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  z-index: 100;
  background: #ffffff;
}

@media (max-width: 780px) {
  header {
    height: 50px;
    padding: 0 1%;
    bottom: 0;
  }
}

header .flex {
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 780px) {
  header .flex {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    padding: 0 1%;
  }
}

@media (max-width: 780px) {
  header h1 img {
    width: 95%;
  }
}

header a>div {
  position: relative;
  overflow: hidden;
}

header a>div:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  /* 【変更部分】inifiniteによりずっと続ける */
  -webkit-animation: shine 1s infinite;
  animation: shine 1s infinite;
}

.inner {
  width: 1000px;
  margin: 0 auto;
}

@media (max-width: 780px) {
  .inner {
    padding: 0 3%;
    width: 100%;
    box-sizing: border-box;
  }
}

main {
  background: #000;
  padding-top: 0;
}

@media (max-width: 780px) {
  main {
    padding-top: 0;
  }
}

main .main-in {
  height: 915px;
  background: url(../img/main-bk.png) no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
}

@media (max-width: 1024px) {
  main .main-in {
    height: auto;
  }
}

main .main-in .main {
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media (max-width: 1024px) {
  main .main-in .main {
    padding-top: 20px;
    position: static;
    left: 0;
    top: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  main .main-in .main img {
    width: 100%;
  }
}

main .main-in-bk {
  background: #ffffff;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  top: 50px;
  height: 800px;
}

.sub-main {
  background: url("../img/sub-main-bk.png") repeat;
  background-size: 12px 12px;
  padding: 40px 0;
}

@media (max-width: 780px) {
  .sub-main {
    padding: 0;
  }
}

.sub-main .inner {
  width: 862px;
}

@media (max-width: 780px) {
  .sub-main .inner {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 780px) {
  .sub-main .inner .contact-bn {
    padding: 3% 5% 5%;
  }
}

.sub-main a>div {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 862px;
  -webkit-box-shadow: 0 10px 0 0 #115d20;
  box-shadow: 0 10px 0 0 #115d20;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .sub-main a>div {
    margin: 0 auto;
  }
}

@media (max-width: 780px) {
  .sub-main a>div {
    width: 100%;
    margin: 0;
    -webkit-box-shadow: 0 5px 0 0 #115d20;
    box-shadow: 0 5px 0 0 #115d20;
  }
}

.sub-main a>div:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  /* 【変更部分】inifiniteによりずっと続ける */
  -webkit-animation: shine 1s infinite;
  animation: shine 1s infinite;
}


.sub-catch2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
    -2px 2px 0 #FFF, 2px -2px 0 #FFF,
    0px 2px 0 #FFF, 0-2px 0 #FFF,
    -2px 0 0 #FFF, 2px 0 0 #FFF;
}

@media (max-width: 780px) {
  .sub-catch2 {
    margin-bottom: 0;
    padding: 15px 0 0px;
    font-size: 16px;
    font-size: 5vw;
  }
}

.sub-catch2 span {
  color: #d60027;
}





section {
  padding: 50px 0 40px;
}

@media (max-width: 780px) {
  section {
    padding: 20px 0 15px;
  }
}

.intro {
  padding-bottom: 0;
  background: #f6f8f9;
  text-align: center;
}

.intro h2 {
  font-weight: 900;
  font-size: 48px;
}

@media (max-width: 780px) {
  .intro h2 {
    font-size: 18px;
    font-size: 5.625vw;
  }
}

.intro .intro-img {
  margin-top: -100px;
}

@media (max-width: 780px) {
  .intro .intro-img {
    margin-top: 0;
  }
}

.evidence {
  padding-top: 70px;
  background: #1e2c76;
  position: relative;
}

@media (max-width: 780px) {
  .evidence {
    padding-top: 50px;
  }
}

.evidence .evidence-intro {
  position: absolute;
  left: 50%;
  top: -53px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media (max-width: 780px) {
  .evidence .evidence-intro {
    top: -10px;
  }
}

.evidence .evidence-intro span {
  font-family: "Noto Serif JP", serif;
  font-size: 60px;
  font-weight: 700;
  border: 5px solid #333333;
  padding: 5px 30px;
  background: #ffffff;
}

@media (max-width: 780px) {
  .evidence .evidence-intro span {
    font-size: 18px;
    font-size: 5.625vw;
  }
}

.evidence h2 {
  color: #ffffff;
}

.evidence ul li {
  padding: 60px 40px 30px;
  background: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 780px) {
  .evidence ul li {
    padding: 60px 20px 30px;
    margin-bottom: 10px;
  }
}

.evidence ul li:last-child {
  margin-bottom: 30px;
}

@media (max-width: 780px) {
  .evidence ul li:last-child {
    margin-bottom: 10px;
  }
}

@media (max-width: 780px) {
  .evidence ul li:nth-child(2) .flex {
    flex-wrap: wrap;
  }
}

.evidence ul li .txt {
  width: 40%;
}

@media (max-width: 780px) {
  .evidence ul li .txt {
    width: 100%;
    margin-bottom: 10px;
  }
}

.evidence ul li .img {
  width: 60%;
}

@media (max-width: 780px) {
  .evidence ul li .img {
    width: 100%;
  }
}

.evidence ul li .img img {
  width: 100%;
}

.evidence ul li .icon {
  position: absolute;
  top: 0;
  left: 0;
  background: #d60027;
  padding: 5px 10px 8px;
  font-size: 18px;
  color: #fff;
}

.evidence p:last-of-type {
  margin-bottom: 0;
}

.evidence p.small {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 780px) {
  .evidence p.small {
    font-size: 12px;
    font-size: 3.75vw;
  }
}

.evidence .catch {
  text-align: center;
  font-size: 30px;
  color: #fff;
}

@media (max-width: 780px) {
  .evidence .catch {
    font-size: 16px;
    font-size: 5vw;
  }
}

.contact {
  padding-top: 30px;
  background: #d9d9d8;
  border-bottom: 5px solid #b07f0f;
}

@media (max-width: 780px) {
  .contact {
    padding-top: 20px;
  }
}

.contact span {
  font-size: 30px;
}

@media (max-width: 780px) {
  .contact span {
    font-size: 14px;
    font-size: 4.375vw;
  }
}

.contact .img {
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 780px) {
  .contact .img {
    margin-bottom: 10px;
  }
}

.contact .flex {
  justify-content: space-between;
  align-items: center;
}

.contact .flex div:last-child {
  padding-right: 10px;
}

.contact .bn {
  text-align: center;
}

.contact .bn a>div {
  position: relative;
  overflow: hidden;
  width: 824px;
  margin: 0 auto;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
}

@media (max-width: 780px) {
  .contact .bn a>div {
    width: 100%;
  }
}

.contact .bn a>div:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  /* 【変更部分】inifiniteによりずっと続ける */
  -webkit-animation: shine 1s infinite;
  animation: shine 1s infinite;
}

.contactN {
  padding-bottom: 0;
  border-bottom: 5px solid #cbb745;
}

.contactN h2 {
  line-height: 1.4;
}

.contactN h2>span:first-of-type {
  font-size: 40px;
}

@media (max-width: 780px) {
  .contactN h2>span:first-of-type {
    font-size: 15px;
    font-size: 4.6875vw;
  }
}

.contactN h2>span:first-of-type span {
  font-size: 60px;
  color: #333333;
}

@media (max-width: 780px) {
  .contactN h2>span:first-of-type span {
    font-size: 23px;
    font-size: 7.1875vw;
  }
}

.contactN h2>span:last-of-type {
  font-size: 80px;
  color: #1e2c76;
  font-weight: 900;
}

@media (max-width: 780px) {
  .contactN h2>span:last-of-type {
    font-size: 24px;
    font-size: 7.5vw;
  }
}

.contactN .contactN-in {
  padding: 38px 0 0;
  background: url(../img/sub-main-bk.png) repeat;
  background-size: 12px 12px;
  position: relative;
  text-align: center;
}

@media (max-width: 780px) {
  .contactN .contactN-in {
    padding: 20px 0 0;
  }
}

.contactN .contactN-in .contact-bn {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 10;
}

@media (max-width: 780px) {
  .contactN .contactN-in .contact-bn {
    position: static;
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    padding: 0 5% 5%;
  }
}

.contactN .contactN-in .contact-bn a>div {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 862px;
  -webkit-box-shadow: 0 10px 0 0 #115d20;
  box-shadow: 0 10px 0 0 #115d20;
  border-radius: 10px;
}

@media (max-width: 780px) {
  .contactN .contactN-in .contact-bn a>div {
    width: 100%;
    -webkit-box-shadow: 0 5px 0 0 #115d20;
    box-shadow: 0 5px 0 0 #115d20;
  }
}

.contactN .contactN-in .contact-bn a>div:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-animation: shine 1s infinite;
  animation: shine 1s infinite;
}

.contactN .contact-attend {
  background: #ffe43a;
  padding: 30px 0;
  text-align: center;
  color: #000000;
}

@media (max-width: 780px) {
  .contactN .contact-attend {
    padding: 15px 0;
  }
}

.contactN .contact-attend .title {
  margin-bottom: 20px;
}

@media (max-width: 780px) {
  .contactN .contact-attend .title {
    margin-bottom: 10px;
  }
}

.contactN .contact-attend .title span {
  font-size: 23px;
  color: #ffffff;
  background: #000000;
  padding: 5px 8px;
  font-weight: 700;
}

@media (max-width: 780px) {
  .contactN .contact-attend .title span {
    font-size: 15px;
    font-size: 4.6875vw;
  }
}


.seminar-program {
  padding: 80px 0 210px;
  background: url(../img/sub-main-bk.png) repeat;
  background-size: 12px 12px;
  position: relative;
  text-align: center;
}

@media (max-width: 780px) {
  .seminar-program {
    padding: 30px 0 20px;
    background: url(../img/sub-main-bk.png) repeat;
    background-size: 12px 12px;
    position: relative;
    text-align: center;
  }
}

.seminar,
.seminar-program {
  background: #f8f1d9;
}

.seminar-program.flex {
  justify-content: center;
  align-items: center;
}

@media (max-width: 780px) {
  .seminar-program .flex {
    flex-wrap: wrap;
  }
}

.seminar .seminar-contents-in {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  text-align: center;
  padding-right: 30px;
  font-weight: 700;
}

@media (max-width: 780px) {
  .seminar .seminar-contents-in {
    padding-right: 0;
    font-size: 18px;
    font-size: 5.625vw;
  }
}

@media (max-width: 780px) {
  .seminar .seminar-contents-in+div {
    width: 50%;
    margin-top: 15px;
  }
}

.seminar-program .about {
  padding: 130px 50px 50px;
  width: 1000px;
  box-sizing: border-box;
  margin-top: 100px;
}

@media (max-width: 780px) {
  .seminar-program .about {
    width: 100%;
    padding: 20px 15px 15px;
    margin-top: 50px;
  }
}

.seminar-program .about .about-in {
  background: #fbf9f4;
  padding: 50px 20px;
  margin-bottom: 80px;
  position: relative;
}

@media (max-width: 780px) {
  .seminar-program .about .about-in {
    padding: 15px 10px 15px 15px;
    margin-bottom: 15px;
  }
}

.seminar-program .about .about-in p {
  font-size: 16px;
  text-align: left;
  margin-bottom: 20px;
}

@media (max-width: 780px) {
  .seminar-program .about .about-in p {
    font-size: 12px;
    font-size: 3.75vw;
    margin-bottom: 10px;
  }
}

.seminar-program .about .about-in ul {
  padding-left: 50px;
  list-style-type: disc;
  text-align: left;
}

@media (max-width: 780px) {
  .seminar-program .about .about-in ul {
    padding-left: 13px;
    margin-bottom: 15px;
  }
}

.seminar-program .about .about-in ul li {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #011757;
}

@media (max-width: 780px) {
  .seminar-program .about .about-in ul li {
    font-size: 13px;
    font-size: 4.0625vw;
    margin-bottom: 5px;
  }
}

.seminar-program .about .about-in ul li:last-child {
  margin-bottom: 0;
}

.seminar-program .about .about-in ul li span {
  color: #d60027;
}

.seminar-program .about .about-in .about-img {
  position: absolute;
  right: -30px;
  top: -50px;
}

@media (max-width: 780px) {
  .seminar-program .about .about-in .about-img {
    position: static;
  }
}


.seminar-program .contact-bn {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 10;
}

@media (max-width: 780px) {
  .seminar-program .contact-bn {
    position: static;
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    padding: 0 5% 5%;
  }
}

.seminar-program .contact-bn a>div {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 862px;
  -webkit-box-shadow: 0 10px 0 0 #115d20;
  box-shadow: 0 10px 0 0 #115d20;
  border-radius: 10px;
}

@media (max-width: 780px) {
  .seminar-program .contact-bn a>div {
    width: 100%;
    -webkit-box-shadow: 0 5px 0 0 #115d20;
    box-shadow: 0 5px 0 0 #115d20;
  }
}

.seminar-program .contact-bn a>div:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-animation: shine 1s infinite;
  animation: shine 1s infinite;
}






.question {
  padding-top: 50px;
  padding-bottom: 0;
}

@media (max-width: 780px) {
  .question {
    padding-top: 20px;
  }
}

.question h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

@media (max-width: 780px) {
  .question h2 {
    font-size: 19px;
    font-size: 5.9375vw;
    margin-bottom: 10px;
  }
}

.question .question-in {
  padding: 50px 0;
  background: #f8f1d9;
  background-image: url(../img/img34.png);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: right 80%;
  text-align: center;
}

@media (max-width: 780px) {
  .question .question-in {
    padding: 20px 0;
    background-size: 40%;
    background-position: right 70%;
  }
}

.question .question-in .recomend {
  font-size: 18px;
  color: #ffffff;
  background: #333333;
  padding: 5px;
  width: 400px;
  box-sizing: border-box;
  margin: 0 auto 50px;
}

@media (max-width: 780px) {
  .question .question-in .recomend {
    margin: 0 auto 20px;
    font-size: 14px;
    font-size: 4.375vw;
    width: 100%;
  }
}

.question .question-in p {
  font-size: 25px;
  margin-bottom: 50px;
}

@media (max-width: 780px) {
  .question .question-in p {
    font-size: 15px;
    font-size: 4.6875vw;
    margin-bottom: 20px;
  }
}

.question .question-in p span {
  font-weight: 700;
  font-size: 28px;
}

@media (max-width: 780px) {
  .question .question-in p span {
    font-size: 18px;
    font-size: 5.625vw;
  }
}

.question .question-in p:first-of-type {
  margin-bottom: 10px;
}

.question .question-in p:nth-of-type(3) {
  margin-bottom: 80px;
}

@media (max-width: 780px) {
  .question .question-in p:nth-of-type(3) {
    margin-bottom: 30px;
  }
}

.question .question-in p:nth-of-type(4) {
  margin-bottom: 120px;
  font-weight: 700;
  font-size: 35px;
  position: relative;
}

@media (max-width: 780px) {
  .question .question-in p:nth-of-type(4) {
    margin-bottom: 60px;
    font-size: 18px;
    font-size: 5.625vw;
  }
}

.question .question-in p:nth-of-type(4):before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 60px;
  background-image: url(../img/icon8.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 780px) {
  .question .question-in p:nth-of-type(4):before {
    width: 80px;
    height: 36px;
    bottom: -40px;
  }
}

.question .question-in p:nth-last-of-type(2) {
  margin-bottom: 20px;
}

.question .question-in p:nth-last-of-type(2) span {
  color: #d60027;
  font-size: 35px;
}

@media (max-width: 780px) {
  .question .question-in p:nth-last-of-type(2) span {
    font-size: 18px;
    font-size: 5.625vw;
  }
}

.question .question-in p:last-of-type {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (max-width: 780px) {
  .question .question-in p:last-of-type {
    font-size: 12px;
    font-size: 3.75vw;
    line-height: 1.5;
  }
}

.question .question-in-bk {
  background-image: url(../img/img35.png);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: left 80%;
}

@media (max-width: 780px) {
  .question .question-in-bk {
    background-size: 40%;
    background-position: left 70%;
  }
}

.question .ansawer {
  position: relative;
  background: #f8f1d9;
  padding: 50px 0;
}

@media (max-width: 780px) {
  .question .ansawer {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

.question .ansawer .icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media (max-width: 780px) {
  .question .ansawer .icon {
    width: 40%;
  }
}

.question .ansawer .answer-title {
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 780px) {
  .question .ansawer .answer-title {
    font-size: 17px;
    font-size: 5.3125vw;
    margin-bottom: 10px;
  }
}

.question .ansawer .answer-title span {
  color: #1e2c76;
  font-size: 45px;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 780px) {
  .question .ansawer .answer-title span {
    font-size: 25px;
    font-size: 7.8125vw;
  }
}

.question .ansawer .answer-sub-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
  border-top: 3px double #333333;
  border-bottom: 3px double #333333;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 780px) {
  .question .ansawer .answer-sub-title {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 5vw;
    padding: 15px 0;
  }
}

.question .ansawer .answer-sub-title>span {
  font-weight: 700;
}

.question .ansawer .answer-sub-title>span:first-of-type {
  color: #d60027;
}

.question .ansawer .answer-sub-title>span:first-of-type span {
  font-size: 35px;
}

@media (max-width: 780px) {
  .question .ansawer .answer-sub-title>span:first-of-type span {
    font-size: 18px;
    font-size: 5.625vw;
  }
}

.question .ansawer .answer-sub-title>span:last-of-type {
  font-size: 45px;
  color: #1e2c76;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
}

@media (max-width: 780px) {
  .question .ansawer .answer-sub-title>span:last-of-type {
    font-size: 20px;
    font-size: 6.25vw;
  }
}

.question .img {
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 780px) {
  .question .img {
    margin-bottom: 15px;
  }
}

.question .img2 {
  text-align: center;
  margin-bottom: 100px;
}

@media (max-width: 780px) {
  .question .img2 {
    margin-bottom: 50px;
  }
}

.about {
  background: #ffffff;
  padding: 50px;
  position: relative;
  width: 90%;
  margin: 0 auto 30px;
  box-sizing: border-box;
}

@media (max-width: 780px) {
  .about {
    padding: 20px 10px 10px;
    width: 100%;
  }
}

.about .about-title {
  position: absolute;
  left: 50%;
  top: -55px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-family: "Noto Serif JP", serif;
  white-space: nowrap;
  color: #ffffff;
  background: #333333;
  padding: 0px 10px 5px 20px;
}

@media (max-width: 780px) {
  .about .about-title {
    top: -30px;
    padding: 0px 5px 2px 10px;
    width: 100%;
  }
}

.about .about-title span {
  font-weight: 700;
  font-size: 35px;
}

@media (max-width: 780px) {
  .about .about-title span {
    font-size: 16px;
    font-size: 5vw;
  }
}

.about .about-title span span {
  font-size: 50px;
  font-weight: 900;
}

@media (max-width: 780px) {
  .about .about-title span span {
    font-size: 18px;
    font-size: 5.625vw;
  }
}

.about p {
  text-align: center;
  font-size: 23px;
  margin-bottom: 35px;
  font-weight: 500;
}

@media (max-width: 780px) {
  .about p {
    font-size: 14px;
    font-size: 4.375vw;
    margin-bottom: 15px;
  }
}

.about p:first-of-type {
  font-size: 26px;
}

@media (max-width: 780px) {
  .about p:first-of-type {
    font-size: 14px;
    font-size: 4.375vw;
  }
}

.about p:last-of-type {
  margin-bottom: 50px;
}

@media (max-width: 780px) {
  .about p:last-of-type {
    margin-bottom: 20px;
  }
}

.about .after {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (max-width: 780px) {
  .about .after {
    margin-bottom: 15px;
  }
}

.about .after span {
  border: 3px solid #000;
  padding: 5px 8px;
}

@media (max-width: 780px) {
  .about .after span {
    font-size: 15px;
    font-size: 4.6875vw;
  }
}

.about .flex {
  justify-content: space-between;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about .flex p {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 30px;
}

@media (max-width: 780px) {
  .about .flex p {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 10px;
    font-size: 3.125vw;
  }
}

@media (max-width: 780px) {
  .about .flex li {
    width: 50%;
  }
}

.about .conclusion {
  font-size: 30px;
  font-weight: 700;
  padding: 20px;
  background: #fbf9f4;
  text-align: center;
}

@media (max-width: 780px) {
  .about .conclusion {
    padding: 10px;
    font-size: 16px;
    font-size: 5vw;
  }
}

.about .conclusion.none {
  background: none;
  padding: 0;
}

.about .attention {
  text-align: center;
  font-weight: 500;
  padding: 10px;
  font-size: 20px;
  /* font-size: 2vw; */
}

@media (max-width: 780px) {
  .about .attention {
    text-align: center;
    font-weight: 500;
    padding: 10px;
    font-size: 16px;
    /* font-size: 3vw; */
  }
}


.about .attention .red {
  color: red;
}

.media {
  border-bottom: 5px solid #cbb745;
}

.media .voice {
  padding: 50px 0;
  text-align: center;
  background: #f8f1d9;
}

@media (max-width: 780px) {
  .media .voice {
    padding: 20px 0 15px;
  }
}

.media .voice .voice-title {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 780px) {
  .media .voice .voice-title {
    font-size: 17px;
    font-size: 5.3125vw;
    margin-bottom: 15px;
  }
}

.media .voice .voice-title span span {
  font-size: 70px;
}

@media (max-width: 780px) {
  .media .voice .voice-title span span {
    font-size: 25px;
    font-size: 7.8125vw;
  }
}

.media .voice .flex {
  justify-content: space-between;
  margin-bottom: 50px;
}

@media (max-width: 780px) {
  .media .voice .flex {
    display: block;
    margin-bottom: 20px;
  }
}

@media (max-width: 780px) {
  .media .voice .flex div {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
}

@media (max-width: 780px) {
  .media .voice .flex div:first-child {
    margin-bottom: 15px;
  }
}

@media (max-width: 780px) {
  .media .voice .flex div iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 780px) {
  .media .voice .slider img {
    width: 130px;
  }
}




.media-2 {
  padding: 0 0 40px;
  background: #f8f1d9;
  border-bottom: 5px solid #cbb745;
}

.media-2 .voice {
  padding: 40px 0 0;
  text-align: center;
  background: #f8f1d9;
}

@media (max-width: 780px) {
  .media-2 .voice {
    padding: 20px 0 15px;
  }
}

.media-2 .voice .voice-title {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 780px) {
  .media-2 .voice .voice-title {
    font-size: 17px;
    font-size: 5.3125vw;
    margin-bottom: 15px;
  }
}

.media-2 .voice .voice-title span span {
  font-size: 70px;
}

@media (max-width: 780px) {
  .media-2 .voice .voice-title span span {
    font-size: 25px;
    font-size: 7.8125vw;
  }
}

.media-2 .voice .flex {
  justify-content: space-between;
  margin-bottom: 50px;
}

@media (max-width: 780px) {
  .media-2 .voice .flex {
    display: block;
    margin-bottom: 20px;
  }
}

@media (max-width: 780px) {
  .media-2 .voice .flex div {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
}

@media (max-width: 780px) {
  .media-2 .voice .flex div:first-child {
    margin-bottom: 15px;
  }
}

@media (max-width: 780px) {
  .media-2 .voice .flex div iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 780px) {
  .media-2 .voice .slider img {
    width: 130px;
  }
}




.merit {
  background: #ffffff;
  padding: 100px 0 0;
}

@media (max-width: 780px) {
  .merit {
    padding: 60px 0 0;
  }
}

.merit h2 {
  color: #333333;
  position: relative;
  line-height: 1.5;
  font-size: 40px;
}

@media (max-width: 780px) {
  .merit h2 {
    font-size: 19px;
    font-size: 5.9375vw;
  }
}

.merit h2 .txt {
  font-size: 70px;
  color: #1e2c76;
  font-weight: 900;
}

@media (max-width: 780px) {
  .merit h2 .txt {
    font-size: 23px;
  }
}

@media (max-width: 320px) {
  .merit h2 {
    font-size: 18px;
  }

  .merit h2 .txt {
    font-size: 20px;
  }
}

.merit h2 .pic {
  position: absolute;
  left: 50%;
  top: -70px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media (max-width: 780px) {
  .merit h2 .pic {
    top: -40px;
  }
}

.merit h2 img {
  width: 200px;
}

@media (max-width: 780px) {
  .merit h2 img {
    width: 160px;
  }
}

.merit .flex {
  justify-content: space-between;
  flex-wrap: wrap;
}

.merit ul li {
  position: relative;
  background: #ffffff;
  padding: 35px;
  border: 5px solid #cbb745;
  margin-bottom: 20px;
}

@media (max-width: 780px) {
  .merit ul li {
    padding: 15px;
    border: 3px solid #cbb745;
  }
}

.merit ul li:last-child {
  margin-bottom: 0;
}

.merit ul li .icon {
  position: absolute;
  top: 20px;
  left: -15px;
}

@media (max-width: 780px) {
  .merit ul li .icon {
    top: 10px;
    left: -12px;
  }
}

@media (max-width: 780px) {
  .merit ul li .icon img {
    width: 100px;
  }
}

.merit ul li .text {
  padding-top: 60px;
}

@media (max-width: 780px) {
  .merit ul li .text {
    padding-top: 45px;
    margin-bottom: 15px;
  }
}

.merit ul li .text .merit-title {
  line-height: 1.4;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 5px;
  color: #936a0d;
}

@media (max-width: 780px) {
  .merit ul li .text .merit-title {
    font-size: 19px;
    font-size: 5.9375vw;
    margin-bottom: 15px;
  }
}

.merit ul li .text .merit-title span {
  border-bottom: 5px solid #dad0ba;
}


.seminar-contents {
  background: url("../img/seminar-contents-bk.png") no-repeat;
  background-size: cover;
  background-position: center center;
}

.seminar-contents .flex {
  justify-content: center;
  align-items: center;
}

.seminar-contents .seminar-contents-in {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  padding-right: 30px;
  font-weight: 700;
}

@media (max-width: 780px) {
  .seminar-contents .seminar-contents-in {
    padding-right: 0;
    font-size: 18px;
    font-size: 5.625vw;
  }
}

@media (max-width: 780px) {
  .seminar-contents .seminar-contents-in+div {
    display: none;
  }
}

.seminar-contents .normal-price {
  text-align: right;
  margin-bottom: 30px;
  padding-right: 100px;
}

@media (max-width: 780px) {
  .seminar-contents .normal-price {
    padding-right: 0px;
    margin-bottom: 20px;
  }
}

@media (max-width: 780px) {
  .seminar-contents .normal-price img {
    width: 50%;
  }
}

.seminar-contents .sub-catch {
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

@media (max-width: 780px) {
  .seminar-contents .sub-catch {
    font-size: 18px;
    font-size: 5.625vw;
  }
}

.seminar-contents .sub-catch span {
  color: #d60027;
}

.seminar-contents .price {
  margin-top: 20px;
}

@media (max-width: 780px) {
  .seminar-contents .price {
    margin-top: 8px;
  }
}

.seminar-contents .price>div {
  text-align: center;
}

@media (max-width: 780px) {
  .seminar-contents .price>div:first-child img {
    width: 35%;
  }
}

.seminar-contents .price>div:last-child {
  margin: 30px 0 20px;
}

@media (max-width: 780px) {
  .seminar-contents .price>div:last-child {
    margin: 10px 0 15px;
  }
}

.seminar-contents .time {
  width: 60%;
  margin: 0 auto 30px;
  background: #ffffff;
  border: 5px solid #cbb745;
  border-radius: 10px;
  padding: 0px 0px 30px;
  box-sizing: border-box;
}

@media (max-width: 780px) {
  .seminar-contents .time {
    width: 100%;
    padding: 0px 0px 15px 0px;
    margin-bottom: 20px;
  }
}

.seminar-contents .time .zoom {
  padding: 10px 15px;
  background: #cbb745;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
}

@media (max-width: 780px) {
  .seminar-contents .time .zoom {
    padding: 8px;
    font-size: 20px;
    line-height: 1.2;
  }
}

.seminar-contents .time .zoom span {
  padding: 0 3px 0 0;
  color: #011757;
  background: none;
  font-weight: 700;
}

@media (max-width: 780px) {
  .seminar-contents .time .zoom span {
    font-size: 20px;
  }
}


@media (max-width: 780px) {
  .seminar-contents .time {
    width: 100%;
    padding: 20px 5px 15px 15px;
    margin-bottom: 20px;
  }
}

.seminar-contents .time p {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 780px) {
  .seminar-contents .time p {
    margin-bottom: 13px;
  }
}

.seminar-contents .time p span {
  color: #ffffff;
  background: #1e2c76;
  padding: 3px 8px;
  font-weight: 700;
}

@media (max-width: 780px) {
  .seminar-contents .time p span {
    font-size: 14px;
    font-size: 4.375vw;
  }
}

.seminar-contents .time ul {
  padding-left: 50px;
  list-style-type: disc;
}

@media (max-width: 780px) {
  .seminar-contents .time ul {
    padding-left: 18px;
  }
}

.seminar-contents .time ul li {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #011757;
}

@media (max-width: 780px) {
  .seminar-contents .time ul li {
    font-size: 13px;
    font-size: 4.0625vw;
    margin-bottom: 5px;
  }
}

.seminar-contents .time ul li span {
  color: #d60027;
  margin-left: 10px;
}

@media (max-width: 780px) {
  .seminar-contents .time ul li span {
    margin-left: 5px;
  }
}

.seminar-contents .attend {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
}

@media (max-width: 780px) {
  .seminar-contents .attend {
    padding: 15px;
  }
}

.seminar-contents .attend p {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

@media (max-width: 780px) {
  .seminar-contents .attend p {
    font-size: 12px;
    line-height: 1.4;
  }
}

.seminar-contents .attend p:before {
  content: '※';
  position: absolute;
  left: -0;
  top: 0;
}

.seminar-contents .attend p a {
  color: #d60027;
  font-weight: 700;
}

.seminar-contents .attend p a:hover {
  text-decoration: none;
}

.seminar-contents .contact-bn {
  margin: 0 auto 40px;
  width: 862px;
}

@media (max-width: 780px) {
  .seminar-contents .contact-bn {
    width: 100%;
    margin-bottom: 30px;
  }
}

.seminar-contents .contact-bn a>div {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 862px;
  -webkit-box-shadow: 0 10px 0 0 #115d20;
  box-shadow: 0 10px 0 0 #115d20;
  border-radius: 10px;
}

@media (max-width: 780px) {
  .seminar-contents .contact-bn a>div {
    width: 100%;
    -webkit-box-shadow: 0 5px 0 0 #115d20;
    box-shadow: 0 5px 0 0 #115d20;
  }
}

.seminar-contents .contact-bn a>div:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-animation: shine 1s infinite;
  animation: shine 1s infinite;
}

.step {
  background: #1e2c76;
}

.step h2 {
  color: #ffffff;
  font-size: 40px;
}

@media (max-width: 780px) {
  .step h2 {
    font-size: 16px;
    font-size: 5vw;
  }
}

.step h2 span {
  font-size: 60px;
  color: #cbb745;
  font-weight: 900;
}

@media (max-width: 780px) {
  .step h2 span {
    font-size: 20px;
    font-size: 6.25vw;
  }
}

.step ul {
  justify-content: space-between;
}

@media (max-width: 780px) {
  .step ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.step ul li {
  background: #ffffff;
}

@media (max-width: 780px) {
  .step ul li {
    margin-bottom: 10px;
    width: 320px;
  }
}

@media (max-width: 780px) {
  .step ul li:last-child {
    margin-bottom: 0;
  }
}

.step ul li .contents {
  width: 320px;
  padding: 20px;
  box-sizing: border-box;
  background: #ffffff;
}

@media (max-width: 780px) {
  .step ul li .contents {
    width: auto;
    padding: 15px;
  }
}

.step ul li .contents img {
  width: 100%;
}

.step ul li .contents p {
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 780px) {
  .step ul li .contents p {
    margin-top: 10px;
  }
}

.step ul li .contents p.small {
  text-align: left;
  font-size: 16px;
  margin-top: 10px;
}

@media (max-width: 780px) {
  .step ul li .contents p.small {
    font-size: 12px;
    font-size: 3.75vw;
    margin-top: 5px;
  }
}

.step ul li .contents p a {
  color: #d60027;
  font-weight: 700;
}

.step ul li .contents p a:hover {
  text-decoration: none;
}

.owner .img {
  padding-right: 60px;
}

@media (max-width: 780px) {
  .owner .img {
    padding-right: 0;
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 780px) {
  .owner .img img {
    width: 70%;
  }
}

.owner .flex {
  margin-bottom: 20px;
}

@media (max-width: 780px) {
  .owner .flex {
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.teacher {
  background: #f8f4e5;
}

.teacher .img {
  padding-right: 60px;
}

@media (max-width: 780px) {
  .teacher .img {
    padding-right: 0;
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 780px) {
  .teacher .img img {
    width: 70%;
  }
}

@media (max-width: 780px) {
  .teacher .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.teacher .img-image {
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 780px) {
  .teacher .img-image {
    margin-top: 10px;
  }
}

.faq .faq_inner {
  margin-bottom: 20px;
}

.faq .faq_inner:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 780px) {
  .faq .faq_inner {
    margin-bottom: 10px;
  }
}

.faq .faq_content {
  display: none;
}

.faq .faq_q {
  cursor: pointer;
}

.faq .faq_q.open .text p:after {
  transform: rotate(225deg);
}

.faq .faq_q .text {
  position: relative;
}

.faq .faq_q .text p {
  font-weight: 700;
  position: relative;
}

@media (max-width: 780px) {
  .faq .faq_q .text p {
    padding-right: 30px;
  }
}

.faq .faq_q .text p:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 45%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #1e2c76;
  border-bottom: 3px solid #1e2c76;
  transform: translateY(-50%) rotate(45deg);
  transition: .3s;
}

@media (max-width: 780px) {
  .faq .faq_q .text p:after {
    right: 5px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #1e2c76;
    border-bottom: 2px solid #1e2c76;
  }
}

.faq .faq_q .img {
  background: #1e2c76;
}

.faq .faq_a {
  margin-top: 10px;
}

.faq .text {
  padding: 20px 30px;
  background: #fbf9f4;
  width: 100%;
}

@media (max-width: 780px) {
  .faq .text {
    padding: 10px 10px 10px 15px;
    box-sizing: border-box;
    width: 90%;
  }
}

@media (max-width: 780px) {
  .faq .img {
    width: 10%;
    background: #cbb745;
  }
}

.contact-area {
  background: url(../img/sub-main-bk.png) repeat;
  background-size: 12px 12px;
}

.contact-area #content_form {
  font-size: 18px;
}

@media (max-width: 780px) {
  .contact-area #content_form {
    font-size: 14px;
    font-size: 4.375vw;
  }
}

.contact-area h2 {
  font-size: 38px;
}

@media (max-width: 780px) {
  .contact-area h2 {
    font-size: 18px;
    font-size: 5.625vw;
  }
}

.contact-area h2 span {
  font-size: 55px;
  color: #1e2c76;
}

@media (max-width: 780px) {
  .contact-area h2 span {
    font-size: 20px;
    font-size: 6.25vw;
  }
}

.contact-area h2+div {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 780px) {
  .contact-area h2+div {
    margin-bottom: 15px;
  }
}

@media (max-width: 780px) {
  .contact-area h2+div img {
    width: 90%;
  }
}

.contact-area .sub-catch {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 780px) {
  .contact-area .sub-catch {
    font-size: 16px;
    font-size: 5vw;
  }
}

.contact-area .sub-catch span {
  color: #d60027;
}

.contact-area .card {
  font-size: 16px;
  margin-left: 30px;
}

.contact-area .card a {
  color: #d60027;
}

.contact-area .card a:hover {
  text-decoration: none;
}

.contact-area .notice {
  margin-top: 50px;
  text-align: center;
  color: #1e2c76;
}

@media (max-width: 780px) {
  .contact-area .notice {
    margin-top: 25px;
  }
}

.contact-area .input {
  border-top: 1px solid #1e2c76;
  padding: 30px 0;
  display: flex;
  align-items: center;
}

@media (max-width: 780px) {
  .contact-area .input {
    flex-wrap: wrap;
    padding: 10px 0 15px;
  }
}

.contact-area .input.radiobutton {
  border-top: 3px solid #1e2c76;
}

.contact-area .input.radiobutton .form_input_input {
  width: 70%;
}

@media (max-width: 780px) {
  .contact-area .input.radiobutton .form_input_input {
    width: 100%;
  }
}

.contact-area .input.radiobutton .form_input_input label {
  display: block;
  width: 100%;
  font-weight: 400;
  max-width: 100%;
}

.contact-area .input label {
  width: 30%;
  font-weight: 700;
  color: #1e2c76;
  max-width: 280px;
  padding-left: 20px;
  box-sizing: border-box;
  position: relative;
}

@media (max-width: 780px) {
  .contact-area .input label {
    width: 100%;
    padding-left: 0;
  }
}

.contact-area .input label span {
  position: absolute;
  left: 210px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media (max-width: 780px) {
  .contact-area .input label span {
    position: static;
    padding-left: 5px;
  }
}

@media (max-width: 780px) {
  .contact-area .input label span img {
    width: 36px;
    vertical-align: middle;
  }
}

.contact-area .input:nth-of-type(7) {
  border-bottom: 1px solid #1e2c76;
}

.contact-area input[type='text'],
.contact-area textarea,
.contact-area select {
  width: 70%;
  padding: 15px;
  font-size: 16px;
  margin-right: 20px;
  border: none;
}

@media (max-width: 780px) {

  .contact-area input[type='text'],
  .contact-area textarea,
  .contact-area select {
    width: 100%;
    margin-right: 0;
    margin-top: 5px;
  }
}

.contact-area .submit {
  width: 50%;
  margin: 30px auto 0;
  position: relative;
  line-height: 2.8em;
  text-align: center;
}

@media (max-width: 780px) {
  .contact-area .submit {
    width: 100%;
    margin: 20px auto 0;
  }
}

.contact-area .submit:after {
  content: "";
  width: .6em;
  height: .6em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 780px) {
  .contact-area .submit:after {
    right: 30px;
  }
}

@media (max-width: 780px) {
  .contact-area .submit {
    margin-top: 10px;
  }
}

.contact-area .submit input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  font-size: 23px;
  font-weight: 700;
  border: 5px solid #115d20;
  color: #ffffff;
  background: #4ba413;
}

@media (max-width: 780px) {
  .contact-area .submit input {
    font-size: 16px;
    font-size: 5vw;
  }
}

.contact-area .submit input:hover {
  opacity: 0.8;
}

.contact-area .terms-box {
  width: 80%;
  height: 100px;
  overflow: auto;
  padding: 1.3em;
  background: #ffffff;
  margin: 0 auto;
  border: 1px solid #1e2c76;
}

@media (max-width: 780px) {
  .contact-area .terms-box {
    padding: 1em;
  }
}

.contact-area .terms-box p {
  color: #1e2c76;
}

.contact-area .terms-box p span {
  font-weight: 700;
}

.contact-area .terms {
  width: 80%;
  margin: 30px auto 5px;
}

@media (max-width: 780px) {
  .contact-area .terms {
    margin-top: 20px;
  }
}

.contact-area .terms span {
  color: #1e2c76;
  font-weight: 700;
  position: relative;
}

.contact-area .terms span:before {
  content: '';
  width: 10px;
  height: 1px;
  background-color: #22475d;
  position: absolute;
  top: 50%;
  left: -20px;
}
.form_attention {
  /* text-align: right; */
  font-weight: 700;
  font-size: 16px;
  /* font-size: 1.4vw; */
  margin-top: -15px;
  margin-bottom: 15px
}

@media (max-width: 780px){
.form_attention {
    font-size: 8px;
    font-size: 3vw;
    font-weight: 2px;
    margin-top: -7px;
    margin-bottom: 7px
}
}
select.form_input_input,
#content1 select.form_input_input {
  width: 100% !important;
  max-width: 70% !important;
}

@media (max-width: 780px) {

  select.form_input_input,
  #content1 select.form_input_input {
    max-width: 100% !important;
  }
}

footer {
  background: #ffffff;
  text-align: center;
}

@media (max-width: 780px) {
  footer {
    padding-bottom: 50px;
  }
}

footer .up {
  padding: 15px 0;
  border-bottom: 1px solid #1e2c76;
  color: #1e2c76;
}

footer .up a {
  text-decoration: none;
  color: #1e2c76;
  font-size: 16px;
}

@media (max-width: 780px) {
  footer .up a {
    font-size: 13px;
    font-size: 4.0625vw;
  }
}

footer .up a:hover {
  text-decoration: underline;
}

footer .down {
  padding: 10px 0;
  font-size: 13px;
  color: #1e2c76;
}

@media (max-width: 780px) {
  footer .down {
    font-size: 10px;
    font-size: 3.125vw;
    padding: 8px 5px;
  }
}

span.deco {
  color: #2d8cff;
}

span.deco2 {
  font-weight: 700;
  color: #d60027;
}

span.deco3 {
  background: linear-gradient(transparent 70%, #faed83 70%);
}

span.deco4 {
  font-weight: 900;
  color: #d60027;
  font-size: 60px;
}

@media (max-width: 780px) {
  span.deco4 {
    font-size: 25px;
    font-size: 7.8125vw;
  }
}

.slider {
  display: flex;
}

.slider.news {
  padding-bottom: 50px;
}

@media (max-width: 780px) {
  .slider.news {
    padding-bottom: 20px;
  }
}

.slider__inner {
  display: flex;
}

.slider__inner:first-child {
  animation: loop 90s linear infinite;
}

.slider__inner:nth-child(2) {
  animation: loop2 90s -60s linear infinite;
}

.slider__inner:last-child {
  animation: loop3 90s -30s linear infinite;
}


.slider__inner2 {
  display: flex;
}

.slider__inner2:first-child {
  animation: loop 180s linear infinite;
}

.slider__inner2:nth-child(2) {
  animation: loop2 180s -120s linear infinite;
}

.slider__inner2:last-child {
  animation: loop3 180s -60s linear infinite;
}


.media {
  overflow: hidden;
  padding-bottom: 0;
}

@media (max-width: 780px) {
  .media h2 img {
    width: 50%;
  }
}

@media (max-width: 780px) {
  .media .slider img {
    width: 250px;
  }
}

.media .slider:first-of-type {
  margin-bottom: 20px;
}

@media (max-width: 780px) {
  .media .slider:first-of-type {
    margin-bottom: 10px;
  }
}

.media .slider.news img {
  width: 330px;
  height: auto;
}

@media (max-width: 780px) {
  .media .slider.news img {
    width: 250px;
  }
}

.media .slider.news .slider__item {
  padding: 0 15px;
}

.media .img-list {
  background: #f8f1d9;
  padding: 50px 0;
}

@media (max-width: 780px) {
  .media .img-list {
    padding: 20px 0;
  }
}

@media (max-width: 780px) {
  .media .img-list h2 {
    font-size: 15px;
    font-size: 4.6875vw;
  }
}

.media .img-list h2 span span {
  font-size: 70px;
  font-weight: 900;
}

@media (max-width: 780px) {
  .media .img-list h2 span span {
    font-size: 25px;
    font-size: 7.8125vw;
  }
}

.media .voice .slider__item {
  padding: 0 30px;
}

@media (max-width: 780px) {
  .media .voice .slider__item {
    padding: 0 15px;
  }
}


.media-2 .voice .slider__item {
  padding: 0 30px;
}

@media (max-width: 780px) {
  .media-2 .voice .slider__item {
    padding: 0 15px;
  }
}

.form_attention {
  /* text-align:right; */
  font-weight: 700;
  font-size: 16px;
  /* font-size: 1.4vw; */
}

@media (max-width: 780px) {
  .form_attention {
    font-size: 8px;
    font-size: 3vw;
    font-weight: 2px;
  }
}

.form_attention .red {
  color: red;
}

.text-center {
  text-align: center;
}



@keyframes loop {
  0% {
    transform: translateX(200%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-200%);
  }
}

@keyframes loop3 {
  0% {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-300%);
  }
}

.policy {
  background: #d9d9d8;
  padding-top: 130px;
}

@media (max-width: 780px) {
  .policy {
    padding-top: 70px;
  }
}

.policy .policy_in {
  background: #ffffff;
  padding: 60px;
}

@media (max-width: 780px) {
  .policy .policy_in {
    padding: 20px;
  }
}

.policy .policy_in span {
  font-weight: 700;
}

.policy .policy_in p {
  font-size: 16px;
}

@media (max-width: 780px) {
  .policy .policy_in p {
    font-size: 13px;
    font-size: 4.0625vw;
  }
}

.policy .policy_in p:last-of-type {
  margin-bottom: 0;
}

.policy h2:nth-of-type(2) {
  margin-top: 50px;
}

@-webkit-keyframes shine {
  100% {
    left: 100%;
  }
}

@keyframes shine {
  100% {
    left: 100%;
  }
}


/*サブボタン*/

.subbutton {
  width: 25%;
  max-width: 100%;
  position: fixed;
  right: 1%;
  bottom: 1%;
  z-index: 100;
}

.subbtn {
  width: 100%;
}

@media screen and (max-width:767px) {
  .subbutton {
    width: 80%;
    max-width: 100%;
    position: fixed;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 0;
    z-index: 100;
  }
}

/*サブボタン*/

.reflection {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.reflection:after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
}



@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}