@charset "UTF-8";
/*
 * Base Group
 */
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Segoe UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  color: #231815;
  font-size: clamp(0.8125rem, 0.7rem + 0.375vw, 1rem);
}

a {
  transition: all 0.3s;
  text-decoration: none;
}
a:link, a:visited {
  color: #000;
}
a:hover, a:active {
  color: #333333;
}

img {
  max-width: 100%;
  height: auto;
}

/*
 * Layout Group
 */
.ly_header {
  background-color: #fff;
  border-top: solid 40px #2ea7e0;
}
@media screen and (max-width: 896px) {
  .ly_header {
    border-top: solid 20px #2ea7e0;
  }
}

.ly_header_inner {
  max-width: 1600px;
  margin: 0 auto;
}

.ly_cont_inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .ly_cont_inner {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.ly_footer_inner {
  max-width: 1200px;
  margin: 0 auto;
}

/*
 * Module Group - Block
 */
.bl_header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 4%;
  padding-left: 4%;
  height: 180px;
  box-shadow: 5px 5px 5px 0px rgba(73, 73, 73, 0.75);
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .bl_header {
    height: calc(150 / 1280 * 100vw);
    min-height: 100px;
  }
}
@media screen and (max-width: 896px) {
  .bl_header {
    height: 100px;
  }
}

.bl_header_logo {
  width: 37.5%;
  max-height: 132px;
  padding-left: 4%;
}
.bl_header_logo > a > img {
  max-width: 394px;
  width: 100%;
  padding: 2%;
}
@media screen and (max-width: 1280px) {
  .bl_header_logo > a > img {
    max-width: calc(394 / 1280 * 100vw);
  }
}
@media screen and (max-width: 896px) {
  .bl_header_logo > a > img {
    max-width: 220px;
  }
}
@media screen and (max-width: 1280px) {
  .bl_header_logo {
    width: auto;
  }
}

.bl_header_logo_index {
  height: 100%;
}

.bl_header_logo_other {
  display: block;
}
@media screen and (max-width: 1280px) {
  .bl_header_logo_other {
    transform: none;
  }
}

.bl_header_nav {
  position: relative;
  flex-grow: 1;
  margin-top: 30px;
}
@media screen and (max-width: 1280px) {
  .bl_header_nav {
    display: none;
  }
}

