@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
html {
  font-family: "Noto Serif JP", serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.2em;
}

/* link */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: #333333; text-decoration: none; }
a:visited { color: #333333; text-decoration: underline; }
a:hover   { color: #333333; text-decoration: underline; }
a:active  { color: #333333; text-decoration: underline; }



/*==========================================
 body
===========================================*/

html {
  background: #FFF;
  overflow: auto;
}
body {
  overflow: hidden;
	/* min-width: 1100px;
  -webkit-text-size-adjust: 100%; */
}
@media only screen and (max-width: 767px) {
  body {
  	min-width: auto;
  }
}

/*==========================================
 画像切替
===========================================*/
/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.spView {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .spView {
    display: block;
  }
}

/*==========================================
 共通スクロールフェード
===========================================*/
/* 上下フェード */
.fade_off {
  opacity: 0;
  transform: translateY(50px);
  transition: all 2.0s ease;
}
.fade_on {
  opacity: 1;
  transform: translateY(0px);
}

/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  z-index: 1000;
  position: fixed;
  width: 100%;
}
header #header {
  position: relative;
  z-index: 200;
  width: 100%;
  height: 120px;
  background-color: #FFF;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.05);
}
header #headerLogoArea {
  position: absolute;
  z-index: 700;
  left: 40px;
  top: 30px;
}
header #headerLogoArea h1 img {
  width: 310px;
  height: auto;
}

header #header_SpIcon {
  display: none;
}
@media only screen and (max-width: 767px) {
  header #header {
    height: 50px;
  }
  header #headerLogoArea {
    left: 15px;
    top: 11px;
  }
  header #headerLogoArea h1 img {
    width: 150px;
    height: auto;
  }
  header #header_SpIcon {
    display: block;
    z-index: 700;
    position: absolute;
    right: 15px;
    top: 15px;
  }
  header #header_SpIcon .menu-trigger,
  header #header_SpIcon .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  header #header_SpIcon .menu-trigger {
    position: relative;
    width: 28px;
    height: 21px;
  }
  header #header_SpIcon .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #af0b0b;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  header #header_SpIcon .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }

}


/*グローバルナビゲーション ////////////////////////////////// */
header #headerGlobalArea {
  position: absolute;
  right: 40px;
}
header #headerGlobalArea nav {
  position: absolute;
  right: 227px;
  top: 50px;
}
header #headerGlobalArea ul {
  width: 430px;
  display: flex;
  justify-content: space-between;
}
header #headerGlobalArea li a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.7rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
header #headerGlobalArea li a:hover {
  text-decoration: none;
  color: #af0b0b;
}
header #headerGlobalArea li a::after {
  position: absolute;
  right: -20px;
  top: 50%;
  width: 12px;
  height: 6px;
  margin: -3px 0 0;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}

header #headerGlobalArea .application_link {
  position: absolute;
  right: 0;
  top: 40px;
}
header #headerGlobalArea .application_link a {
  position: relative;
  display: block;
  width: 157px;
  height: 40px;
  padding: 10px 10px 0 0;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #af0b0b;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
}
header #headerGlobalArea .application_link a:hover {
  text-decoration: none;
  opacity: 0.7;
}
header #headerGlobalArea .application_link a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}

