@charset "UTF-8";
body {
  background-color: #effdff;
}

:target {
  scroll-margin-top: 96px;
}
@media print, screen and (max-width: 767px) {
  :target {
    scroll-margin-top: 65px;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

@media print, screen and (max-width: 767px) {
  .header {
    width: 100%;
  }
}
.header_inr {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 10px 20px;
  width: min(95%, 1824px);
}
@media print, screen and (max-width: 767px) {
  .header_inr {
    padding: 0 20px;
    width: 100%;
  }
}
.header.open .header_inr {
  box-shadow: none;
}
.header_logo {
  margin-right: auto;
  width: 264px;
  transition: opacity 0.4s ease;
}
.header_logo:hover {
  opacity: 0.5;
}
@media print, screen and (max-width: 767px) {
  .header_logo {
    width: 226px;
  }
}

.header_nav {
  display: none;
}

@media print, screen and (min-width: 1440px) {
  .header_nav {
    display: flex;
    gap: 32px;
    margin-right: 32px;
  }
}
.header_nav.ver_h .header_nav_item a {
  padding: 6px 0;
}
.header_nav.ver_h .header_nav_item a:hover {
  border-bottom: 3px solid #6ac6d7;
}

.ham_trigger {
  display: none;
  z-index: 999;
}

@media print, screen and (max-width: 1439px) {
  .ham_trigger {
    background: linear-gradient(180deg, #68d5d5, #0a8eb9);
    border-radius: 999px;
    display: block;
    height: 44px;
    position: fixed;
    top: 25px;
    right: 5%;
    width: 44px;
  }
  .ham_trigger .line {
    background-color: #fff;
    height: 1px;
    position: absolute;
    left: 12px;
    transition: transform 0.3s ease;
    width: 20px;
  }
  .ham_trigger .line:nth-of-type(1) {
    top: 17px;
  }
  .ham_trigger .line:nth-of-type(2) {
    top: 22px;
  }
  .ham_trigger .line:nth-of-type(3) {
    bottom: 16px;
  }
  .ham_trigger.open .line:nth-of-type(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .ham_trigger.open .line:nth-of-type(2) {
    opacity: 0;
  }
  .ham_trigger.open .line:nth-of-type(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
@media print, screen and (max-width: 767px) {
  .ham_trigger {
    top: 10px;
    right: 20px;
  }
}
html.freeze {
  overflow: hidden;
}

@media print, screen and (min-width: 1440px) {
  .gmenu {
    display: none;
  }
}
@media print, screen and (max-width: 1439px) {
  .gmenu {
    background-color: #fff;
    height: 100svh;
    transform: translateX(200%);
    transition: all 0.3s ease;
    padding-top: 96px;
    position: fixed;
    top: 0px;
    width: 50%;
    z-index: 99;
  }
  .gmenu.open {
    transform: translateX(100%);
  }
  .gmenu_wrap {
    padding: 0 20px;
  }
  .gmenu_nav_item {
    border-bottom: 1px dotted #ccc;
  }
  .gmenu_nav_item a {
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 5px;
  }
}
@media print, screen and (max-width: 767px) {
  .gmenu {
    transform: translateX(100%);
    padding-top: 85px;
    width: 100%;
  }
  .gmenu.open {
    transform: translateX(0);
  }
}
.gmenu_nav_list {
  margin-bottom: 28px;
}
@media print, screen and (min-width: 541px) {
  .gmenu_nav_list {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media print, screen and (min-width: 541px) {
  .gmenu_nav_item {
    width: calc(50% - 10px);
  }
}
@media print, screen and (min-width: 768px) {
  .gmenu_nav_item {
    width: 100%;
  }
}
@media print, screen and (max-width: 1439px) {
  .gmenu_btn_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .gmenu_btn_list .btn {
    width: 258px;
  }
  .gmenu_btn_list .btn a {
    border-width: 1px;
    box-shadow: none;
    font-size: 16px;
    padding: 15px 10px;
  }
}

.open_bg {
  background-color: #000;
  opacity: 0.3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  z-index: -100;
}
.open_bg.open {
  visibility: visible;
  z-index: 1;
}

.btn {
  border-radius: 999px;
  width: 340px;
}
.btn a {
  background-color: #fc6326;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.15);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  padding: 17px;
  transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}
@media print, screen and (max-width: 540px) {
  .btn a {
    font-size: 18px;
    padding: 13px;
  }
}
.btn a span {
  background-color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  transition: background-color 0.4s ease;
  width: 20px;
}
.btn a span svg {
  fill: #fc6326;
  transition: fill 0.4s ease;
}
.btn a:hover {
  background-color: #fff;
  border-color: #fc6326;
  color: #fc6326;
}
.btn a:hover span {
  background-color: #fc6326;
}
.btn a:hover span svg {
  fill: #fff;
}
.btn.btn_line a {
  background-color: #00ab46;
}
.btn.btn_line a span svg {
  fill: #00ab46;
}
.btn.btn_line a:hover {
  background-color: #fff;
  border-color: #00ab46;
  color: #00ab46;
}
.btn.btn_line a:hover span {
  background-color: #00ab46;
}
.btn.btn_line a:hover span svg {
  fill: #fff;
}
.btn_header {
  width: 258px;
}
@media print, screen and (max-width: 1439px) {
  .btn_header {
    display: none;
  }
}
.btn_header a {
  box-shadow: none;
  font-size: 16px;
  padding: 15px 10px;
}
.btn_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media print, screen and (max-width: 540px) {
  .btn_list {
    gap: 13px;
  }
}

.mv {
  background-color: #effdff;
  background-image: radial-gradient(#daf4f9 18%, transparent 18%);
  background-size: 18px 18px;
  background-repeat: repeat;
  padding-top: 110px;
  padding-bottom: 45px;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 767px) {
  .mv {
    padding-top: 65px;
  }
}
.mv::before, .mv::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media print, screen and (min-width: 768px) {
  .mv::before {
    background-image: url(../img/img_mv_03.png);
    background-position: top left;
  }
}
@media print, screen and (max-width: 767px) {
  .mv::before {
    display: none;
  }
}
.mv::after {
  background-image: url(../img/img_mv_04.png);
  background-position: top right;
}
@media print, screen and (max-width: 767px) {
  .mv::after {
    background-image: url(../img/img_mv_04_sp.png);
  }
}
.mv_inr {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1439px) {
  .mv_inr {
    padding: 0 2.5%;
  }
}
@media print, screen and (max-width: 767px) {
  .mv_inr {
    flex-direction: column;
    padding: 0 20px;
  }
}
.mv_box {
  width: 572px;
}
@media print, screen and (max-width: 1439px) {
  .mv_box {
    max-width: 450px;
    width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .mv_box {
    order: 2;
  }
}
.mv_ttl {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 2;
  margin-bottom: 10px;
}
@media print, screen and (max-width: 1439px) {
  .mv_ttl {
    font-size: 27px;
  }
}
.mv_ttl .bg_white {
  background-color: #fff;
  display: inline-block;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 10px;
  padding: 15px 20px;
}
@media print, screen and (max-width: 1439px) {
  .mv_ttl .bg_white {
    padding: 10px 13px;
  }
}
.mv_ttl .line_yellow {
  background: linear-gradient(transparent calc(100% - 8px), #faff6e 0%);
  font-size: 52px;
  line-height: 1;
}
@media print, screen and (max-width: 1439px) {
  .mv_ttl .line_yellow {
    font-size: 38px;
  }
}
.mv_ttl .color_font {
  color: #6ac6d7;
}
.mv_txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 25px;
}
@media print, screen and (max-width: 767px) {
  .mv_txt {
    font-size: 19px;
  }
}
.mv_txt span {
  color: #07789d;
}
.mv ol {
  margin-top: 15px;
}
.mv ol li {
  font-size: 10px;
  font-weight: 400;
  padding-left: 20px;
  text-indent: -20px;
}
.mv_img {
  width: 750px;
}
@media print, screen and (max-width: 1439px) {
  .mv_img {
    max-width: 550px;
    width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .mv_img {
    margin: 0 -12px;
    order: 1;
  }
}

.inview_top {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.inview_top.is-show {
  -webkit-animation: slideIn 0.8s ease forwards;
          animation: slideIn 0.8s ease forwards;
}

.inview {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.inview.is-show {
  -webkit-animation: slideIn 0.8s ease forwards;
          animation: slideIn 0.8s ease forwards;
}

@-webkit-keyframes slideIn {
  0% {
    transform: translateY(180px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(180px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.inr {
  margin-right: auto;
  margin-left: auto;
  max-width: 1240px;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}
@media print, screen and (max-width: 1200px) {
  .inr {
    max-width: 960px;
  }
}
@media print, screen and (max-width: 960px) {
  .inr {
    max-width: 767px;
  }
}
@media print, screen and (max-width: 767px) {
  .inr {
    max-width: 540px;
  }
}

.section_btn {
  background: linear-gradient(90deg, #68d5d5, #0a8eb9);
  padding: 30px 20px 40px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section_btn {
    padding: 25px 20px 20px;
  }
}
.section_btn_txt {
  margin-bottom: 20px;
  text-align: center;
}
@media print, screen and (max-width: 540px) {
  .section_btn_txt {
    margin-bottom: 15px;
  }
}
.section_btn_txt .box {
  color: #fff;
  display: inline-block;
  font-size: 24px;
  letter-spacing: 0.05em;
  padding: 0 30px;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .section_btn_txt .box {
    font-size: 20px;
  }
}
@media print, screen and (max-width: 540px) {
  .section_btn_txt .box {
    font-size: 15px;
    padding: 0 20px;
  }
}
.section_btn_txt .box::before, .section_btn_txt .box::after {
  content: "";
  display: block;
  background-color: #fff;
  height: 24px;
  position: absolute;
  bottom: 8px;
  width: 2px;
}
@media print, screen and (max-width: 767px) {
  .section_btn_txt .box::before, .section_btn_txt .box::after {
    bottom: 4px;
  }
}
@media print, screen and (max-width: 540px) {
  .section_btn_txt .box::before, .section_btn_txt .box::after {
    height: 16px;
  }
}
.section_btn_txt .box::before {
  left: 5px;
  transform: rotate(-30deg);
}
.section_btn_txt .box::after {
  right: 5px;
  transform: rotate(30deg);
}
@media print, screen and (min-width: 541px) {
  .section_btn_txt .box br {
    display: none;
  }
}
.section_btn_txt_put {
  background-color: #fff;
  border: 2px solid #07789d;
  border-radius: 999px;
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.15);
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-left: -282px;
  max-width: 564px;
  padding: 5px;
  position: absolute;
  top: -37px;
  left: 50%;
  text-align: center;
  width: 100%;
  z-index: 1;
}
@media print, screen and (min-width: 541px) and (max-width: 768px) {
  .section_btn_txt_put {
    font-size: 16px;
    margin-left: -225px;
    max-width: 450px;
  }
}
@media print, screen and (max-width: 540px) {
  .section_btn_txt_put {
    border-width: 1px;
    font-size: 12px;
    margin-left: -167.5px;
    max-width: 335px;
    padding: 0 5px 5px;
    top: -20px;
  }
}
.section_btn_txt_put .color_font {
  color: #07789d;
  font-size: 24px;
}
@media print, screen and (min-width: 541px) and (max-width: 768px) {
  .section_btn_txt_put .color_font {
    font-size: 20px;
  }
}
@media print, screen and (max-width: 540px) {
  .section_btn_txt_put .color_font {
    font-size: 15px;
  }
}
.section_btn_txt_put .color_font .dots {
  display: inline-block;
  padding-top: 5px;
  position: relative;
}
.section_btn_txt_put .color_font .dots::before {
  content: "";
  display: block;
  background-color: #07789d;
  border-radius: 999px;
  height: 5px;
  position: absolute;
  top: 3px;
  left: 10px;
  width: 5px;
}
@media print, screen and (min-width: 541px) and (max-width: 768px) {
  .section_btn_txt_put .color_font .dots::before {
    left: 7px;
  }
}
@media print, screen and (max-width: 540px) {
  .section_btn_txt_put .color_font .dots::before {
    height: 3px;
    top: 5px;
    left: 7px;
    width: 3px;
  }
}

.section_campaign01 {
  padding-top: 80px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section_campaign01 {
    padding-top: 25px;
  }
}
.section_campaign01::after {
  content: "";
  display: block;
  background-image: url(../img/img_ssection01_01_tall.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 250px;
  position: relative;
  z-index: -1;
}
@media print, screen and (min-width: 1921px) {
  .section_campaign01::after {
    background-image: url(../img/img_ssection01_01.png);
    background-size: cover;
    height: 350px;
  }
}
@media print, screen and (max-width: 960px) {
  .section_campaign01::after {
    background-size: cover;
  }
}
@media print, screen and (max-width: 540px) {
  .section_campaign01::after {
    height: 100px;
  }
}
.section_campaign01 .inr {
  margin-bottom: -180px;
}
@media print, screen and (min-width: 1921px) {
  .section_campaign01 .inr {
    margin-bottom: -280px;
  }
}
@media print, screen and (max-width: 540px) {
  .section_campaign01 .inr {
    margin-bottom: -80px;
  }
}

.section_campaign02 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media print, screen and (max-width: 540px) {
  .section_campaign02 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.campaign {
  background-color: #fff2fa;
  border: 3px solid #f0609f;
  border-radius: 5px;
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.15);
  font-size: 16px;
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
  padding-bottom: 30px;
  width: 100%;
}
@media print, screen and (max-width: 767px) {
  .campaign {
    padding-bottom: 20px;
  }
}
@media print, screen and (max-width: 540px) {
  .campaign {
    border: 2px solid #f0609f;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  }
}
.campaign_ttl {
  background-color: #f0609f;
  border-radius: 2px 2px 0 0;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 1px 5px 8px;
  text-align: center;
}
@media print, screen and (max-width: 540px) {
  .campaign_ttl {
    font-size: 14px;
  }
}
.campaign_ttl strong {
  font-size: 48px;
}
@media print, screen and (max-width: 540px) {
  .campaign_ttl strong {
    font-size: 20px;
  }
}
.campaign_period {
  border: 1px solid #f0609f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: calc(100% - 120px);
  padding: 3px;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .campaign_period {
    max-width: calc(100% - 40px);
  }
}
@media print, screen and (max-width: 540px) {
  .campaign_period {
    font-size: 14px;
    gap: 5px;
    margin-top: 12px;
  }
}
.campaign_period .yyyy {
  display: inline-block;
  margin-right: 5px;
}
.campaign_box {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  max-width: calc(100% - 120px);
  padding: 35px 20px 20px;
  position: relative;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .campaign_box {
    max-width: calc(100% - 40px);
  }
}
@media print, screen and (max-width: 540px) {
  .campaign_box {
    margin-top: 25px;
    padding: 30px 15px 15px;
  }
}
.campaign_box_txt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.campaign_box_txt p {
  font-size: 20px;
  font-weight: 700;
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt p {
    font-size: 14px;
  }
}
.campaign_box_txt .roboto {
  font-family: "Roboto", sans-serif;
}
.campaign_box_txt .price_before {
  line-height: 1.3;
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt .price_before {
    line-height: 1.4;
  }
}
.campaign_box_txt .price_after {
  color: #f0609f;
  display: flex;
  align-items: center;
  padding-left: 73px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt .price_after {
    padding-left: 37px;
  }
}
.campaign_box_txt .price_after::before {
  content: "";
  display: block;
  background-image: url(../img/img_campaign_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 16px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 33px;
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt .price_after::before {
    height: 10px;
    margin-top: -5px;
    left: 9px;
    width: 21px;
  }
}
.campaign_box_txt .diagonal {
  display: inline-block;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt .diagonal {
    font-size: 10px;
  }
}
.campaign_box_txt .diagonal::before {
  content: "";
  display: block;
  background-color: #089fd1;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(6deg);
  width: 100%;
}
.campaign_box_txt .diagonal .roboto {
  font-size: 32px;
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt .diagonal .roboto {
    font-size: 20px;
  }
}
.campaign_box_txt .zero {
  font-size: 82px;
  line-height: 1;
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt .zero {
    font-size: 60px;
  }
}
.campaign_box_txt .price_ex {
  font-size: 14px;
  font-weight: 500;
}
.campaign_box_txt .price_circle {
  border: 1px solid #f0609f;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 12px;
  font-weight: 500;
  height: 60px;
  line-height: 1.1;
  margin-right: 8px;
  width: 60px;
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt .price_circle {
    font-size: 10px;
    height: 40px;
    margin-right: 5px;
    width: 40px;
  }
}
.campaign_box_txt .price_circle b {
  font-size: 24px;
  font-weight: 500;
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt .price_circle b {
    font-size: 14px;
  }
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt .price_off {
    font-size: 14px;
  }
}
.campaign_box_txt .price_off .roboto {
  font-size: 44px;
}
@media print, screen and (max-width: 540px) {
  .campaign_box_txt .price_off .roboto {
    font-size: 32px;
  }
}
.campaign_box .price_max {
  font-size: 24px;
  font-weight: 700;
}
@media print, screen and (max-width: 540px) {
  .campaign_box .price_max {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.campaign_box .price_max .roboto {
  color: #f0609f;
}
.campaign_box .price_max b {
  font-size: 32px;
  font-weight: 700;
}
@media print, screen and (max-width: 540px) {
  .campaign_box .price_max b {
    font-size: 24px;
  }
}
.campaign_balloon {
  background-color: #089fd1;
  border-radius: 999px;
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 8px 20px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  word-break: keep-all;
}
@media print, screen and (max-width: 540px) {
  .campaign_balloon {
    font-size: 12px;
    padding: 3px 15px 5px;
    top: -10px;
  }
}
.campaign_balloon::after {
  border-style: solid;
  border-width: 14px 7px 0 7px;
  border-color: #089fd1 transparent transparent;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  translate: -50% 100%;
}
@media print, screen and (max-width: 540px) {
  .campaign_balloon::after {
    border-width: 8px 4px 0 4px;
    bottom: 0;
  }
}

.section01 {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  text-align: center;
}
.section01_warea {
  background-color: #fff;
  position: relative;
}
.section01_warea::after {
  content: "";
  display: block;
  background-image: linear-gradient(0deg, transparent, #fff);
  height: 80px;
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
}
@media print, screen and (max-width: 540px) {
  .section01_warea {
    padding-top: 20px;
  }
}
.section01_wrap {
  background-image: url(../img/img_ssection01_04.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #fff;
  padding-bottom: 48px;
}
@media print, screen and (max-width: 960px) {
  .section01_wrap {
    background-size: cover;
  }
}
@media print, screen and (max-width: 540px) {
  .section01_wrap {
    background-image: url(../img/img_ssection01_04_sp.jpg);
    padding-bottom: 25px;
  }
}
.section01_wrap .inr {
  position: relative;
}
.section01_ttl {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 540px) {
  .section01_ttl {
    font-size: 21px;
    margin-bottom: 10px;
  }
}
.section01_ttl strong {
  color: #089fd1;
  display: inline-block;
  font-size: 48px;
  font-weight: 900;
  padding-top: 20px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section01_ttl strong {
    font-size: 32px;
  }
}
.section01_ttl strong::before {
  content: "";
  display: block;
  background-image: url(../img/img_ssection01_02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 40px;
  position: absolute;
  top: 0;
  right: -30px;
  width: 36px;
}
@media print, screen and (max-width: 540px) {
  .section01_ttl strong::before {
    height: 27px;
    top: 5px;
    right: -20px;
    width: 24px;
  }
}
@media print, screen and (min-width: 768px) {
  .section01_img {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1040px;
    width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .section01_img {
    margin-bottom: 30px;
  }
}
@media print, screen and (max-width: 540px) {
  .section01_img {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media print, screen and (min-width: 768px) {
  .section01_img img {
    width: 100%;
  }
}
.section01_txt01 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 767px) {
  .section01_txt01 {
    font-size: 24px;
  }
}
@media print, screen and (max-width: 540px) {
  .section01_txt01 {
    margin-bottom: 20px;
  }
}
.section01_txt01 strong {
  background-color: #07789d;
  display: inline-block;
  color: #fff;
  margin-top: 5px;
  padding: 4px 5px;
}
@media print, screen and (min-width: 961px) {
  .section01_txt01 strong {
    margin-top: 10px;
    padding: 3px 20px;
  }
}
.section01_txt01 strong .yellow {
  color: #faff6e;
}
.section01_txt01.ver_pc {
  display: none;
}
@media print, screen and (min-width: 961px) {
  .section01_txt01.ver_pc {
    display: block;
  }
}
.section01_txt01.ver_sp {
  display: block;
}
@media print, screen and (min-width: 961px) {
  .section01_txt01.ver_sp {
    display: none;
  }
}
.section01_txt02 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 15px;
  margin-bottom: 10px;
}
@media print, screen and (max-width: 540px) {
  .section01_txt02 {
    font-size: 15px;
  }
}
.section01_txt03 {
  display: inline;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media print, screen and (max-width: 540px) {
  .section01_txt03 {
    font-size: 21px;
  }
}
.section01_txt03 .yellow {
  background: linear-gradient(transparent calc(100% - 8px), #faff6e 0%);
}
.section01_list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 60px;
}
@media print, screen and (max-width: 960px) {
  .section01_list {
    justify-content: center;
  }
}
@media print, screen and (max-width: 540px) {
  .section01_list {
    margin-top: 30px;
  }
}
.section01_list li {
  width: calc(33.333% - 4px);
}
@media print, screen and (max-width: 960px) {
  .section01_list li {
    width: calc(50% - 4px);
  }
}
@media print, screen and (max-width: 540px) {
  .section01_list li {
    width: 100%;
  }
}

.section02 {
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 68px;
  position: relative;
  text-align: center;
}
@media print, screen and (max-width: 540px) {
  .section02 {
    padding-top: 40px;
    padding-bottom: 28px;
  }
}
@media print, screen and (min-width: 768px) {
  .section02::before, .section02::after {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: 21.8%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .section02::before {
    background-image: url(../img/img_section_bg_left.png);
    background-position: top 40px right 0;
  }
  .section02::after {
    background-image: url(../img/img_section_bg_right.png);
    background-position: top 88% left 0;
  }
}
.section02_ttl {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section02_ttl {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.section02_ttl::after {
  content: "";
  display: block;
  background-image: url(../img/img_ssection02_01.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 147px;
  margin-left: -423px;
  position: absolute;
  top: -20px;
  left: 50%;
  width: 846px;
  z-index: -1;
}
@media print, screen and (max-width: 960px) {
  .section02_ttl::after {
    height: 95px;
    margin-left: -250px;
    width: 500px;
  }
}
@media print, screen and (max-width: 540px) {
  .section02_ttl::after {
    height: 59px;
    margin-left: -169.5px;
    top: 0;
    width: 339px;
  }
}
.section02_txt01 {
  margin-right: auto;
  margin-bottom: 35px;
  margin-left: auto;
  max-width: 544px;
  width: 100%;
}
@media print, screen and (max-width: 540px) {
  .section02_txt01 {
    margin-bottom: 20px;
    max-width: 220px;
  }
}
.section02_txt01 img {
  width: 100%;
}
.section02_txt02 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
@media print, screen and (max-width: 767px) {
  .section02_txt02 {
    line-height: 1.8;
  }
}
@media print, screen and (max-width: 540px) {
  .section02_txt02 {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
.section02_txt02 strong {
  background: linear-gradient(transparent calc(100% - 8px), #faff6e 0%);
  font-size: 28px;
  font-weight: 700;
}
@media print, screen and (max-width: 540px) {
  .section02_txt02 strong {
    font-size: 21px;
  }
}
@media print, screen and (min-width: 768px) {
  .section02_img {
    margin: 0 -12px;
    width: calc(100% + 24px);
  }
  .section02_img img {
    width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .section02_img {
    margin: 0 -12px;
  }
}

.section03 {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 237px;
  position: relative;
  text-align: center;
}
@media print, screen and (max-width: 540px) {
  .section03 {
    padding-top: 40px;
    padding-bottom: 140px;
  }
}
.section03::before {
  content: "";
  display: block;
  background-image: repeating-linear-gradient(to bottom, #000, #000 1px, transparent 0, transparent 18px), repeating-linear-gradient(to right, #000, #000 1px, transparent 0, transparent 18px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.04;
}
.section03 .inr {
  position: relative;
  z-index: 1;
}
.section03_ttl {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
}
@media print, screen and (max-width: 540px) {
  .section03_ttl {
    font-size: 24px;
  }
}
.section03_ttl strong {
  background: linear-gradient(transparent calc(100% - 8px), #faff6e 0%);
  color: #089fd1;
}
.section03_ttl02 {
  margin-bottom: 30px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section03_ttl02 {
    margin-bottom: 10px;
  }
}
.section03_ttl02::after {
  content: "";
  display: block;
  background-color: #089fd1;
  height: 2px;
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
}
.section03_ttl02 span {
  background-color: #fff;
  font-size: 20px;
  padding: 5px 20px;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 540px) {
  .section03_ttl02 span {
    font-size: 15px;
    padding: 5px 15px;
  }
}
.section03_txt01 {
  margin-bottom: 5px;
}
.section03_txt01 span {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0 30px;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .section03_txt01 span {
    font-size: 18px;
    padding: 0 20px;
  }
}
.section03_txt01 span::before, .section03_txt01 span::after {
  content: "";
  display: block;
  background-color: #000;
  height: 24px;
  position: absolute;
  top: 8px;
  width: 2px;
}
@media print, screen and (max-width: 540px) {
  .section03_txt01 span::before, .section03_txt01 span::after {
    height: 18px;
    top: 7px;
  }
}
.section03_txt01 span::before {
  left: 5px;
  transform: rotate(-30deg);
}
.section03_txt01 span::after {
  right: 5px;
  transform: rotate(30deg);
}
.section03_txt02 {
  letter-spacing: 0.05em;
  line-height: 1.9;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .section03_img img {
    width: 100%;
  }
}
.section03_2 {
  margin-top: -115px;
  padding-bottom: 80px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media print, screen and (max-width: 540px) {
  .section03_2 {
    margin-top: -70px;
    padding-bottom: 40px;
  }
}
.section03_2_box {
  background-color: #089fd1;
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  color: #fff;
  padding: 40px 60px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section03_2_box {
    border-radius: 20px;
    padding: 30px 20px 20px;
  }
}
.section03_2_box::before {
  content: "";
  display: block;
  background-image: url(../img/img_ssection03_2_02.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 100px;
  margin-left: -100px;
  position: absolute;
  top: -62px;
  left: 50%;
  width: 200px;
}
@media print, screen and (max-width: 540px) {
  .section03_2_box::before {
    height: 70px;
    margin-left: -65px;
    top: -40px;
    width: 130px;
  }
}
.section03_2_box h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media print, screen and (max-width: 767px) {
  .section03_2_box h3 {
    font-size: 20px;
  }
}
@media print, screen and (max-width: 540px) {
  .section03_2_box h3 {
    font-size: 16px;
  }
}
.section03_2_box h3 strong {
  font-size: 32px;
}
@media print, screen and (max-width: 767px) {
  .section03_2_box h3 strong {
    font-size: 28px;
  }
}
@media print, screen and (max-width: 540px) {
  .section03_2_box h3 strong {
    font-size: 20px;
  }
}
.section03_2_box p {
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 767px) {
  .section03_2_box p {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .section03_2_img img {
    width: 100%;
  }
}
@media print, screen and (max-width: 540px) {
  .section03_2_img {
    margin: 0 -5px;
  }
}

.section04 {
  padding-top: 80px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section04 {
    padding-top: 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .section04::before, .section04::after {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: 21.8%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .section04::before {
    background-image: url(../img/img_section_bg_left.png);
    background-position: top 40px right 0;
  }
  .section04::after {
    background-image: url(../img/img_section_bg_right.png);
    background-position: top 60% left 0;
  }
}
@media print, screen and (min-width: 1241px) {
  .section04 .inr {
    max-width: 1120px;
  }
}
.section04_ttl {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 45px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section04_ttl {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 30px;
  }
}
.section04_ttl::after {
  content: "";
  display: block;
  background-image: url(../img/img_section04_05.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 29px;
  margin-left: -211px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 422px;
}
@media print, screen and (max-width: 540px) {
  .section04_ttl::after {
    height: 29px;
    margin-left: -150px;
    width: 300px;
  }
}
.section04_ttl strong {
  font-size: 48px;
  color: #089fd1;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section04_ttl strong {
    font-size: 32px;
  }
}
.section04_ttl strong::after {
  content: "";
  display: block;
  background-image: url(../img/img_section04_04.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 34px;
  position: absolute;
  top: -20px;
  left: -25px;
  width: 43px;
}
@media print, screen and (max-width: 540px) {
  .section04_ttl strong::after {
    height: 25px;
    top: -15px;
    left: -20px;
    width: 32px;
  }
}
.section04_teacher {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 80px;
}
.section04_teacher li {
  width: calc(33.333% - 20px);
}
@media print, screen and (max-width: 960px) {
  .section04_teacher li {
    width: calc(50% - 15px);
  }
}
@media print, screen and (max-width: 767px) {
  .section04_teacher li {
    display: flex;
    gap: 20px;
    width: 100%;
  }
}
@media print, screen and (min-width: 541px) and (max-width: 767px) {
  .section04_teacher li {
    align-items: center;
  }
}
@media print, screen and (min-width: 768px) {
  .section04_teacher li img {
    margin-right: auto;
    margin-left: auto;
    max-width: 304px;
    width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .section04_teacher li img {
    max-width: 140px;
  }
}
@media print, screen and (min-width: 768px) {
  .section04_teacher li:nth-of-type(2) img {
    max-width: 315px;
  }
}
.section04_teacher .txt p {
  line-height: 1.9;
  margin-top: 30px;
}
@media print, screen and (max-width: 767px) {
  .section04_teacher .txt p {
    line-height: 1.7;
    margin-top: 0;
  }
}
@media print, screen and (max-width: 540px) {
  .section04_teacher .txt p {
    font-size: 14px;
  }
}
.section04_list {
  display: flex;
  gap: 6px;
  margin: 0 -12px;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 960px) {
  .section04_list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media print, screen and (max-width: 960px) {
  .section04_list li {
    width: calc(50% - 3px);
  }
}
@media print, screen and (max-width: 540px) {
  .section04_list li {
    width: 100%;
  }
}
.section04_ttl02 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: center;
}
@media print, screen and (max-width: 540px) {
  .section04_ttl02 {
    font-size: 24px;
  }
}
.section04_ttl02 span {
  display: inline-block;
  letter-spacing: 0.08em;
  padding: 0 65px;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .section04_ttl02 span {
    padding: 0 50px;
  }
}
.section04_ttl02 span::before, .section04_ttl02 span::after {
  content: "";
  display: block;
  background-image: url(../img/img_section04_08.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 40px;
  position: absolute;
  top: 5px;
  width: 40px;
}
@media print, screen and (max-width: 767px) {
  .section04_ttl02 span::before, .section04_ttl02 span::after {
    height: 30px;
    top: 0;
    width: 30px;
  }
}
.section04_ttl02 span::before {
  left: 5px;
}
.section04_ttl02 span::after {
  right: 5px;
  transform: scale(-1, 1);
}
.section04_ttl02 strong {
  background: linear-gradient(transparent calc(100% - 8px), #faff6e 0%);
  color: #089fd1;
}

.section05 {
  background-color: #fff;
  margin-top: -210px;
  padding-top: 290px;
  padding-bottom: 80px;
  position: relative;
}
@media print, screen and (max-width: 960px) {
  .section05 {
    margin-top: -700px;
    padding-top: 750px;
  }
}
@media print, screen and (max-width: 767px) {
  .section05 {
    margin-top: -400px;
    padding-top: 450px;
  }
}
@media print, screen and (max-width: 540px) {
  .section05 {
    margin-top: -250%;
    padding-top: calc(250% + 40px);
    padding-bottom: 40px;
  }
}
.section05::before {
  content: "";
  display: block;
  background-image: repeating-linear-gradient(to bottom, #000, #000 1px, transparent 0, transparent 18px), repeating-linear-gradient(to right, #000, #000 1px, transparent 0, transparent 18px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.04;
}
.section05 .inr {
  position: relative;
  z-index: 1;
}
.section05_ttl {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
}
@media print, screen and (max-width: 540px) {
  .section05_ttl {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
}
.section05_ttl::after {
  content: "";
  display: block;
  background-color: #089fd1;
  height: 3px;
  margin: 0 auto;
  position: relative;
  bottom: -10px;
  width: 80px;
}
@media print, screen and (max-width: 540px) {
  .section05_ttl::after {
    bottom: -5px;
    width: 60px;
  }
}
.section05_leadtxt {
  margin-bottom: 30px;
  text-align: center;
}
@media print, screen and (max-width: 540px) {
  .section05_leadtxt {
    margin-bottom: 20px;
  }
}
.section05 .tab_list {
  border-bottom: 2px solid #089fd1;
  display: flex;
}
.section05 .tab_trigger {
  background-color: #ebf9fe;
  color: #6ba1b3;
  font-size: 20px;
  padding: 12px;
  text-align: center;
  width: 33.333%;
}
@media print, screen and (max-width: 540px) {
  .section05 .tab_trigger {
    font-size: 15px;
    line-height: 1.2;
    padding: 5px;
  }
}
.section05 .tab_trigger:nth-of-type(1), .section05 .tab_trigger:nth-of-type(2) {
  border-right: 1px solid #b3b3b3;
}
.section05 .tab_trigger:hover {
  opacity: 0.8;
}
.section05 .tab_trigger.active {
  background-color: #089fd1;
  color: #fff;
}
.section05 .tab_panel {
  display: none;
  padding-top: 40px;
}
@media print, screen and (max-width: 540px) {
  .section05 .tab_panel {
    padding-top: 20px;
  }
}
.section05 .tab_panel.active {
  display: block;
}
.section05_list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 60px;
}
@media print, screen and (max-width: 540px) {
  .section05_list {
    row-gap: 35px;
  }
}
.section05 .card {
  background-color: #fff;
  border-top: 10px solid #6ac6d7;
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  min-height: 304px;
  padding: 20px 30px 35px;
  width: calc(50% - 10px);
}
@media print, screen and (max-width: 1200px) {
  .section05 .card {
    width: 100%;
  }
}
@media print, screen and (max-width: 540px) {
  .section05 .card {
    border-radius: 8px;
    border-top: 8px solid #6ac6d7;
    min-height: auto;
    padding: 15px 20px 25px;
  }
}
.section05 .card .ttl {
  border-bottom: 1px solid #ccc;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  text-align: center;
}
@media print, screen and (max-width: 540px) {
  .section05 .card .ttl {
    font-size: 15px;
  }
}
.section05 .card .txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  padding-top: 15px;
}
.section05 .card .cap {
  font-size: 12px;
  font-weight: 400;
  margin-top: 8px;
}
.section05 .card_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section05 .card.b_yellow {
  border-color: #fcB826;
}
.section05 .card.b_orange {
  border-color: #e9744a;
}
.section05 .card.b_blue {
  border-color: #4e99e2;
}
.section05 .card.b_light_blue {
  border-color: #74c2d0;
}
.section05 .card.b_deep_blue {
  border-color: #588ecc;
}
.section05 .card.b_green {
  border-color: #2dbdb6;
}
.section05 .card.b_light_green {
  border-color: #61c061;
}
.section05 .card.b_purple {
  border-color: #b66ebd;
}
.section05 .card.b_pink {
  border-color: #ea78ce;
}
.section05 .card.b_indigo {
  border-color: #6e72bd;
}
@media print, screen and (min-width: 1201px) {
  .section05 .card.linehight {
    padding: 20px 30px 20px;
  }
  .section05 .card.linehight .txt {
    line-height: 1.4;
  }
}
.section05_item {
  width: calc(50% - 10px);
}
@media print, screen and (max-width: 540px) {
  .section05_item {
    width: 100%;
  }
}
.section05_item_ttl {
  border-bottom: 2px dotted #089fd1;
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
@media print, screen and (max-width: 540px) {
  .section05_item_ttl {
    font-size: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.section05_item_wide {
  width: 100%;
}
.section05_item_wide .card {
  width: calc(25% - 15px);
}
@media print, screen and (max-width: 1200px) {
  .section05_item_wide .card {
    width: calc(50% - 10px);
  }
}
@media print, screen and (max-width: 540px) {
  .section05_item_wide .card {
    width: 100%;
  }
}

.section06 {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media print, screen and (max-width: 540px) {
  .section06 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media print, screen and (min-width: 1201px) {
  .section06 .inr {
    max-width: 1120px;
  }
}
.section06 .swiper {
  overflow: visible;
}
.section06 .swiper-pagination {
  margin-top: 15px;
  position: relative;
  bottom: 0 !important;
}
@media print, screen and (max-width: 540px) {
  .section06 .swiper-pagination {
    margin-top: 5px;
  }
}
.section06 .swiper-pagination-bullet-active {
  background: #089fd1 !important;
}
.section06 .swiper-button-prev,
.section06 .swiper-button-next {
  height: 60px;
  top: calc(50% - 25px);
  width: 60px;
}
@media print, screen and (max-width: 540px) {
  .section06 .swiper-button-prev,
.section06 .swiper-button-next {
    height: 40px;
    top: calc(50% - 20px);
    width: 40px;
  }
}
.section06 .swiper-button-prev img,
.section06 .swiper-button-next img {
  width: 100%;
}
.section06 .swiper-button-prev {
  left: -20px;
}
@media print, screen and (max-width: 540px) {
  .section06 .swiper-button-prev {
    left: -10px;
  }
}
.section06 .swiper-button-next {
  right: -20px;
}
@media print, screen and (max-width: 540px) {
  .section06 .swiper-button-next {
    right: -10px;
  }
}
.section06 .swiper-button-next img {
  transform: rotate(180deg);
}
.section06 .swiper-button-prev:after,
.section06 .swiper-button-next:after {
  display: none;
}
.section06 .swiper-slide {
  height: auto;
  padding-bottom: 15px;
}
@media print, screen and (max-width: 767px) {
  .section06 .swiper-slide {
    padding-top: 40px;
  }
}
@media print, screen and (max-width: 540px) {
  .section06 .swiper-slide {
    padding-top: 30px;
  }
}
.section06 .slider_card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 30px;
  height: 100%;
  padding: 60px;
  position: relative;
}
@media print, screen and (max-width: 960px) {
  .section06 .slider_card {
    padding: 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .section06 .slider_card {
    border-radius: 15px;
    padding: 140px 50px 50px;
  }
}
@media print, screen and (max-width: 540px) {
  .section06 .slider_card {
    padding: 95px 20px 25px;
  }
}
.section06 .slider_card_img {
  width: 165px;
}
@media print, screen and (max-width: 960px) {
  .section06 .slider_card_img {
    width: 120px;
  }
}
@media print, screen and (max-width: 767px) {
  .section06 .slider_card_img {
    margin-left: -60px;
    position: absolute;
    top: -30px;
    left: 50%;
  }
}
@media print, screen and (max-width: 540px) {
  .section06 .slider_card_img {
    margin-left: -43.5px;
    width: 87px;
  }
}
.section06 .slider_card_txt {
  flex: 1;
}
.section06 .slider_card_txt h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media print, screen and (max-width: 960px) {
  .section06 .slider_card_txt h3 {
    font-size: 18px;
  }
}
@media print, screen and (max-width: 540px) {
  .section06 .slider_card_txt h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.section06 .slider_card_txt p {
  font-weight: 400;
  line-height: 1.8;
}
@media print, screen and (max-width: 540px) {
  .section06 .slider_card_txt p {
    font-size: 14px;
  }
}

.section07 {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section07 {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.section07::before {
  content: "";
  display: block;
  background-image: repeating-linear-gradient(to bottom, #000, #000 1px, transparent 0, transparent 18px), repeating-linear-gradient(to right, #000, #000 1px, transparent 0, transparent 18px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.04;
}
.section07 .inr {
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 1241px) {
  .section07 .inr {
    max-width: 1120px;
  }
}
@media print, screen and (max-width: 1349px) {
  .section07 .inr {
    padding-bottom: 50px;
  }
}
.section07 .inr::before, .section07 .inr::after {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.section07 .inr::before {
  background-image: url(../img/img_section07_02.png);
  height: 140px;
  top: -20px;
  left: -110px;
  width: 195px;
}
@media print, screen and (max-width: 1349px) {
  .section07 .inr::before {
    top: -30px;
    left: -70px;
  }
}
@media print, screen and (max-width: 960px) {
  .section07 .inr::before {
    left: -30px;
  }
}
@media print, screen and (max-width: 540px) {
  .section07 .inr::before {
    height: 76px;
    top: -10px;
    left: 0;
    width: 106px;
  }
}
.section07 .inr::after {
  background-image: url(../img/img_section07_03.png);
  height: 130px;
  bottom: -10px;
  right: -120px;
  width: 181px;
}
@media print, screen and (max-width: 1349px) {
  .section07 .inr::after {
    right: 0;
  }
}
@media print, screen and (max-width: 767px) {
  .section07 .inr::after {
    bottom: -30px;
  }
}
@media print, screen and (max-width: 540px) {
  .section07 .inr::after {
    height: 68px;
    bottom: 0;
    width: 95px;
  }
}
.section07_ttl {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 45px;
  text-align: center;
}
@media print, screen and (max-width: 540px) {
  .section07_ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.section07_ttl span {
  display: inline-block;
  letter-spacing: 0.08em;
  padding: 0 50px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section07_ttl span {
    padding: 0 40px;
  }
}
.section07_ttl span::before, .section07_ttl span::after {
  content: "";
  display: block;
  background-image: url(../img/img_section07_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 72px;
  position: absolute;
  top: -10px;
  width: 26px;
}
@media print, screen and (max-width: 540px) {
  .section07_ttl span::before, .section07_ttl span::after {
    height: 54px;
    top: -7px;
    width: 20px;
  }
}
.section07_ttl span::before {
  left: 5px;
}
.section07_ttl span::after {
  right: 5px;
  transform: scale(-1, 1);
}
.section07_list li {
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media print, screen and (max-width: 540px) {
  .section07_list li {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.section07_list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.section07_list li h3 {
  width: 120px;
}
@media print, screen and (max-width: 960px) {
  .section07_list li h3 {
    width: 90px;
  }
}
.section07_list li p {
  font-size: 20px;
  flex: 1;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media print, screen and (max-width: 960px) {
  .section07_list li p {
    font-size: 16px;
  }
}
@media print, screen and (max-width: 540px) {
  .section07_list li p {
    font-size: 14px;
  }
}

.section08 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media print, screen and (max-width: 540px) {
  .section08 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .section08::before, .section08::after {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: 21.8%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
.section08::before {
  background-image: url(../img/img_section_bg_left.png);
  background-position: top 40px right 0;
}
.section08::after {
  background-image: url(../img/img_section_bg_right.png);
  background-position: top 50% left 0;
}
.section08 .section05_ttl {
  margin-bottom: 60px;
}
@media print, screen and (max-width: 540px) {
  .section08 .section05_ttl {
    margin-bottom: 40px;
  }
}
.section08_list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 50px;
}
@media print, screen and (max-width: 540px) {
  .section08_list {
    row-gap: 40px;
  }
}
.section08_list li {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.15);
  padding: 50px 20px 40px;
  position: relative;
  width: calc(25% - 23px);
}
@media print, screen and (max-width: 1200px) {
  .section08_list li {
    width: calc(50% - 15px);
  }
}
@media print, screen and (max-width: 767px) {
  .section08_list li {
    width: 100%;
  }
}
@media print, screen and (max-width: 540px) {
  .section08_list li {
    padding: 50px 20px 30px;
  }
}
.section08_list li .num {
  position: absolute;
  margin-left: -28px;
  top: -20px;
  left: 50%;
  width: 56px;
}
.section08_list li .ttl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-align: center;
}
.section08_list li .img {
  margin: 0 -20px;
}
.section08_list li .img img {
  width: 100%;
}
.section08_list li .txt {
  font-weight: 400;
  line-height: 1.7;
  margin-top: 20px;
}
@media print, screen and (max-width: 540px) {
  .section08_list li .txt {
    font-size: 14px;
  }
}
.section08_list li .btn {
  width: 100%;
}
@media print, screen and (max-width: 767px) {
  .section08_list li .btn {
    width: 250px;
  }
}
.section08_list li .btn a {
  border-width: 1px;
  box-shadow: none;
  font-size: 15px;
  padding: 10px;
}
.section08_list li .btn_list {
  margin-top: 20px;
  gap: 10px;
}
@media print, screen and (min-width: 768px) {
  .section08_list li .btn_list {
    margin: 20px -5px 0;
  }
}
.section08_img {
  margin-top: 80px;
}
@media print, screen and (min-width: 1320px) {
  .section08_img {
    padding-left: 20px;
    max-width: 1280px;
  }
}
@media print, screen and (max-width: 767px) {
  .section08_img picture {
    display: block;
    margin-right: -15px;
  }
}
@media print, screen and (max-width: 540px) {
  .section08_img {
    margin-top: 60px;
  }
}
.section08_img img {
  width: 100%;
}

.section09 {
  background-color: #f7f7f7;
  text-align: center;
}
.section09_wrap {
  background-image: url(../img/img_section09_01.png);
  background-position: bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 0 auto;
  max-width: 1920px;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}
@media print, screen and (max-width: 1699px) {
  .section09_wrap {
    max-width: 1320px;
    padding-bottom: 150px;
  }
}
@media print, screen and (max-width: 1320px) {
  .section09_wrap {
    padding-bottom: 100px;
  }
}
@media print, screen and (max-width: 767px) {
  .section09_wrap {
    background-image: url(../img/img_section09_01_sp.png);
    background-size: contain;
    padding-bottom: 200px;
  }
}
@media print, screen and (max-width: 540px) {
  .section09_wrap {
    background-size: 100%;
    padding-top: 40px;
    padding-bottom: 150px;
  }
}
.section09_ttl {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}
@media print, screen and (max-width: 540px) {
  .section09_ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.section09_ttl span {
  color: #00ab46;
}
.section09_txt {
  margin-bottom: 40px;
}
@media print, screen and (max-width: 540px) {
  .section09_txt {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.section09_img img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .section09_img img {
    max-width: 1040px;
    margin: 0 auto;
  }
}

.section10 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .section10 {
    padding-bottom: 50px;
  }
}
@media print, screen and (max-width: 540px) {
  .section10 {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .section10::before, .section10::after {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: 21.8%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
.section10::before {
  background-image: url(../img/img_section_bg_left.png);
  background-position: top 40px right 0;
}
.section10::after {
  background-image: url(../img/img_section_bg_right.png);
  background-position: top 50% left 0;
}

/* アコーディオン */
.accordion_area {
  margin-bottom: 70px;
}
@media print, screen and (max-width: 767px) {
  .accordion_area {
    margin-bottom: 40px;
  }
}
@media print, screen and (max-width: 999px) and (min-width: 768px) {
  .accordion_area {
    margin-right: auto;
    margin-left: auto;
    max-width: 700px;
    width: 100%;
  }
}

.accordion_item {
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
}
@media print, screen and (max-width: 767px) {
  .accordion_item {
    border-radius: 8px;
    margin-bottom: 16px;
  }
}
@media print, screen and (max-width: 540px) {
  .accordion_item {
    margin-bottom: 12px;
  }
}

.accordion_header {
  background-color: #fff;
  padding: 40px 95px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  font-size: 20px;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .accordion_header {
    font-size: 15px;
    gap: 15px;
    padding: 20px 40px 20px 65px;
  }
}
@media print, screen and (max-width: 540px) {
  .accordion_header {
    padding: 15px 40px 15px 65px;
  }
}

.accordion_icon_q,
.accordion_icon_a {
  color: #089fd1;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  left: 35px;
}
@media print, screen and (max-width: 767px) {
  .accordion_icon_q,
.accordion_icon_a {
    font-size: 30px;
    margin-top: -16px;
    left: 20px;
  }
}

.accordion_icon_q {
  color: #089fd1;
  font-weight: 700;
}

.accordion_icon {
  height: 24px;
  margin-top: -12px;
  position: absolute;
  top: 50%;
  right: 35px;
  width: 24px;
}
@media print, screen and (max-width: 767px) {
  .accordion_icon {
    height: 18px;
    margin-top: -9px;
    right: 20px;
    width: 18px;
  }
}
.accordion_icon::before, .accordion_icon::after {
  content: "";
  display: block;
  background-color: #1b2134;
  height: 3px;
  position: relative;
  top: 10px;
  transition: transform 0.3s ease;
  width: 24px;
}
@media print, screen and (max-width: 767px) {
  .accordion_icon::before, .accordion_icon::after {
    height: 2px;
    top: 8px;
    width: 18px;
  }
}
.accordion_icon::after {
  top: 7px;
  transform: rotate(90deg);
}
@media print, screen and (max-width: 767px) {
  .accordion_icon::after {
    top: 6px;
  }
}

.accordion_header.is_active .accordion_icon::after {
  transform: rotate(180deg);
}

.accordion_content {
  background-color: #fff;
  display: none;
  padding: 0 40px 30px;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .accordion_content {
    padding: 0 20px 15px;
  }
}
.accordion_content p {
  border-top: 1px solid #ccc;
  font-weight: 400;
  padding-top: 20px;
}
@media print, screen and (max-width: 767px) {
  .accordion_content p {
    font-size: 14px;
  }
}
@media print, screen and (max-width: 540px) {
  .accordion_content p {
    padding-top: 15px;
  }
}

.section11 {
  padding-right: 20px;
  padding-left: 20px;
}
.section11_wrap {
  background-image: url(../img/img_section11_02.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  color: #fff;
  margin: 0 auto;
  max-width: 1920px;
  padding: 70px 20px;
}
@media print, screen and (max-width: 767px) {
  .section11_wrap {
    background-image: url(../img/img_section11_02_sp.png);
    border-radius: 5px;
  }
}
@media print, screen and (max-width: 540px) {
  .section11_wrap {
    padding: 40px 0 30px;
  }
}
@media print, screen and (min-width: 1241px) {
  .section11 .inr {
    max-width: 1120px;
  }
}
.section11_ttl {
  border-bottom: 1px solid #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
@media print, screen and (max-width: 540px) {
  .section11_ttl {
    font-size: 15px;
    margin-bottom: 25px;
    padding-left: 5px;
    padding-bottom: 10px;
  }
}
.section11_flex {
  display: flex;
  gap: 40px;
}
@media print, screen and (max-width: 767px) {
  .section11_flex {
    flex-direction: column;
    gap: 20px;
  }
}
.section11_txt {
  flex: 1;
}
@media print, screen and (max-width: 767px) {
  .section11_txt {
    order: 2;
  }
}
.section11_txt h3 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media print, screen and (max-width: 960px) {
  .section11_txt h3 {
    font-size: 24px;
  }
}
.section11_txt p {
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media print, screen and (max-width: 960px) {
  .section11_txt p {
    font-size: 14px;
  }
}
.section11_img {
  width: 280px;
}
@media print, screen and (max-width: 767px) {
  .section11_img {
    margin: 0 auto;
    order: 1;
  }
}
@media print, screen and (max-width: 540px) {
  .section11_img {
    width: 200px;
  }
}

.section12 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media print, screen and (max-width: 540px) {
  .section12 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section12_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media print, screen and (max-width: 540px) {
  .section12_list {
    gap: 20px;
  }
}
.section12_item {
  background-color: #fff;
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 0 30px 40px;
  width: calc(33.333% - 20px);
}
@media print, screen and (max-width: 1200px) {
  .section12_item {
    width: calc(50% - 15px);
  }
}
@media print, screen and (max-width: 767px) {
  .section12_item {
    width: 100%;
  }
}
@media print, screen and (max-width: 540px) {
  .section12_item {
    padding: 0 20px 30px;
  }
}
.section12_item .img {
  border-radius: 10px 10px 0 0;
  margin: 0 -30px 30px;
  overflow: hidden;
}
@media print, screen and (max-width: 540px) {
  .section12_item .img {
    margin: 0 -20px 25px;
  }
}
.section12_item .ttl {
  border-bottom: 2px dotted #089fd1;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
@media print, screen and (max-width: 540px) {
  .section12_item .ttl {
    font-size: 15px;
    padding-bottom: 10px;
  }
}
.section12_item .info {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 8px;
  margin-bottom: 30px;
  flex-grow: 1;
}
@media print, screen and (max-width: 540px) {
  .section12_item .info dt,
.section12_item .info dd {
    font-size: 14px;
  }
}
.section12_item .info dt {
  font-weight: 700;
  width: calc(100% - 215px);
}
@media print, screen and (max-width: 1200px) {
  .section12_item .info dt {
    width: 100px;
  }
}
@media print, screen and (max-width: 540px) {
  .section12_item .info dt {
    width: 90px;
  }
}
.section12_item .info dt::before {
  content: "";
  display: block;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 16px;
  margin-right: 8px;
  position: relative;
  top: 2px;
  width: 16px;
}
@media print, screen and (max-width: 767px) {
  .section12_item .info dt::before {
    height: 14px;
    width: 14px;
  }
}
.section12_item .info dt:nth-of-type(1)::before {
  background-image: url(../img/img_section12_04.png);
}
.section12_item .info dt:nth-of-type(2)::before {
  background-image: url(../img/img_section12_05.png);
}
.section12_item .info dt:nth-of-type(3)::before {
  background-image: url(../img/img_section12_06.png);
}
.section12_item .info dt:nth-of-type(4)::before {
  background-image: url(../img/img_section12_07.png);
}
.section12_item .info dd {
  font-weight: 400;
  width: 200px;
}
@media print, screen and (max-width: 1200px) {
  .section12_item .info dd {
    width: calc(100% - 115px);
  }
}
@media print, screen and (max-width: 540px) {
  .section12_item .info dd {
    line-height: 1.5;
    width: calc(100% - 105px);
  }
}
.section12_item .txt {
  font-size: 14px;
  font-weight: 400;
}

.footer {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media print, screen and (max-width: 540px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.footer .inr {
  max-width: min(95%, 1824px);
}
.footer_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 1139px) {
  .footer_wrap {
    flex-direction: column;
    gap: 10px;
  }
}
.footer_box {
  border-top: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 10px;
  margin-top: 30px;
  padding-top: 30px;
}
@media print, screen and (max-width: 960px) {
  .footer_box {
    justify-content: center;
    text-align: center;
  }
}
@media print, screen and (max-width: 540px) {
  .footer_box {
    margin-top: 25px;
    padding-top: 25px;
  }
}
@media print, screen and (max-width: 540px) {
  .footer_box ul {
    display: block;
  }
}
.footer_box ul li {
  display: inline-block;
  margin-right: 30px;
}
@media print, screen and (max-width: 540px) {
  .footer_box ul li {
    font-size: 14px;
    margin-right: 0;
    width: 100%;
  }
  .footer_box ul li + li {
    margin-top: 5px;
  }
}
.footer_box ul li a {
  transition: opacity 0.4s ease;
}
.footer_box ul li a:hover {
  opacity: 0.5;
}
.footer .f_logo {
  width: 264px;
  transition: opacity 0.4s ease;
}
.footer .f_logo:hover {
  opacity: 0.5;
}
@media print, screen and (max-width: 1139px) {
  .footer .f_logo {
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (max-width: 767px) {
  .footer .f_logo {
    width: 226px;
  }
}
@media print, screen and (max-width: 540px) {
  .footer .f_logo {
    margin-bottom: 5px;
  }
}
.footer .f_nav {
  display: flex;
  gap: 32px;
  margin-right: 32px;
}
@media print, screen and (max-width: 1139px) {
  .footer .f_nav {
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 0;
  }
}
@media print, screen and (max-width: 540px) {
  .footer .f_nav {
    flex-direction: column;
    row-gap: 8px;
    font-size: 14px;
    text-align: center;
  }
}
.footer .f_nav_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media print, screen and (min-width: 1140px) and (max-width: 1415px) {
  .footer .f_nav_box {
    justify-content: space-between;
    width: 100%;
  }
}
@media print, screen and (max-width: 1139px) {
  .footer .f_nav_box {
    flex-direction: column;
    gap: 20px;
  }
}
.footer .btn_f {
  width: 258px;
}
.footer .btn_f a {
  box-shadow: none;
  font-size: 16px;
  padding: 15px 10px;
}
.footer .copy {
  font-weight: 400;
  color: #666;
}
@media print, screen and (max-width: 960px) {
  .footer .copy {
    font-size: 14px;
  }
}

.inblock {
  display: inline-block;
}
/*# sourceMappingURL=style.css.map */