@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Sawarabi+Gothic&display=swap");
:root {
  --bg01: #3F4463;
  --bg02: #f6f6f6;
  --pt01: #fee000;
  --white: #fff;
  --accent_color: #00B0F0;
  --border_color: #077FAB;
  --dark_color: #036b91;
  --red: #C80C0C;
  --font: #000000;
  --hover: #1F2D84;
  font-size: 10px;
}

body {
  color: #000;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg02);
  font-weight: 500;
}

table {
  border-collapse: collapse;
}

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

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

a {
  color: var(--white);
}

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 769px) {
  section {
    padding: 0 1rem;
  }
}
section.wide {
  max-width: 1400px;
}

.wrap_primary {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 769px) {
  .wrap_primary {
    padding: 0 1rem;
  }
}
.wrap_primary.wide {
  max-width: 1400px;
}

.inner_wrap {
  max-width: 800px;
  margin: 0 auto;
}

.main_area {
  padding-top: 80px;
}

.highlight {
  color: #f00;
  font-weight: bold;
  font-size: 130%;
}

.header {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
.header .pc {
  display: block;
}
@media screen and (max-width: 1345px) {
  .header .pc {
    display: none;
  }
}
.header .sp {
  display: none;
}
@media screen and (max-width: 1345px) {
  .header .sp {
    display: block;
  }
}

.header_wrap {
  background-color: var(--white);
  color: var(--font);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 8rem;
  max-width: 1200px;
  width: 96%;
  margin-inline: auto;
}
@media screen and (max-width: 769px) {
  .header_wrap {
    padding-left: 1.5rem;
    width: 100%;
  }
}
.header_wrap .logo_area a {
  display: block;
  padding: 17px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 8rem;
}
@media screen and (max-width: 769px) {
  .header_wrap .logo_area a {
    height: initial;
    max-width: 17.5rem;
  }
}
.header_wrap .logo_area a img {
  height: 100%;
}
@media screen and (max-width: 769px) {
  .header_wrap .logo_area a img {
    height: auto;
  }
}
.header_wrap .cta_btn_area {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header_wrap .cta_btn {
  background-color: var(--accent_color);
  border-bottom: 3px solid var(--border_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.5rem;
  height: 100%;
  text-decoration: none;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .header_wrap .cta_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1rem;
    line-height: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0.75rem;
    line-height: 1.4;
  }
}
.header_wrap .cta_btn.doc {
  background-color: #0077bf;
  border-color: #0a5d91;
}
.header_wrap .cta_btn .pc {
  display: block;
}
@media screen and (max-width: 769px) {
  .header_wrap .cta_btn .pc {
    display: none;
  }
}
.header_wrap .cta_btn .sp {
  display: none;
}
@media screen and (max-width: 769px) {
  .header_wrap .cta_btn .sp {
    display: block;
  }
}
.header_wrap .cta_btn .icon {
  display: block;
  width: 23px;
}
@media screen and (max-width: 769px) {
  .header_wrap .cta_btn .icon {
    width: 31px;
  }
}
.header_wrap .cta_btn:hover {
  border: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bd-gr {
  border: 1px solid #ccc;
}

.gnav_menu_list {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1345px) {
  .gnav_menu_list {
    position: fixed;
    width: 100%;
    top: 80px;
    left: 0;
    background-color: #EBEBEB;
    padding: 0 2rem 2.4rem 2rem;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: none;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .gnav_menu_list.toggle-active {
    display: block;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
}
.gnav_menu_list .menu_item {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gnav_menu_list .menu_item:not(:last-of-type) {
  border-right: 1px solid #000;
}
@media screen and (max-width: 1345px) {
  .gnav_menu_list .menu_item:not(:last-of-type) {
    border-right: none;
  }
}
@media screen and (max-width: 1345px) {
  .gnav_menu_list .menu_item {
    border-bottom: 1px solid #AAAAAA;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.gnav_menu_list .menu_item a {
  color: var(--font);
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 0 22px;
  line-height: 1.5;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1345px) {
  .gnav_menu_list .menu_item a {
    padding: 1.8rem 0;
    text-align: left;
    position: relative;
    width: 100%;
  }
  .gnav_menu_list .menu_item a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: #000;
    line-height: 1;
    width: 8px;
    height: 8px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: translateX(-25%) rotate(45deg);
            transform: translateX(-25%) rotate(45deg);
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnav_menu_list .menu_item a[target=_blank]::after {
    background-image: url(../../assets/images/new-window-smp-icon.png);
    border: none;
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transform: initial;
            transform: initial;
  }
}
.gnav_menu_list .menu_item a:hover {
  color: #1F2D84;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

.toggle_menu {
  width: 50px;
  height: 48px;
  background: #141414;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin: 0 12px;
  display: none;
}
@media screen and (max-width: 1345px) {
  .toggle_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.toggle_menu span {
  position: relative;
  width: 30px;
  height: 2px;
  background: transparent;
  display: inline-block;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.toggle_menu span::before, .toggle_menu span::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: white;
  -webkit-transition: top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
}
.toggle_menu span::before {
  top: -5px;
}
.toggle_menu span::after {
  bottom: -5px;
}
.toggle_menu.active span {
  background: transparent;
}
.toggle_menu.active span::before {
  top: 0;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.toggle_menu.active span::after {
  bottom: 0;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.toTop_btn {
  position: fixed;
  bottom: 13rem;
  right: 1.2rem;
  z-index: 8888;
}
@media screen and (max-width: 769px) {
  .toTop_btn {
    bottom: 7.2rem;
    right: 1.5rem;
  }
}
.toTop_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #00b0f0;
}
.toTop_btn a span {
  display: block;
}
.toTop_btn a span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 25px;
  height: 25px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(25%) rotate(-45deg);
          transform: translateY(25%) rotate(-45deg);
  vertical-align: middle;
}

.contact {
  padding-bottom: 80px;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 769px) {
  .contact {
    padding-bottom: 10%;
  }
}
.contact .download_link,
.contact .infomation_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  min-height: 118px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .contact .download_link,
  .contact .infomation_link {
    min-height: 60px;
    padding-left: 2rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.contact .download_link .icon,
.contact .infomation_link .icon {
  display: block;
  width: 2.8rem;
}
.contact .download_link .label,
.contact .infomation_link .label {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 769px) {
  .contact .download_link .label,
  .contact .infomation_link .label {
    font-size: 1.4rem;
    text-align: left;
  }
}
.contact .download_link .label small,
.contact .infomation_link .label small {
  font-size: 1.6rem;
}
@media screen and (max-width: 769px) {
  .contact .download_link .label small,
  .contact .infomation_link .label small {
    font-size: 1.2rem;
  }
}
.contact .download_link:hover,
.contact .infomation_link:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.contact .faq_link {
  max-width: 400px;
  width: 100%;
  min-height: 4em;
  margin-block: 2em 1em;
  background-color: #fee000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  font-weight: bold;
  color: #000;
}
.contact .faq_link:hover {
  background-color: #fdec66;
}
@media screen and (max-width: 769px) {
  .contact .faq_link {
    min-height: 60px;
    padding-left: 2rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.contact .faq_link .label {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 769px) {
  .contact .faq_link .label {
    font-size: 1.4rem;
    text-align: left;
  }
}
.contact .faq_link .label small {
  font-size: 1.6rem;
}
@media screen and (max-width: 769px) {
  .contact .faq_link .label small {
    font-size: 1.2rem;
  }
}
.contact .cta_btn {
  background-color: var(--accent_color);
  border-bottom: 3px solid var(--border_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  color: var(--white);
  font-size: 2.8rem;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2.5rem;
  height: 100%;
  text-decoration: none;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 133px;
}
.contact .cta_btn:not(:last-of-type) {
  margin-top: 2.8rem;
}
.contact .cta_btn:last-of-type {
  margin-top: 2rem;
}
.contact .cta_btn.dark_color {
  background-color: #0077bf;
  border-color: #003b5f;
}
@media screen and (max-width: 769px) {
  .contact .cta_btn {
    font-size: 1.4rem;
    height: 70px;
    padding-left: 2rem;
  }
}
.contact .cta_btn .icon {
  display: block;
  width: 37px;
}
@media screen and (max-width: 769px) {
  .contact .cta_btn .icon {
    width: 28px;
  }
}
.contact .cta_btn:hover {
  border: none;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}
.contact .attention {
  font-size: 1.3rem;
  margin: 1em 0 3rem 0;
}
.contact .contact_text {
  font-size: 1.6rem;
}
.contact .contact_text a {
  color: #00B0F0;
}

.column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 1000px) {
  .column2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer {
  background-color: var(--bg02);
  font-size: 1.4rem;
  text-align: center;
  padding-block: 20px;
}
@media screen and (max-width: 769px) {
  .footer {
    padding: 2rem 0;
  }
}

.org {
  padding-top: 40px;
  background-color: #fff;
  text-align: center;
  padding-bottom: 30px;
}
.org p {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 769px) {
  .org p {
    font-size: 13px;
  }
}

p.icon_box {
  position: relative;
  padding-left: 3rem;
  font-weight: 400;
}
p.icon_box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  background-color: #1C1F33;
  z-index: 1;
}
p.icon_box::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border: 1px solid #1C1F33;
  z-index: 0;
}

.merit_box {
  background-color: #f1f1f1;
  padding: 1em 1em 0.5em;
  margin-top: 20px;
}
.merit_box p {
  margin-bottom: 0.5em;
}

#top .first_view {
  border-bottom: 1px solid rgba(255, 255, 255, 0.631372549);
  background-color: #fee000;
}
#top .first_view h1 {
  width: 1600px;
  margin: 0 auto;
}
@media (max-width: 1600px) and (min-width: 1401px) {
  #top .first_view h1 {
    margin-left: calc(50vw - 800px);
  }
}
@media (max-width: 1400px) and (min-width: 780px) {
  #top .first_view h1 {
    width: 110vw;
    margin-left: -7.5vw;
  }
}
@media screen and (max-width: 769px) {
  #top .first_view h1 {
    width: 100%;
  }
}
#top .first_view h1 img {
  width: 100%;
}
#top .front-page-heading {
  position: relative;
}
#top .front-page-heading .en {
  color: #ebebeb;
  font-size: 12rem;
  font-family: "Oswald", sans-serif;
  text-align: center;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 769px) {
  #top .front-page-heading .en {
    font-size: 6.4rem;
  }
}
#top .front-page-heading .ja {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.1em;
  margin: auto;
  text-align: center;
  font-size: 2.8rem;
}
@media screen and (max-width: 769px) {
  #top .front-page-heading .ja {
    font-size: 1.5rem;
  }
}
#top section {
  border: 1px solid #fff;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 35px 25px 25px;
  position: relative;
  width: 96%;
}
@media screen and (max-width: 769px) {
  #top section {
    padding: 7% 3% 3%;
  }
}
#top section .col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
}
#top section .col2 .left {
  width: 65%;
}
@media screen and (max-width: 769px) {
  #top section .col2 .left {
    width: 100%;
  }
}
#top section .col2 .left .subtitle {
  font-size: 24px;
  color: #fff;
  background-color: #000;
  padding: 0 0.5em;
  position: absolute;
  top: -0.7em;
  left: -1px;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  #top section .col2 .left .subtitle {
    font-size: 14px;
  }
}
#top section .col2 .left h2 {
  font-size: 28px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 769px) {
  #top section .col2 .left h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 769px) {
  #top section .col2 .left h3 {
    font-size: 16px;
  }
}
#top section .col2 .left p {
  line-height: 1.8;
}
@media screen and (max-width: 769px) {
  #top section .col2 .left p {
    font-size: 14px;
  }
}
#top section .col2 .left p b {
  background-color: #fee000;
}
#top section .col2 figure {
  width: 29%;
}
@media screen and (max-width: 769px) {
  #top section .col2 figure {
    width: 100%;
    margin-top: 20px;
  }
}
#top section .col2 figure img + img {
  margin-top: 20px;
}
#top section .col2 figure figcaption {
  font-weight: normal;
  font-size: 14px;
}
#top .content-wrap {
  max-width: 1200px;
  margin: 0 auto 0;
  width: 96%;
}
#top .column4 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 1.3rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1000px) {
  #top .column4 {
    grid-template-columns: auto auto;
  }
}
#top .card_item {
  border: 1px solid #000;
}
#top .card_item a {
  display: block;
  text-decoration: none;
}
#top .card_item a .thumbnail {
  height: 24rem;
  overflow: hidden;
}
@media screen and (max-width: 769px) {
  #top .card_item a .thumbnail {
    height: 12rem;
  }
}
#top .card_item a .thumbnail img {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
#top .card_item a .title {
  color: var(--white);
  background-color: var(--font);
  text-decoration: none;
  padding: 1.3rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 769px) {
  #top .card_item a .title {
    font-size: 1.4rem;
  }
}
#top .card_item a .title::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url(../../assets/images/newwindow_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: absolute;
  right: 1rem;
  left: auto;
  bottom: 1rem;
}
#top .card_item a:hover .title {
  color: var(--pt02);
}
#top .card_item a:hover .thumbnail {
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}
#top .card_item a:hover .thumbnail img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.subpage .page-header {
  background-image: url(../images/subpage/mv_subpage.jpg);
  height: 220px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 4rem;
}
@media screen and (max-width: 769px) {
  .subpage .page-header {
    background-image: url(../images/subpage/mv_subpage-smp.jpg);
    height: 90px;
    margin-bottom: 2rem;
  }
}
.subpage .page-header section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.subpage .page-header .title_text {
  position: relative;
  width: 100%;
  height: 100%;
}
.subpage .page-header .en {
  color: #FFF28D;
  font-size: 12rem;
  font-family: "Oswald", sans-serif;
  text-align: left;
  display: inline-block;
}
@media screen and (max-width: 769px) {
  .subpage .page-header .en {
    font-size: 6rem;
    position: relative;
    top: -5px;
  }
}
.subpage .page-header .ja {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  text-align: left;
  font-size: 2.8rem;
  color: #000000;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 769px) {
  .subpage .page-header .ja {
    font-size: 1.8rem;
  }
}
.subpage .common_section {
  margin-top: 4rem;
}
@media screen and (max-width: 769px) {
  .subpage .common_section {
    margin-top: 2rem;
  }
}
.subpage .lead_text {
  line-height: 1.7;
  margin-bottom: 4rem;
}
@media screen and (max-width: 769px) {
  .subpage .lead_text {
    margin-bottom: 2rem;
  }
}
.subpage section {
  margin-bottom: 60px;
}
@media screen and (max-width: 769px) {
  .subpage section {
    margin-bottom: 1.5rem;
  }
}
.subpage section .section_wrap {
  padding-top: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000000;
}
@media screen and (max-width: 769px) {
  .subpage section .section_wrap {
    padding-block: 0 7.5%;
  }
}
.subpage section .title {
  font-size: 2.5rem;
  line-height: 1.4;
  padding: 0.25em 1em;
  background-color: #000;
  background-color: var(--pt01);
  color: var(--pt01);
  color: #000;
}
@media screen and (max-width: 769px) {
  .subpage section .title {
    font-size: 16px;
    margin-bottom: 2rem;
  }
}
.subpage section .title small {
  font-size: 2rem;
}
@media screen and (max-width: 769px) {
  .subpage section .title small {
    font-size: 1.4rem;
  }
}
.subpage section .txt {
  margin-bottom: 1em;
}
.subpage section .column2.text_and_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .subpage section .column2.text_and_image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.subpage section .column2.text_and_image p strong {
  color: #C80C0C;
  font-weight: normal;
}
.subpage section .column2.text_and_image figure img {
  margin: 0 auto;
}
.subpage section .column2.text_and_image figure img:not(:last-of-type) {
  margin-bottom: 2rem;
}
.subpage section .column2.text_and_image .attention {
  margin-top: 1rem;
}
.subpage section .column2.text_and_image .attention ul {
  padding: 0;
  margin: 0;
}
.subpage section .column2.text_and_image .attention ul li {
  font-size: 1.2rem;
  list-style: none;
  padding-left: 1em;
  position: relative;
}
.subpage section .column2.text_and_image .attention ul li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.subpage section .column2.text_and_image .infomation_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  height: 80px;
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 5px solid #737791;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  font-weight: bold;
  background-color: #1E2135;
  margin: 2.5rem auto;
}
.subpage section .column2.text_and_image .infomation_link .icon {
  display: block;
  width: 2.8rem;
}
.subpage section .column2.text_and_image .infomation_link .label {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 769px) {
  .subpage section .column2.text_and_image .infomation_link .label {
    font-size: 1.4rem;
  }
}
.subpage section .column2.text_and_image .infomation_link .label small {
  font-size: 1.6rem;
}
@media screen and (max-width: 769px) {
  .subpage section .column2.text_and_image .infomation_link .label small {
    font-size: 1.2rem;
  }
}
.subpage section .column2.text_and_image .infomation_link:hover {
  border: none;
}
.subpage section .column2.text_and_image .box_lead_text {
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 2.2rem;
}
@media screen and (max-width: 769px) {
  .subpage section .column2.text_and_image .box_lead_text {
    font-size: 1.6rem;
  }
}
.subpage section .column2 .image_area {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 35rem;
          flex: 1 0 35rem;
}
@media screen and (max-width: 769px) {
  .subpage section .column2 .image_area {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.subpage section .column2 .text_area {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: 1.75;
}
@media screen and (max-width: 769px) {
  .subpage section .column2 .text_area {
    font-size: 1.4rem;
  }
}
.subpage section figcaption {
  text-align: right;
  font-size: 1.4rem;
  margin-block: 1rem;
  font-weight: 400;
}
.subpage section figure .imaeg_title {
  font-size: 1.8rem;
  color: var(--white);
  padding: 9px 15px;
  background-color: #1A1E31;
  font-weight: bold;
  text-align: center;
  display: inline-block;
}
.subpage section p {
  font-size: 1.6rem;
}
.subpage section p a {
  color: #1592E6;
}
@media screen and (max-width: 769px) {
  .subpage section p {
    font-size: 1.4rem;
  }
}
.subpage section .l-text {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 769px) {
  .subpage section .l-text {
    font-size: 1.6rem;
  }
}
.subpage .scroll_area {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
.subpage .scroll_area::-webkit-scrollbar {
  display: none;
}
.subpage .sponsor-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  text-align: center;
  font-family: sans-serif;
}
@media screen and (max-width: 950px) {
  .subpage .sponsor-table {
    min-width: 800px;
  }
}
.subpage .sponsor-table thead {
  background: #fff;
}
.subpage .sponsor-table thead th {
  font-weight: bold;
  padding: 1rem;
  border: 1px solid #AAAAAA;
}
.subpage .sponsor-table thead th:nth-child(2) {
  background: #E3B65E;
}
.subpage .sponsor-table thead th:nth-child(3) {
  background: #BFBFBF;
}
.subpage .sponsor-table thead th:nth-child(4) {
  background: #BC7F4D;
}
.subpage .sponsor-table thead th.empty {
  border-left: none;
  border-right: none;
  border-top: none;
  background-color: transparent;
}
.subpage .sponsor-table thead {
  background: transparent;
}
@media screen and (max-width: 769px) {
  .subpage .sponsor-table thead {
    font-size: 1.4rem;
  }
}
.subpage .sponsor-table tbody {
  background-color: transparent;
}
.subpage .sponsor-table tbody th {
  text-align: left;
  background: #f9f9f9;
  border-bottom: 1px solid #AAAAAA;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.subpage .sponsor-table tbody th .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6rem;
  background-color: #EBE9E9;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6rem;
          flex: 0 0 6rem;
  border: none;
  font-size: 1.6rem;
}
@media screen and (max-width: 769px) {
  .subpage .sponsor-table tbody th .number {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4rem;
            flex: 0 0 4rem;
    font-size: 1.4rem;
  }
}
.subpage .sponsor-table tbody th .cell_title {
  font-size: 1.6rem;
  padding: 2rem;
}
@media screen and (max-width: 769px) {
  .subpage .sponsor-table tbody th .cell_title {
    font-size: 1.4rem;
    padding: 1rem;
  }
}
.subpage .sponsor-table tbody td {
  padding: 1rem;
  border: 1px solid #AAAAAA;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .subpage .sponsor-table tbody td {
    font-size: 1.4rem;
  }
}
.subpage .sponsor-table tbody td:nth-child(2) {
  background: #F3E3B4;
}
.subpage .sponsor-table tbody td:nth-child(3) {
  background: #E1E1E1;
}
.subpage .sponsor-table tbody td:nth-child(4) {
  background: #EBC09D;
}
.subpage .table_caption {
  padding: 2rem 0;
}
.subpage .table_caption dl:not(:last-of-type) {
  margin-bottom: 7px;
}
.subpage .table_caption dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.subpage .table_caption dt {
  white-space: nowrap;
  font-weight: bold;
  font-size: 1.6rem;
}
.subpage .table_caption dd {
  font-size: 1.4rem;
  line-height: 1.5;
}
.subpage #sponsor .section02 .column2,
.subpage #sponsor .section03 .column2 {
  margin-top: 3rem;
}
.subpage #student figure {
  max-width: 55rem;
  margin: 0 auto;
}
.subpage .label_title {
  position: relative;
  display: inline-block;
  background-color: #C80C0C;
  color: #fff;
  font-weight: bold;
  padding: 3px 14px;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.subpage .label_title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 3px;
  left: 3px;
  border: 1px solid #C80C0C;
}
.subpage .cover_box {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  padding: 22px 18px;
  margin-top: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--white);
}
.subpage .cover_box .icon_box::before {
  background-color: #C80C0C;
}
.subpage .cover_box .icon_box::after {
  border-color: #C80C0C;
}
.subpage .border_box {
  padding: 1.7rem 2rem;
  border: 1px solid #707070;
  margin-top: 2rem;
  font-weight: 400;
}
.subpage .border_box .box_title {
  font-weight: bold;
}
.subpage .border_box ul {
  padding: 0;
  margin: 0;
}
.subpage .border_box ul li {
  list-style: none;
  padding-left: 1em;
  position: relative;
}
.subpage .border_box ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.subpage .banner_box .banner_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #1B1E32;
  color: var(--white);
  font-weight: bold;
  padding: 1rem 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 769px) {
  .subpage .banner_box .banner_title {
    padding: 1rem 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
}
.subpage .banner_box .box_title {
  border: 1px solid #fff;
  padding: 4px 13px;
  font-size: 1.6rem;
  white-space: nowrap;
}
@media screen and (max-width: 769px) {
  .subpage .banner_box .box_title {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
  }
}
.subpage .banner_box .title_text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 769px) {
  .subpage .banner_box .title_text {
    font-size: 1.6rem;
  }
}
.subpage .banner_box .content_area {
  background-color: var(--white);
  padding: 2rem 0;
}
@media screen and (min-width: 770px) {
  .subpage .no-imaeg_title {
    position: relative;
    top: 45px;
  }
}
.subpage .faq {
  padding-top: 20px;
}
.subpage .faq dt {
  font-size: 2rem;
  margin-bottom: 0.75em;
  text-indent: -0.6em;
  padding-left: 1.5em;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .subpage .faq dt {
    font-size: 1.7rem;
  }
}
.subpage .faq dt::before {
  content: "Q.";
  display: inline-block;
  margin-right: 0.5em;
  color: #0077bf;
}
.subpage .faq dd {
  font-size: 1.8rem;
  margin-bottom: 3em;
  text-indent: -0.6em;
  padding-left: 1.5em;
  color: #444;
  margin-left: 0.3em;
}
@media screen and (max-width: 769px) {
  .subpage .faq dd {
    font-size: 1.5rem;
  }
}
.subpage .faq dd:not(:last-of-type) {
  border-bottom: 1px dotted #ddd;
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
}
.subpage .faq dd::before {
  content: "A.";
  display: inline-block;
  margin-right: 0.5em;
  color: #C80C0C;
}
.subpage .faq dd .fc-red {
  color: #C80C0C;
}
.subpage .faq dd a {
  color: #0077bf;
  text-decoration: underline;
}