header #overay,
header #headerNavi_Sp {
  display: none;
}
@media only screen and (max-width: 1100px) {
  header #headerGlobalArea ul {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header #headerGlobalArea {
    display: none;
  }
  header #overay {
    position: fixed;
    z-index: 100;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
  }
  header #headerNavi_Sp {
    position: absolute;
    z-index: 110;
    left: 0;
    top: -450px;
    display: block;
    width: 100%;
    height: auto;
    padding: 87px 0 0;
    box-sizing: border-box;
    background-color: #FFF;
    box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.1);
  }
  header #headerNavi_Sp ul {
    width: 100%;
    padding: 0 15px 30px;
    box-sizing: border-box;
  }
  header #headerNavi_Sp li {
    padding: 0 0 25px;
  }
  header #headerNavi_Sp li a {
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  header #headerNavi_Sp li a::after {
    position: absolute;
    right: -20px;
    top: 50%;
    width: 12px;
    height: 6px;
    margin: -3px 0 0;
    background-image: url("../img/icon05.svg");
    background-size: cover;
    content: "";
  }
  header #headerNavi_Sp .application_link {
    width: 100%;
    padding: 30px 0 15px;
    box-sizing: border-box;
    background-color: #eaeaea;
  }
  header #headerNavi_Sp .application_link a.link01 {
    position: relative;
    display: block;
    width: calc(100% - 30px);
    height: 60px;
    margin: 0 auto;
    padding: 20px 10px 0 0;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #af0b0b;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: #FFF;
    transition: all 0.3s ease;
  }
  header #headerNavi_Sp .application_link a.link01::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 15px;
    margin: -8px 0 0 54px;
    background-image: url("../img/icon01.svg");
    background-size: cover;
    content: "";
  }
  header #headerNavi_Sp .application_link p {
    padding: 10px 0 0;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
  }
  header #headerNavi_Sp .application_link p a.link02 {
    text-decoration: underline;
    color: #af0b0b;
  }
}

/*==========================================
 フッターのスタイル
===========================================*/
footer {
  width: 100%;
  padding: 80px 0 55px;
  background-color: #333333;
}
footer #footerBody {
  text-align: center;
}
footer #footerBody h2 {
  font-size: 3.0rem;
  font-weight: 600;
  color: #FFF;
}
footer #footerBody p {
  padding: 20px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFF;
  line-height: 1.8;
}
footer #footerBody p a {
  color: #FFF;
}
footer #footerBody small {
  display: block;
  padding: 85px 0 0;
  font-size: 1.4rem;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 40px 0 30px;
  }
  footer #footerBody h2 {
    font-size: 2.2rem;
  }
  footer #footerBody p {
    padding: 20px 0 0;
    font-size: 1.4rem;
  }
  footer #footerBody p a {
    color: #FFF;
  }
  footer #footerBody small {
    padding: 40px 0 0;
    font-size: 1.2rem;
  }
}


/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  min-height: 500px;
  padding: 120px 0 0 0;
}
@media only screen and (max-width: 767px) {
  #mainContents {
    min-height: 1500px;
    padding: 50px 0 0 0;
  }
}


/*==========================================
 Top
===========================================*/
#mainContents .topMvArea {
  position: relative;
  width: 100%;
  height: 700px;
  padding: 30px 0 0;
  box-sizing: border-box;
  background-color: #eaeaea;
}
#mainContents .topMvArea .imgMv {
  opacity: 0;
}
#mainContents .topMvArea .imgMv img {
  width: 393px;
  height: 598px;
  padding: 0 15px;
  border-radius: 30px;
}
#mainContents .topMvArea .dots-wrap {
  padding: 30px 0 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
}
#mainContents .topMvArea .dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
#mainContents .topMvArea .dots-wrap li:hover,
#mainContents .topMvArea .dots-wrap li.slick-active {
  background: #af0b0b;
}
#mainContents .topMvArea .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
#mainContents .topMvArea .next-arrow {
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  margin: -44px 0 0 598px;
  background-image: url("../img/icon02.svg");
  background-size: cover;
}
#mainContents .topMvArea .prev-arrow {
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  margin: -44px 0 0 -639px;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  transform: rotate(180deg);
}
@media only screen and (max-width: 1330px) {
  #mainContents .topMvArea .next-arrow {
    left: auto;
    right: 15px;
    margin: -44px 0 0 0;
  }
  #mainContents .topMvArea .prev-arrow {
    left: 15px;
    margin: -44px 0 0 0;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .topMvArea {
    height: 450px;
    padding: 20px 0 0;
  }
  #mainContents .topMvArea .imgMv img {
    width: 255px;
    height: 388px;
    padding: 0 10px;
    border-radius: 20px;
  }
  #mainContents .topMvArea .dots-wrap {
    padding: 15px 0 0;
  }
  #mainContents .topMvArea .next-arrow {
    left: auto;
    right: 15px;
    top: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 0;
  }
  #mainContents .topMvArea .prev-arrow {
    left: 15px;
    top: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 0;
  }
}

