@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Orbitron:wght@400..900&display=swap");
/* //////////////////////////////////////
- reset css
////////////////////////////////////// */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, time, mark, audio, video, a, picture, figure {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, picture, figure {
  display: block;
}

ul, ol {
  list-style: none;
  list-style-position: inside;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  box-sizing: border-box;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: #D7DBE4;
  margin: 1em 0;
  padding: 0;
}

img, input, select {
  vertical-align: middle;
}

input, select, textarea, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  background: transparent;
}

/* //////////////////////////////////////
- font size css
////////////////////////////////////// */
html {
  font-size: 62.5%;
}

/* //////////////////////////////////////
- loading css
////////////////////////////////////// */
/* //////////////////////////////////////
- common css
////////////////////////////////////// */
body {
  color: #000000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.7209302326vw;
  }
}

sup {
  position: relative;
  top: -0.4em;
  font-size: 70%;
}

a {
  color: #404040;
  text-decoration: none;
}
a img {
  transition: opacity 0.3s;
}
a:hover img {
  opacity: 0.8;
}

.pc_none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: inline-block;
  }
}

.sp_none {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

.fade {
  opacity: 0;
  transform: translate(0, 50px);
  transition: opacity 1s 0s, transform 1s 0s;
}
.fade.fade_on {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .fade {
    transform: translate(0, 11.6279069767vw);
  }
  .fade.fade_on {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.inner {
  width: 100%;
  margin: 0 auto;
}

strong,
b {
  font-weight: bold;
}

.nav_btn {
  display: none;
}
@media screen and (max-width: 960px) {
  .nav_btn {
    background-image: url(../img/nav_menuicon_open.png), url(../img/nav_menuicon_bg.png);
    background-size: 20px 18px, 100% 100%;
    background-repeat: no-repeat, no-repeat;
    background-position: 50% 50%, 50% 50%;
    position: fixed;
    top: 12px;
    left: 0;
    right: -356px;
    display: block;
    width: 56px;
    height: 56px;
    margin: auto;
    z-index: 11;
  }
  .nav_btn.on {
    background-image: url(../img/nav_menuicon_close.png), url(../img/nav_menuicon_bg.png);
    background-size: 16px 16px, 100% 100%;
  }
}
@media screen and (max-width: 768px) {
  .nav_btn {
    background-size: 4.6511627907vw 4.1860465116vw, 100% 100%;
    top: 2.3255813953vw;
    left: auto;
    right: 2.3255813953vw;
    width: 13.023255814vw;
    height: 13.023255814vw;
  }
  .nav_btn.on {
    background-size: 3.7209302326vw 3.7209302326vw, 100% 100%;
  }
}

.contents_wrap {
  display: flex;
  justify-content: space-between;
  background-image: url(../img/bg_pc.jpg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contents_left {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc((100% - 430px) / 2);
  height: 100vh;
  padding: 80px 3vw 50px;
}
.contents_left .head_ttl {
  position: fixed;
  top: 20px;
  left: 16px;
  max-width: 247px;
  width: 100%;
  height: auto;
}
.contents_left .head_ttl img {
  width: 100%;
  height: auto;
}
.contents_left .nav {
  margin: auto 0 5vh;
}
.contents_left .nav li {
  position: relative;
}
.contents_left .nav li a {
  color: #fff;
  padding: 0 0 0 20px;
}
.contents_left .nav li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  display: block;
  width: 8px;
  height: 1px;
  background-color: #fff;
}
.contents_left .nav li + li {
  margin-top: 1em;
}
.contents_left .nav li.nav_oc, .contents_left .nav li.nav_line, .contents_left .nav li.nav_request {
  display: none;
}
.contents_left .txt {
  max-width: 353px;
  width: 100%;
}
.contents_left .txt img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .contents_left {
    pointer-events: none;
    z-index: 10;
  }
  .contents_left .head_ttl {
    display: none;
  }
  .contents_left .nav {
    width: 430px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(151deg, #CF307A 0%, #000000 30%, #000000 51%, #439AE1 100%);
    background-size: 100% 100%;
    margin: 0 auto;
    height: 100vh;
    z-index: 10;
    display: none;
    transition: opacity 0.3s ease;
    overflow-x: auto;
    padding: 60px 0;
  }
  .contents_left .nav ul {
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .contents_left .nav ul a {
    color: #fff;
  }
  .contents_left .nav.on {
    display: block;
    pointer-events: all;
  }
  .contents_left .nav li a {
    padding: 0;
  }
  .contents_left .nav li::before {
    display: none;
  }
  .contents_left .nav li.nav_oc, .contents_left .nav li.nav_line, .contents_left .nav li.nav_request {
    display: inline-block;
  }
  .contents_left .nav li.nav_oc {
    margin-top: 10%;
  }
  .contents_left .txt {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .contents_left {
    width: 100%;
  }
  .contents_left .nav {
    width: 100%;
    height: 100svh;
    padding: 13.023255814vw 0 13.023255814vw;
  }
  .contents_left .nav ul {
    height: auto;
    padding: 13.9534883721vw 0;
  }
  .contents_left a {
    font-size: 3.7209302326vw;
  }
}

.contents_right {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: calc((100% - 430px) / 2);
  height: 100vh;
  padding: 0 20px 50px;
}
.contents_right ul {
  max-width: 294px;
  width: 100%;
}
.contents_right li + li {
  margin-top: 10px;
}
.contents_right a {
  display: block;
  width: 100%;
  height: auto;
}
.contents_right a img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .contents_right {
    display: none;
  }
}

.contents_center {
  background-color: #000;
  color: #fff;
  width: 430px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contents_center {
    width: 100%;
  }
}

@media (max-width: 960px) and (max-height: 600px) {
  .contents_left .nav {
    margin: auto auto 0;
  }
  .contents_left .txt {
    display: none;
  }
}
@media (min-width: 961px) and (max-height: 600px) {
  .contents_left .nav {
    margin: auto 0 0;
  }
  .contents_left .txt {
    display: none;
  }
}
/* //////////////////////////////////////
- main
////////////////////////////////////// */
.main picture,
.main figure {
  width: 100%;
  height: auto;
}
.main picture img,
.main figure img {
  width: 100%;
  height: auto;
}
.main h2 {
  margin-bottom: 5%;
}
.main h2 img {
  width: 100%;
  height: auto;
}
.main h2 + p {
  font-weight: 700;
}
.main section {
  position: relative;
}
.main section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 100%;
}
@media screen and (max-width: 768px) {
  .main section::before {
    height: 11.1627906977vw;
  }
}
.main .main_header_area {
  position: relative;
}
.main .main_header_area ul {
  max-width: 382px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
.main .main_header_area ul li {
  width: 120px;
  height: 120px;
}
.main .main_header_area ul li a {
  display: block;
}
.main .main_header_area ul li a img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .main .main_header_area ul {
    max-width: 88.8372093023vw;
    bottom: 4.6511627907vw;
  }
  .main .main_header_area ul li {
    width: 27.9069767442vw;
    height: 27.9069767442vw;
  }
}
.main .features_area {
  padding: 15% 24px 20%;
}
.main .features_area::before {
  background-image: url(../img/features_anime.png);
  animation: features_anime 5s linear infinite;
}
@keyframes features_anime {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -583px 0;
  }
}
.main .features_area h3 {
  display: flex;
  align-items: center;
  color: #73FCFD;
  font-family: "Orbitron", sans-serif;
  line-height: 1;
  margin-bottom: 2%;
}
.main .features_area h3 span {
  font-size: 28px;
  font-weight: 700;
}
.main .features_area h3::after {
  content: "";
  background-color: #73FCFD;
  width: 14px;
  height: 1px;
  margin-left: 5%;
}
.main .features_area p {
  font-weight: bold;
  line-height: 1.8;
}
.main .features_area ol li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10%;
}
.main .features_area ol li div,
.main .features_area ol li figure {
  width: 50%;
}
.main .features_area ol li:nth-child(odd) div {
  order: 1;
  padding-right: 5%;
}
.main .features_area ol li:nth-child(odd) figure {
  order: 2;
}
.main .features_area ol li:nth-child(even) div {
  order: 2;
  padding-left: 5%;
}
.main .features_area ol li:nth-child(even) figure {
  order: 1;
}
@media screen and (max-width: 768px) {
  .main .features_area {
    padding: 15% 5.5813953488vw 20%;
  }
  @keyframes features_anime {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -135.5813953488vw 0;
    }
  }
  .main .features_area h3 span {
    font-size: 6.511627907vw;
  }
  .main .features_area h3::after {
    width: 3.2558139535vw;
  }
}
.main .teachingstaff_area {
  padding: 0 0 16%;
}
.main .teachingstaff_area::before {
  background-image: url(../img/teacher_anime.png);
  animation: teacher_anime 5.2s linear infinite;
}
@keyframes teacher_anime {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -657px 0;
  }
}
.main .teachingstaff_area .inner {
  padding: 15% 24px 8%;
}
.main .teachingstaff_area .teacher_box {
  width: 378px;
}
.main .teachingstaff_area .teacher_box h3 img {
  width: 100%;
  height: auto;
}
.main .teachingstaff_area .teacher_box h3 + p {
  border-bottom: 1px solid #73FCFD;
  font-size: 14px;
  padding: 6px 24px;
}
.main .teachingstaff_area .teacher_box div {
  border: 1px solid #73FCFD;
  border-top: none;
}
.main .teachingstaff_area .teacher_box dl {
  padding: 18px 24px;
}
.main .teachingstaff_area .teacher_box dt {
  font-size: 18px;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  color: #73FCFD;
}
.main .teachingstaff_area .teacher_box dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
.main .teachingstaff_area .teacher_box dd + dt::before {
  content: "";
  display: block;
  background: linear-gradient(45deg, #73FCFD 0%, #73FCFD 20%, transparent 85%);
  width: 100%;
  height: 1px;
  margin: 5% 0;
}
.main .teachingstaff_area .swiper {
  padding: 0 0 8%;
}
.main .teachingstaff_area .swiper-pagination {
  position: absolute;
  bottom: 0;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}
.main .teachingstaff_area .swiper-pagination-bullet {
  border-radius: 0;
  width: 22px;
  height: 5px;
  background-color: #716D6D;
  opacity: 1;
}
.main .teachingstaff_area .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #73FCFD;
}
@media screen and (max-width: 768px) {
  @keyframes teacher_anime {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -152.7906976744vw 0;
    }
  }
  .main .teachingstaff_area .inner {
    padding: 15% 5.5813953488vw 8%;
  }
  .main .teachingstaff_area .teacher_box {
    width: 87.9069767442vw;
  }
  .main .teachingstaff_area .teacher_box h3 + p {
    font-size: 3.488372093vw;
    padding: 1.3953488372vw 5.5813953488vw;
  }
  .main .teachingstaff_area .teacher_box dl {
    padding: 4.1860465116vw 5.5813953488vw;
  }
  .main .teachingstaff_area .teacher_box dt {
    font-size: 4.1860465116vw;
  }
  .main .teachingstaff_area .teacher_box dd {
    font-size: 3.488372093vw;
  }
  .main .teachingstaff_area .swiper-pagination-bullet {
    width: 5.1162790698vw;
    height: 1.1627906977vw;
  }
}
.main .support_area {
  background: linear-gradient(142deg, #4394DB 0%, #652271 85%);
  padding: 15% 24px 10%;
}
.main .support_area::before {
  background-image: url(../img/support_anime.png);
  animation: support_anime 6s linear infinite;
}
@keyframes support_anime {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -754px 0;
  }
}
.main .support_area h2 + p {
  margin-bottom: 10%;
}
.main .support_area p {
  line-height: 2;
}
.main .support_area p + p {
  margin-top: 1em;
}
.main .support_area figure {
  margin: 5% auto;
}
@media screen and (max-width: 768px) {
  .main .support_area {
    padding: 15% 5.5813953488vw 10%;
  }
  @keyframes support_anime {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -175.3488372093vw 0;
    }
  }
}
.main .studentvoice_area {
  position: relative;
  padding: 0 0 20%;
}
.main .studentvoice_area::before {
  background-image: url(../img/studentvoice_anime.png);
  animation: studentvoice_anime 5.5s linear infinite;
}
@keyframes studentvoice_anime {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -665px 0;
  }
}
.main .studentvoice_area h2 {
  position: absolute;
  top: 7%;
  left: 24px;
}
.main .studentvoice_area p {
  width: 100%;
  height: auto;
  padding: 0 24px;
}
.main .studentvoice_area p img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  @keyframes studentvoice_anime {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -154.6511627907vw 0;
    }
  }
  .main .studentvoice_area h2 {
    left: 5.5813953488vw;
  }
  .main .studentvoice_area p {
    padding: 0 5.5813953488vw;
  }
}
.main .curriculum_area {
  padding: 15% 24px 0;
}
.main .curriculum_area::before {
  background-image: url(../img/curriculum_anime.png);
  animation: curriculum_anime 4.5s linear infinite;
}
@keyframes curriculum_anime {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -462px 0;
  }
}
.main .curriculum_area p {
  width: 100%;
  height: auto;
}
.main .curriculum_area p img {
  width: 100%;
  height: auto;
}
.main .curriculum_area .txt {
  margin: 10% auto;
}
.main .curriculum_area .pickup_area {
  margin-top: 10%;
}
.main .curriculum_area .pickup_area h3 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  text-align: center;
  margin: 0 auto 6%;
}
.main .curriculum_area .pickup_area ul li {
  margin-bottom: 5%;
}
.main .curriculum_area .pickup_area ul figure {
  margin-bottom: 3.5%;
}
.main .curriculum_area .pickup_area ul h4 {
  color: #73FCFD;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2%;
}
.main .curriculum_area .qualification_area {
  margin: 18% auto;
}
.main .curriculum_area .qualification_area h3 {
  margin-bottom: 7%;
}
.main .curriculum_area .qualification_area h3 img {
  width: 100%;
  height: auto;
}
.main .curriculum_area .qualification_area p {
  text-align: center;
  margin: 10% 0 6%;
}
.main .curriculum_area .qualification_area p strong {
  display: inline-block;
  font-weight: 700;
  border: 1px solid #fff;
  line-height: 1;
  padding: 7px 10px 9px;
}
.main .curriculum_area .qualification_area p span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin: 2% 0 0 2%;
}
@media screen and (max-width: 768px) {
  .main .curriculum_area {
    padding: 15% 5.5813953488vw 0;
  }
  @keyframes curriculum_anime {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -107.4418604651vw 0;
    }
  }
  .main .curriculum_area .pickup_area h3 {
    font-size: 5.1162790698vw;
  }
  .main .curriculum_area .pickup_area ul h4 {
    font-size: 4.1860465116vw;
  }
  .main .curriculum_area .qualification_area p strong {
    padding: 1.6279069767vw 2.3255813953vw 2.0930232558vw;
  }
  .main .curriculum_area .qualification_area p span {
    font-size: 3.2558139535vw;
  }
}
.main .future_area {
  background-image: url(../img/future_bg.png);
  background-size: 100% auto;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  padding: 51% 24px 16%;
}
.main .future_area::before {
  display: none;
}
.main .future_area h2 {
  margin-bottom: 10%;
}
.main .future_area h2 + p {
  font-weight: 400;
}
.main .future_area p {
  line-height: 1.8;
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .main .future_area {
    padding: 51% 5.5813953488vw 16%;
  }
}
.main .faq_area {
  padding: 15% 24px 15%;
}
.main .faq_area::before {
  background-image: url(../img/faq_anime.png);
  animation: faq_anime 5s linear infinite;
}
@keyframes faq_anime {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -523px 0;
  }
}
.main .faq_area h2 + p {
  margin-bottom: 8%;
}
.main .faq_area .accordion {
  border: 1px solid #fff;
  margin-top: 2.5%;
}
.main .faq_area .accordion dt {
  position: relative;
  cursor: pointer;
  padding: 18px;
}
.main .faq_area .accordion dt span {
  background-image: url(../img/ico_q.svg);
  background-size: 26px 16px;
  background-position: 0 5px;
  background-repeat: no-repeat;
  display: inline-block;
  font-weight: 700;
  padding: 0 0 0 32px;
}
.main .faq_area .accordion dt::before, .main .faq_area .accordion dt::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #fff;
  width: 14px;
  height: 2px;
  top: 0;
  bottom: 0;
  right: 18px;
  transition: all 0.3s;
  margin: auto 0;
}
.main .faq_area .accordion dt::after {
  transform: rotate(-90deg);
}
.main .faq_area .accordion dt.on::after {
  transform: rotate(0deg);
}
.main .faq_area .accordion dd {
  display: none;
  border-top: 1px solid #fff;
  padding: 18px;
}
.main .faq_area .accordion dd p.answer {
  background-image: url(../img/ico_a.svg);
  background-size: 26px 16px;
  background-position: 0 5px;
  background-repeat: no-repeat;
  padding: 0 0 0 32px;
  line-height: 1.6;
  margin-bottom: 5%;
}
.main .faq_area .accordion dd p.answer span {
  background-color: #73FCFD;
  color: #000;
  display: inline-block;
  font-weight: 900;
  padding: 2px 5px 2px;
}
.main .faq_area .accordion dd p.answer span + span {
  margin-top: 1.5%;
}
.main .faq_area .accordion dd h3 {
  background-image: url(../img/ico_triangle.png);
  background-size: 12px 10px;
  background-position: 0 9px;
  background-repeat: no-repeat;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  padding: 0 0 2.5% 20px;
  margin: 7% 0 4%;
}
.main .faq_area .accordion dd p {
  line-height: 1.8;
}
.main .faq_area .accordion dd li {
  background-image: url(../img/ico_list.png);
  background-size: 13px 13px;
  background-position: 0 7px;
  background-repeat: no-repeat;
  line-height: 1.6;
  padding: 0 0 2% 20px;
}
.main .faq_area .bnr {
  margin: 10% auto 0;
}
.main .faq_area .bnr img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .main .faq_area {
    padding: 15% 5.5813953488vw 15%;
  }
  @keyframes faq_anime {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -121.6279069767vw 0;
    }
  }
  .main .faq_area .accordion dt {
    padding: 4.1860465116vw;
  }
  .main .faq_area .accordion dt span {
    background-size: 6.0465116279vw 3.7209302326vw;
    background-position: 0 1.1627906977vw;
    padding: 0 0 0 7.4418604651vw;
  }
  .main .faq_area .accordion dt::before, .main .faq_area .accordion dt::after {
    width: 3.2558139535vw;
    height: 0.4651162791vw;
    right: 4.1860465116vw;
  }
  .main .faq_area .accordion dd {
    padding: 4.1860465116vw;
  }
  .main .faq_area .accordion dd p.answer {
    background-size: 6.0465116279vw 3.7209302326vw;
    background-position: 0 1.1627906977vw;
    padding: 0 0 0 7.4418604651vw;
  }
  .main .faq_area .accordion dd p.answer span {
    padding: 0.4651162791vw 1.1627906977vw 0.4651162791vw;
  }
  .main .faq_area .accordion dd h3 {
    background-size: 2.7906976744vw 2.3255813953vw;
    background-position: 0 2.0930232558vw;
    font-size: 3.7209302326vw;
    padding: 0 0 2.5% 4.6511627907vw;
    margin: 7% 0 4%;
  }
  .main .faq_area .accordion dd li {
    background-size: 3.023255814vw 3.023255814vw;
    background-position: 0 1.6279069767vw;
    padding: 0 0 2% 4.6511627907vw;
  }
}