.bl_header_menu {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.bl_header_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-grow: 1;
  padding: 0 2%;
  transition: all 0.3s;
}
.bl_header_item:before {
  position: absolute;
  top: -10px;
  left: 0;
  content: "";
  width: 2px;
  height: 130px;
  background-image: url(../images/common/h_menu_border@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.bl_header_item:last-child:after {
  position: absolute;
  top: -10px;
  right: 0;
  content: "";
  width: 2px;
  height: 130px;
  background-image: url(../images/common/h_menu_border@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.bl_header_item:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.bl_heading {
  display: inline-block;
  font-size: clamp(1.625rem, 1.25rem + 1.25vw, 2.25rem);
  background-image: url(../images/common/heading_bg@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: #ea5514;
  padding: 0.25em 2em;
}

.bl_heading__lg.bl_heading {
  background-image: url(../images/common/heading_bg_lg@2x.png);
}
@media screen and (max-width: 479px) {
  .bl_heading__lg.bl_heading {
    background-position: 5%;
  }
}

.bl_heading__blue.bl_heading {
  color: #036eb8;
  background-image: url(../images/common/program_heading@2x.png);
}

.bl_heading__green.bl_heading {
  color: #22ac38;
  background-image: url(../images/common/heading_bg_green@2x.png);
}

.bl_heading__pink.bl_heading {
  color: #ec73a8;
  background-image: url(../images/common/heading_bg_pink@2x.png);
}

.bl_mv {
  position: relative;
  background-image: url(../images/index/index_mv@2x.png);
  background-size: cover;
  background-position: center;
  max-height: 623px;
  height: 100vh;
}
@media screen and (max-width: 896px) {
  .bl_mv {
    height: 60vh;
    background-position: 30%;
  }
}

.bl_mv_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  .bl_mv_ttl {
    min-width: 500px;
  }
}
@media screen and (max-width: 896px) {
  .bl_mv_ttl {
    min-width: 450px;
  }
}
@media screen and (max-width: 479px) {
  .bl_mv_ttl {
    min-width: 300px;
  }
}

.bl_mv_indexInst {
  position: absolute;
  right: 4%;
  bottom: 8%;
  line-height: 0;
  transition: 0.3s all;
}
.bl_mv_indexInst > img {
  width: 433px;
  min-width: 200px;
}
@media (max-width: 1920px) {
  .bl_mv_indexInst > img {
    width: calc(433 / 1920 * 100vw);
  }
}
.bl_mv_indexInst:hover {
  opacity: 0.8;
  transition: 0.3s all;
}

.bl_lead {
  position: relative;
  background-image: url(../images/index/index_lead_bg@2x.png);
  background-size: 90% auto;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 200px;
}
@media (max-width: 896px) {
  .bl_lead {
    padding-top: calc(150px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_lead {
    padding-top: calc(150px / 2);
  }
}
@media (max-width: 896px) {
  .bl_lead {
    padding-bottom: calc(200px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_lead {
    padding-bottom: calc(200px / 2);
  }
}

.bl_lead_inner {
  position: relative;
  text-align: center;
}

.bl_lead_letter {
  font-size: clamp(0.9375rem, 0.75rem + 0.625vw, 1.25rem);
  padding: 2.5em 2em;
  background-color: #f7f8f8;
  max-width: 1080px;
  margin: 0 auto;
}
.bl_lead_letter > p {
  background-image: linear-gradient(180deg, #c2c1c1 4px, transparent 4px);
  background-size: 100% 2.5em;
  line-height: 2.5em;
  padding-bottom: 4px;
}
@media screen and (max-width: 479px) {
  .bl_lead_letter > p {
    text-align: left;
  }
}

.bl_lead__program.bl_lead {
  background-image: url(../images/common/common_mv_bg@2x.png);
}

.bl_lead__facility.bl_lead {
  background-image: url(../images/facility/facility_mv_bg@2x.png);
  background-position: top 10% center;
}

.bl_lead__guide.bl_lead {
  background-image: url(../images/common/common_mv_bg@2x.png);
  background-position: top 10% center;
}

.bl_lead__contact.bl_lead {
  background-image: url(../images/common/common_mv_bg@2x.png);
  background-position: top 10% center;
}

.bl_lead__faq.bl_lead {
  background-image: url(../images/common/common_mv_bg@2x.png);
  background-position: top 10% center;
}

.bl_lead__access.bl_lead {
  background-image: url(../images/common/common_mv_bg@2x.png);
  background-position: top 10% center;
  padding-bottom: 100px;
}
@media (max-width: 896px) {
  .bl_lead__access.bl_lead {
    padding-bottom: calc(100px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_lead__access.bl_lead {
    padding-bottom: calc(100px / 2);
  }
}

.bl_voice {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: #9ad6ee;
  border-radius: 8px;
  padding: 2em 1em;
  margin-top: 180px;
  margin-right: auto;
  margin-bottom: 200px;
  margin-left: auto;
}
@media (max-width: 896px) {
  .bl_voice {
    margin-top: calc(180px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_voice {
    margin-top: calc(180px / 2);
  }
}
@media (max-width: 896px) {
  .bl_voice {
    margin-bottom: calc(200px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_voice {
    margin-bottom: calc(200px / 2);
  }
}
@media screen and (max-width: 479px) {
  .bl_voice {
    flex-wrap: wrap;
  }
}

.bl_voice_img {
  width: 25%;
  line-height: 0;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .bl_voice_img {
    width: 100%;
    margin-bottom: 1em;
    transform: scale(0.8);
  }
}

.bl_voice_body {
  width: 75%;
}
@media screen and (max-width: 896px) {
  .bl_voice_body {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media screen and (max-width: 479px) {
  .bl_voice_body {
    width: 100%;
  }
}

.bl_voice_ttl {
  display: inline-block;
  font-size: clamp(1.375rem, 1rem + 1.25vw, 2rem);
  font-weight: bold;
  color: #172a88;
  border-bottom: 4px solid #fff;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}

.bl_voice_txt {
  font-size: clamp(1.25rem, 0.875rem + 1.25vw, 1.875rem);
  font-weight: bold;
}

.bl_about {
  position: relative;
}

.bl_about_ttl {
  font-size: clamp(1.625rem, 1.25rem + 1.25vw, 2.25rem);
  color: #036eb8;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .bl_about_ttl {
    margin-bottom: calc(40px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_about_ttl {
    margin-bottom: calc(40px / 2);
  }
}

.bl_about_body {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border: 4px dashed #22ac38;
  border-radius: 18px;
  padding: 2em;
  margin-bottom: 80px;
}
@media (max-width: 896px) {
  .bl_about_body {
    margin-bottom: calc(80px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_about_body {
    margin-bottom: calc(80px / 2);
  }
}

.bl_about_txt {
  line-height: 2.5;
}

.bl_about_deco {
  position: absolute;
}
.bl_about_deco.bl_about_deco__01 {
  top: -3em;
  left: -1.5em;
}
.bl_about_deco.bl_about_deco__02 {
  right: 0.5em;
  bottom: 0em;
}

.bl_about_main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 220px;
}
@media (max-width: 896px) {
  .bl_about_main {
    margin-bottom: calc(220px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_about_main {
    margin-bottom: calc(220px / 2);
  }
}

.bl_about_item {
  width: 24%;
}
@media screen and (max-width: 479px) {
  .bl_about_item {
    width: 48%;
    margin-bottom: 1em;
  }
}

.bl_about_txt__lg.bl_about_txt {
  font-size: clamp(1.25rem, 0.875rem + 1.25vw, 1.875rem);
}

.bl_about_main__staff.bl_about_main {
  justify-content: center;
}
.bl_about_main__staff .bl_about_item {
  width: 48%;
}
.bl_about_main__staff .bl_about_item:nth-child(1) {
  margin-right: 1em;
}

.bl_partsContact {
  position: relative;
}
.bl_partsContact > picture > source, .bl_partsContact > picture img {
  width: 100%;
}

.bl_partsContact_link {
  position: absolute;
  bottom: 30px;
}
@media (max-width: 1280px) {
  .bl_partsContact_link {
    bottom: calc(30 / 1280 * 100vw);
  }
}
.bl_partsContact_link.bl_partsContact_link__email {
  left: 50px;
  left: 70px;
  transition: 0.3s all;
}
@media (max-width: 1280px) {
  .bl_partsContact_link.bl_partsContact_link__email {
    left: calc(50 / 1280 * 100vw);
  }
}
.bl_partsContact_link.bl_partsContact_link__email > img {
  width: 525px;
}
@media (max-width: 1280px) {
  .bl_partsContact_link.bl_partsContact_link__email > img {
    width: calc(525 / 1280 * 100vw);
  }
}
.bl_partsContact_link.bl_partsContact_link__email:hover {
  opacity: 0.8;
  transition: 0.3s all;
}
@media screen and (max-width: 479px) {
  .bl_partsContact_link.bl_partsContact_link__email {
    bottom: calc(68 / 479 * 100vw);
    left: calc(62 / 479 * 100vw);
  }
  .bl_partsContact_link.bl_partsContact_link__email > img {
    width: calc(320 / 479 * 100vw);
  }
}
.bl_partsContact_link.bl_partsContact_link__tel {
  right: 50px;
  right: 70px;
  transition: 0.3s all;
}
@media (max-width: 1280px) {
  .bl_partsContact_link.bl_partsContact_link__tel {
    right: calc(50 / 1280 * 100vw);
  }
}
.bl_partsContact_link.bl_partsContact_link__tel > img {
  width: 525px;
}
@media (max-width: 1280px) {
  .bl_partsContact_link.bl_partsContact_link__tel > img {
    width: calc(525 / 1280 * 100vw);
  }
}
.bl_partsContact_link.bl_partsContact_link__tel:hover {
  opacity: 0.8;
  transition: 0.3s all;
}
@media screen and (max-width: 479px) {
  .bl_partsContact_link.bl_partsContact_link__tel {
    left: calc(62 / 479 * 100vw);
  }
  .bl_partsContact_link.bl_partsContact_link__tel > img {
    width: calc(320 / 479 * 100vw);
  }
}

.bl_partsMenu {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bl_partsMenu_item {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5em;
}
@media screen and (max-width: 896px) {
  .bl_partsMenu_item {
    width: 48%;
  }
}
@media screen and (max-width: 479px) {
  .bl_partsMenu_item {
    width: 100%;
  }
}

.bl_partsMenu_ttl {
  margin-bottom: 1em;
}

.bl_partsMenu_body {
  display: flex;
  flex-direction: column;
  border-radius: 42px;
  padding: 0.6em;
}

.bl_partsMenu_img {
  margin-bottom: 1.5em;
}
.bl_partsMenu_img > img {
  width: 100%;
}

.bl_partsMenu_list {
  min-height: 154px;
  margin-bottom: 1.5em;
  padding: 0 4%;
}
.bl_partsMenu_list > li {
  font-size: clamp(1rem, 0.775rem + 0.75vw, 1.375rem);
  line-height: 1.75;
}
@media screen and (max-width: 479px) {
  .bl_partsMenu_list {
    min-height: 100px;
  }
}

.bl_partsMenu_btn {
  display: inline-block;
  position: relative;
  color: #fff;
  max-width: 300px;
  width: 100%;
  text-align: center;
  padding: 8px 0.5rem;
  font-size: clamp(1rem, 0.775rem + 0.75vw, 1.375rem);
  text-decoration: none;
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 1em;
}
.bl_partsMenu_btn:link, .bl_partsMenu_btn:visited {
  color: #fff;
}

.bl_partsMenu_item__blue .bl_partsMenu_body {
  background-color: #b2e0f8;
}
.bl_partsMenu_item__blue .bl_partsMenu_list > li {
  color: #036eb8;
}
.bl_partsMenu_item__blue .bl_partsMenu_btn {
  background-color: #036eb8;
  border: 1px solid #036eb8;
}
.bl_partsMenu_item__blue .bl_partsMenu_btn:hover, .bl_partsMenu_item__blue .bl_partsMenu_btn:active {
  background-color: #fff;
  color: #036eb8;
}

.bl_partsMenu_item__green .bl_partsMenu_body {
  background-color: #c7e0a1;
}
.bl_partsMenu_item__green .bl_partsMenu_list > li {
  color: #006934;
}
.bl_partsMenu_item__green .bl_partsMenu_btn {
  background-color: #00913a;
  border: 1px solid #00913a;
}
.bl_partsMenu_item__green .bl_partsMenu_btn:hover, .bl_partsMenu_item__green .bl_partsMenu_btn:active {
  background-color: #fff;
  color: #00913a;
}

.bl_partsMenu_item__pink .bl_partsMenu_body {
  background-color: #fbe2ed;
}
.bl_partsMenu_item__pink .bl_partsMenu_list > li {
  color: #e4007f;
}
.bl_partsMenu_item__pink .bl_partsMenu_btn {
  background-color: #d467a3;
  border: 1px solid #d467a3;
}
.bl_partsMenu_item__pink .bl_partsMenu_btn:hover, .bl_partsMenu_item__pink .bl_partsMenu_btn:active {
  background-color: #fff;
  color: #d467a3;
}

.bl_partsHoukoku {
  position: relative;
  background-image: url(../images/index/index_houkoku_bg@2x.png);
  background-size: cover;
  background-position: center;
  max-height: 530px;
  height: 100vh;
}
@media screen and (max-width: 896px) {
  .bl_partsHoukoku {
    height: 40vh;
  }
}

.bl_partsHoukoku_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 300px;
  transition: 0.3s all;
}
.bl_partsHoukoku_txt:hover {
  opacity: 0.8;
  transition: 0.3s all;
}

.bl_footer {
  position: relative;
  background-color: #2ea7e0;
  padding-top: 100px;
}
@media (max-width: 896px) {
  .bl_footer {
    padding-top: calc(100px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_footer {
    padding-top: calc(100px / 2);
  }
}

.bl_footer_inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 100px;
}
@media screen and (max-width: 1280px) {
  .bl_footer_inner {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media (max-width: 896px) {
  .bl_footer_inner {
    margin-bottom: calc(100px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_footer_inner {
    margin-bottom: calc(100px / 2);
  }
}
@media screen and (max-width: 1280px) {
  .bl_footer_inner {
    align-items: flex-start;
  }
}
@media screen and (max-width: 479px) {
  .bl_footer_inner {
    flex-wrap: wrap;
  }
}

.bl_footer_logo {
  width: 33%;
  margin-right: 2%;
}
@media screen and (max-width: 479px) {
  .bl_footer_logo {
    width: 100%;
    margin-right: none;
    margin-bottom: 1em;
  }
}

.bl_footer_address {
  width: 47%;
  color: #fff;
  font-size: clamp(1rem, 0.7rem + 1vw, 1.5rem);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.bl_footer_address > address {
  font-weight: bold;
  margin-bottom: .5em;
}
.bl_footer_address > address > span {
  display: block;
  margin-bottom: 0.5em;
}
.bl_footer_address > p {
  margin-bottom: .5em;
  word-break: break-all;
}
.bl_footer_address a:link, .bl_footer_address a:visited {
  color: #fff;
}
@media screen and (max-width: 479px) {
  .bl_footer_address {
    width: 100%;
  }
}

.bl_footer_menu {
  background-color: #fff;
  padding: 0 12%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}
@media screen and (max-width: 896px) {
  .bl_footer_menu {
    padding: 4% 8%;
    flex-wrap: wrap;
  }
}

.bl_footer_item {
  margin-right: 1em;
  padding-bottom: 0.5em;
  overflow: hidden;
}
.bl_footer_item > a {
  position: relative;
  font-weight: bold;
}
.bl_footer_item > a:after {
  position: absolute;
  content: "";
  width: 0%;
  height: 3px;
  background-color: #036eb8;
  bottom: -0.5em;
  left: 0;
  transition: all 0.3s;
}
.bl_footer_item > a:hover {
  color: #036eb8;
}
.bl_footer_item > a:hover:after {
  transition: all 0.3s;
  width: 100%;
}
.bl_footer_item:last-child {
  margin-right: none;
}
@media screen and (max-width: 896px) {
  .bl_footer_item {
    width: 45%;
    text-align: center;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 479px) {
  .bl_footer_item {
    width: 100%;
  }
}

.bl_houkoku {
  position: relative;
  text-align: center;
  margin-top: 120px;
}
@media (max-width: 896px) {
  .bl_houkoku {
    margin-top: calc(120px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_houkoku {
    margin-top: calc(120px / 2);
  }
}

.bl_houkoku_txt {
  font-size: clamp(0.9375rem, 0.75rem + 0.625vw, 1.25rem);
  font-weight: bold;
}
.bl_houkoku_txt > span {
  margin-left: 1em;
  color: #3c92d0;
}

.bl_houkoku_ttl {
  width: 436px;
  min-width: 300px;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .bl_houkoku_ttl {
    width: calc(436 / 1280 * 100vw);
  }
}

.bl_houkoku_list {
  display: inline-block;
  text-align: left;
  margin-left: 2.4em;
}

.bl_houkoku_item {
  list-style: disc;
  margin-bottom: 1.4em;
}

.bl_houkoku_link:link, .bl_houkoku_link:visited {
  margin-left: 1em;
  color: #22ac38;
  text-decoration: underline;
}

.bl_sidebtn {
  position: fixed;
  top: 40%;
  right: 0;
  transition: all 0.3s;
  z-index: 10;
}
.bl_sidebtn:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
.bl_sidebtn img {
  width: 364px;
}
@media (max-width: 1280px) {
  .bl_sidebtn img {
    width: calc(364 / 1280 * 100vw);
  }
}
@media screen and (max-width: 1280px) {
  .bl_sidebtn {
    top: 30%;
  }
}
@media screen and (max-width: 896px) {
  .bl_sidebtn {
    top: 20%;
  }
}

.bl_media {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bl_media.bl_media__rev {
  flex-direction: row-reverse;
}
@media screen and (max-width: 479px) {
  .bl_media {
    flex-wrap: wrap;
  }
}

.bl_media_img {
  width: 48%;
}
@media screen and (max-width: 479px) {
  .bl_media_img {
    width: 100%;
  }
}

.bl_media_body {
  width: 48%;
}
@media screen and (max-width: 479px) {
  .bl_media_body {
    width: 100%;
    padding-top: 4%;
  }
}

.bl_media_ttl {
  margin-bottom: 30px;
}
@media (max-width: 896px) {
  .bl_media_ttl {
    margin-bottom: calc(30px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_media_ttl {
    margin-bottom: calc(30px / 2);
  }
}

.bl_media_txt {
  margin-bottom: 30px;
}
@media (max-width: 896px) {
  .bl_media_txt {
    margin-bottom: calc(30px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_media_txt {
    margin-bottom: calc(30px / 2);
  }
}

/*
 * Module Group - index
 */
.bl_experience {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 479px) {
  .bl_experience {
    flex-direction: column;
  }
}

.bl_experience_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 242px;
  width: 100%;
  margin-right: 2.5em;
}
.bl_experience_item:before, .bl_experience_item:after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  right: -2em;
}
@media screen and (max-width: 896px) {
  .bl_experience_item {
    margin-right: 2em;
  }
  .bl_experience_item:before, .bl_experience_item:after {
    right: -1.5em;
  }
}
@media screen and (max-width: 479px) {
  .bl_experience_item {
    max-width: none;
    margin-right: 0;
    margin-bottom: 3.5em;
  }
}

.bl_experience_item__01 {
  flex-direction: column;
}
.bl_experience_item__01:before {
  background-image: url(../images/index/ex_img_icon@2x.png);
  width: 29px;
  height: 41px;
  top: 40%;
}
@media (max-width: 1280px) {
  .bl_experience_item__01:before {
    width: calc(29 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_experience_item__01:before {
    height: calc(41 / 1280 * 100vw);
  }
}
@media screen and (max-width: 479px) {
  .bl_experience_item__01:before {
    display: none;
  }
}
.bl_experience_item__01:after {
  background-image: url(../images/index/ex_img02_icon@2x.png);
  width: 29px;
  height: 41px;
  bottom: 30%;
}
@media (max-width: 1280px) {
  .bl_experience_item__01:after {
    width: calc(29 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_experience_item__01:after {
    height: calc(41 / 1280 * 100vw);
  }
}
@media screen and (max-width: 479px) {
  .bl_experience_item__01:after {
    background-image: url(../images/index/ex_img_icon_sp@2x.png);
    width: 20px;
    height: 40px;
    top: auto;
    right: auto;
    bottom: -3em;
    left: 48.5%;
    transform: rotate(90deg);
  }
}

.bl_experience_item__02:after {
  background-image: url(../images/index/ex_img03_icon@2x.png);
  width: 22px;
  height: 45px;
  top: 50%;
}
@media (max-width: 1280px) {
  .bl_experience_item__02:after {
    width: calc(22 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_experience_item__02:after {
    height: calc(45 / 1280 * 100vw);
  }
}
@media screen and (max-width: 479px) {
  .bl_experience_item__02:after {
    width: 20px;
    height: 40px;
    top: auto;
    right: auto;
    bottom: -3em;
    left: 48.5%;
    transform: rotate(90deg);
  }
}

.bl_experience_item__03:after {
  background-image: url(../images/index/ex_img04_icon@2x.png);
  width: 23px;
  height: 45px;
  top: 50%;
}
@media (max-width: 1280px) {
  .bl_experience_item__03:after {
    width: calc(23 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_experience_item__03:after {
    height: calc(45 / 1280 * 100vw);
  }
}
@media screen and (max-width: 479px) {
  .bl_experience_item__03:after {
    width: 20px;
    height: 40px;
    top: auto;
    right: auto;
    bottom: -3em;
    left: 48.5%;
    transform: rotate(90deg);
  }
}

.bl_experience_item__04 {
  max-width: 332px;
  min-width: 30%;
  margin-top: 3em;
  margin-right: 0;
}
@media screen and (max-width: 479px) {
  .bl_experience_item__04 {
    margin-top: 1em;
  }
}

.bl_ikusei {
  position: relative;
}

.bl_ikusei_inner {
  position: relative;
  max-width: 1045px;
  height: 1045px;
  width: 100%;
  background-image: url(../images/index/ikusei_bg@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .bl_ikusei_inner {
    max-width: calc(1045 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_ikusei_inner {
    height: calc(1045 / 1280 * 100vw);
  }
}

.bl_ikusei_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 419px;
}
@media (max-width: 1280px) {
  .bl_ikusei_ttl {
    width: calc(419 / 1280 * 100vw);
  }
}

.bl_ikusei_img {
  position: absolute;
}

.bl_ikusei_img__01.bl_ikusei_img {
  top: 80px;
  left: 311px;
  width: 585px;
}
@media (max-width: 1280px) {
  .bl_ikusei_img__01.bl_ikusei_img {
    top: calc(80 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_ikusei_img__01.bl_ikusei_img {
    left: calc(311 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_ikusei_img__01.bl_ikusei_img {
    width: calc(585 / 1280 * 100vw);
  }
}

.bl_ikusei_img__02.bl_ikusei_img {
  bottom: 80px;
  left: -35px;
  width: 469px;
}
@media (max-width: 1280px) {
  .bl_ikusei_img__02.bl_ikusei_img {
    bottom: calc(80 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_ikusei_img__02.bl_ikusei_img {
    left: calc(-35 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_ikusei_img__02.bl_ikusei_img {
    width: calc(469 / 1280 * 100vw);
  }
}

.bl_ikusei_img__03.bl_ikusei_img {
  bottom: 80px;
  right: 63px;
  width: 478px;
}
@media (max-width: 1280px) {
  .bl_ikusei_img__03.bl_ikusei_img {
    bottom: calc(80 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_ikusei_img__03.bl_ikusei_img {
    right: calc(63 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_ikusei_img__03.bl_ikusei_img {
    width: calc(478 / 1280 * 100vw);
  }
}

/*
 * Module Group - program
 */
.bl_week {
  position: relative;
}

.bl_week_item:nth-child(2) {
  margin-top: -20px;
}
@media (max-width: 1030px) {
  .bl_week_item:nth-child(2) {
    margin-top: calc(-20 / 1030 * 100vw);
  }
}
.bl_week_item:nth-child(3) {
  margin-top: -39px;
}
@media (max-width: 1030px) {
  .bl_week_item:nth-child(3) {
    margin-top: calc(-39 / 1030 * 100vw);
  }
}
.bl_week_item:nth-child(4) {
  margin-top: -52px;
}
@media (max-width: 1030px) {
  .bl_week_item:nth-child(4) {
    margin-top: calc(-52 / 1030 * 100vw);
  }
}
.bl_week_item:nth-child(5) {
  margin-top: -44px;
}
@media (max-width: 1030px) {
  .bl_week_item:nth-child(5) {
    margin-top: calc(-44 / 1030 * 100vw);
  }
}
.bl_week_item:nth-child(6) {
  margin-top: -35px;
}
@media (max-width: 1030px) {
  .bl_week_item:nth-child(6) {
    margin-top: calc(-35 / 1030 * 100vw);
  }
}

.bl_special {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bl_special_item {
  position: relative;
  width: 48%;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .bl_special_item {
    width: 100%;
    margin-bottom: 2em;
  }
}

.bl_special_logo {
  position: relative;
  z-index: 1;
}
.bl_special_logo.bl_special_logo__01 > img {
  width: 434px;
}
@media (max-width: 1280px) {
  .bl_special_logo.bl_special_logo__01 > img {
    width: calc(434 / 1280 * 100vw);
  }
}
@media screen and (max-width: 479px) {
  .bl_special_logo.bl_special_logo__01 > img {
    width: auto;
    transform: scale(0.7);
  }
}
.bl_special_logo.bl_special_logo__02 > img {
  width: 395px;
}
@media (max-width: 1280px) {
  .bl_special_logo.bl_special_logo__02 > img {
    width: calc(395 / 1280 * 100vw);
  }
}
@media screen and (max-width: 479px) {
  .bl_special_logo.bl_special_logo__02 > img {
    width: auto;
    transform: scale(0.7);
  }
}

.bl_special_img {
  margin-top: -100px;
}
@media (max-width: 1280px) {
  .bl_special_img {
    margin-top: calc(-100 / 1280 * 100vw);
  }
}
@media screen and (max-width: 479px) {
  .bl_special_img {
    margin-top: -130px;
  }
}

.bl_special_txt.bl_special_txt__01 {
  margin-top: -80px;
}
@media (max-width: 1280px) {
  .bl_special_txt.bl_special_txt__01 {
    margin-top: calc(-80 / 1280 * 100vw);
  }
}
@media screen and (max-width: 479px) {
  .bl_special_txt.bl_special_txt__01 {
    margin-top: calc(-58 / 479 * 100vw);
  }
}
.bl_special_txt.bl_special_txt__02 {
  margin-top: -69px;
}
@media (max-width: 1280px) {
  .bl_special_txt.bl_special_txt__02 {
    margin-top: calc(-69 / 1280 * 100vw);
  }
}
@media screen and (max-width: 479px) {
  .bl_special_txt.bl_special_txt__02 {
    margin-top: calc(-55 / 479 * 100vw);
  }
}

/*
 * Module Group - facility
 */
.bl_facility {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.bl_facility_item {
  width: 32%;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 479px) {
  .bl_facility_item {
    width: 48%;
  }
}

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

.bl_facilityFlow_item {
  position: relative;
  width: 28%;
}
.bl_facilityFlow_item > img {
  width: 100%;
}
.bl_facilityFlow_item:nth-child(1):after, .bl_facilityFlow_item:nth-child(2):after {
  position: absolute;
  content: "";
  width: 44px;
  height: 87px;
  min-height: 40px;
  min-width: 22px;
  background-image: url(../images/facility/facility_flow_icon@2x.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 30%;
  right: -73px;
}
@media (max-width: 1280px) {
  .bl_facilityFlow_item:nth-child(1):after, .bl_facilityFlow_item:nth-child(2):after {
    width: calc(44 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_facilityFlow_item:nth-child(1):after, .bl_facilityFlow_item:nth-child(2):after {
    height: calc(87 / 1280 * 100vw);
  }
}
@media (max-width: 1280px) {
  .bl_facilityFlow_item:nth-child(1):after, .bl_facilityFlow_item:nth-child(2):after {
    right: calc(-73 / 1280 * 100vw);
  }
}
@media screen and (max-width: 479px) {
  .bl_facilityFlow_item:nth-child(1):after, .bl_facilityFlow_item:nth-child(2):after {
    top: auto;
    right: 48%;
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  .bl_facilityFlow_item {
    width: 100%;
    margin-bottom: 4em;
  }
}

.bl_facilityFlow_txt {
  display: block;
  background-color: #8fc31f;
  color: #fff;
  font-size: clamp(1rem, 0.775rem + 0.75vw, 1.375rem);
  min-height: 110px;
  border-radius: 12px;
  padding: 0.5em 1em;
}
@media screen and (max-width: 479px) {
  .bl_facilityFlow_txt {
    min-height: 70px;
  }
}

.bl_facilityAccess {
  display: inline-block;
  padding-top: 20px;
}
.bl_facilityAccess > img {
  transition: all 0.3s;
}
.bl_facilityAccess:hover > img {
  transition: all 0.3s;
  transform: translateY(-20px);
}
.bl_facilityAccess:hover .bl_facilityAccess_btn {
  color: #00913a;
  background-color: #fff;
  transition: all 0.3s;
}

.bl_facilityAccess_btn {
  font-size: clamp(1.625rem, 1.25rem + 1.25vw, 2.25rem);
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #00913a;
  border: 1px solid #00913a;
  border-radius: 15px;
  padding: 0.1em 0.5em;
  margin-top: 1em;
  transition: all 0.3s;
}

/*
 * Module Group - access
 */
.bl_access {
  position: relative;
}

.bl_access_logo {
  margin-bottom: 60px;
}
@media (max-width: 896px) {
  .bl_access_logo {
    margin-bottom: calc(60px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_access_logo {
    margin-bottom: calc(60px / 2);
  }
}

.bl_access_ttl,
.bl_access_txt {
  font-size: clamp(1.375rem, 1rem + 1.25vw, 2rem);
  margin-top: 1em;
}

.bl_access_info {
  display: flex;
  flex-wrap: wrap;
}
.bl_access_info dt, .bl_access_info dd {
  font-size: clamp(1.25rem, 0.875rem + 1.25vw, 1.875rem);
  color: #3e3a39;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 2px dashed #3e3a39;
}
.bl_access_info dt {
  width: 20%;
  text-align: left;
  padding-left: 4%;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 896px) {
  .bl_access_info dt {
    width: 30%;
    padding-left: 2%;
  }
}
@media screen and (max-width: 479px) {
  .bl_access_info dt {
    width: 40%;
  }
}
.bl_access_info dd {
  width: 80%;
  text-align: left;
  word-break: break-all;
}
@media screen and (max-width: 896px) {
  .bl_access_info dd {
    width: 70%;
  }
}
@media screen and (max-width: 479px) {
  .bl_access_info dd {
    width: 60%;
  }
}

/*
 * Module Group - faq
 */
.bl_faq {
  position: relative;
  text-align: left;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.bl_faq_q,
.bl_faq_a {
  position: relative;
  padding-left: 30px;
}
.bl_faq_q:before,
.bl_faq_a:before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(0.9375rem, 0.75rem + 0.625vw, 1.25rem);
}

.bl_faq_q {
  font-size: clamp(1rem, 0.7rem + 1vw, 1.5rem);
  color: #036eb8;
  padding-bottom: .5em;
  margin-bottom: .5em;
  border-bottom: 2px dashed #036eb8;
}
.bl_faq_q:before {
  content: "Q";
  color: #172a88;
}

.bl_faq_a {
  font-size: clamp(0.9375rem, 0.75rem + 0.625vw, 1.25rem);
  margin-bottom: 2em;
}
.bl_faq_a:before {
  content: "A";
  color: #22ac38;
}

/*
 * Module Group - contact
 */
.bl_form {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.bl_form_item {
  margin-bottom: 3em;
}
.bl_form_item label {
  display: inline-block;
  font-size: clamp(1.25rem, 0.875rem + 1.25vw, 1.875rem);
  color: #fff;
  background-color: #036eb8;
  border-radius: 15px;
  text-align: center;
  padding: 0.1em 0.5em;
  margin-bottom: 1em;
  max-width: 320px;
  width: 100%;
}
.bl_form_item input, .bl_form_item textarea {
  width: 100%;
  font-size: clamp(0.9375rem, 0.75rem + 0.625vw, 1.25rem);
  padding: 0.5em;
}
.bl_form_item button {
  display: inline-block;
  font-size: clamp(1.25rem, 0.875rem + 1.25vw, 1.875rem);
  color: #fff;
  background-color: #22ac38;
  border-radius: 15px;
  text-align: center;
  padding: 0.1em 0.5em;
  margin-bottom: 1em;
  max-width: 300px;
  width: 100%;
  cursor: pointer;
  border: none;
}

/*
 * Module Group - guide
 */
.bl_service {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.bl_service_ttl {
  display: inline-block;
  font-size: clamp(1.25rem, 0.875rem + 1.25vw, 1.875rem);
  color: #fff;
  background-color: #ec73a8;
  border-radius: 15px;
  text-align: center;
  padding: 0.1em 0.5em;
  margin-bottom: 60px;
  max-width: 480px;
  width: 100%;
}
@media (max-width: 896px) {
  .bl_service_ttl {
    margin-bottom: calc(60px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_service_ttl {
    margin-bottom: calc(60px / 2);
  }
}

.bl_service_info {
  display: flex;
  flex-wrap: wrap;
}
.bl_service_info dt, .bl_service_info dd {
  font-size: clamp(0.875rem, 0.725rem + 0.5vw, 1.125rem);
  color: #231815;
  border-bottom: 1px solid #ec73a8;
  padding-bottom: 1em;
  margin-top: 1em;
}
.bl_service_info dt {
  width: 20%;
  text-align: justify;
  text-align-last: justify;
}
.bl_service_info dd {
  position: relative;
  width: 80%;
  text-align: left;
  padding-left: 2em;
}
.bl_service_info dd:before {
  position: absolute;
  content: ":";
  top: 0;
  left: 1em;
}

.bl_service_price {
  position: relative;
}

.bl_service_price_txt {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .bl_service_price_txt {
    margin-bottom: calc(40px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .bl_service_price_txt {
    margin-bottom: calc(40px / 2);
  }
}

.bl_service_price_table {
  width: 100%;
}
.bl_service_price_table tr {
  border: 1px solid #231815;
}
.bl_service_price_table th {
  font-size: clamp(1.25rem, 0.875rem + 1.25vw, 1.875rem);
  background-color: #efb7d2;
  width: 50%;
  text-align: center;
  padding: 1em 0.5em;
}
.bl_service_price_table th:nth-child(1) {
  border-right: 1px solid #231815;
}
.bl_service_price_table td {
  font-size: clamp(1rem, 0.7rem + 1vw, 1.5rem);
  width: 50%;
  text-align: center;
  padding: 1em 0.5em;
}
.bl_service_price_table td:nth-child(1) {
  border-right: 1px solid #231815;
}

.bl_service_flow {
  position: relative;
  width: 100%;
  text-align: center;
}

.bl_service_item {
  position: relative;
}
.bl_service_item:after {
  position: absolute;
  content: "";
  background-image: url(../images/guide/guide_icon@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 69px;
  height: 32px;
  bottom: -40px;
  right: 50%;
}
@media (max-width: 800px) {
  .bl_service_item:after {
    width: calc(69 / 800 * 100vw);
  }
}
@media (max-width: 800px) {
  .bl_service_item:after {
    height: calc(32 / 800 * 100vw);
  }
}
@media (max-width: 800px) {
  .bl_service_item:after {
    bottom: calc(-40 / 800 * 100vw);
  }
}
.bl_service_item:last-child:after {
  display: none;
}

.bl_service_item_ttl {
  font-size: clamp(1rem, 0.775rem + 0.75vw, 1.375rem);
  color: #ec73a8;
  margin-bottom: 1.5em;
}

.bl_service_item_txt {
  line-height: 2.8125;
  margin-bottom: 4em;
}

/*
 * Module Group - Element
 */
.el_btn {
  display: inline-block;
  position: relative;
  color: #fff;
  background-color: #B40019;
  width: 211px;
  text-align: center;
  padding: 8px 0.5rem;
  font-size: clamp(0.9375rem, 0.75rem + 0.625vw, 1.25rem);
  text-decoration: none;
  border: 1px solid #B40019;
  border-radius: 10px;
}
.el_btn::after {
  position: absolute;
  content: "";
  bottom: -4px;
  right: -4px;
  width: 100%;
  height: 100%;
  border: 1px solid #B40019;
  border-radius: 10px;
}
.el_btn:hover {
  color: #B40019;
  background-color: #fff;
}
.el_btn:hover:link, .el_btn:hover:visited {
  color: #B40019;
}
.el_btn:link, .el_btn:visited {
  color: #fff;
}
.el_btn.el_btn__white {
  color: #95654C;
  background-color: #fff;
  border: 1px solid #fff;
}
.el_btn.el_btn__white::after {
  border-top: 1px solid #95654C;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #95654C;
}
.el_btn.el_btn__submit {
  width: 100%;
  cursor: pointer;
  color: #fff;
  background-color: #95654C;
  border: 1px solid #95654C;
  border-radius: 6px;
}
.el_btn.el_btn__submit::after {
  display: none;
}
.el_btn.el_btn__submit:hover {
  color: #95654C;
  background-color: #fff;
}
.el_btn.el_btn__submit:hover:link {
  color: #95654C;
}
.el_btn.el_btn__submit:hover::after {
  display: none;
}

.el_container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .el_container {
    padding-right: 4%;
    padding-left: 4%;
  }
}

/*
 * Helper Group
 */
@media screen and (max-width: 479px) {
  .hp_dSpPc {
    display: none;
  }
}

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

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

.hp_flexSp {
  display: none;
}
@media screen and (max-width: 479px) {
  .hp_flexSp {
    display: flex;
  }
}

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

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

.hp_base {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .hp_base {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.hp_fs2 {
  font-size: clamp(0.9375rem, 0.75rem + 0.625vw, 1.25rem);
}

.hp_tar {
  text-align: right;
}

.hp_tac {
  text-align: center;
}

.hp_tal {
  text-align: left;
}

.hp_cSub {
  color: #B40019;
}
.hp_cSub:visited {
  color: #B40019;
}

.hp_fwB {
  font-weight: bold;
}

.hp_noLh {
  line-height: 0;
}

.hp_bgcOrange {
  background-color: rgba(255, 226, 0, 0.11);
}

.hp_bgcBlue {
  background-color: rgba(46, 167, 224, 0.41);
}

.hp_mt100 {
  margin-top: 100px;
}
@media (max-width: 896px) {
  .hp_mt100 {
    margin-top: calc(100px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mt100 {
    margin-top: calc(100px / 2);
  }
}

.hp_mt120 {
  margin-top: 120px;
}
@media (max-width: 896px) {
  .hp_mt120 {
    margin-top: calc(120px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mt120 {
    margin-top: calc(120px / 2);
  }
}

.hp_mt160 {
  margin-top: 160px;
}
@media (max-width: 896px) {
  .hp_mt160 {
    margin-top: calc(160px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mt160 {
    margin-top: calc(160px / 2);
  }
}

.hp_mr40 {
  margin-right: 40px;
}
@media (max-width: 896px) {
  .hp_mr40 {
    margin-right: calc(40px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mr40 {
    margin-right: calc(40px / 2);
  }
}

.hp_mr50 {
  margin-right: 50px;
}
@media (max-width: 896px) {
  .hp_mr50 {
    margin-right: calc(50px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mr50 {
    margin-right: calc(50px / 2);
  }
}

.hp_mb10 {
  margin-bottom: 10px;
}

.hp_mb20 {
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .hp_mb20 {
    margin-bottom: calc(20px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb20 {
    margin-bottom: calc(20px / 2);
  }
}

.hp_mb30 {
  margin-bottom: 30px;
}
@media (max-width: 896px) {
  .hp_mb30 {
    margin-bottom: calc(30px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb30 {
    margin-bottom: calc(30px / 2);
  }
}

.hp_mb40 {
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .hp_mb40 {
    margin-bottom: calc(40px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb40 {
    margin-bottom: calc(40px / 2);
  }
}

.hp_mb50 {
  margin-bottom: 50px;
}
@media (max-width: 896px) {
  .hp_mb50 {
    margin-bottom: calc(50px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb50 {
    margin-bottom: calc(50px / 2);
  }
}

.hp_mb60 {
  margin-bottom: 60px;
}
@media (max-width: 896px) {
  .hp_mb60 {
    margin-bottom: calc(60px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb60 {
    margin-bottom: calc(60px / 2);
  }
}

.hp_mb70 {
  margin-bottom: 70px;
}
@media (max-width: 896px) {
  .hp_mb70 {
    margin-bottom: calc(70px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb70 {
    margin-bottom: calc(70px / 2);
  }
}

.hp_mb80 {
  margin-bottom: 80px;
}
@media (max-width: 896px) {
  .hp_mb80 {
    margin-bottom: calc(80px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb80 {
    margin-bottom: calc(80px / 2);
  }
}

.hp_mb100 {
  margin-bottom: 100px;
}
@media (max-width: 896px) {
  .hp_mb100 {
    margin-bottom: calc(100px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb100 {
    margin-bottom: calc(100px / 2);
  }
}

.hp_mb120 {
  margin-bottom: 120px;
}
@media (max-width: 896px) {
  .hp_mb120 {
    margin-bottom: calc(120px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb120 {
    margin-bottom: calc(120px / 2);
  }
}

.hp_mb140 {
  margin-bottom: 140px;
}
@media (max-width: 896px) {
  .hp_mb140 {
    margin-bottom: calc(140px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb140 {
    margin-bottom: calc(140px / 2);
  }
}

.hp_mb150 {
  margin-bottom: 150px;
}
@media (max-width: 896px) {
  .hp_mb150 {
    margin-bottom: calc(150px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb150 {
    margin-bottom: calc(150px / 2);
  }
}

.hp_mb160 {
  margin-bottom: 160px;
}
@media (max-width: 896px) {
  .hp_mb160 {
    margin-bottom: calc(160px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb160 {
    margin-bottom: calc(160px / 2);
  }
}

.hp_mb180 {
  margin-bottom: 180px;
}
@media (max-width: 896px) {
  .hp_mb180 {
    margin-bottom: calc(180px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb180 {
    margin-bottom: calc(180px / 2);
  }
}

.hp_mb200 {
  margin-bottom: 200px;
}
@media (max-width: 896px) {
  .hp_mb200 {
    margin-bottom: calc(200px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb200 {
    margin-bottom: calc(200px / 2);
  }
}

.hp_mb250 {
  margin-bottom: 250px;
}
@media (max-width: 896px) {
  .hp_mb250 {
    margin-bottom: calc(250px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb250 {
    margin-bottom: calc(250px / 2);
  }
}

.hp_mb300 {
  margin-bottom: 300px;
}
@media (max-width: 896px) {
  .hp_mb300 {
    margin-bottom: calc(300px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_mb300 {
    margin-bottom: calc(300px / 2);
  }
}

.hp_space {
  padding-right: 4%;
  padding-left: 4%;
}

.hp_pt80 {
  padding-top: 80px;
}
@media (max-width: 896px) {
  .hp_pt80 {
    padding-top: calc(80px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pt80 {
    padding-top: calc(80px / 2);
  }
}

.hp_pt90 {
  padding-top: 90px;
}
@media (max-width: 896px) {
  .hp_pt90 {
    padding-top: calc(90px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pt90 {
    padding-top: calc(90px / 2);
  }
}

.hp_pt100 {
  padding-top: 100px;
}
@media (max-width: 896px) {
  .hp_pt100 {
    padding-top: calc(100px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pt100 {
    padding-top: calc(100px / 2);
  }
}

.hp_pt120 {
  padding-top: 120px;
}
@media (max-width: 896px) {
  .hp_pt120 {
    padding-top: calc(120px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pt120 {
    padding-top: calc(120px / 2);
  }
}

.hp_pt150 {
  padding-top: 150px;
}
@media (max-width: 896px) {
  .hp_pt150 {
    padding-top: calc(150px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pt150 {
    padding-top: calc(150px / 2);
  }
}

.hp_pb60 {
  padding-bottom: 60px;
}
@media (max-width: 896px) {
  .hp_pb60 {
    padding-bottom: calc(60px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pb60 {
    padding-bottom: calc(60px / 2);
  }
}

.hp_pb80 {
  padding-bottom: 80px;
}
@media (max-width: 896px) {
  .hp_pb80 {
    padding-bottom: calc(80px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pb80 {
    padding-bottom: calc(80px / 2);
  }
}

.hp_pb90 {
  padding-bottom: 90px;
}
@media (max-width: 896px) {
  .hp_pb90 {
    padding-bottom: calc(90px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pb90 {
    padding-bottom: calc(90px / 2);
  }
}

.hp_pb100 {
  padding-bottom: 100px;
}
@media (max-width: 896px) {
  .hp_pb100 {
    padding-bottom: calc(100px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pb100 {
    padding-bottom: calc(100px / 2);
  }
}

.hp_pb120 {
  padding-bottom: 120px;
}
@media (max-width: 896px) {
  .hp_pb120 {
    padding-bottom: calc(120px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pb120 {
    padding-bottom: calc(120px / 2);
  }
}

.hp_pb200 {
  padding-bottom: 200px;
}
@media (max-width: 896px) {
  .hp_pb200 {
    padding-bottom: calc(200px * 2 / 3);
  }
}
@media (max-width: 480px) {
  .hp_pb200 {
    padding-bottom: calc(200px / 2);
  }
}

.hp_wsnw {
  white-space: nowrap;
}

/*
 * Unique Group
 */
/*
 * program Group
 */
/*
 * Original Group
 */
header .header_menu {
  display: none;
  position: absolute;
  right: 18px;
  top: 40px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1000;
}
header .header_menu div {
  position: relative;
}
header .header_menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #292929;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
header .header_menu span:nth-child(1) {
  top: 10px;
}
header .header_menu span:nth-child(2) {
  top: 20px;
}
header .header_menu span:nth-child(3) {
  top: 30px;
}
@media screen and (max-width: 1280px) {
  header .header_menu {
    display: block;
  }
}
header .header_menu.open span:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #292929;
}
header .header_menu.open span:nth-child(2) {
  width: 0;
  left: 50%;
}
header .header_menu.open span:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #292929;
}

#spNav {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: calc(190 / 1280 * 100vw);
  width: 100%;
  height: 100vh;
  background: white;
  text-align: center;
  padding: 3vh 4% 4vh;
  z-index: 9999;
  overflow: auto;
}
@media screen and (max-width: 896px) {
  #spNav {
    top: 120px;
    height: -webkit-calc(100vh - 120px);
    height: calc(100vh - 120px);
  }
}
#spNav .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#spNav ul {
  opacity: 0;
  margin-bottom: 30px;
}
#spNav ul li {
  border-bottom: 1px dashed #C9C9C9;
}
#spNav ul li a {
  display: block;
  width: 100%;
  line-height: 6.2vh;
  color: #fff;
  text-decoration: none;
  color: #333;
}
#spNav .spNav_inn {
  margin-bottom: 20px;
}
#spNav .spNav_inn .spNav_title {
  margin-bottom: 10px;
}
#spNav .spNav_inn .spNav_title span {
  display: block;
  background: #7A7474;
  color: #fff;
  text-align: center;
  padding: 18px 1em;
  font-size: 1.6rem;
}
#spNav .spNav_inn .spNav_title .spNav_menu_toggle {
  display: none;
}
#spNav .spNav_inn .spNav_title .spNav_menu_toggle ul li .spNav_title_sub {
  background: #D6D2D2;
  padding: 8px 1em;
  font-size: 1.4rem;
}
#spNav .spNav_inn .spNav_title .spNav_menu_toggle ul li .spNav_link {
  padding: 10px 0;
  font-size: 1.3rem;
}
#spNav .spNav_inn .spNav_title .spNav_menu_toggle ul li .spNav_link a {
  display: inline-block;
  margin: 0 0.8em 8px;
}
#spNav .spNav_pere {
  text-align: center;
}

.dl01s {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.dl02s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.dl03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.dl04s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dl05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.dl06s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.dl07s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.dl08s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.dl09s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.dl1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.dl11s {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.dl12s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.dl13s {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.dl15s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.dl2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.dl25s {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.dl3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.dl35s {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.dl4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.dl45s {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.dl5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.dl55s {
  -webkit-animation-delay: 5.5s;
  animation-delay: 5.5s;
}

.dl6s {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.dl65s {
  -webkit-animation-delay: 6.5s;
  animation-delay: 6.5s;
}

.dl7s {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.dl75s {
  -webkit-animation-delay: 7.5s;
  animation-delay: 7.5s;
}

.dl8s {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

.dl85s {
  -webkit-animation-delay: 8.5s;
  animation-delay: 8.5s;
}

.dl9s {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}

.dl95s {
  -webkit-animation-delay: 9.5s;
  animation-delay: 9.5s;
}