#mainContents .topPrArea {
  width: 800px;
  margin: 0 auto;
  padding: 90px 0;
}
#mainContents .topPrArea h2 {
  font-size: 4.0rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .topPrArea h3 {
  padding: 60px 0 0;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  line-height: 2.0;
}
#mainContents .topPrArea p {
  padding: 60px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.2;
}
@media only screen and (max-width: 880px) {
  #mainContents .topPrArea {
    width: calc(100% - 60px);
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .topPrArea {
    width: calc(100% - 30px);
    padding: 50px 0;
  }
  #mainContents .topPrArea h2 {
    font-size: 2.4rem;
  }
  #mainContents .topPrArea h3 {
    padding: 40px 0 0;
    font-size: 1.8rem;
    line-height: 2.0;
  }
  #mainContents .topPrArea p {
    padding: 40px 0 0;
    font-size: 1.4rem;
    line-height: 2.2;
  }
}

#mainContents .topCurriculumArea {
  width: 100%;
  padding: 60px 0;
  background-color: #eaeaea;
}
#mainContents .topCurriculumArea .topCurriculum {
  width: 900px;
  margin: 0 auto;
}
#mainContents .topCurriculumArea .topCurriculum p.titleText {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  color: #af0b0b;
}
#mainContents .topCurriculumArea .topCurriculum h3 {
  padding: 10px 0 0;
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .topCurriculumArea .topCurriculum .textBox {
  width: 100%;
  min-height: 500px;
  margin: 40px 0 0;
  padding: 50px 100px;
  box-sizing: border-box;
  background-color: #FFF;
  border-radius: 18px;
}
#mainContents .topCurriculumArea .topCurriculum .textBox p.text01 {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .topCurriculumArea .topCurriculum .curriculum_img {
  width: 700px;
  margin: 0 auto;
  padding: 40px 0 0;
}
#mainContents .topCurriculumArea .topCurriculum .curriculum_img img {
  width: 100%;
  height: auto;
}
#mainContents .topCurriculumArea .topCurriculum h4 {
  position: relative;
  margin: 60px 0 20px;
  padding: 0 0 0 20px;
  font-size: 2.4rem;
  font-weight: 700; 
}
#mainContents .topCurriculumArea .topCurriculum h4::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 15px;
  margin: -7px 0 0;
  border-radius: 10px;
  background-color: #af0b0b;
  content: "";
}
#mainContents .topCurriculumArea .topCurriculum h4 span {
  font-size: 1.6rem;
}
#mainContents .topCurriculumArea .topCurriculum .columnBox {
  width: 100%;
  border-top: 1px solid #cccccc;
}
#mainContents .topCurriculumArea .topCurriculum .columnBox .column {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #cccccc;
}
#mainContents .topCurriculumArea .topCurriculum .columnBox .column h5 {
  font-size: 2.0rem;
  font-weight: 700;
}
#mainContents .topCurriculumArea .topCurriculum .columnBox .column p {
  padding: 10px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .topCurriculumArea .topCurriculum .textBox p.text02 {
  padding: 20px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
@media only screen and (max-width: 940px) {
  #mainContents .topCurriculumArea .topCurriculum {
    width: calc(100% - 50px);
  }
  #mainContents .topCurriculumArea .topCurriculum .textBox {
    padding: 50px 50px;
  }
  #mainContents .topCurriculumArea .topCurriculum .curriculum_img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .topCurriculumArea {
    padding: 30px 0;
  }
  #mainContents .topCurriculumArea .topCurriculum {
    width: calc(100% - 30px);
  }
  #mainContents .topCurriculumArea .topCurriculum p.titleText {
    font-size: 1.4rem;
  }
  #mainContents .topCurriculumArea .topCurriculum h3 {
    padding: 5px 0 0;
    font-size: 2.6rem;
  }
  #mainContents .topCurriculumArea .topCurriculum .textBox {
    margin: 20px 0 0;
    padding: 30px 15px;
    border-radius: 18px;
  }
  #mainContents .topCurriculumArea .topCurriculum .textBox p.text01 {
    font-size: 1.6rem;
  }
  #mainContents .topCurriculumArea .topCurriculum .curriculum_img {
    width: 100%;
    padding: 30px 0 0;
  }
  #mainContents .topCurriculumArea .topCurriculum h4 {
    margin: 40px 0 15px;
    padding: 0 0 0 15px;
    font-size: 1.8rem;
    font-weight: 700; 
  }
  #mainContents .topCurriculumArea .topCurriculum h4::before {
    width: 10px;
    height: 10px;
    margin: -4px 0 0;
  }
  #mainContents .topCurriculumArea .topCurriculum h4 span {
    font-size: 1.2rem;
  }
  #mainContents .topCurriculumArea .topCurriculum .columnBox {
    width: 100%;
    border-top: 1px solid #cccccc;
  }
  #mainContents .topCurriculumArea .topCurriculum .columnBox .column {
    padding: 20px 0;
  }
  #mainContents .topCurriculumArea .topCurriculum .columnBox .column h5 {
    font-size: 1.6rem;
  }
  #mainContents .topCurriculumArea .topCurriculum .columnBox .column p {
    padding: 10px 0 0;
    font-size: 1.3rem;
  }
  #mainContents .topCurriculumArea .topCurriculum .textBox p.text02 {
    padding: 15px 0 0;
    font-size: 1.4rem;
  }
}

