html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #646464;
}
@media screen and (max-width: 450px) {
  body {
    font-size: 4.266vw;
  }
}
body.active {
  overflow: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.inner {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 950px) {
  .inner {
    padding: 0 25px;
  }
}

main {
  overflow-x: hidden;
}

img {
  width: 100%;
}

ul,
ol {
  list-style: none;
}

.btn {
  color: #fff;
  width: fit-content;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}
@media screen and (max-width: 1200px) {
  .btn {
    font-size: 1.6rem;
    width: 180px;
  }
}
@media screen and (max-width: 450px) {
  .btn {
    font-size: 4.266vw;
    min-width: 300px;
    margin: 0 auto;
  }
}
.btn:hover {
  opacity: 0.8;
}

.section_btn {
  display: inline-block;
  width: 475px;
  background: #F76427;
  color: #fff;
  font-weight: bold;
  height: 85px;
  line-height: 70px;
  border-radius: 40px;
  text-align: center;
  font-size: 2.2rem;
  position: relative;
  box-shadow: 6px 6px 6px #d1d1d1;
  transition: all ease 0.3s;
}
.section_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 199999;
}
@media screen and (max-width: 768px) {
  .section_btn {
    font-size: 1.8rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .section_btn {
    height: 65px;
    line-height: 50px;
    width: 100%;
    font-size: 4.8vw;
    line-height: 13.333vw;
  }
}
.section_btn:hover {
  transform: translate(6px, 6px);
  box-shadow: none;
}
.section_btn::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 70px;
  height: 70px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  right: 5px;
}
@media screen and (max-width: 450px) {
  .section_btn::before {
    width: 50px;
    height: 50px;
  }
}
.section_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-top: 5px solid #F76427;
  border-right: 5px solid #F76427;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 33px;
}
@media screen and (max-width: 450px) {
  .section_btn::after {
    right: 23px;
    border-top: 3px solid #F76427;
    border-right: 3px solid #F76427;
  }
}
.section_btn-black {
  box-shadow: 6px 6px 6px rgba(1, 22, 58, 0.7019607843);
}
.section_btn-textrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  column-gap: 7px;
  position: absolute;
  left: -36px;
  right: 0;
}
.section_btn-textrow .text1 {
  font-size: 52px;
  line-height: 52px;
  color: #FFFF40;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 450px) {
  .section_btn-textrow .text1 {
    font-size: 37px;
    line-height: 37px;
  }
}
.section_btn-textrow .text2 {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  position: relative;
  text-align: left;
  top: 2px;
}
@media screen and (max-width: 450px) {
  .section_btn-textrow .text2 {
    font-size: 12px;
    line-height: 17px;
  }
}
.section_btn-textrow .text2 span {
  font-size: 28px;
}
@media screen and (max-width: 450px) {
  .section_btn-textrow .text2 span {
    font-size: 21px;
    line-height: 21px;
  }
}

.observe {
  transition: opacity ease 1.2s, transform ease 1.2s;
  opacity: 0;
  transform: translateY(100px);
}
.observe.active {
  opacity: 1;
  transform: translateY(0);
}

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

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

/* =============================================
  header
============================================= */
.header {
  position: fixed;
  top: 35px;
  left: 0;
  height: 127px;
  z-index: 102;
  max-width: 1500px;
  transition: background-color ease 0.5s;
  background-color: rgba(255, 255, 255, 0.8509803922);
  box-shadow: 10px 10px 12px rgba(3, 3, 3, 0.2588235294);
  width: 95%;
  border-radius: 63.5px;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .header {
    top: 20px;
    height: 70px;
    background: #fff;
  }
}
.header_inner {
  padding: 0 25px 0 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 450px) {
  .header_inner {
    padding: 0 25px;
  }
}
.header_logo {
  width: 45%;
  display: block;
  transition: opacity ease 0.3s;
  z-index: 102;
  border-right: 1px solid gray;
  padding-right: 44px;
  height: 51%;
  display: flex;
  align-items: center;
}
.header_logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .header_logo {
    width: 400px;
  }
}
@media screen and (max-width: 950px) {
  .header_logo {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 280px;
  }
}
@media screen and (max-width: 450px) {
  .header_logo {
    width: 68vw;
    padding-right: 22px;
  }
}
.header_nav {
  width: 55%;
  padding-left: 42px;
}
@media screen and (max-width: 950px) {
  .header_nav {
    display: none;
  }
}
.header_nav_list {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .header_nav_list {
    gap: 20px;
  }
}
.header_nav_item {
  width: 57%;
}
.header_nav_item_tel {
  display: flex;
  align-items: center;
  transition: opacity ease 0.3s;
}
.header_nav_item_tel:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .header_nav_item_tel {
    max-width: 250px;
  }
}
.header_nav_item_cv {
  width: 50%;
}
@media screen and (max-width: 450px) {
  .header_nav_item_cv {
    width: 100%;
  }
}