#about section .section_wrap table {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#about section .section_wrap table th {
  background-color: #ececec;
  border-bottom: 1px solid #ccc;
  padding: 0.5em 1em;
}
@media screen and (max-width: 769px) {
  #about section .section_wrap table th {
    width: 6em;
    padding: 0.5em 0em;
  }
}
#about section .section_wrap table td {
  border-bottom: 1px solid #ccc;
  padding: 0.5em 1em;
}
#about section .section_wrap table td span {
  font-size: 85%;
}
#about section .section_wrap h3 {
  font-size: 30px;
}
@media screen and (max-width: 769px) {
  #about section .section_wrap h3 {
    font-size: 20px;
  }
}
#about section .section_wrap p {
  font-size: 20px;
  line-height: 1.7;
}
@media screen and (max-width: 769px) {
  #about section .section_wrap p {
    font-size: 16px;
  }
}
#about section .section_wrap figure {
  width: 100%;
}
#about section .section_wrap .hall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 769px) {
  #about section .section_wrap .hall {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about section .section_wrap .hall .left {
  width: 67%;
  padding: 5%;
}
@media screen and (max-width: 769px) {
  #about section .section_wrap .hall .left {
    width: 100%;
  }
}
#about section .section_wrap .hall .right {
  width: 33%;
}
@media screen and (max-width: 769px) {
  #about section .section_wrap .hall .right {
    width: 100%;
  }
}
#about section .section_wrap .hall .right figure:not(:last-of-type) {
  margin-bottom: 20px;
}