#mainContents .topLecturerArea {
  width: 100%;
  padding: 60px 0;
}
#mainContents .topLecturerArea .topLecturer {
  width: 1213px;
  margin: 0 auto;
}
@media only screen and (max-width: 1260px) {
  #mainContents .topLecturerArea .topLecturer {
    width: 592px;
  }
}
#mainContents .topLecturerArea .topLecturer p.titleText {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  color: #af0b0b;
}
#mainContents .topLecturerArea .topLecturer h3 {
  padding: 10px 0 0;
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .topLecturerArea .topLecturer .textBox {
  width: 100%;
  margin: 60px 0 0;
}

#mainContents .topLecturerArea .topLecturer .columnBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .topLecturerArea .topLecturer .columnBox .column {
  width: 282px;
  padding: 0 0 30px;
}
#mainContents .topLecturerArea .topLecturer .columnBox .column img {
  width: 100%;
  height: auto;
}
#mainContents .topLecturerArea .topLecturer .columnBox .column h4 {
  padding: 20px 0 0;
  font-size: 2.4rem;
  font-weight: 700;
}
#mainContents .topLecturerArea .topLecturer .columnBox .column h5 {
  padding: 10px 0 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #af0b0b;
}
#mainContents .topLecturerArea .topLecturer .columnBox .column p {
  padding: 15px 0 0;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .topLecturerArea {
    padding: 30px 0;
  }
  #mainContents .topLecturerArea .topLecturer {
    width: calc(100% - 30px);
  }
  #mainContents .topLecturerArea .topLecturer p.titleText {
    font-size: 1.4rem;
  }
  #mainContents .topLecturerArea .topLecturer h3 {
    padding: 5px 0 0;
    font-size: 2.6rem;
  }
  #mainContents .topLecturerArea .topLecturer .textBox {
    width: 100%;
    margin: 30px 0 0;
  }
  #mainContents .topLecturerArea .topLecturer .columnBox {
    width: 280px;
    margin: 0 auto;
  }
  #mainContents .topLecturerArea .topLecturer .columnBox .column {
    width: 280px;
    padding: 0 0 40px;
  }
  #mainContents .topLecturerArea .topLecturer .columnBox .column h4 {
    padding: 10px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .topLecturerArea .topLecturer .columnBox .column h5 {
    padding: 10px 0 0;
    font-size: 1.2rem;
  }
  #mainContents .topLecturerArea .topLecturer .columnBox .column p {
    padding: 10px 0 0;
    font-size: 1.4rem;
  }
}


#mainContents .topTrainingArea {
  width: 100%;
  padding: 60px 0;
  background-color: #eaeaea;
}
#mainContents .topTrainingArea .topTraining {
  width: 900px;
  margin: 0 auto;
}
#mainContents .topTrainingArea .topTraining p.titleText {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  color: #af0b0b;
}
#mainContents .topTrainingArea .topTraining h3 {
  padding: 10px 0 0;
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .topTrainingArea .topTraining .textBox {
  width: 100%;
  min-height: 500px;
  margin: 40px 0 0;
  padding: 50px 40px 0;
  box-sizing: border-box;
  background-color: #FFF;
  border-radius: 18px;
}

