@charset "UTF-8";
/*=========================
# colors
=========================*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.inner {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .inner {
    padding: 0 40px;
    max-width: 992px;
    box-sizing: content-box;
  }
}

@media (max-width: 767px) {
  .inner {
    padding: 0 30px;
  }
}

img {
  width: 100%;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
  .tab {
    display: none;
  }
}

@media (max-width: 991px) {
  .tab {
    display: block;
  }
}

.main {
  overflow: hidden;
}

.center {
  text-align: center;
}

.yellow-line {
  background: linear-gradient(to bottom, transparent, transparent 50%, #FFF000 50%);
}

body .preload .wow {
  opacity: 0 !important;
}

/* header
--------------------------*/
.header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  position: fixed;
}

@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

@media (max-width: 767px) {
  .drawer-bars {
    display: none;
    cursor: pointer;
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 700;
    right: 0;
    background: #14a0e6;
    margin-left: auto;
    border-radius: 0 0 0 5px;
  }
  .drawer-bars .drawer-bar {
    background-color: #fff;
    width: 30px;
    height: 2px;
    position: absolute;
    transition: all 0.5s ease 0s;
    left: 50%;
    transform: translateX(-50%);
  }
  .drawer-bars .drawer-bar:nth-of-type(1) {
    top: 20px;
  }
  .drawer-bars .drawer-bar:nth-of-type(2) {
    top: 27px;
  }
  .drawer-bars .drawer-bar:nth-of-type(3) {
    top: 34px;
  }
}

.drawer-bars.is-checked {
  right: 70%;
  display: block;
}

.drawer-bars.is-checked .drawer-bar {
  background: #fff;
  position: absolute;
}

.drawer-bars.is-checked .drawer-bar:nth-of-type(1) {
  top: 20px;
  transform: rotate(-45deg) translateX(-50%);
}

.drawer-bars.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}

.drawer-bars.is-checked .drawer-bar:nth-of-type(3) {
  top: 42px;
  transform: rotate(45deg) translateX(-50%);
}

.drawer-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 600;
  width: 70%;
  padding: 24px 15px;
  background: #14a0e6;
  transition: all 0.5s ease 0s;
  display: none;
  overflow-y: scroll;
}

.drawer-nav.is-checked {
  display: block;
}

.drawer-nav .drawer-nav-1 {
  margin-top: 15px;
}

.drawer-nav .drawer-nav-1 li .header-link {
  display: block;
  font-size: 18px;
  padding: 20px 0;
  border-top: 1px solid #107CB3;
  color: #fff;
}

.drawer-nav .drawer-nav-1 li:last-child {
  margin-bottom: 28px;
}

.drawer-nav .drawer-nav-1 li:last-child .header-link {
  border-bottom: 1px solid #107CB3;
}

.drawer-nav .drawer-nav-2 li {
  margin-bottom: 10px;
}

#mask {
  display: none;
  transition: all .5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

/* util
---------------------------*/
a {
  color: #333;
}

/* cv
----------------------------*/
@media (min-width: 768px) {
  .cv {
    text-align: center;
  }
}

.cv .cv-inner {
  border: 1px solid #B2B2B2;
  border-radius: 6px;
  padding: 30px;
}

@media (max-width: 767px) {
  .cv .cv-inner {
    padding: 15px;
  }
}

.cv h2 {
  font-size: 27px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .cv h2 {
    font-size: 17px;
    line-height: 1.4;
  }
}

.cv .cv-btn-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .cv .cv-btn-contents {
    flex-direction: column;
  }
}

.cv .cv-btn-contents a {
  font-size: 20px;
  height: 70px;
  line-height: 70px;
  width: calc(50% - 14px / 2);
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .cv .cv-btn-contents a {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 48px;
    line-height: 48px;
    margin-bottom: 7px;
  }
}

.cv .cv-btn-contents a img {
  vertical-align: middle;
  object-fit: contain;
}

.cv .cv-btn-contents a .triangle {
  width: 10px;
}