#report section .section_wrap h3 {
  color: #fff;
  padding: 0.2em 0.5em;
  background-color: #333;
  display: inline-block;
}
#report section .section_wrap .col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 769px) {
  #report section .section_wrap .col2 {
    display: block;
  }
}
#report section .section_wrap .col2 figure {
  margin-block: 50px;
  width: 40%;
}
@media screen and (max-width: 769px) {
  #report section .section_wrap .col2 figure {
    margin-block: 5%;
    width: 100%;
  }
}
#report section .section_wrap .col2 figure img {
  width: 100%;
}

#guide section .section_wrap table {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#guide section .section_wrap table th {
  background-color: #ececec;
  border-bottom: 1px solid #ccc;
  padding: 0.5em 1em;
}
@media screen and (max-width: 769px) {
  #guide section .section_wrap table th {
    width: 7em;
    padding: 0.5em 0;
  }
}
#guide section .section_wrap table td {
  border-bottom: 1px solid #ccc;
  padding: 0.5em 1em;
}
#guide section .section_wrap .col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 769px) {
  #guide section .section_wrap .col2 {
    display: block;
  }
}
#guide section .section_wrap .col2 > * {
  width: 48%;
}
@media screen and (max-width: 769px) {
  #guide section .section_wrap .col2 > * {
    width: 100%;
  }
}
#guide section .note {
  font-size: 85%;
}
#guide section.target h3 {
  font-size: 36px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 769px) {
  #guide section.target h3 {
    font-size: 20px;
  }
}
#guide section.target h3 span {
  background-color: #000;
  color: #fff;
  padding: 0.1em 0.3em;
  font-size: 60%;
  display: inline-block;
  margin-right: 0.5em;
  -webkit-transform: translateY(-0.2em);
          transform: translateY(-0.2em);
}
#guide section.target p {
  font-size: 20px;
}
@media screen and (max-width: 769px) {
  #guide section.target p {
    font-size: 16px;
  }
}
#guide section.promotion .section_wrap + .section_wrap {
  margin-top: 3%;
  border-top: 1px solid #ccc;
  padding-top: 3%;
}
#guide section.promotion h3 {
  margin-bottom: 20px;
  font-size: 30px;
}
@media screen and (max-width: 769px) {
  #guide section.promotion h3 {
    font-size: 20px;
    margin-top: 5%;
  }
}
#guide section.promotion h4 {
  font-size: 20px;
  margin-block: 20px 10px;
}
@media screen and (max-width: 769px) {
  #guide section.promotion h4 {
    font-size: 16px;
  }
}
#guide section.promotion p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1em;
}
#guide section.promotion p b {
  background-color: var(--pt01);
  padding: 0.05em 0.5em;
}
#guide section.promotion .acaric h3 figure {
  max-width: 250px;
}
#guide section.promotion .acaric .link-btn {
  color: #000;
  border: 1px solid #000;
  padding: 0.2em 1em;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}
