@charset "UTF-8";
/* =============================================
utility
============================================= */
.pc {
  display: block;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

.u-bold {
  font-weight: bold;
}

.bg-orange {
  background: #E87A19;
  color: white;
  padding: 0 5px;
}

a {
  color: black;
  text-decoration: unset;
}
a:hover {
  cursor: pointer !important;
  opacity: 0.7;
}

* {
  box-sizing: border-box;
  line-height: 2;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

p {
  font-size: 16px;
  font-weight: normal;
}
@media (max-width: 767px) {
  p {
    font-size: 14px;
  }
}

li {
  list-style-type: none;
}

/* =============================================
common
============================================= */
body {
  position: relative;
  z-index: -1;
}

main {
  z-index: -1;
  position: relative;
}

img {
  width: 100%;
}

.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

.nallow__container {
  max-width: 780px;
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 120px 0 !important;
}
@media (max-width: 767px) {
  section {
    padding: 40px 0 !important;
  }
}

.section__ttl {
  font-size: 40px!important;
  font-weight: 500;
  color: #1c1c1c;
  position: relative;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 60px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 3px;
}
@media (max-width: 767px) {
  .section__ttl {
    font-size: 18px!important;
    margin-bottom: 20px;
  }
}
.section__ttl.no-line::before, .section__ttl.no-line::after {
  display: none;
}
.section__ttl::before {
  content: "";
  display: block;
  background: black;
  width: 25%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.section__ttl::after {
  content: "";
  display: block;
  background: black;
  width: 25%;
  height: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.section__ttl.white::before {
  content: "";
  display: block;
  background: white;
  width: 25%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.section__ttl.white::after {
  content: "";
  display: block;
  background: white;
  width: 25%;
  height: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.section__ttl.white {
  color: white;
}

@media(max-width: 749px) {
	.section__ttl::before {
		width: 14%;
}
		.section__ttl::after {
		width: 14%;
}
		.section__ttl.white::before {
		width: 14%;
}
			.section__ttl.white::after {
		width: 14%;
}
}
/* =============================================
ハンバーガーメニュー
============================================= */
/*　ハンバーガーボタン　*/
@media (max-width: 1300px) {
  header {
    height: 80px !important;
    position: fixed;
    background: white;
    width: 100%;
    z-index: 1000;
    top: 0;
  }
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: white;
    color: #ffffff;
    display: flex;
    justify-content: center;
    /* 初期：非表示 */
    visibility: hidden;
    opacity: 0;
    /* ふわっと表示 */
    transition: 0.5s ease-in-out;
  }
  .nav ul {
    list-style: none;
    width: 100%;
    height: auto;
	  padding-left: 0;
  }
  .nav li:not(:last-child) {
    margin-bottom: 30px;
    position: relative;
  }
}
@media (max-width: 1300px) and (max-width: 1300px) {
  .nav li:not(:last-child) {
    margin-bottom: 0;
    background: white;
  }
  .nav li:not(:last-child)::before {
    content: "";
    display: block;
    width: 20px;
    height: 10px;
    background: url(../img/arrow-blue.png) no-repeat;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-size: contain;
  }
}
@media (max-width: 1300px) and (max-width: 1300px) {
  .nav li {
    margin-bottom: 0;
    background: white;
    border-top: 1px solid rgba(204, 204, 204, 0.8);
  }
}
@media (max-width: 1300px) {
  .nav a {
    color: #ffffff;
  }
}
@media (max-width: 1300px) and (max-width: 1300px) {
  .nav a {
    color: #000000;
    padding: 20px;
    display: block;
    font-size: 15px;
    text-align: center;
  }
}
@media (max-width: 1300px) {
  .header__pc {
    display: none;
  }
}
/* ナビゲーションボタン（開く） */
#navbtn {
  position: fixed;
  top: 15px;
  right: 15px;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: white;
  padding: 13px;
  border-radius: 50%;
}

#navbtn::before,
#navbtn::after {
  content: "";
  display: block;
  height: 1px;
  background-color: black;
  transform: translateY(8px);
  transition: 0.3s ease-in-out;
}

#navbtn::before {
  transform: translateY(-8px);
  box-shadow: 0 8px black;
}

/* ナビゲーションボタン（閉じる） */
.open #navbtn {
  z-index: 100;
}

.open #navbtn::before {
  transform: rotate(-45deg);
  box-shadow: none;
}