/* //////////////////////////////////////
- footer
////////////////////////////////////// */
.footer {
  padding: 0 0 8%;
}
.footer .map iframe {
  width: 100%;
  height: 314px;
}
.footer .inner {
  padding: 8% 24px 0;
}
.footer .inner h2 {
  max-width: 247px;
  margin-bottom: 5%;
}
.footer .inner h2 img {
  width: 100%;
  height: auto;
}
.footer .inner .address {
  font-size: 14px;
  margin-bottom: 4%;
}
.footer .inner .tel_area {
  margin-bottom: 4%;
}
.footer .inner .tel_area h3 {
  font-size: 14px;
  margin-bottom: 2%;
}
.footer .inner .tel_area p {
  background-image: url(../img/ico_tel.png);
  background-size: 32px 21px;
  background-repeat: no-repeat;
  line-height: 1;
  min-height: 22px;
  padding: 0 0 0 40px;
  display: flex;
  align-items: center;
}
.footer .inner .tel_area p span {
  font-size: 22px;
  font-weight: 500;
}
.footer .inner .sns_x {
  margin: 8% 0 10%;
}
.footer .inner .sns_x img {
  max-width: 24px;
  width: 100%;
  height: auto;
}
.footer .inner ul {
  max-width: 382px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 10%;
}
.footer .inner ul li {
  width: 120px;
  height: 120px;
}
.footer .inner ul li a {
  display: block;
}
.footer .inner ul li a img {
  width: 100%;
  height: auto;
}
.footer .inner .bnr {
  margin-bottom: 15%;
}
.footer .inner .bnr img {
  width: 100%;
  height: auto;
}
.footer .copyright {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer .map iframe {
    height: 73.023255814vw;
  }
  .footer .inner {
    padding: 8% 5.5813953488vw 0;
  }
  .footer .inner h2 {
    max-width: 57.4418604651vw;
  }
  .footer .inner .address {
    font-size: 3.2558139535vw;
  }
  .footer .inner .tel_area h3 {
    font-size: 3.2558139535vw;
  }
  .footer .inner .tel_area p {
    background-size: 7.4418604651vw 4.8837209302vw;
    min-height: 5.1162790698vw;
    padding: 0 0 0 9.3023255814vw;
  }
  .footer .inner .tel_area p span {
    font-size: 5.1162790698vw;
  }
  .footer .inner .sns_x img {
    max-width: 5.5813953488vw;
  }
  .footer .inner ul {
    max-width: 88.8372093023vw;
  }
  .footer .inner ul li {
    width: 27.9069767442vw;
    height: 27.9069767442vw;
  }
  .footer .copyright {
    font-size: 2.7906976744vw;
  }
}

/* //////////////////////////////////////
- aside
////////////////////////////////////// */
aside {
  display: none;
}
@media screen and (max-width: 960px) {
  aside {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 20px;
    display: block;
    margin: auto;
    width: 320px;
    height: 100px;
    z-index: 5;
  }
  aside img {
    width: 100%;
    height: auto;
  }
  aside .floating_bnr {
    position: relative;
  }
  aside .floating_bnr span {
    cursor: pointer;
    line-height: 1;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  aside {
    bottom: 4.6511627907vw;
    width: 74.4186046512vw;
    height: 23.2558139535vw;
  }
  aside .floating_bnr span {
    top: -1.8604651163vw;
    right: -1.8604651163vw;
    width: 6.0465116279vw;
    height: 6.0465116279vw;
  }
}/*# sourceMappingURL=style.css.map */