@media screen and (max-width: 769px) {
  #guide section.promotion .acaric .link-btn {
    font-size: 14px;
  }
}
#guide section.promotion .acaric .link-btn:hover {
  color: var(--accent_color);
  border: 1px solid var(--accent_color);
}
#guide section.promotion figure figcaption {
  text-align: left;
  font-weight: bold;
}
#guide section.schedule figure {
  padding: 2.5%;
  margin-block: 0 30px;
}
#guide section.plan .col2 > *:first-child {
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 769px) {
  #guide section.plan .col2 > *:first-child {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}
#guide section.plan .plan-name {
  font-size: 20px;
  background-color: #000;
  color: var(--pt01);
  display: inline-block;
  padding: 0.05em 1.5em;
  border-radius: 30px;
}
#guide section.plan h3 {
  font-size: 32px;
  margin-bottom: 0.2em;
}
#guide section.plan .price {
  font-size: 20px;
  display: inline-block;
  background-color: #000;
  padding: 0.2em 1em;
  color: #fff;
  font-weight: bold;
}
#guide section.plan .price b {
  font-size: 130%;
}
#guide section.plan p {
  margin-top: 1em;
}
#guide section.plan figure {
  margin-inline: 5%;
}
#guide section.service {
  background-color: #fff;
  padding-inline: 20px;
  border: 1px solid #000;
}
@media screen and (max-width: 769px) {
  #guide section.service {
    width: 96%;
    margin-inline: auto;
  }
}
#guide section.service h2 {
  background-color: #3f76a6;
  color: #fff;
  margin: 0 -20px 0;
  padding-block: 0.5em;
}
#guide section.service p {
  font-size: 18px;
  margin-bottom: 1em;
}
@media screen and (max-width: 769px) {
  #guide section.service p {
    margin-top: 1em;
    font-size: 14px;
  }
}
#guide section.service .summary {
  border: 1px solid #3f76a6;
  margin-bottom: 20px;
}
#guide section.service .summary h3 {
  font-size: 24px;
  background-color: #3f76a6;
  color: #fff;
  padding: 0.2em 1em;
}
@media screen and (max-width: 769px) {
  #guide section.service .summary h3 {
    font-size: 16px;
  }
}
#guide section.service .summary p {
  margin-bottom: 1em;
  margin: 1em;
  line-height: 1.8;
}
#guide section.service .summary p b {
  background-color: var(--pt01);
  color: #000;
  padding: 0 0.5em;
  font-size: 120%;
}
#guide section.service .movie-image h3 {
  background-color: #000;
  color: #fff;
  padding: 0.1em 0.5em;
  margin-bottom: 0.5em;
  display: inline-block;
}
@media screen and (max-width: 769px) {
  #guide section.service .movie-image h3 {
    font-size: 14px;
  }
}
#guide section.service .movie-image figure {
  margin-bottom: 10px;
}
#guide section.service .movie-image .video {
  margin-bottom: 2%;
}
#guide section.service .movie-image .video iframe {
  max-width: 560px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 1px solid #454545;
  -webkit-box-sizing: unset;
          box-sizing: unset;
  padding-bottom: 1px;
}
#guide section.service .movie-image h4 {
  font-size: 20px;
}
#guide section.service .movie-image p {
  font-size: 15px;
  margin-bottom: 2em;
}
@media screen and (max-width: 769px) {
  #guide section.service .movie-image p {
    margin-bottom: 0;
  }
}