.open #navbtn::after {
  transform: rotate(45deg);
  box-shadow: none;
}

/* ナビゲーションメニュー 開いた時*/
.open .nav {
  visibility: visible;
  opacity: 1;
}

.header__sp {
  display: block;
}

@media (min-width: 1300px) {
  /* PCではボタン非表示 */
  #navbtn {
    display: none;
  }
  /* メニューを右に寄せる */
  .nav {
    /* 右寄せ */
    margin-left: auto;
  }
  .nav ul {
    display: flex;
    list-style: none;
    align-items: center;
  }
  .nav ul li a {
    color: #000000;
    padding: 16px 20px;
    display: block;
  }
  .header__sp {
    display: none;
  }
}
/* =============================================
element
============================================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: white;
}
@media (max-width: 767px) {
  header {
    height: 80px;
  }
}
header .header__container {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  header .header__container {
    padding: 12px 8px;
  }
}
header .header__logo {
  max-width: 270px;
}
@media (max-width: 1300px) {
  header .header__logo {
    max-width: 200px;
  }
}
header .header__btn {
  color: white !important;
  background: #0098D0;
  padding: 10px 40px !important;
  border-radius: 50px;
  border-top: none;
  font-size: 14px;
}
@media (max-width: 767px) {
  header .header__btn {
    max-width: 280px;
    text-align: center;
    margin: 0px auto;
    padding: 15px;
  }
}
header li:has(.header__btn) {
  padding: 30px;
}
header .nav img {
  max-width: 220px;
}
@media (max-width: 767px) {
  header .nav img {
    max-width: 200px;
  }
}
header .nav a {
  font-weight: bold;
}

.section__contact {
  background: url(../img/bg-seminar.jpg) no-repeat;
  background-size: cover;
}
.section__contact .contact__items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.section__contact .contact__item {
  width: 30%;
  background: white;
  border: 5px solid #00366F;
  text-align: center;
  border-radius: 20px;
  padding: 40px 20px;
}
@media (max-width: 767px) {
  .section__contact .contact__item {
    width: 100%;
    padding: 20px 20px 10px;
    border: 3px solid #00366F;
    margin-bottom: 20px;
  }
}
.section__contact .contact__step {
  font-size: 40px;
  color: #00366F;
}
@media (max-width: 767px) {
  .section__contact .contact__step {
    font-size: 18px;
  }
}
.section__contact .contact__ttl {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section__contact .contact__ttl {
    font-size: 18px;
  }
}
.section__contact .contact__txt {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section__contact .contact__txt {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.section__contact .contact__img {
  width: 90px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section__contact .contact__img {
    width: 55px;
  }
}
.section__contact .form__sub-ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: -40px;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .section__contact .form__sub-ttl {
    font-size: 16px;
    margin-bottom: -10px;
    margin-top: 40px;
  }
}
.section__contact .form__ttl {
  font-size: 80px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .section__contact .form__ttl {
    font-size: 40px;
  }
}
.section__contact .content_form {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
}
@media (max-width: 767px) {
  .section__contact .content_form {
    padding: 0 0 30px;
  }
}
.section__contact .label_frame label::after {
  line-height: 18px !important;
  font-size: 12px;
  background: #E61974 !important;
}
.section__contact .submit input {
  background: #00366F;
  color: white;
  padding: 10px 80px;
  font-size: 20px;
  border: none;
  border-radius: 10px;
}
.section__contact .submit input:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media (max-width: 767px) {
  .section__contact .my_column {
    padding-bottom: 0 !important;
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .section__contact .my_column input, .section__contact .my_column textarea {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .section__contact .nallow__container {
    padding: 0;
  }
}

.change-color {
  background: white;
}

#lp-content,
.lp-content__postContent {
  padding: 0;
}

.section__mv {
  background: url(../img/bg-mv01.jpg) no-repeat;
  background-size: cover;
  margin-top: 90px;
  background-position: center;
}
@media (max-width: 767px) {
  .section__mv {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .section__mv {
    background: url(../img/bg-mv01-sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.section__mv .mv__btn {
  max-width: 320px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section__mv .mv__btn {
    max-width: 240px;
  }
}
.section__mv .mv__catch {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .section__mv .mv__catch {
    margin-bottom: 30px;
  }
}

.section__onayami {
  background: url(../img/bg-nayami.jpg) no-repeat;
  background-size: cover;
  margin-top: -12px;
  z-index: -2;
  position: relative;
}

.section__genjou {
  background: url(../img/bg-genjou.png) no-repeat;
  background-size: cover;
  padding-top: 160px !important;
  margin-top: -80px;
  position: relative;
  z-index: 100;
  background-position: center;
}
@media (max-width: 767px) {
  .section__genjou {
    padding-top: 100px !important;
    margin-top: -55px;
  }
}
.section__genjou .genjou__catch {
  color: white;
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section__genjou .genjou__catch {
    font-size: 16px;
  }
}
.section__genjou .genjou__msg {
  color: white;
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section__genjou .genjou__msg {
    font-size: 16px;
    padding-bottom: 40px;
  }
}
.section__genjou .genjou__msg span {
  font-size: 42px;
}
@media (max-width: 767px) {
  .section__genjou .genjou__msg span {
    font-size: 20px;
  }
}
.section__genjou .genjou__img {
  margin-right: -120px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section__genjou .genjou__img {
    margin-right: -20px;
  }
}

.section__course {
  background: #EEEEEE;
  padding: 140px 0 0 !important;
  margin-top: -100px;
  z-index: 10;
  position: relative;
}
@media (max-width: 767px) {
  .section__course {
    padding-top: 80px !important;
  }
}
.section__course .course__catch {
  max-width: 800px;
  margin: 0 auto;
}
.section__course .course__wrapper {
  background: white;
  padding: 80px 60px 20px;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .section__course .course__wrapper {
    padding: 40px 20px 20px;
    margin-top: 40px;
  }
}
.section__course .course__ttl {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  margin-top: -110px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .section__course .course__ttl {
    margin-top: -50px;
    margin-bottom: 0;
  }
}
.section__course .course__msg {
  color: #E87A19;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section__course .course__msg {
    font-size: 18px;
  }
}
.section__course .course__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.section__course .course__txt {
  width: 78%;
}
@media (max-width: 767px) {
  .section__course .course__txt {
    width: 100%;
  }
}
.section__course .course__img01 {
  width: 30%;
  margin-right: -14%;
  margin-top: -70px;
}
@media (max-width: 767px) {
  .section__course .course__img01 {
    margin-left: auto;
    margin-top: 30px;
    width: 45%;
  }
	
	.section__course .course__img01 img {
		margin-bottom: -50px!important;
	}
}
.section__course .course__img02 {
  width: 30%;
  margin-left: -14%;
}
@media (max-width: 767px) {
  .section__course .course__img02 {
    width: 60%;
    margin-left: -14%;
    margin-top: -120px;
  }
}
.section__course .course__footer img {
  margin-bottom: -13px;
}
@media (max-width: 767px) {
  .section__course .course__footer img {
    bottom: -20px;
    position: relative;
  }
}

.section__tokuten {
  background: url(../img/bg-tokuten.jpg) no-repeat;
  background-size: cover;
  z-index: -10;
  background-position: bottom;
}
.section__tokuten .tokuten__ttl {
  max-width: 500px;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  .section__tokuten .tokuten__ttl {
    max-width: 240px;
    margin: 0 auto 30px;
  }
}
.section__tokuten .tokuten__wrapper {
  display: flex;
  background: rgba(255, 255, 255, 0.7411764706);
  margin-bottom: 30px;
  align-items: center;
  padding: 30px 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .section__tokuten .tokuten__wrapper {
    flex-direction: row-reverse;
    padding: 20px;
  }
}
.section__tokuten .tokuten__img {
  width: 22%;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .section__tokuten .tokuten__img {
    width: 100%;
    padding-right: 0;
    max-width: 100px;
    margin: 0 auto 10px;
  }
}
.section__tokuten .tokuten__btn {
  max-width: 460px;
  margin: 60px auto 0;
}
.section__tokuten .tokuten__number {
  background: #E87A19;
  width: 220px;
  color: white;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section__tokuten .tokuten__number {
    margin: 0 auto 20px;
  }
}
.section__tokuten .tokuten__name {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 1px;
  display: inline;
  background: linear-gradient(transparent 70%, #F9D423 0%);
  border-width: 5px; /*5ピクセルの太さにする*/
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section__tokuten .tokuten__name {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .section__tokuten p {
    margin-top: 20px;
  }
}
.section__tokuten .tokuten__txt {
  width: 75%;
}