#mainContents .topTrainingArea .topTraining .columnBox {
  width: 100%;
}
#mainContents .topTrainingArea .topTraining .columnBox .column {
  width: 100%;
  padding: 0 0 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .topTrainingArea .topTraining .columnBox .column .column_L {
  width: 400px;
}
#mainContents .topTrainingArea .topTraining .columnBox .column .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .topTrainingArea .topTraining .columnBox .column .column_R {
  width: 400px;
}
#mainContents .topTrainingArea .topTraining .columnBox .column .column_R h4 {
  font-size: 2.6rem;
  font-weight: 700;
}
#mainContents .topTrainingArea .topTraining .columnBox .column .column_R p {
  padding: 20px 0 0;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.0;
}

@media only screen and (max-width: 940px) {
  #mainContents .topTrainingArea .topTraining {
    width: calc(100% - 50px);
  }
  #mainContents .topTrainingArea .topTraining .textBox {
    padding: 50px 30px;
  }
  #mainContents .topTrainingArea .topTraining .columnBox .column .column_L {
    width: 48%;
  }
  #mainContents .topTrainingArea .topTraining .columnBox .column .column_R {
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .topTrainingArea {
    padding: 30px 0;
  }
  #mainContents .topTrainingArea .topTraining {
    width: calc(100% - 30px);
  }
  #mainContents .topTrainingArea .topTraining p.titleText {
    font-size: 1.4rem;
  }
  #mainContents .topTrainingArea .topTraining h3 {
    padding: 10px 0 0;
    font-size: 2.6rem;
  }
  #mainContents .topTrainingArea .topTraining .textBox {
    margin: 20px 0 0;
    padding: 20px 15px 0;
  }
  #mainContents .topTrainingArea .topTraining .columnBox .column .column_L {
    width: 100%;
    padding: 0 0 15px;
  }
  #mainContents .topTrainingArea .topTraining .columnBox .column .column_R {
    width: 100%;
  }
  #mainContents .topTrainingArea .topTraining .columnBox .column .column_R h4 {
    font-size: 2.0rem;
  }
  #mainContents .topTrainingArea .topTraining .columnBox .column .column_R p {
    padding: 10px 0 0;
    font-size: 1.4rem;
  }

}


#mainContents .topProgramArea {
  width: 100%;
  padding: 60px 0;
}
#mainContents .topProgramArea .topProgram {
  width: 900px;
  margin: 0 auto;
}
@media only screen and (max-width: 960px) {
  #mainContents .topProgramArea .topProgram {
    width: calc(100% - 60px);
  }
}
#mainContents .topProgramArea .topProgram p.titleText {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  color: #af0b0b;
}
#mainContents .topProgramArea .topProgram h3 {
  padding: 10px 0 0;
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .topProgramArea .topProgram .textBox {
  width: 100%;
  margin: 50px 0 0;
  padding: 50px 0 1px;
  background-color: #eaeaea;
  border-radius: 18px;
}
#mainContents .topProgramArea .topProgram .column {
  width: 800px;
  margin: 0 auto 50px;
  padding: 10px 30px;
  box-sizing: border-box;
  background-color: #FFF;
  border-radius: 18px;
}
@media only screen and (max-width: 960px) {
  #mainContents .topProgramArea .topProgram .column {
    width: calc(100% - 80px);
  }
}
#mainContents .topProgramArea .topProgram .column table {
  width: 100%;
}
#mainContents .topProgramArea .topProgram .column table tr {
  border-bottom: 1px solid #cccccc;
}
#mainContents .topProgramArea .topProgram .column table tr:last-child {
  border-bottom: none;
}
#mainContents .topProgramArea .topProgram .column table tr th {
  width: 120px;
  padding: 20px 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}
#mainContents .topProgramArea .topProgram .column table tr td {
  padding: 20px 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