#access section .map-innr {
  background-color: #fff;
  padding: 3%;
  z-index: 1;
}
#access section .map-innr h2 {
  margin-bottom: 0.75em;
}
@media screen and (max-width: 769px) {
  #access section .map-innr h2 {
    font-size: 18px;
  }
}
#access section .map-innr .address {
  margin-bottom: 1em;
  font-size: 18px;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 769px) {
  #access section .map-innr .address {
    font-size: 14px;
  }
}
#access section .map-innr .address dt {
  font-weight: bold;
  width: 6em;
  border-bottom: 1px dotted #ddd;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
#access section .map-innr .address dd {
  font-weight: normal;
  margin-bottom: 0.5em;
  width: calc(100% - 6em);
  border-bottom: 1px dotted #ddd;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
#access section .map-innr .googlemap {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}
#access section .map-innr .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

slick-dots li {
  z-index: 1;
}

.carousel {
  max-width: 900px;
  width: 100%;
  margin: 20px auto;
}
.carousel figure {
  outline: none;
}
.carousel figure img {
  width: 100%;
  height: auto;
  display: block;
}
.carousel figure figcaption {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #666;
}
.carousel .slick-prev,
.carousel .slick-next {
  width: 50px;
  height: 50px;
  z-index: 10;
}
.carousel .slick-prev:before,
.carousel .slick-next:before {
  font-size: 50px;
  opacity: 0.75;
}
.carousel .slick-prev {
  left: -60px;
}
.carousel .slick-next {
  right: -60px;
}
.carousel .slick-dots {
  bottom: -40px;
}
.carousel .slick-dots li button:before {
  font-size: 12px;
}
@media screen and (max-width: 769px) {
  .carousel .slick-prev,
  .carousel .slick-next {
    width: 30px;
    height: 30px;
  }
  .carousel .slick-prev:before,
  .carousel .slick-next:before {
    font-size: 30px;
  }
  .carousel .slick-prev {
    left: 5px;
  }
  .carousel .slick-next {
    right: 5px;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 769px) {
  .slick-dotted.slick-slider {
    margin-bottom: 30px !important;
  }
}

.slick-prev:before, .slick-next:before {
  color: #9c9c9c !important;
}

@media screen and (max-width: 769px) {
  .slick-dots li {
    width: 8.5px !important;
    height: 8.5px !important;
  }
}/*# sourceMappingURL=style.css.map */