.section__tokuten .tokuten__txt p{
  margin-top: 20px;
}
@media (max-width: 767px) {
  .section__tokuten .tokuten__txt {
    width: 100%;
  }
	.section__tokuten .tokuten__txt p{
  margin-top: 10px;
}
}

.section__gaiyou {
  background: url(../img/bg-gaiyou.jpg) no-repeat;
  background-size: cover;
}
.section__gaiyou .gaiyou__list {
  color: white;
  display: flex;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .section__gaiyou .gaiyou__list {
    font-size: 14px;
  }
}
.section__gaiyou .gaiyou__head {
  position: relative;
  padding-left: 15px;
  min-width: 160px;
}
@media (max-width: 767px) {
  .section__gaiyou .gaiyou__head {
    min-width: 100px;
  }
}
.section__gaiyou .gaiyou__head::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #F9D423;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 0;
}
.section__gaiyou .gaiyou__data {
  font-weight: normal;
}
.section__gaiyou .gaiyou__data span {
  font-size: 14px;
}
@media (max-width: 767px) {
  .section__gaiyou .gaiyou__data span {
    font-size: 12px;
  }
}
.section__gaiyou img {
  max-width: 400px;
  margin-top: -15px;
}
@media (max-width: 767px) {
  .section__gaiyou img {
    margin-top: -5px;
  }
}