/* =============================================
  hamburger
============================================= */
.hamburger {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform ease 0.5s, opacity ease 0.5s;
  padding: 100px 0;
  z-index: 101;
}
.hamburger.active {
  transform: translateY(0px);
  opacity: 1;
}
.hamburger_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #192f90;
}
.hamburger_item {
  width: 100%;
}
.hamburger_link {
  width: 100%;
  border-bottom: 1px solid #192f90;
  display: block;
  padding: 20px 25px;
  color: #192f90;
  font-size: 1.5rem;
  position: relative;
  transition: opacity ease 0.3s;
}
.hamburger_link:hover, .hamburger_link:active {
  opacity: 0.7;
}
.hamburger_link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  border-top: 1px solid #192f90;
  border-right: 1px solid #192f90;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger_link-tel {
  width: 50%;
  max-width: 300px;
  margin: 25px auto 20px;
  display: block;
  transition: opacity ease 0.3s;
}
.hamburger_link-tel:hover, .hamburger_link-tel:active {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .hamburger_link-tel {
    width: 80%;
  }
}
.hamburger_link-btn {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
.hamburger_btn {
  display: none;
}
@media screen and (max-width: 950px) {
  .hamburger_btn {
    display: block;
    width: 40px;
    height: 30px;
    position: relative;
    z-index: 102;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_btn {
    width: 30px;
    height: 20px;
  }
}
.hamburger_btn span {
  width: 100%;
  height: 2px;
  background: #2f3e7e;
  display: inline-block;
  position: absolute;
  left: 0;
  transition: transform ease 0.3s;
}
.hamburger_btn span:nth-child(1) {
  top: 0;
}
.hamburger_btn span:nth-child(1).active {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.hamburger_btn span:nth-child(2) {
  top: calc(50% - 1px);
}
.hamburger_btn span:nth-child(2).active {
  opacity: 0;
}
.hamburger_btn span:nth-child(3) {
  top: 100%;
}
.hamburger_btn span:nth-child(3).active {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

/* =============================================
  mv
============================================= */
.mv {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.mv_title {
  width: 36.666%;
  margin-left: auto;
  margin-right: -1%;
  margin-top: 8%;
  max-width: 700px;
}
@media screen and (max-width: 950px) {
  .mv_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    width: 73%;
    margin-top: 6%;
  }
}
.mv_img1 {
  width: 59%;
  pointer-events: none;
  padding-bottom: 50px;
  max-width: 1300px;
}
@media screen and (max-width: 950px) {
  .mv_img1 {
    width: 100%;
    padding-bottom: 0px;
  }
}
.mv_img1 img {
  display: block;
}
.mv_img2 {
  position: absolute;
  width: 20%;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 400px;
}
@media screen and (max-width: 950px) {
  .mv_img2 {
    display: none;
  }
}

/* =============================================
  sec01
============================================= */
.sec01 {
  background: #f1f4f8;
  padding: 150px 0 100px;
  position: relative;
}
@media screen and (max-width: 950px) {
  .sec01 {
    padding: 80px 0;
  }
}
.sec01 .section_title {
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec01 .section_title {
    width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .sec01 .section_title {
    width: 100%;
  }
}
.sec01_img {
  margin-top: 40px;
}
@media screen and (max-width: 950px) {
  .sec01_img {
    margin-top: 10px;
  }
}
.sec01_btn {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: -47px;
  transform: translateX(-50%);
  z-index: 1;
}
.sec01_btn.observe {
  transform: translateX(-50%) translateY(0);
}
@media screen and (max-width: 768px) {
  .sec01_btn {
    width: calc(100% - 50px);
    bottom: -25px;
  }
}
@media screen and (max-width: 450px) {
  .sec01_btn {
    bottom: -6.666vw;
  }
}

/* =============================================
  sec02
============================================= */
.sec02 {
  padding: 180px 0 150px;
  position: relative;
}
@media screen and (max-width: 950px) {
  .sec02 {
    padding: 120px 0 80px;
  }
}
.sec02 .section_title {
  width: 564px;
}
@media screen and (max-width: 768px) {
  .sec02 .section_title {
    width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .sec02 .section_title {
    width: 100%;
  }
}
.sec02_acce {
  position: absolute;
  background: #8fbeda;
}
@media screen and (max-width: 950px) {
  .sec02_acce {
    display: none;
  }
}
.sec02_acce01 {
  width: 20px;
  height: 170px;
  left: 0;
  top: 160px;
  opacity: 0.5;
  border-radius: 0 5px 5px 0;
}
.sec02_acce02 {
  height: 800px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 30px;
  opacity: 0.2;
  border-radius: 5px 0 0 5px;
}
.sec02_list {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 950px) {
  .sec02_list {
    margin-top: 80px;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec02_list {
    grid-template-columns: 1fr;
    gap: 100px;
  }
}
.sec02_item_subtitle {
  margin-top: 20px;
  display: block;
  color: #5884b5;
  font-size: 1.8rem;
  font-weight: 600;
}
.sec02_item_title {
  color: #2f3e7e;
  font-size: 3rem;
  font-family: sans-serif;
  margin-bottom: 25px;
}
.sec02_item_link {
  color: #5884b5;
  font-weight: bold;
  margin-top: 30px;
  display: inline-block;
  position: relative;
  transition: opacity ease 0.3s;
}
.sec02_item_link:hover {
  opacity: 0.7;
}
.sec02_item_link::before {
  content: "";
  bottom: -3px;
  left: 0;
  height: 1px;
  width: 115px;
  background: #5884b5;
  position: absolute;
}
.sec02_item_link::after {
  content: "";
  bottom: 3px;
  right: -35px;
  width: 17px;
  height: 17px;
  background: url(../img/icon-arrow-blue.png) center center/contain;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .sec02_item img {
    width: 45%;
    margin: 0 auto;
    display: block;
  }
}
.sec02_item ul {
  list-style-image: url("../img/icon-check.png");
  padding-left: 2rem;
}
.sec02_item ul li {
  margin-bottom: 5px;
}
.sec02_item ul li:last-child {
  margin-bottom: 0;
}
.sec02_item p {
  line-height: 1.6;
}

/* =============================================
  sec03
============================================= */
.sec03 {
  padding: 150px 0;
  background: rgb(20, 64, 167);
  background: no-repeat url(../img/sec03-bg.png) center center/cover, linear-gradient(90deg, rgb(20, 64, 167) 27%, rgb(22, 119, 229) 100%);
  position: relative;
}
@media screen and (max-width: 950px) {
  .sec03 {
    padding: 80px 0;
  }
}
.sec03 .section_title {
  width: 631px;
}
@media screen and (max-width: 768px) {
  .sec03 .section_title {
    width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .sec03 .section_title {
    width: 100%;
  }
}
.sec03_list {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 950px) {
  .sec03_list {
    grid-template-columns: 1fr 1fr;
    margin-top: 80px;
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec03_list {
    grid-template-columns: 1fr;
    gap: 100px;
  }
}
.sec03_item_subtitle {
  margin-top: 20px;
  display: block;
  color: #fff;
  font-size: 1.8rem;
}
.sec03_item_title {
  color: #ffff56;
  font-size: 3rem;
  font-family: sans-serif;
}
@media screen and (max-width: 768px) {
  .sec03_item img {
    width: 45%;
    margin: 0 auto;
    display: block;
  }
}
.sec03_item p {
  color: #fff;
  margin-top: 25px;
  line-height: 1.6;
}
.sec03_btn {
  position: absolute;
  bottom: -42px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: fit-content;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec03_btn {
    width: calc(100% - 50px);
  }
}

/* =============================================
  sec04
============================================= */
.sec04 {
  padding: 150px 30px 100px;
  position: relative;
}
@media screen and (max-width: 950px) {
  .sec04 {
    padding: 80px 0px;
  }
}
.sec04_acce {
  position: absolute;
  background: #8fbeda;
}
@media screen and (max-width: 768px) {
  .sec04_acce {
    display: none;
  }
}
.sec04_acce01 {
  width: 20px;
  height: 170px;
  left: 0;
  top: 160px;
  opacity: 0.5;
  border-radius: 0 5px 5px 0;
}
.sec04_acce02 {
  height: 620px;
  top: 160px;
  right: 0;
  width: 30px;
  opacity: 0.2;
  border-radius: 5px 0 0 5px;
}
.sec04 .section_title {
  width: 712px;
}
@media screen and (max-width: 950px) {
  .sec04 .section_title {
    margin: 0 auto;
    width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .sec04 .section_title {
    width: 100%;
  }
}
.sec04_top {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 950px) {
  .sec04_top {
    flex-direction: column;
    gap: 30px;
  }
}
.sec04_top_list {
  min-width: 460px;
}
@media screen and (max-width: 950px) {
  .sec04_top_list {
    min-width: auto;
  }
}
.sec04_top_list li {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 950px) {
  .sec04_top_list li {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec04_top_list li {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 450px) {
  .sec04_top_list li {
    font-size: 1.4rem;
  }
}
.sec04_top_list li:last-child {
  margin-bottom: 0;
}
.sec04_top_list li::marker {
  transform: translateX(100px);
}
.sec04_top_list li img {
  width: 22px;
  vertical-align: middle;
  margin-right: 5px;
}
.sec04_top_list li strong {
  font-size: 2.7rem;
  color: #5576b1;
  border-bottom: 2px solid #5576b1;
  padding-bottom: 5px;
}
@media screen and (max-width: 950px) {
  .sec04_top_list li strong {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .sec04_top_list li strong {
    font-size: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .sec04_top_list li strong {
    font-size: 4.8vw;
  }
}
.sec04_bottom {
  margin: 110px auto 0;
  background: #eef8f9;
  max-width: 1300px;
  border-radius: 30px;
  padding: 100px 80px;
  position: relative;
}
@media screen and (max-width: 950px) {
  .sec04_bottom {
    padding: 85px 0px;
    border-radius: 0;
  }
}
.sec04_bottom_acce {
  position: absolute;
  width: 10px;
  left: 50%;
  top: -50px;
}
@media screen and (max-width: 950px) {
  .sec04_bottom_acce {
    width: 8px;
    top: -40px;
  }
}
.sec04_bottom_img {
  width: 718px;
}
@media screen and (max-width: 950px) {
  .sec04_bottom_img {
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 450px) {
  .sec04_bottom_img {
    width: 100%;
  }
}
.sec04_bottom_body {
  display: flex;
  align-items: center;
  margin-top: 45px;
  gap: 50px;
}
@media screen and (max-width: 950px) {
  .sec04_bottom_body {
    flex-direction: column;
    margin-top: 10px;
  }
}
.sec04_bottom_body_img {
  width: 268px;
}
@media screen and (max-width: 950px) {
  .sec04_bottom_body_img {
    width: 60%;
  }
}
.sec04_bottom_body_item {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 950px) {
  .sec04_bottom_body_item {
    flex-direction: column;
    margin-bottom: 80px;
    gap: 0;
    font-size: 1.8rem;
  }
}
.sec04_bottom_body_item:last-child {
  margin-bottom: 0;
}
.sec04_bottom_body_item strong {
  font-size: 2.6rem;
  color: #42b3b9;
  font-weight: 600;
}
@media screen and (max-width: 950px) {
  .sec04_bottom_body_item strong {
    font-size: 2rem;
  }
}
.sec04_bottom_body_item_num {
  width: 100px;
}
.sec04_bottom_body_item p {
  width: calc(100% - 100px);
}
@media screen and (max-width: 950px) {
  .sec04_bottom_body_item p {
    width: 100%;
  }
}
.sec04_bottom_body_item button {
  width: 180px;
  display: block;
  margin-top: 10px;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 950px) {
  .sec04_bottom_body_item button {
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .sec04_bottom_body_item button {
    width: 150px;
  }
}
.sec04_bottom_body_item button:hover {
  opacity: 0.7;
}

/* =============================================
  sec05
============================================= */
.sec05 {
  padding: 130px 0 100px;
  background: rgb(20, 64, 167);
  background: no-repeat url(../img/sec05-bg.png) center center/cover, linear-gradient(90deg, rgb(20, 64, 167) 27%, rgb(22, 119, 229) 100%);
}
@media screen and (max-width: 950px) {
  .sec05 {
    padding: 80px 0;
  }
}
.sec05 .section_title {
  width: 433px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .sec05 .section_title {
    width: 60%;
  }
}
@media screen and (max-width: 450px) {
  .sec05 .section_title {
    width: 80%;
  }
}
.sec05_plan {
  margin-top: 75px;
}
.sec05_content {
  border: 1px solid #ffc1b4;
  padding: 45px;
}
@media screen and (max-width: 950px) {
  .sec05_content {
    padding: 40px 30px 50px;
  }
}
@media screen and (max-width: 450px) {
  .sec05_content {
    padding: 40px 20px 50px;
  }
}
.sec05_content_title {
  width: 373px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .sec05_content_title {
    width: 60%;
  }
}
.sec05_content_list {
  margin: 45px auto 0;
  display: flex;
  gap: 100px;
  max-width: 780px;
}
@media screen and (max-width: 950px) {
  .sec05_content_list {
    flex-direction: column;
    gap: 50px;
    margin: 30px auto 0;
  }
}
.sec05_content_item {
  width: 50%;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .sec05_content_item {
    width: 100%;
  }
}
.sec05_content_item::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #ffc1b4;
  top: 0;
  right: -50px;
}
.sec05_content_item:last-child::after {
  content: none;
}
@media screen and (max-width: 950px) {
  .sec05_content_item_img {
    width: 80%;
    margin: 0 auto;
  }
}
.sec05_content_item_title {
  margin-top: 30px;
  font-size: 3.2rem;
  text-align: center;
  color: #ff795b;
  font-weight: bold;
}
@media screen and (max-width: 950px) {
  .sec05_content_item_title {
    font-size: 2.4rem;
  }
}
.sec05_content_item_subtitle {
  margin-top: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 950px) {
  .sec05_content_item_subtitle {
    font-size: 1.6rem;
  }
}
.sec05_content_item_subtitle::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -2;
}
.sec05_content_item_subtitle::after {
  content: "";
  width: 120px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
.sec05_content_item p {
  margin-top: 10px;
  text-align: left;
}
.sec05_content_item a {
  display: inline-block;
  margin-top: 30px;
  color: #ff795b;
  position: relative;
  font-weight: bold;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 950px) {
  .sec05_content_item a {
    margin-top: 20px;
    margin-right: 20px;
  }
}
.sec05_content_item a:hover {
  opacity: 0.7;
}
.sec05_content_item a::before {
  content: "";
  bottom: -3px;
  left: 0;
  height: 1px;
  width: 182px;
  background: #ff795b;
  position: absolute;
}
.sec05_content_item a::after {
  content: "";
  bottom: 3px;
  right: -22px;
  width: 17px;
  height: 17px;
  background: url(../img/icon-arrow-orange.png) center center/contain;
  position: absolute;
}
.sec05_content_wrap {
  margin-top: 35px;
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 950px) {
  .sec05_content_wrap {
    padding: 20px;
    margin-top: 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 450px) {
  .sec05_content_wrap {
    padding: 15px;
  }
}
.sec05_content_wrap::before, .sec05_content_wrap::after {
  content: "SPECIAL BENEFITS";
  position: absolute;
  background: #ff795b;
  color: #fff;
  font-size: 1rem;
  width: 220px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
}
.sec05_content_wrap::before {
  top: 50px;
  left: -50px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 450px) {
  .sec05_content_wrap::before {
    top: 30px;
    left: -70px;
  }
}
.sec05_content_wrap::after {
  bottom: 50px;
  right: -50px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 450px) {
  .sec05_content_wrap::after {
    bottom: 30px;
    right: -70px;
  }
}
.sec05_annotation {
  margin-top: 50px;
  color: #fff;
  display: flex;
}
@media screen and (max-width: 950px) {
  .sec05_annotation {
    margin-top: 30px;
    flex-direction: column;
  }
}
.sec05_annotation p {
  width: 200px;
  position: relative;
}
@media screen and (max-width: 950px) {
  .sec05_annotation p {
    width: 100%;
    position: static;
  }
}
.sec05_annotation p::after {
  position: absolute;
  right: 20px;
  top: 0;
  height: 100%;
  width: 1px;
  background: #fff;
  content: "";
}
@media screen and (max-width: 950px) {
  .sec05_annotation p::after {
    content: none;
  }
}
.sec05_annotation ul {
  width: calc(100% - 200px);
  font-size: 1.4rem;
}
@media screen and (max-width: 950px) {
  .sec05_annotation ul {
    width: 100%;
    margin-top: 15px;
  }
}
.sec05_annotation ul li {
  margin-bottom: 10px;
}
@media screen and (max-width: 950px) {
  .sec05_annotation ul li {
    margin-bottom: 5px;
  }
}
.sec05_annotation ul li:last-child {
  margin-bottom: 0;
}
.sec05_btn {
  margin-top: 100px;
  text-align: center;
  z-index: 10000;
}
@media screen and (max-width: 950px) {
  .sec05_btn {
    margin-top: 50px;
  }
}

/* =============================================
  sec06
============================================= */
.sec06 {
  background: #f1f4f8;
  padding: 170px 0 120px;
}
@media screen and (max-width: 950px) {
  .sec06 {
    padding: 80px 0;
  }
}
.sec06 .section_title {
  width: 357px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .sec06 .section_title {
    width: 60%;
  }
}
@media screen and (max-width: 450px) {
  .sec06 .section_title {
    width: 80%;
  }
}
.sec06 .tab {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  justify-content: flex-end;
  position: relative;
}
.sec06 .tab_acce {
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 10;
  width: 416px;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .sec06 .tab_acce {
    width: 350px;
  }
}
@media screen and (max-width: 950px) {
  .sec06 .tab_acce {
    width: 300px;
    top: -90px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .sec06 .tab_acce {
    top: -100px;
    width: 350px;
  }
}
@media screen and (max-width: 450px) {
  .sec06 .tab_acce {
    width: 80%;
    top: -4.5%;
  }
}
.sec06 .tab_label {
  width: 200px;
  height: 80px;
  padding: 10px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #a1a0a0;
  cursor: pointer;
  order: -1;
  z-index: 1;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 950px) {
  .sec06 .tab_label {
    width: calc(50% - 5px);
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec06 .tab_label {
    padding: 5px 15px;
  }
}
.sec06 .tab_label:hover, .sec06 .tab_label:active {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .sec06 .tab_label span {
    font-size: 1.4rem;
  }
}
.sec06 .tab_label span strong {
  font-size: 2.2rem;
}
@media screen and (max-width: 950px) {
  .sec06 .tab_label span strong {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec06 .tab_label span strong {
    font-size: 1.6rem;
  }
}
.sec06 .tab_label p {
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 950px) {
  .sec06 .tab_label p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec06 .tab_label p {
    font-size: 1.6rem;
  }
}
.sec06 .tab_label p small {
  margin-left: 10px;
}
.sec06 .tab input[type=radio] {
  display: none;
}
.sec06 .tab input[type=radio]:checked + .tab_label {
  background: #2f3e7e;
}
.sec06 .tab_content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.sec06 .tab_active {
  display: none;
}
.sec06 .tab_active:checked + .tab_label + .tab_content {
  height: auto;
  overflow: auto;
  opacity: 1;
}
.sec06_title {
  position: absolute;
  top: 280px;
  left: 0;
  writing-mode: vertical-rl;
  background: #f1f4f8;
  padding: 70px 10px 50px 0;
  border-radius: 0 30px 30px 0;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 5px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 950px) {
  .sec06_title {
    font-size: 1.8rem;
    letter-spacing: 6px;
    padding: 30px 5px 30px 0;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    top: 100px;
  }
}
@media screen and (max-width: 450px) {
  .sec06_title {
    letter-spacing: 3px;
    border-radius: 0 10px 10px 0;
  }
}
.sec06_content {
  width: 90%;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .sec06_content {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 768px) {
  .sec06_content {
    width: calc(100% - 10px);
  }
}
.sec06_content01 {
  background: #3c78e9;
  border-radius: 30px 0 0 0;
  padding: 175px 0 150px 50px;
  margin-top: 120px;
}
@media screen and (max-width: 950px) {
  .sec06_content01 {
    padding: 130px 0 90px 30px;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content01 {
    margin-top: 60px;
  }
}
.sec06_content02 {
  background: #133caa;
  border-radius: 30px 0 0 30px;
  padding: 175px 0 120px 50px;
  margin-top: -30px;
  z-index: 2;
}
@media screen and (max-width: 950px) {
  .sec06_content02 {
    padding: 80px 0 80px 30px;
  }
}
.sec06_content02_img {
  width: 416px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .sec06_content02_img {
    width: 60%;
  }
}
.sec06_content02_list {
  margin-top: 60px;
  display: flex;
  gap: 90px;
  position: relative;
}
@media screen and (max-width: 950px) {
  .sec06_content02_list {
    margin-top: 30px;
    flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .sec06_content02_list {
    font-size: 1.5rem;
  }
}
.sec06_content02_list::after {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  width: 1px;
  height: 100%;
  background: #f3d975;
}
@media screen and (max-width: 950px) {
  .sec06_content02_list::after {
    content: none;
  }
}
.sec06_content02_item {
  width: 50%;
}
@media screen and (max-width: 950px) {
  .sec06_content02_item {
    width: 100%;
  }
}
.sec06_content02_item_title {
  border: 2px solid #f3d975;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3.2rem;
  color: #f3d975;
  font-weight: bold;
}
@media screen and (max-width: 950px) {
  .sec06_content02_item_title {
    height: 80px;
    border: 1px solid #f3d975;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .sec06_content02_item_title {
    font-size: 2.2rem;
  }
}
.sec06_content02_item_title span {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 950px) {
  .sec06_content02_item_title span {
    font-size: 1.4rem;
  }
}
.sec06_content02_item_title span::before, .sec06_content02_item_title span::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 15px;
  background: #f3d975;
}
.sec06_content02_item_title span::before {
  left: -25px;
}
.sec06_content02_item_title span::after {
  right: -25px;
}
.sec06_content02_item ul {
  margin-top: 40px;
  color: #fff;
  font-weight: 600;
  font-family: sans-serif;
}
@media screen and (max-width: 950px) {
  .sec06_content02_item ul {
    margin-top: 30px;
  }
}
.sec06_content02_item ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.sec06_content02_item ul li:last-child {
  margin-bottom: 0;
}
.sec06_content02_item ul li img {
  width: 18px;
}
.sec06_content03 {
  background: #3c78e9;
  padding: 220px 0 180px 50px;
  margin-top: -30px;
  border-radius: 0 0 0 30px;
}
@media screen and (max-width: 950px) {
  .sec06_content03 {
    padding: 80px 0 80px 30px;
  }
}
.sec06_content03 .package {
  background: #fff;
  border-radius: 30px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package {
    padding-bottom: 0;
  }
}
.sec06_content03 .package01 {
  position: relative;
  padding: 50px;
}
@media screen and (max-width: 950px) {
  .sec06_content03 .package01 {
    padding: 30px;
  }
}
.sec06_content03 .package01::after {
  position: absolute;
  content: "";
  background: no-repeat url(/assets/img/arrow-bottom.png) center center/contain;
  bottom: -95px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 75px;
}
@media screen and (max-width: 950px) {
  .sec06_content03 .package01::after {
    bottom: -115px;
  }
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package01::after {
    width: 6px;
    bottom: -75px;
  }
}
.sec06_content03 .package01_title {
  width: 90%;
  margin-left: -20px;
}
@media screen and (max-width: 950px) {
  .sec06_content03 .package01_title {
    margin-left: -10px;
  }
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package01_title {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package01_title {
    width: 100%;
  }
}
.sec06_content03 .package01_flex {
  margin-top: 60px;
  padding-left: 4.5%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 950px) {
  .sec06_content03 .package01_flex {
    flex-direction: column-reverse;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package01_flex {
    margin-top: 30px;
    padding-left: 0;
  }
}
.sec06_content03 .package01_flex_title {
  color: #5576b1;
  font-size: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package01_flex_title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.sec06_content03 .package01_flex p {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package01_flex p {
    font-size: 14px;
  }
}
.sec06_content03 .package01_flex_img {
  width: 41%;
}
@media screen and (max-width: 950px) {
  .sec06_content03 .package01_flex_img {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package01_flex_img {
    width: 80%;
  }
}
.sec06_content03 .package01_flex_list {
  margin-top: 10px;
}
.sec06_content03 .package01_flex_list li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package01_flex_list li {
    font-size: 14px;
    align-items: flex-start;
  }
}
.sec06_content03 .package01_flex_list li:last-child {
  margin-bottom: 0;
}
.sec06_content03 .package01_flex_list li img {
  width: 22px;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package01_flex_list li img {
    width: 12px;
    margin-top: 5px;
  }
}
.sec06_content03 .package02 {
  margin: 180px auto 0;
  background: #eef8f9;
  border-radius: 30px;
  padding: 100px;
  text-align: center;
  padding: 50px 50px 90px;
  width: calc(100% - 100px);
}
@media screen and (max-width: 950px) {
  .sec06_content03 .package02 {
    width: calc(100% - 60px);
    padding: 50px 50px 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02 {
    margin-top: 100px;
    padding: 50px 30px;
    width: 100%;
    border-radius: 0 0 30px 30px;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02 {
    padding: 30px;
  }
}
.sec06_content03 .package02_title {
  width: 65%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_title {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02_title {
    width: 100%;
  }
}
.sec06_content03 .package02_flex {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_flex {
    margin-top: 10px;
    flex-direction: column;
    gap: 80px;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02_flex {
    gap: 50px;
  }
}
.sec06_content03 .package02_flex_img {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_flex_img {
    width: 40%;
  }
}
.sec06_content03 .package02_flex_list {
  width: 77%;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_flex_list {
    margin-top: -10%;
    width: 100%;
  }
}
.sec06_content03 .package02_flex_list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  margin-bottom: 30px;
  line-height: 180%;
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02_flex_list li {
    font-size: 14px;
  }
}
.sec06_content03 .package02_flex_list li:last-child {
  margin-bottom: 0;
}
.sec06_content03 .package02_flex_list li strong {
  font-size: 30px;
  color: #55bbc0;
}
@media screen and (max-width: 950px) {
  .sec06_content03 .package02_flex_list li strong {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_flex_list li strong {
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02_flex_list li strong {
    font-size: 18px;
  }
}
.sec06_content03 .package02_flex_list li img {
  width: 85px;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_flex_list li img {
    width: 20%;
    margin-top: 8px;
  }
}
.sec06_content03 .package02_example {
  background: #fff;
  border-radius: 30px;
  box-shadow: 3px 3px 3px #efefef;
  margin-top: 50px;
  padding: 50px;
}
@media screen and (max-width: 950px) {
  .sec06_content03 .package02_example {
    padding: 30px;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02_example {
    padding: 30px 15px;
  }
}
.sec06_content03 .package02_example .text {
  background: #fff;
  width: 60px;
  margin: 0 auto -13px;
  position: relative;
  z-index: 1;
}
.sec06_content03 .package02_example .img {
  margin: 0 auto;
  display: block;
}
.sec06_content03 .package02_example .img2 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_example .img2 {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02_example .img2 {
    margin-top: 40px;
  }
}
.sec06_content03 .package02_example .img3 {
  width: 7px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_example .img3 {
    width: 3%;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02_example .img3 {
    margin-top: 20px;
  }
}
.sec06_content03 .package02_example .img4 {
  margin-top: 40px;
  width: 46%;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_example .img4 {
    width: 75%;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02_example .img4 {
    margin-top: 20px;
  }
}
.sec06_content03 .package02_example .img5 {
  margin-top: 60px;
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02_example .img5 {
    margin-top: 40px;
  }
}
.sec06_content03 .package02_example a {
  color: #5576b1;
  font-size: 13px;
  text-decoration: underline;
  margin-top: 10px;
  display: inline-block;
  padding-left: 5px;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_example a {
    font-size: 18px;
    margin-top: 20px;
  }
}
.sec06_content03 .package02_example a:hover {
  opacity: 0.7;
}
.sec06_content03 .package02_free {
  margin-top: 90px;
  font-size: 30px;
}
@media screen and (max-width: 950px) {
  .sec06_content03 .package02_free {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec06_content03 .package02_free {
    font-size: 24px;
  }
}
@media screen and (max-width: 450px) {
  .sec06_content03 .package02_free {
    font-size: 18px;
    margin-top: 30px;
  }
}
.sec06_content03 .package02_free strong {
  color: #55bbc0;
}
.sec06_annotation {
  color: #fff;
  text-align: right;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .sec06_annotation {
    font-size: 1.4rem;
    text-align: left;
  }
}
.sec06_btn {
  margin: 0 auto;
  width: fit-content;
  margin-top: 120px;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .sec06_btn {
    width: calc(100% - 50px);
  }
}

/* =============================================
  sec07
============================================= */
.sec07 {
  padding: 150px 0;
  background: rgb(20, 64, 167);
  background: no-repeat url(../img/sec07-bg.png) center center/cover, linear-gradient(90deg, rgb(20, 64, 167) 27%, rgb(22, 119, 229) 100%);
}
@media screen and (max-width: 950px) {
  .sec07 {
    padding: 80px 0;
  }
}
.sec07 .section_title {
  width: 498px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .sec07 .section_title {
    width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .sec07 .section_title {
    width: 80%;
  }
}
.sec07_step_list {
  margin-top: 100px;
}
@media screen and (max-width: 950px) {
  .sec07_step_list {
    margin-top: 50px;
  }
}
.sec07_step_item {
  background: #fff;
  border-radius: 60px;
  margin-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 950px) {
  .sec07_step_item {
    margin-bottom: 40px;
    border-radius: 20px;
  }
}
.sec07_step_item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  background: #fff;
  height: 70px;
  width: 5px;
}
.sec07_step_item:last-child {
  margin-bottom: 0;
}
.sec07_step_item:last-child::after {
  content: none;
}
.sec07_step_item_head img {
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 950px) {
  .sec07_step_item_head img {
    border-radius: 20px 20px 0 0;
  }
}
.sec07_step_item_body {
  padding: 70px 13%;
}
@media screen and (max-width: 950px) {
  .sec07_step_item_body {
    padding: 30px 25px;
  }
}
.sec07_step_item_body dl div {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 50px;
}
@media screen and (max-width: 950px) {
  .sec07_step_item_body dl div {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.sec07_step_item_body dl div:last-child {
  margin-bottom: 0;
}
.sec07_step_item_body dl div dt {
  min-width: 121px;
  height: 40px;
  line-height: 40px;
  background: #7582bc;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 950px) {
  .sec07_step_item_body dl div dt {
    font-size: 1.6rem;
  }
}
.sec07_step_item_body dl div:nth-child(2) dt, .sec07_step_item_body dl div:nth-child(3) dt {
  background: transparent;
}
@media screen and (max-width: 950px) {
  .sec07_step_item_body dl div:nth-child(2) dt, .sec07_step_item_body dl div:nth-child(3) dt {
    display: none;
  }
}
.sec07_step_item_body dl div:nth-child(4) dt {
  background: #192f90;
}
.sec07_step_item_body dl div:nth-child(4) dd::after {
  content: none;
}
.sec07_step_item_body dl div dd {
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width: 950px) {
  .sec07_step_item_body dl div dd {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec07_step_item_body dl div dd {
    font-size: 1.6rem;
  }
}
.sec07_step_item_body dl div dd a {
  color: #192f90;
  text-decoration: underline;
  transition: opacity;
  font-weight: 600;
}
.sec07_step_item_body dl div dd a:hover {
  opacity: 0.7;
}
.sec07_step_item_body dl div dd strong {
  color: #192f90;
  font-weight: 600;
}
.sec07_step_item_body dl div dd::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -35px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #7582bc transparent transparent transparent;
  border-width: 10px 17px 0px 17px;
}
@media screen and (max-width: 950px) {
  .sec07_step_item_body dl div dd::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.sec07_step_item_body p {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .sec07_step_item_body p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.sec07_step_item_body p strong {
  color: #192f90;
  font-weight: 600;
}
.sec07_step_item_body p strong span {
  font-size: 4.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 100%;
  margin: 0 3px;
}
@media screen and (max-width: 950px) {
  .sec07_step_item_body p strong span {
    font-size: 2.4rem;
  }
}
.sec07_step_item-special {
  max-width: 752px;
  margin-left: auto;
  margin-top: -100px;
}
@media screen and (max-width: 950px) {
  .sec07_step_item-special {
    width: 85%;
    margin-top: -60px;
  }
}
.sec07_step_item-special div {
  padding: 30px 13%;
}
@media screen and (max-width: 950px) {
  .sec07_step_item-special div {
    padding: 20px;
  }
}

/* =============================================
  profile
============================================= */
.profile {
  padding: 75px 0;
}
@media screen and (max-width: 950px) {
  .profile {
    padding: 80px 0;
  }
}
.profile_inner {
  max-width: 600px;
  text-align: center;
}
.profile_logo {
  margin-top: 80px;
}
@media screen and (max-width: 950px) {
  .profile_logo {
    margin: 60px auto 0;
    width: 80%;
  }
}
.profile_tel {
  margin-top: 60px;
  transition: opacity ease 0.3s;
}
.profile_tel:hover, .profile_tel:active {
  opacity: 0.7;
}
@media screen and (max-width: 950px) {
  .profile_tel {
    margin: 30px auto 0;
    width: 80%;
  }
}
.profile_address {
  text-align: left;
  color: #1f4793;
  padding-left: 14%;
  margin-top: 30px;
}
@media screen and (max-width: 950px) {
  .profile_address {
    padding-left: 0;
    text-align: center;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .profile_address {
    font-size: 1.4rem;
  }
}

/* =============================================
  footer
============================================= */
.footer {
  background: rgb(20, 64, 167);
  background: linear-gradient(90deg, rgb(20, 64, 167) 27%, rgb(22, 119, 229) 100%);
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 950px) {
  .footer {
    height: 70px;
    line-height: 70px;
  }
}
.footer .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer small {
  display: block;
  line-height: 150%;
}

/* =============================================
  modal
============================================= */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
}
.modal_layer {
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  cursor: pointer;
}
.modal_container {
  background: #fff;
  height: 85%;
  max-width: 1100px;
  width: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 950px) {
  .modal_container {
    height: 90%;
  }
}
.modal_content {
  overflow-y: scroll;
  height: 100%;
  border-radius: 30px;
  padding: 150px 30px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .modal_content {
    padding: 50px 25px;
  }
}
.modal_content button {
  font-size: 3rem;
  color: #55bbc0;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 130px auto 0;
  border-bottom: 2px solid #55bbc0;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 950px) {
  .modal_content button {
    font-size: 2rem;
    margin: 30px auto 0;
  }
}
.modal_content button:hover, .modal_content button:active {
  opacity: 0.7;
}
.modal_content button img {
  width: 35px;
}
@media screen and (max-width: 950px) {
  .modal_content button img {
    width: 22px;
  }
}
.modal_img {
  max-width: 680px;
  margin: 0 auto;
}
.modal_close {
  width: 71px;
  position: absolute;
  top: -35px;
  right: -35px;
  cursor: pointer;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 950px) {
  .modal_close {
    width: 40px;
    top: -20px;
    right: -20px;
  }
}
.modal_close:hover, .modal_close:active {
  opacity: 0.7;
}

/* =============================================
  page top
============================================= */
.page_top {
  position: fixed;
  bottom: 150px;
  right: 30px;
  z-index: 100;
  transform: rotate(90deg);
  cursor: pointer;
  color: #c8c8c8;
  font-size: 2rem;
  letter-spacing: 3px;
  font-family: "Source Sans 3", sans-serif;
  transition: transform ease 0.3s;
}
@media screen and (max-width: 950px) {
  .page_top {
    right: -15px;
    bottom: 100px;
    font-size: 1.8rem;
  }
}
.page_top:hover {
  transform: rotate(90deg) translateX(-10px);
}
.page_top::before, .page_top::after {
  position: absolute;
  content: "";
  background: #c8c8c8;
  height: 1px;
  cursor: pointer;
}
.page_top::before {
  width: 150%;
  top: 30px;
  right: -5px;
}
@media screen and (max-width: 950px) {
  .page_top::before {
    top: 25px;
  }
}
.page_top::after {
  width: 20px;
  top: 23px;
  left: -53px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 950px) {
  .page_top::after {
    top: 18px;
    left: -48px;
  }
}/*# sourceMappingURL=style.css.map */