#mainContents .topProgramArea .topProgram .column table tr td span {
  font-size: 1.4rem;
}
#mainContents .topProgramArea .topProgram .column table tr td a {
  color: #af0b0b;
  text-decoration: underline;
}
#mainContents .topProgramArea .topProgram .column table tr td a:hover {
  opacity: 0.7;
}
#mainContents .topProgramArea .topProgram .column h4 {
  width: 700px;
  margin: 20px auto 0;
  padding: 20px 0;
  background-color: #af0b0b;
  border-radius: 8px;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
#mainContents .topProgramArea .topProgram .column ul {
  width: 700px;
  margin: 0 auto;
  padding: 40px 0 20px 0;
  list-style-type: none;
}
@media only screen and (max-width: 960px) {
  #mainContents .topProgramArea .topProgram .column h4 {
    width: 100%;
  }
  #mainContents .topProgramArea .topProgram .column ul {
    width: 100%;
  }
}
#mainContents .topProgramArea .topProgram .column ul li {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 0 35px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .topProgramArea .topProgram .column ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 21px;
  height: 18px;
  margin: -9px 0 0;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .topProgramArea .textBox h5 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#mainContents .topProgramArea .textBox .flowBox {
  width: 500px;
  margin: 0 auto;
  padding: 45px 0 0;
}
#mainContents .topProgramArea .textBox .flowBox .flowColumn {
  position: relative;
  width: 100%;
  margin: 0 0 80px;
}
#mainContents .topProgramArea .textBox .flowBox .flowColumn::after {
  position: absolute;
  left: 50%;
  top: 108px;
  width: 19px;
  height: 27px;
  margin: 0 0 0 -13px;
  background-image: url("../img/icon04.svg");
  background-size: cover;
  content: "";
}
#mainContents .topProgramArea .textBox .flowBox .flowColumn:nth-child(2)::after {
  top: 135px;
}
#mainContents .topProgramArea .textBox .flowBox .flowColumn:nth-child(4)::after {
  top: 182px;
}
#mainContents .topProgramArea .textBox .flowBox .flowColumn:nth-child(5)::after {
  display: none;
}
#mainContents .topProgramArea .textBox .flowBox .flowColumn p {
  padding: 25px 0;
  background-color: #FFF;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
#mainContents .topProgramArea .textBox .flowBox .flowColumn p span {
  display: block;
  padding: 10px 0 0;
  font-size: 1.2rem;
  line-height: 1.6;
}
#mainContents .topProgramArea .textBox .flowBox .flowColumn:nth-child(1) p {
  border: 1px solid #af0b0b;
  color: #af0b0b;
}
#mainContents .topProgramArea .textBox .flowBox .flowColumn:nth-child(2) p,
#mainContents .topProgramArea .textBox .flowBox .flowColumn:nth-child(3) p {
  border: 1px solid #af0b0b;
  background-color: #af0b0b;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  #mainContents .topProgramArea {
    padding: 30px 0;
  }
  #mainContents .topProgramArea .topProgram {
    width: 100%;
  }
  #mainContents .topProgramArea .topProgram p.titleText {
    font-size: 1.4rem;
  }
  #mainContents .topProgramArea .topProgram h3 {
    padding: 10px 0 0;
    font-size: 2.6rem;
  }
  #mainContents .topProgramArea .topProgram .textBox {
    width: 100%;
    margin: 30px 0 0;
    padding: 20px 0 1px;
    border-radius: 0;
  }
  #mainContents .topProgramArea .topProgram .column {
    width: calc(100% - 30px);
    margin: 0 auto 20px;
    padding: 5px 15px;
    border-radius: 10px;
  }
  #mainContents .topProgramArea .topProgram .column table tr th {
    display: block;
    width: 100%;
    padding: 20px 0 10px;
    font-size: 1.6rem;
    line-height: 1.0;
  }
  #mainContents .topProgramArea .topProgram .column table tr td {
    display: block;
    width: 100%;
    padding: 0 0 15px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #mainContents .topProgramArea .topProgram .column table tr td span {
    display: block;
    font-size: 1.0rem;
    line-height: 1.4;
  }
  #mainContents .topProgramArea .topProgram .column h4 {
    width: 100%;
    margin: 20px auto 0;
    padding: 15px 0;
    font-size: 1.8rem;
  }
  #mainContents .topProgramArea .topProgram .column ul {
    width: 100%;
    padding: 20px 0 0 0;
  }
  #mainContents .topProgramArea .topProgram .column ul li {
    margin: 0 0 15px;
    padding: 0 0 0 30px;
    font-size: 1.5rem;
  }
  #mainContents .topProgramArea .topProgram .column ul li::before {
    top: 3px;
    margin: 0;
  }

  #mainContents .topProgramArea .textBox h5 {
    padding: 10px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .topProgramArea .textBox .flowBox {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .topProgramArea .textBox .flowBox .flowColumn {
    margin: 0 0 50px;
  }
  #mainContents .topProgramArea .textBox .flowBox .flowColumn::after {
    top: 63px;
  }
  #mainContents .topProgramArea .textBox .flowBox .flowColumn:nth-child(2)::after {
    top: 83px;
  }
  #mainContents .topProgramArea .textBox .flowBox .flowColumn:nth-child(4)::after {
    top: 118px;
  }
  #mainContents .topProgramArea .textBox .flowBox .flowColumn:nth-child(5)::after {
    display: none;
  }
  #mainContents .topProgramArea .textBox .flowBox .flowColumn p {
    padding: 15px 0;
    font-size: 1.4rem;
  }
  #mainContents .topProgramArea .textBox .flowBox .flowColumn p span {
    padding: 5px 0 0;
    font-size: 1.0rem;
  }
}