.section__jouken {
  background: url(../img/bg-jouken.jpg) no-repeat;
  background-size: cover;
  background-position: bottom;
  padding-bottom: 200px !important;
}
@media (max-width: 767px) {
  .section__jouken {
    padding-bottom: 150px !important;
  }
}
.section__jouken .jouken__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .section__jouken .jouken__info {
    flex-direction: column-reverse;
  }
}
.section__jouken .jouken__info .jouken__img01 {
  width: 40%;
  position: relative;
  left: -150px;
  top: -30px;
}
@media (max-width: 767px) {
  .section__jouken .jouken__info .jouken__img01 {
    width: 100%;
    left: -40px;
    top: 20px;
    max-width: 220px;
  }
}
.section__jouken .jouken__info .jouken__txt {
  width: 70%;
  margin-left: -80px;
}
@media (max-width: 767px) {
  .section__jouken .jouken__info .jouken__txt {
    width: 100%;
    margin-left: 0;
    font-size: 14px;
  }
}
.section__jouken .jouken__info .jouken__txt img {
  max-width: 500px;
}
@media (max-width: 767px) {
  .section__jouken .jouken__info .jouken__txt img {
    max-width: 240px;
  }
}
.section__jouken .jouken__info2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section__jouken .jouken__info2 .jouken__img02 {
  width: 40%;
  position: relative;
  right: -150px;
  top: 60px;
}
@media (max-width: 767px) {
  .section__jouken .jouken__info2 .jouken__img02 {
    width: 100%;
    margin-left: auto;
    top: 20px;
    right: -40px;
    max-width: 240px;
    margin-bottom: -60px!important;
  }
}
.section__jouken .jouken__info2 .jouken__txt {
  width: 70%;
  margin-right: -80px;
}
@media (max-width: 767px) {
  .section__jouken .jouken__info2 .jouken__txt {
    width: 100%;
    margin-right: 0;
  }
}
.section__jouken .jouken__info2 .jouken__txt img {
  max-width: 500px;
}
.section__jouken .jouken__catch {
  max-width: 900px;
  margin: 30px auto;
}
.section__jouken .jouken__wrapper {
  background: white;
  padding: 80px;
  box-shadow: 10px 10px 20px rgba(204, 204, 204, 0.8);
  margin: 0 60px;
}
@media (max-width: 767px) {
  .section__jouken .jouken__wrapper {
    padding: 20px;
    margin: 0;
  }
}
.section__jouken .jouken__list li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .section__jouken .jouken__list li {
    font-size: 14px;
  }
}
.section__jouken .jouken__list li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #0054AC;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 0;
}