@media (max-width: 767px) {
  .cv .cv-btn-contents a .triangle {
    width: 6px;
  }
}

.cv .cv-btn-contents a:nth-child(1) {
  color: #fff;
  background: #14a0e6;
}

.cv .cv-btn-contents a:nth-child(1) .icon {
  width: 33px;
}

@media (max-width: 767px) {
  .cv .cv-btn-contents a:nth-child(1) .icon {
    width: 18px;
  }
}

.cv .cv-btn-contents a:nth-child(2) {
  background: #ffbf00;
}

.cv .cv-btn-contents a:nth-child(2) .icon {
  width: 40px;
}

@media (max-width: 767px) {
  .cv .cv-btn-contents a:nth-child(2) .icon {
    width: 22px;
  }
}

.cv p {
  font-size: 15px;
}

/* main-visual
-------------------------*/
.main-visual {
  background: transparent url(../img/mv-pc.jpg) no-repeat bottom center/cover;
  color: #fff;
  position: relative;
}

@media (min-width: 768px) {
  .main-visual {
    height: 900px;
  }
}

@media (max-width: 767px) {
  .main-visual {
    height: 562px;
  }
}

.main-visual .inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .main-visual .inner {
    bottom: 25%;
  }
}

.main-visual .main-visual-logo {
  width: 215px;
  margin: 0 auto 25px;
}

@media (max-width: 767px) {
  .main-visual .main-visual-logo {
    width: 127px;
    margin-bottom: 20px;
  }
}