#mainContents .topApplicationArea {
  width: 100%;
  margin: 100px 0 0;
  padding: 60px 0;
  background-color: #eaeaea;
}
#mainContents .topApplicationArea .topApplication {
  width: 900px;
  margin: 0 auto;
}
#mainContents .topApplicationArea .topApplication p.titleText {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  color: #af0b0b;
}
#mainContents .topApplicationArea .topApplication h3 {
  padding: 10px 0 0;
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .topApplicationArea .topApplication .link01 {
  width: 700px;
  margin: 0 auto;
  padding: 40px 0 0;
}
#mainContents .topApplicationArea .topApplication .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  padding: 34px 10px 0 0;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #af0b0b;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .topApplicationArea .topApplication .link01 a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  margin: -6px 0 0 136px;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
#mainContents .topApplicationArea .topApplication .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .topApplicationArea .topApplication p.text01 {
  padding: 20px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
#mainContents .topApplicationArea .topApplication p.text01 a {
  color: #af0b0b;
  text-decoration: underline;
}
#mainContents .topApplicationArea .topApplication p.text01 a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 940px) {
  #mainContents .topApplicationArea .topApplication {
    width: calc(100% - 50px);
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .topApplicationArea {
    padding: 30px 0;
  }
  #mainContents .topApplicationArea .topApplication {
    width: calc(100% - 30px);
  }
  #mainContents .topApplicationArea .topApplication p.titleText {
    font-size: 1.4rem;
  }
  #mainContents .topApplicationArea .topApplication h3 {
    padding: 15px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .topApplicationArea .topApplication .link01 {
    width: 320px;
    margin: 0 auto;
    padding: 30px 0 0;
  }
  #mainContents .topApplicationArea .topApplication .link01 a {
    height: 60px;
    padding: 20px 10px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .topApplicationArea .topApplication .link01 a::after {
    margin: -7px 0 0 102px;
  }
  #mainContents .topApplicationArea .topApplication p.text01 {
    padding: 15px 0 0;
    font-size: 1.4rem;
  }
}

#mainContents .topSubsidyArea {
  width: 100%;
  padding: 50px 0;
  text-align: center;
}
#mainContents .topSubsidyArea img {
  width: 150px;
  height: auto;
}
#mainContents .topSubsidyArea p {
  padding: 10px 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .topSubsidyArea {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 30px 0;
  }
  #mainContents .topSubsidyArea img {
    width: 120px;
  }
  #mainContents .topSubsidyArea p {
    padding: 5px 0 0;
    font-size: 1.2rem;
  }
}