.section__flow .flow__items {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}
.section__flow .flow__item {
  width: 18%;
  text-align: center;
}
@media (max-width: 767px) {
  .section__flow .flow__item {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
.section__flow .flow__item .flow__mumber {
  font-size: 60px;
  font-weight: bold;
  color: #FED771;
}
.section__flow .flow__item .flow__ttl {
  color: #E87A19;
  font-size: 20px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section__flow .flow__item .flow__ttl {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    padding-top: 30px;
  }
}
.section__flow .flow__item .flow__ttl::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: black;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media (max-width: 767px) {
  .section__flow .flow__item .flow__ttl::after {
    left: 0;
    transform: translateX(0);
  }
}
.section__flow .flow__txt {
  text-align: left;
}
@media (max-width: 767px) {
  .section__flow .flow__txt {
    margin-bottom: 30px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .section__flow .flow__icon {
    width: 27% !important;
  }
}
@media (max-width: 767px) {
  .section__flow .flow__info {
    width: 65%;
    text-align: left;
  }
}
.section__flow img {
  height: 140px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .section__flow img {
    height: 100px;
  }
}

.section__contact {
  background: #E87A19;
}
.section__contact .cotact__txt {
  color: white;
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .section__contact .cotact__txt {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.section__contact .contact__link {
  max-width: 320px;
  margin: 0 auto;
	margin-top: -50px;
}
@media (max-width: 767px) {
  .section__contact .contact__link {
    max-width: 240px;
    margin: 10px auto;
  }
}

#lp-content, .lp-content__postContent {
  padding: 0;
  position: relative;
  z-index: -10;
}/*# sourceMappingURL=style.css.map */

.section__flow .flow__icon {
  position: relative;
}
.section__flow .flow__icon.last::before {
  display: none;
}
.section__flow .flow__icon::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: #E87A19;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .section__flow .flow__icon::before {
    height: 100%;
    width: 3px;
    transform: translateX(-50%);
  }
}

main {
	margin-bottom: 0!important;
	padding-bottom: 0!important;
}

.no-space {
	letter-spacing: 0!important;
}


/* -----------------------------------------------------
 * 
 * 金融投資教育インストラクター用（一般生）CSS
 * 
 * ------------------------------------------------------ */
.page__ir .section__mv {
    background: url(../img/mv__bg02.jpg) no-repeat;
    background-size: 63%;
    background-position: right;
}

@media(min-width: 1500px) {
	.page__ir .section__mv {
		    background-size: 50%;
}
}

.page__ir .mv__catch {
	max-width: 560px;
}

.page__ir .section__mv .mv__catch {
	margin-bottom: 20px;
}

.mv__btn-gr {
	max-width: 300px;
    margin-top: 40px;
}

.page__ir .section__mv {
	margin-top:0;
}

@media(max-width: 767px) {
	.page__ir .section__mv {
		background: none;
		margin-top: 50px;
	}
	
	.page__ir .section__mv p {
		text-align: center;
	}
	
	.mv__btn-gr {
		    max-width: 240px;
    margin: 20px auto;
	}
}

.section__osusume {
    background: url(../img/bg-osusume.png) no-repeat;
	background-size: cover;
	position: relative;
	z-index:20;
}

.page__ir .section__course .course__msg {
	color: #00366F;
}

.bg-blue {
	background: #00366F;
		color: white;
	padding: 0 5px;
}

.page__ir .section__course {
	padding: 140px 0 80px !important;
}

.section__insert {
    background: url(../img/bg-insert-pc.jpg) no-repeat;
    background-size: cover;
    background-position: right;
    min-height: 500px;
}

@media(max-width: 767px) {
	.section__insert {
		   background: url(../img/bg-insert-sp.jpg) no-repeat;
		    min-height: 400px;
		    background-size: cover;
	}
	
	.page__ir .section__course .course__img01 img {
    margin-bottom: -25px!important;
}
	.page__ir .section__course .course__img02 {
		margin-bottom: 20px;
}
	
		.osusume__img {
		margin-bottom: 30px;
	}
}

@media(min-width: 1500px) {
	.section__insert {
    min-height: 700px;
}
}

.page__ir .section__tokuten {
			   background: url(../img/bg-tokuten02.jpg) no-repeat;
		background-size: cover;
	background-position: bottom;
}

.page__ir .section__tokuten .tokuten__number {
	background: #00366F;
}

@media(max-width: 767px) {
	.page__ir .section__tokuten .tokuten__btn {
max-width: 240px;
		margin-top: 20px;
	}
}

.page__ir .gaiyou__head::before {
	display: none;
}

.page__ir .gaiyou__head {
    background: #D9D9D9;
    text-align: center;
    color: #00366F;
    padding-left: 0;
	    display: flex;
    justify-content: center;
    align-items: center;
	padding: 10px;
	    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.page__ir .section__gaiyou .gaiyou__data {
		width: 100%;
    text-align: center;
    background: white;
    color: #00366F;	
	padding: 10px;
		    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.page__ir .section__gaiyou .gaiyou__list {
	margin-bottom: 20px;
}

.page__ir .section__gaiyou .gaiyou__list:first-of-type {
margin-top: 40px;
}

.gaiyou__txt {
	color: white;
	margin-top: 40px;
}

.jouken__box {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	    background: white;
    padding: 50px;
	align-items: center;
	box-shadow: 10px 10px 20px #cccc;
}

.page__ir .jouken__txt {
	width: 50%;
}

.page__ir .jouken__img01{
	width: 45%;
}

.jouken__top-ttl {
	    color: #00366F;
    font-size: 24px;
    border-bottom: 1px solid;
    display: inline;
	font-weight: bold;
}

.page__ir  .jouken__list {
margin-top: 20px;
}

	.page__ir .section__flow .flow__item .flow__ttl {
		color: #00366F;
	}
	.page__ir .section__flow .flow__icon::before {
			    background: #00366F;
	}

.page__ir .section__contact {
	background: linear-gradient(#3CD3AD, #4CB8C4)
}

@media(max-width: 767px) {
	.page__ir .section__gaiyou .gaiyou__list:first-of-type {
margin-top: 20px;
	}
	.page__ir .section__gaiyou .gaiyou__list {
		margin-bottom: 15px;
}
	
	.gaiyou__txt {
		margin-top: 20px;
}
	
	.jouken__box {
		padding: 30px 20px;
			box-shadow: 5px 5px 10px #cccc;
		    flex-direction: column-reverse;
	}
	
	.page__ir .jouken__img01 {
		width: 100%;
		margin-top: 20px;
		max-width: 200px;
}
	
	.page__ir .jouken__txt {
		width: 100%;
}
	
	.jouken__top-ttl {
		font-size: 16px;
}
	
	.page__ir .section__jouken {
		padding-bottom: 100px!important;
	}
	
}

.page__ir .section__mv p {
	font-size: 18px;
}

.section__contact .section__ttl {
	letter-spacing: 0;
}