.main-visual h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.77778;
  text-shadow: 0 0 3px rgba(13, 100, 153, 0.8);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .main-visual h2 {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.main-visual h1 {
  margin-bottom: 25px;
}

.main-visual h1 .mv-1 {
  width: 513px;
  display: block;
  margin: auto;
}

@media (max-width: 767px) {
  .main-visual h1 .mv-1 {
    width: 305px;
  }
}

.main-visual h1 .mv-2 {
  width: 445px;
}

@media (max-width: 767px) {
  .main-visual h1 .mv-2 {
    width: 270px;
  }
}

.main-visual .main-visual-fukidashi {
  background: #14a0e6;
  font-size: 20px;
  line-height: 1.6;
  border-radius: 4px;
  display: inline-block;
  padding: 10px 20px;
  position: relative;
}

@media (max-width: 767px) {
  .main-visual .main-visual-fukidashi {
    font-size: 12px;
  }
}

.main-visual .main-visual-fukidashi span {
  font-weight: 700;
}

.main-visual .main-visual-fukidashi::before {
  position: absolute;
  content: "";
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 21px 12px;
  border-color: transparent transparent #14a0e6 transparent;
}

@media (max-width: 767px) {
  .main-visual .main-visual-fukidashi::before {
    border-width: 0 7px 12px 7px;
    top: -10px;
  }
}

.main-visual .main-visual-fukidashi::after {
  position: absolute;
  content: "";
  background: transparent url(../img/mv-area.png) no-repeat center center/contain;
  width: 80px;
  height: 80px;
  top: -60px;
  right: -60px;
}

@media (max-width: 767px) {
  .main-visual .main-visual-fukidashi::after {
    width: 44.5px;
    height: 44.5px;
    top: -20px;
    right: -25px;
  }
}

/* nav
---------------------------*/
.nav {
  background: #14a0e6;
  color: #fff;
  padding: 20px 0;
}

.nav ul {
  display: flex;
  justify-content: center;
}

.nav ul li {
  margin-right: 30px;
}

.nav ul li:last-child {
  margin-right: 0;
}

.nav a {
  color: #fff;
  font-weight: 700;
}

.nav a img {
  width: 13px;
  vertical-align: middle;
}

/* sec01
---------------------------*/
.sec01 {
  padding-top: 30px;
  position: relative;
}

@media (min-width: 768px) {
  .sec01 {
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .sec01::before {
    position: absolute;
    content: "";
    background: transparent url(../img/building-left.png) no-repeat center center/contain;
    width: 263px;
    height: 389px;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}

@media (min-width: 768px) {
  .sec01::after {
    position: absolute;
    content: "";
    background: transparent url(../img/building-right.png) no-repeat center center/contain;
    width: 263px;
    height: 389px;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
}

.sec01 .sec01-medal {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.sec01 .sec01-medal div {
  margin-right: 28px;
  width: 130px;
}

@media (max-width: 767px) {
  .sec01 .sec01-medal div {
    width: 95px;
    margin-right: 10px;
  }
}

.sec01 .sec01-medal div:last-child {
  margin-right: 0;
}

.sec01 h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .sec01 h2 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
  }
}

.sec01 p {
  font-size: 18px;
}

@media (max-width: 767px) {
  .sec01 p {
    font-size: 16px;
    text-align: left;
    margin-bottom: 15px;
  }
}

/* sec02
---------------------------*/
.sec02 {
  background: linear-gradient(to bottom, #14a0e6, #006ec6);
  padding-top: 90px;
  padding-bottom: 85px;
  position: relative;
}

@media (max-width: 767px) {
  .sec02 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .sec02:before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 46px 43px 0 43px;
    border-color: #fff transparent transparent transparent;
  }
}

.sec02 h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto 40px;
  background: #ffbf00;
  max-width: 820px;
  padding: 20px 0;
  border-radius: 40px;
}

@media (max-width: 767px) {
  .sec02 h2 {
    border-radius: 0;
    font-size: 18px;
    line-height: 1.22222;
    padding: 15px 0;
    margin-bottom: 30px;
  }
}

.sec02 ul {
  max-width: 820px;
  margin: 0 auto 35px;
  position: relative;
}

@media (min-width: 768px) {
  .sec02 ul:before {
    position: absolute;
    content: "";
    background: transparent url(../img/ilust-1.png) no-repeat center center/contain;
    bottom: 0;
    left: -150px;
    width: 134px;
    height: 203px;
  }
}

@media (min-width: 768px) {
  .sec02 ul:after {
    position: absolute;
    content: "";
    background: transparent url(../img/ilust-2.png) no-repeat center center/contain;
    bottom: 0;
    right: -150px;
    width: 134px;
    height: 203px;
  }
}

.sec02 ul li {
  text-align: left;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .sec02 ul li {
    font-size: 18px;
  }
}

.sec02 ul li:before {
  content: "■";
}

.sec02 .cv .cv-inner {
  background: #fff;
}

.sec02 .cv .cv-inner h2 {
  background: transparent;
  max-width: 100%;
  padding: 0;
  margin-bottom: 20px;
  border-radius: 0;
}

@media (max-width: 767px) {
  .sec02 .cv .cv-inner h2 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .sec02 .cv .cv-inner p {
    text-align: left;
  }
}

/* sec03
---------------------------*/
.sec03 {
  padding-top: 80px;
  padding-bottom: 85px;
  position: relative;
}

@media (max-width: 767px) {
  .sec03 {
    padding-top: 40px;
    padding-bottom: 25px;
  }
}

.sec03 .sec03-contents .sec03-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .sec03 .sec03-contents .sec03-content {
    margin-top: 25px;
  }
}

.sec03 .sec03-contents .sec03-content:nth-child(2n) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .sec03 .sec03-contents .sec03-content:nth-child(2n) {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .sec03 .sec03-contents .sec03-content {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .sec03 .sec03-contents .sec03-content .img {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .sec03 .sec03-contents .sec03-content .img {
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .sec03 .sec03-contents .sec03-content .txt {
    width: 50%;
  }
}

.sec03 .sec03-contents .sec03-content .txt .number {
  width: 71px;
}

@media (max-width: 767px) {
  .sec03 .sec03-contents .sec03-content .txt .number {
    width: 50px;
  }
}

.sec03 .sec03-contents .sec03-content .txt h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .sec03 .sec03-contents .sec03-content .txt h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}

.sec03 .sec03-contents .sec03-content .txt h3 span {
  font-size: 50px;
}

@media (max-width: 767px) {
  .sec03 .sec03-contents .sec03-content .txt h3 span {
    font-size: 40px;
  }
}

.sec03 .sec03-contents .sec03-content .txt p {
  font-size: 20px;
}

@media (max-width: 767px) {
  .sec03 .sec03-contents .sec03-content .txt p {
    font-size: 16px;
  }
}

.sec03 .sec03-contents .sec03-content .txt p span {
  color: #808080;
  font-size: 16px;
}

@media (max-width: 767px) {
  .sec03 .sec03-contents .sec03-content .txt p span {
    font-size: 14px;
  }
}

/* sec04
---------------------------*/
.sec04 {
  padding-top: 80px;
  padding-bottom: 85px;
  background: #E5E5E5;
  position: relative;
}

@media (max-width: 767px) {
  .sec04 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.sec04::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 46px 43px 0 43px;
  border-color: #e5e5e5 transparent transparent transparent;
}

@media (max-width: 767px) {
  .sec04::before {
    border-width: 20px 19px 0 19px;
  }
}

@media (max-width: 767px) {
  .sec04 {
    padding-top: 40px;
    padding-bottom: 25px;
  }
}

.sec04 .problem-title {
  background: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 45px;
  padding: 10px;
}

@media (max-width: 767px) {
  .sec04 .problem-title {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .sec04 .sec04-problem-contents {
    display: flex;
    max-width: 950px;
    margin: 0 auto 56px;
  }
}

@media (min-width: 768px) {
  .sec04 .sec04-problem-contents .sec04-problem-content {
    width: calc(33.333% - 20px * 2 / 3);
    margin-right: 20px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .sec04 .sec04-problem-contents .sec04-problem-content {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
  }
}

.sec04 .sec04-problem-contents .sec04-problem-content:nth-child(1) img {
  width: 63px;
}

@media (max-width: 767px) {
  .sec04 .sec04-problem-contents .sec04-problem-content:nth-child(1) img {
    width: 58px;
  }
}

.sec04 .sec04-problem-contents .sec04-problem-content:nth-child(2) img {
  width: 56px;
}

@media (max-width: 767px) {
  .sec04 .sec04-problem-contents .sec04-problem-content:nth-child(2) img {
    width: 58px;
  }
}

.sec04 .sec04-problem-contents .sec04-problem-content:nth-child(3) {
  margin-right: 0;
}

.sec04 .sec04-problem-contents .sec04-problem-content:nth-child(3) img {
  width: 64px;
}

@media (max-width: 767px) {
  .sec04 .sec04-problem-contents .sec04-problem-content:nth-child(3) img {
    width: 58px;
  }
}

@media (min-width: 768px) {
  .sec04 .sec04-problem-contents .sec04-problem-content .top {
    display: flex;
    margin-bottom: 24px;
    justify-content: center;
  }
}

.sec04 .sec04-problem-contents .sec04-problem-content .top img {
  margin-right: 13px;
}

.sec04 .sec04-problem-contents .sec04-problem-content .top h3 {
  font-size: 25px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .sec04 .sec04-problem-contents .sec04-problem-content .bottom h3 {
    font-weight: 700;
    font-size: 20px;
  }
}

.sec04 .sec04-problem-contents .sec04-problem-content .bottom p {
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .sec04 .sec04-problem-contents .sec04-problem-content .bottom p {
    font-size: 16px;
  }
}

.sec04 .cover-h2 {
  font-size: 36px;
  font-weight: bold;
  background: #ffbf00;
  border-radius: 50px;
  padding: 20px 0;
  position: relative;
}

@media (max-width: 767px) {
  .sec04 .cover-h2 {
    font-size: 24px;
    border-radius: 8px;
    line-height: 1.2;
    padding: 10px 0;
    margin-top: 30px;
  }
}

.sec04 .cover-h2::before {
  position: absolute;
  content: "";
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 41px 30px 0 30px;
  border-color: #ffbf00 transparent transparent transparent;
}

.sec04 .cover-h3 {
  margin-top: 50px;
  margin-bottom: 26px;
}

@media (max-width: 767px) {
  .sec04 .cover-h3 {
    margin-bottom: 20px;
  }
}

.sec04 .sec04-medal {
  display: flex;
  justify-content: center;
  position: relative;
}

@media (min-width: 768px) {
  .sec04 .sec04-medal:before {
    position: absolute;
    content: "";
    background: transparent url(../img/ilust-1.png) no-repeat center center/contain;
    bottom: 0;
    left: 0;
    width: 116px;
    height: 191px;
  }
}

@media (min-width: 768px) {
  .sec04 .sec04-medal:after {
    position: absolute;
    content: "";
    background: transparent url(../img/ilust-2.png) no-repeat center center/contain;
    bottom: 0;
    right: 0;
    width: 116px;
    height: 191px;
  }
}

.sec04 .sec04-medal div {
  margin-right: 28px;
  width: 210px;
}

@media (max-width: 767px) {
  .sec04 .sec04-medal div {
    margin-right: 10px;
    width: 95px;
  }
}

.sec04 .sec04-medal div:last-child {
  margin-right: 0;
}

/* sec05
---------------------------*/
.sec05 {
  padding-top: 65px;
}

@media (min-width: 768px) {
  .sec05 {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .sec05 {
    padding-top: 40px;
    margin-bottom: 20px;
  }
}

.sec05 h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 32px;
  line-height: 1.2;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .sec05 h2 {
    font-size: 24px;
    padding: 14px 0;
  }
}

.sec05 .area {
  color: #fff;
  background: #14a0e6;
}

.sec05 .table {
  background: #ffbf00;
}

@media (max-width: 767px) {
  .sec05 .table {
    margin-top: 32px;
  }
}

@media (min-width: 768px) {
  .sec05 .price-table {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .sec05 .price-table {
    border: 1px solid #B2B2B2;
    padding: 15px 0 11px 11px;
    margin-bottom: 14px;
  }
  .sec05 .price-table p {
    font-size: 14px;
    color: #808080;
  }
}

.sec05 .price-table .price-table-scroll {
  overflow-x: scroll;
  padding-top: 11px;
}

@media (max-width: 767px) {
  .sec05 .price-table .price-table-scroll img {
    width: 866px;
  }
}

.sec05 .area-contents {
  max-width: 800px;
  margin: auto;
}

@media (min-width: 768px) {
  .sec05 .area-contents .area-content {
    display: flex;
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .sec05 .area-contents .area-content {
    margin-bottom: 21px;
  }
}

.sec05 .area-contents .area-content .left {
  margin-right: 17px;
}

@media (max-width: 767px) {
  .sec05 .area-contents .area-content .left {
    display: flex;
  }
}

.sec05 .area-contents .area-content .left img {
  width: 41px;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .sec05 .area-contents .area-content .left img {
    margin-right: 11px;
  }
}

@media (max-width: 767px) {
  .sec05 .area-contents .area-content .left h3 {
    font-size: 20px;
  }
}

.sec05 .area-contents .area-content .right h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 9px;
}

@media (max-width: 767px) {
  .sec05 .area-contents .area-content .right h3 {
    font-size: 20px;
  }
}

.sec05 .area-contents .area-content .right p {
  font-size: 20px;
}

@media (max-width: 767px) {
  .sec05 .area-contents .area-content .right p {
    font-size: 16px;
  }
}

.sec05 .area-caution {
  max-width: 820px;
  margin: 0 auto 50px;
}

.sec05 .table-caution {
  font-size: 14px;
}

@media (max-width: 767px) {
  .sec05 .table-caution {
    font-size: 12px;
  }
}

/* sec06
---------------------------*/
.sec06 {
  margin-top: 60px;
  padding-bottom: 40px;
  background: transparent url(../img/flow-bg.png) no-repeat center center/cover;
}

@media (max-width: 767px) {
  .sec06 {
    margin-top: 30px;
  }
}

.sec06 h2 {
  font-size: 30px;
  font-weight: bold;
  padding: 15px 0;
  background: #14a0e6;
  color: #fff;
}

@media (max-width: 767px) {
  .sec06 h2 {
    font-size: 24px;
    padding: 14px 0;
  }
}

.sec06 .flow-content {
  background: #fff;
  position: relative;
}

@media (min-width: 768px) {
  .sec06 .flow-content {
    display: flex;
    align-items: center;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .sec06 .flow-content {
    margin-top: 40px;
  }
}

.sec06 .flow-content::after {
  position: absolute;
  content: "";
  background: transparent url(../img/flow-under.png) no-repeat center center/contain;
  width: 54px;
  height: 27px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -35px;
}

@media (max-width: 767px) {
  .sec06 .flow-content::after {
    width: 40px;
    height: 20px;
    bottom: -30px;
  }
}

.sec06 .flow-content:last-child::after {
  display: none;
}

@media (min-width: 768px) {
  .sec06 .flow-content .left {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .sec06 .flow-content .right {
    width: 70%;
    padding: 10px 20px;
  }
}

@media (max-width: 767px) {
  .sec06 .flow-content .right {
    padding: 15px;
  }
}

.sec06 .flow-content .right h3 {
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .sec06 .flow-content .right h3 {
    font-size: 16px;
  }
}

.sec06 .flow-content .right p {
  font-size: 14px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .sec06 .flow-content .right p {
    font-size: 12px;
  }
}

.sec06 .flow-caution {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .sec06 .flow-caution {
    font-size: 14px;
  }
}

.sec06 .flow-caution .under {
  text-decoration: underline;
}

/* sec07
---------------------------*/
.sec07 {
  margin-top: 70px;
}

@media (max-width: 767px) {
  .sec07 {
    margin-top: 30px;
  }
}

.sec07 h2 {
  font-size: 30px;
  font-weight: bold;
  padding: 15px 0;
  background: #14a0e6;
  color: #fff;
  margin-bottom: 30px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .sec07 h2 {
    font-size: 24px;
    padding: 14px 0;
  }
}

.sec07 .qa-item {
  font-size: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .sec07 .qa-item {
    font-size: 14px;
  }
}

.sec07 .qa-item img {
  height: 67px;
  width: auto;
  object-fit: contain;
  margin-right: 14px;
}

@media (max-width: 767px) {
  .sec07 .qa-item img {
    height: 46px;
    margin-right: 12px;
  }
}

.sec07 .qa-item .qa-head {
  background: #B8E2F7;
  padding: 10px 20px;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .sec07 .qa-item .qa-head {
    align-items: flex-start;
    padding: 20px;
  }
}

.sec07 .qa-item .qa-body {
  background: #E7F5FC;
  padding: 10px 20px;
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .sec07 .qa-item .qa-body {
    align-items: flex-start;
    padding: 20px;
  }
}

/* sec08
---------------------------*/
.sec08 {
  margin-top: 70px;
  background: transparent url(../img/cv.jpg) no-repeat center center/cover;
  padding: 60px 0;
}

@media (max-width: 767px) {
  .sec08 {
    padding: 30px 0;
  }
}

.sec08 .cv-inner {
  background: rgba(255, 255, 255, 0.9);
}

/* footer
----------------------------*/
@media (min-width: 768px) {
  footer {
    padding-top: 55px;
    position: relative;
  }
}

@media (max-width: 767px) {
  footer {
    padding-top: 40px;
  }
}

@media (min-width: 768px) {
  footer p {
    text-align: center;
  }
}

footer .contact-btn {
  background: #B50081;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  max-width: 510px;
  padding: 20px;
  margin: 37px auto 0;
}

@media (max-width: 767px) {
  footer .contact-btn {
    margin-bottom: 35px;
  }
}

footer .contact-btn .mail {
  width: 33px;
}

footer .contact-btn .triangle {
  width: 10px;
}

footer .footer-nav {
  max-width: 850px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  footer .footer-nav {
    margin: 20px auto 0;
  }
}

@media (max-width: 767px) {
  footer .footer-nav {
    flex-direction: column;
    border-top: 1px solid #B2B2B2;
    padding-top: 35px;
  }
}

footer .footer-nav .footer-top img {
  width: 180px;
}

@media (max-width: 767px) {
  footer .footer-nav .footer-center {
    margin-top: 30px;
    width: 100%;
  }
}

footer .footer-nav .footer-center ul {
  display: flex;
}

footer .footer-nav .footer-center ul li {
  margin-right: 28px;
}

@media (max-width: 767px) {
  footer .footer-nav .footer-center ul li {
    width: calc(50% - 9px / 2);
    margin-right: 9px;
  }
}

footer .footer-nav .footer-center ul li:last-child {
  margin-right: 0;
}

footer .footer-nav .footer-center ul li a {
  font-size: 14px;
}

@media (min-width: 768px) {
  footer .footer-nav .footer-center ul li a {
    color: #B50081;
    text-decoration: underline;
  }
}

@media (max-width: 767px) {
  footer .footer-nav .footer-center ul li a {
    background: #B50081;
    color: #fff;
    border-radius: 4px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  footer .footer-nav .footer-bottom {
    margin-top: 30px;
    margin-bottom: 17px;
  }
}

footer .footer-nav .footer-bottom ul {
  display: flex;
}

footer .footer-nav .footer-bottom ul li {
  margin-right: 40px;
}

footer .footer-nav .footer-bottom ul li:last-child {
  margin-right: 0;
}

footer .footer-nav .footer-bottom ul li .sdgs {
  width: 159px;
}

footer .footer-nav .footer-bottom ul li .privacy {
  width: 106px;
}

footer .footer-copy {
  background: #333;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 12px;
  margin-top: 25px;
}

@media (max-width: 767px) {
  footer .footer-copy {
    font-size: 12px;
    margin-top: 0;
  }
}

/* to top
----------------------------*/
.page-top {
  background: #333;
  color: #fff;
}

@media (min-width: 768px) {
  .page-top {
    position: absolute;
    border-radius: 0 0 5px 5px;
    right: 5%;
    top: 0;
  }
}

@media (max-width: 767px) {
  .page-top {
    border-radius: 5px 5px 0 0;
    width: fit-content;
    position: relative;
    right: 5%;
    margin-left: auto;
  }
}

.page-top p {
  text-align: center;
}

.move-page-top {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  display: block;
  padding: 8px 20px;
}

.move-page-top img {
  vertical-align: middle;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .move-page-top img {
    width: 12px;
  }
}

@media (max-width: 767px) {
  .move-page-top img {
    width: 10px;
  }
}

/* contact-box
----------------------------*/
.dl {
  position: fixed;
  right: 0;
  top: 70%;
  font-weight: 700;
  width: 140px;
  box-shadow: 0 3px 3px rgba(102, 102, 102, 0.2);
}

.dl a {
  color: #fff;
}

.dl img {
  vertical-align: middle;
}

.dl .dl-top {
  font-size: 16px;
  background: #666666;
  text-align: center;
  padding: 5px 0;
  border-radius: 4px 0 0 0;
}

.dl .dl-top img {
  width: 19px;
  margin-right: 10px;
}

.dl .dl-bottom {
  font-size: 11px;
  display: flex;
}

.dl .dl-bottom .left {
  background: #14a0e6;
  text-align: center;
  width: 50%;
  border-radius: 0 0 0 4px;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dl .dl-bottom .left img {
  width: 33px;
  display: block;
  margin: auto;
}

.dl .dl-bottom .right {
  background: #ffbf00;
  text-align: center;
  width: 50%;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dl .dl-bottom .right img {
  width: 40px;
  display: block;
  margin: auto;
}
