@charset "UTF-8";
body {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333333;
  font-weight: 400;
}
body a {
  color: #333333;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}

.sp_only {
  display: none;
}

.bold {
  font-weight: bold;
}

.inner {
  box-sizing: content-box;
  max-width: 1000px;
  padding: 0 2%;
  position: relative;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .inner {
    padding: 0 4%;
  }
}
/*----------------------------------
セクション名やクラス名
----------------------------------*/
/*----- 小見出し -----*/
/*----------------------------------------------------- */
/*  header           */
/*----------------------------------------------------- */
.header {
  height: 80px;
  padding: 0 2% 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo {
  flex: 1;
  display: flex;
  align-items: center;
  height: 80px;
}
.header_logo div {
  max-width: 163px;
  width: 100%;
}
.header_logo p {
  flex: 1;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.header_nav {
  width: 45%;
}
.header_nav ul {
  display: flex;
  justify-content: flex-end;
}
.header_nav li + li {
  margin-left: 30px;
}
.header_nav a {
  font-size: 16px;
  font-weight: 700;
}

@media screen and (max-width: 1000px) {
  .header_logo {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .header_logo div {
    max-width: 163px;
    width: 100%;
  }
  .header_logo p {
    margin-left: 2vw;
    font-size: 1.5vw;
  }
  .header_nav {
    width: 45%;
  }
  .header_nav li + li {
    margin-left: 3vw;
  }
  .header_nav a {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: auto;
    padding: 10px 2% 10px 5%;
    display: block;
  }
  .header_logo {
    width: 100%;
    display: flex;
  }
  .header_logo div {
    max-width: 35%;
    width: 100%;
  }
  .header_logo p {
    margin-left: 10px;
    font-size: 10px;
    line-height: 1.2;
  }
  .header_nav {
    width: 100%;
    margin-top: 10px;
  }
  .header_nav ul {
    display: flex;
    justify-content: center;
  }
  .header_nav li + li {
    margin-left: 5%;
  }
  .header_nav a {
    font-size: 14px;
    font-weight: 700;
  }
}
/*----------------------------------------------------- */
/*  mv           */
/*----------------------------------------------------- */
.mv {
  margin-left: 5%;
  height: 620px;
  border-radius: 30px 0 0 30px;
  background: url(../images/bg_mv.png) right center no-repeat;
  background-size: cover;
  padding-top: 130px;
}
.mv .inner {
  max-width: 100%;
  padding: 0 6%;
}

.mv_ttl {
  max-width: 670px;
  margin-bottom: 50px;
}

.mv_box {
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 430px;
  text-align: center;
  padding: 10px 0 25px;
  border-radius: 20px;
}
.mv_box .ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
.mv_box .ttl span {
  color: #39a2dc;
  font-weight: 700;
}
.mv_box .ttl em {
  font-size: 57px;
  font-weight: 700;
  color: #39a2dc;
}
.mv_box .txt {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .mv {
    margin-left: 5%;
    height: 420px;
    border-radius: 20px 0 0 20px;
    background: url(../images/bg_mv.png) right 10% top no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .mv .inner {
    max-width: 100%;
    padding: 0 6%;
  }
  .mv_ttl {
    max-width: 350px;
    width: 100%;
    margin-bottom: 20px;
  }
  .mv_box {
    background-color: rgba(255, 255, 255, 0.8);
    max-width: 350px;
    width: 100%;
    text-align: center;
    padding: 10px 0 20px;
    border-radius: 20px;
  }
  .mv_box .ttl {
    font-size: 24px;
  }
  .mv_box .ttl em {
    font-size: 40px;
  }
  .mv_box .txt {
    font-size: 15px;
  }
}
/*----------------------------------------------------- */
/*  links           */
/*----------------------------------------------------- */
.links {
  padding: 40px 0;
}

.links_list {
  display: flex;
  justify-content: space-between;
}
.links_list li {
  width: 48%;
}
.links_list li + li {
  margin-left: 5%;
}
.links_list a {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  background: #39a2dc;
  border-radius: 100px;
  font-size: 24px;
  padding: 20px 0;
  position: relative;
  transition: 0.3s ease-in-out;
}
.links_list a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.links_list a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .links {
    padding: 20px 0;
  }
  .links_list {
    display: flex;
    justify-content: space-between;
  }
  .links_list li {
    width: 48%;
  }
  .links_list li + li {
    margin-left: 0;
  }
  .links_list a {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    background: #39a2dc;
    border-radius: 100px;
    padding: 10px 0;
  }
  .links_list a::after {
    right: 12px;
  }
}
/*----------------------------------------------------- */
/*  page_nav           */
/*----------------------------------------------------- */
.page_nav {
  background: #004894;
  padding: 40px 0 50px;
}
.page_nav p {
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}

.page_nav_list {
  display: flex;
  justify-content: space-between;
}
.page_nav_list li {
  width: 48%;
}
.page_nav_list a {
  display: block;
  width: 100%;
  text-align: center;
  color: #004894;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  background: #fff;
  border-radius: 100px;
  padding: 10px 0;
  position: relative;
  transition: 0.3s ease-in-out;
}
.page_nav_list a span {
  display: inline-block;
  background: #004894;
  padding: 2px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.page_nav_list a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -16px;
  width: 16px;
  height: 16px;
  border-right: 3px solid #004894;
  border-bottom: 3px solid #004894;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.page_nav_list a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .page_nav {
    padding: 30px 0;
  }
  .page_nav p {
    margin-bottom: 20px;
  }
  .page_nav_list {
    display: block;
  }
  .page_nav_list li {
    width: 100%;
  }
  .page_nav_list li + li {
    margin-top: 20px;
  }
  .page_nav_list a {
    font-size: 18px;
  }
  .page_nav_list a span {
    font-size: 14px;
  }
  .page_nav_list a::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -16px;
    width: 16px;
    height: 16px;
    border-right: 3px solid #004894;
    border-bottom: 3px solid #004894;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .page_nav_list a:hover {
    opacity: 0.7;
  }
}
/*----------------------------------------------------- */
/*  about           */
/*----------------------------------------------------- */
.sec_ttl {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.4;
}
.sec_ttl span {
  display: block;
  color: #39a2dc;
  font-size: 16px;
  font-weight: 700;
}
.sec_ttl em {
  font-weight: 700;
  padding: 0 10px;
  background: linear-gradient(transparent 60%, #42b9fb 60%);
}

.about {
  padding: 80px 0 1px;
}

.about_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.about_wrap .pic {
  width: 39%;
}
.about_wrap .txt {
  width: 56%;
}
.about_wrap .txt h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.about_wrap .txt p {
  margin-bottom: 30px;
}

.about_box {
  background: #edefef;
  padding: 20px;
}
.about_box ul {
  display: flex;
  justify-content: space-between;
}
.about_box ul li {
  width: 31%;
}

.logo_slider {
  margin-bottom: 40px;
}
.logo_slider img {
  max-width: 100%;
  height: auto;
}
.logo_slider .slick-slide {
  margin: 0 25px;
}
.logo_slider .slick-track {
  display: flex;
  align-items: center;
}

.add_links {
  margin: -20px 0 60px auto;
  width: 200px;
}
.add_links p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 5px;
}
.add_links a {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  background: #004894;
  border-radius: 100px;
  padding: 10px 0;
  position: relative;
  transition: 0.3s ease-in-out;
}
.add_links a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.add_links a:hover {
  opacity: 0.7;
}

.about_btn {
  margin-bottom: 80px;
}
.about_btn a {
  display: block;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  background: #004894;
  border-radius: 100px;
  padding: 10px 0;
  position: relative;
  transition: 0.3s ease-in-out;
}
.about_btn a span {
  display: inline-block;
  background: #fff;
  padding: 2px 10px;
  color: #004894;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
}
.about_btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.about_btn a:hover {
  opacity: 0.7;
}

.about_subttl {
  color: #004894;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.about_txt01 {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 800px;
  padding: 30px 60px;
  border-radius: 20px;
  background-color: #edefef;
}

.about_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.about_list li {
  border: 2px solid #004894;
  width: 24%;
}
.about_list h3 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  height: 60px;
  line-height: 58px;
  background: #004894;
  position: relative;
}
.about_list h3::before {
  content: "";
  position: absolute;
  right: -11%;
  top: 0;
  width: 12px;
  height: 100%;
  background: url(../images/pic_triangle_06.png) no-repeat;
  background-size: contain;
  z-index: 5;
}
.about_list h3::after {
  content: "";
  position: absolute;
  right: -5.7%;
  top: 0;
  width: 12px;
  height: 100%;
  background: url(../images/pic_triangle_05.png) no-repeat;
  background-size: contain;
  z-index: 10;
}
.about_list .last::before {
  display: none;
}
.about_list .last::after {
  display: none;
}
.about_list .wrap {
  padding: 0 20px 25px;
}
.about_list h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 65px;
  font-weight: 700;
  line-height: 1.4;
}
.about_list p {
  margin: 0 auto;
  font-size: 16px;
}

.about_point {
  width: 100%;
  border: 3px solid #004894;
  border-radius: 20px;
  padding: 3% 8% calc(3% - 20px) 8%;
  position: relative;
}
.about_point .num {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #004894;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_point .num p {
  color: #fff;
  line-height: 1.1;
  font-size: 16px;
  font-weight: 700;
}
.about_point .num p em {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}
.about_point table {
  width: 100%;
}
.about_point table th {
  width: 140px;
  vertical-align: top;
  padding-bottom: 20px;
}
.about_point table th p {
  background: #004894;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 2px 0;
}
.about_point table td {
  width: calc(100% - 140px);
  padding-left: 20px;
  padding-bottom: 20px;
  font-weight: 700;
}
.about_point table td ul li {
  position: relative;
  padding-left: 1em;
}
.about_point table td ul li span {
  font-size: 14px;
}
.about_point table td ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background: #004894;
  border-radius: 50%;
}
.about_point table td ul li + li {
  margin-top: 10px;
}

.about_point + .about_point {
  margin-top: 35px;
}

.about_scene {
  margin-top: 60px;
  margin-bottom: 0;
  background: #edefef;
  padding: 3.5% 5.5% calc(3.5% - 20px) 5.5%;
}
.about_scene h3 {
  color: #004894;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.about_scene ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_scene ul li {
  width: 48%;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 15px 15px 15px 50px;
}
.about_scene ul li h4 {
  font-weight: 700;
  position: relative;
}
.about_scene ul li h4::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -25px;
  display: block;
  width: 18px;
  height: 18px;
  background: #004894;
  border-radius: 50%;
}
.about_scene ul li p {
  margin-top: 10px;
  font-size: 14px;
}

.about_scene_note {
  text-align: right;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .sec_ttl {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .sec_ttl span {
    font-size: 14px;
  }
  .about {
    padding: 40px 0 1px;
  }
  .about_wrap {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .about_wrap .pic {
    width: 60%;
    margin: 0 auto;
  }
  .about_wrap .txt {
    width: 100%;
    margin-bottom: 30px;
  }
  .about_wrap .txt h3 {
    font-size: 18px;
  }
  .about_wrap .txt p {
    margin-bottom: 20px;
  }
  .about_box {
    background: #edefef;
    padding: 20px 10px;
  }
  .logo_slider {
    margin-bottom: 40px;
  }
  .add_links {
    margin: -20px auto 60px;
  }
  .about_btn {
    margin-bottom: 40px;
  }
  .about_btn a {
    font-size: 18px;
  }
  .about_btn a span {
    font-size: 14px;
  }
  .about_subttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .about_txt01 {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 1s0px;
  }
  .sp_wrap {
    overflow-x: auto;
    margin-right: -4%;
  }
  .about_list {
    margin-bottom: 40px;
  }
  .about_list li {
    width: 24%;
  }
  .about_list h3 {
    font-size: 13px;
    height: 40px;
    line-height: 36px;
  }
  .about_list h3::before {
    right: -18px;
  }
  .about_list h3::after {
    right: -14px;
  }
  .about_list .wrap {
    padding: 0 3% 10px;
  }
  .about_list h4 {
    font-size: 12px;
  }
  .about_list p {
    margin-top: 5px;
    font-size: 10px;
  }
  .about_point {
    width: 100%;
    border: 3px solid #004894;
    border-radius: 10px;
    padding: 30px 5% 1px;
    position: relative;
  }
  .about_point .num {
    top: -40px;
    left: -10px;
    width: 60px;
    height: 60px;
  }
  .about_point .num p {
    font-size: 12px;
  }
  .about_point .num p em {
    font-size: 20px;
  }
  .about_point table {
    width: 100%;
  }
  .about_point table th {
    display: block;
    width: 120px;
    padding-bottom: 10px;
  }
  .about_point table th p {
    font-size: 14px;
  }
  .about_point table td {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-bottom: 20px;
  }
  .about_point table td ul li {
    position: relative;
    padding-left: 1em;
  }
  .about_point table td ul li span {
    font-size: 14px;
  }
  .about_point table td ul li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 10px;
    height: 10px;
    background: #004894;
    border-radius: 50%;
  }
  .about_point table td ul li + li {
    margin-top: 10px;
  }
  .about_point + .about_point {
    margin-top: 45px;
  }
  .about_scene {
    margin: 40px 0 0;
    padding: 20px 5.5% 10px 5.5%;
  }
  .about_scene h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .about_scene ul {
    display: block;
  }
  .about_scene ul li {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 20px 10px 40px;
  }
  .about_scene ul li h4 {
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
  }
  .about_scene ul li h4::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -25px;
    display: block;
    width: 18px;
    height: 18px;
    background: #004894;
    border-radius: 50%;
  }
  .about_scene ul li p {
    font-size: 14px;
  }
  .about_scene_note {
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 40px;
  }
}
/*----------------------------------------------------- */
/*  flow           */
/*----------------------------------------------------- */
.flow {
  background: #004894;
  padding: 80px 0 0;
}
.flow .sec_ttl {
  color: #fff;
}

.flow_txt {
  color: #fff;
  text-align: center;
  margin: 0 auto 60px;
  max-width: 720px;
  padding: 30px 60px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}
.flow_txt em {
  color: #fff;
  font-weight: 700;
}

.flow_pic {
  margin-bottom: 40px;
}

.flow_step {
  max-width: 855px;
  margin: 0 auto;
  display: flex;
}
.flow_step .num {
  width: 100px;
  min-height: 160px;
  background: #39a2dc;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
.flow_step .num em {
  font-size: 28px;
  font-weight: 700;
}
.flow_step .num::before {
  content: "";
  position: absolute;
  bottom: -25px;
  width: 100%;
  height: 15px;
  background: url(../images/pic_triangle_02.png) center bottom no-repeat;
  background-size: contain;
  z-index: 5;
}
.flow_step .num::after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 100%;
  height: 15px;
  background: url(../images/pic_triangle_01.png) center bottom no-repeat;
  background-size: contain;
  z-index: 10;
}
.flow_step .last::before {
  display: none;
}
.flow_step .last::after {
  display: none;
}
.flow_step .txt {
  flex: 1;
  background: #fff;
  padding: 20px 40px;
}
.flow_step .txt h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 5px;
}
.flow_step .txt p {
  font-size: 16px;
}
.flow_step .txt a {
  color: #1d50a2;
  text-decoration: underline;
}
.flow_step .txt ul {
  font-size: 16px;
}
.flow_step .txt ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.flow_step .txt ul em {
  font-weight: bold;
}
.flow_step .txt ul span {
  color: #1d50a2;
}
.flow_step + .flow_step {
  margin-top: 10px;
}

.flow_step_complete {
  max-width: 855px;
  margin: 10px auto;
  background: #39a2dc;
  position: relative;
  padding: 20px 40px;
  color: #fff;
}
.flow_step_complete h3 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 5px;
}
.flow_step_complete p {
  font-size: 16px;
}
.flow_step_complete::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100px;
  height: 15px;
  background: url(../images/pic_triangle_02.png) center bottom no-repeat;
  background-size: contain;
  z-index: 5;
}
.flow_step_complete::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 15px;
  width: 100px;
  background: url(../images/pic_triangle_01.png) center bottom no-repeat;
  background-size: contain;
  z-index: 10;
}

.flow_step_last {
  margin-bottom: 80px;
}

.howto_bg {
  background: #023265;
  padding: 80px 0;
}

.howto01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.howto01 .ttl {
  width: 50px;
  background: #39a2dc;
  margin-right: 2%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-weight: 700;
  line-height: 50px;
  padding-top: 20px;
  position: relative;
}
.howto01 .ttl::before {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/pic_triangle_04_02.png) center bottom no-repeat;
  background-size: contain;
  z-index: 5;
}
.howto01 .ttl::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/pic_triangle_03.png) center bottom no-repeat;
  background-size: contain;
  z-index: 10;
}
.howto01 .wrap {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.howto01 .wrap .seven {
  background: #fff;
  width: 31.8%;
  margin-bottom: 10px;
  padding: 25px 20px 5px;
}
.howto01 .wrap .seven h3 {
  max-width: 192px;
  margin: 0 auto 18px;
}
.howto01 .wrap .seven .pic01 {
  max-width: 108px;
  margin: 10px auto;
}
.howto01 .wrap .seven .link {
  word-break: break-all;
}
.howto01 .wrap .lawson {
  background: #fff;
  width: 31.8%;
  margin-bottom: 10px;
  padding: 25px 20px 5px;
}
.howto01 .wrap .lawson h3 {
  max-width: 217px;
  margin: 0 auto 5px;
}
.howto01 .wrap .lawson .pic01 {
  max-width: 94px;
  margin: 10px auto;
}
.howto01 .wrap .familymart {
  background: #fff;
  width: 31.8%;
  margin-bottom: 10px;
  padding: 25px 20px 5px;
}
.howto01 .wrap .familymart h3 {
  max-width: 168px;
  margin: 0 auto 24px;
}
.howto01 .wrap .familymart .pic01 {
  max-width: 107px;
  margin: 10px auto;
}
.howto01 .wrap .note {
  width: 100%;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
  font-size: 14px;
  margin-top: 0px;
}
.howto01 .wrap .last {
  background: #fff;
  width: 100%;
  padding: 20px;
  position: relative;
}
.howto01 .wrap .last .box {
  padding: 2px 20px;
}
.howto01 .wrap .last::after {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 7px);
  width: 15px;
  height: 15px;
  background: url(../images/ico_arrow.png) no-repeat;
  background-size: contain;
}
.howto01 .wrap .link {
  display: block;
  color: #fff;
  font-size: 12px;
  padding: 2px 0;
  text-align: center;
  background: #1d50a2;
}
.howto01 .wrap .link + .link {
  margin-top: 10px;
}
.howto01 .wrap p {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
}
.howto01 .wrap p span {
  color: #e60012;
}
.howto01 .wrap .box {
  border: 2px solid #1d50a2;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #1d50a2;
  text-align: center;
}
.howto01 .wrap ul li {
  margin-bottom: 25px;
  position: relative;
}
.howto01 .wrap ul li::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 7px);
  width: 15px;
  height: 15px;
  background: url(../images/ico_arrow.png) no-repeat;
  background-size: contain;
}

.howto02 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.howto02 .ttl {
  width: 50px;
  background: #39a2dc;
  margin-right: 2%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-weight: 700;
  line-height: 50px;
  padding-top: 20px;
  position: relative;
}
.howto02 .ttl::before {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/pic_triangle_04_02.png) center bottom no-repeat;
  background-size: contain;
  z-index: 5;
}
.howto02 .ttl::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/pic_triangle_03.png) center bottom no-repeat;
  background-size: contain;
  z-index: 10;
}
.howto02 .wrap {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.howto02 .wrap .div01 {
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
  padding: 25px 30px;
  position: relative;
}
.howto02 .wrap .div01::after {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 7px);
  width: 15px;
  height: 15px;
  background: url(../images/ico_arrow.png) no-repeat;
  background-size: contain;
}
.howto02 .wrap .div02 {
  width: 49%;
  background: #fff;
  padding: 25px 10px 25px 30px;
  position: relative;
}
.howto02 .wrap .div02::after {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 7px);
  width: 15px;
  height: 15px;
  background: url(../images/ico_arrow.png) no-repeat;
  background-size: contain;
}
.howto02 .wrap .div03 {
  width: 49%;
  background: #fff;
  padding: 25px 10px 25px 30px;
  position: relative;
}
.howto02 .wrap .div03::after {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 7px);
  width: 15px;
  height: 15px;
  background: url(../images/ico_arrow.png) no-repeat;
  background-size: contain;
}
.howto02 .wrap h4 {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 2px 10px;
  text-align: center;
  background: #1d50a2;
}
.howto02 .wrap h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1d50a2;
  margin-left: 1em;
  text-indent: -1em;
}
.howto02 .wrap h3 span {
  color: #e60012;
}
.howto02 .wrap p {
  font-size: 15px;
  font-weight: 700;
  padding-left: 1.2em;
}
.howto02 .wrap p span {
  color: #e60012;
}

.howto03 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.howto03 .ttl {
  width: 50px;
  background: #39a2dc;
  margin-right: 2%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-weight: 700;
  line-height: 50px;
  padding-top: 20px;
  position: relative;
}
.howto03 .ttl::before {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/pic_triangle_04_02.png) center bottom no-repeat;
  background-size: contain;
  z-index: 5;
}
.howto03 .ttl::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/pic_triangle_03.png) center bottom no-repeat;
  background-size: contain;
  z-index: 10;
}
.howto03 .div01 {
  flex: 1;
  width: 100%;
  background: #fff;
  padding: 25px 30px;
  position: relative;
}
.howto03 .div01::after {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 7px);
  width: 15px;
  height: 15px;
  background: url(../images/ico_arrow.png) no-repeat;
  background-size: contain;
}
.howto03 .div01 h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1d50a2;
  margin-left: 1em;
  text-indent: -1em;
}
.howto03 .div01 h3 span {
  color: #e60012;
}
.howto03 .div01 p {
  font-size: 15px;
  font-weight: 700;
  padding-left: 1.2em;
}
.howto03 .div01 p span {
  color: #e60012;
}

.flow_box {
  max-width: 524px;
  margin: 0 auto;
  border: 2px solid #fff;
  padding: 20px;
  color: #fff;
  text-align: center;
}
.flow_box h4 {
  font-weight: 700;
}

.flow_btn a {
  display: block;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  color: #004894;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  background: #fff;
  border-radius: 100px;
  padding: 10px 0;
  position: relative;
  transition: 0.3s ease-in-out;
}
.flow_btn a span {
  display: inline-block;
  background: #004894;
  padding: 2px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.flow_btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  border-right: 3px solid #004894;
  border-bottom: 3px solid #004894;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.flow_btn a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .flow {
    padding: 40px 0 0;
  }
  .flow_txt {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
  }
  .flow_step .num {
    width: 70px;
  }
  .flow_step .num em {
    font-size: 18px;
  }
  .flow_step .num::before {
    bottom: -20px;
  }
  .flow_step .num::after {
    bottom: -10px;
  }
  .flow_step .last::before {
    display: none;
  }
  .flow_step .last::after {
    display: none;
  }
  .flow_step .txt {
    padding: 20px;
  }
  .flow_step .txt h3 {
    font-size: 18px;
  }
  .flow_step .txt p {
    font-size: 14px;
  }
  .flow_step .txt ul {
    font-size: 14px;
  }
  .flow_step + .flow_step {
    margin-top: 10px;
  }
  .flow_step_complete {
    padding: 20px;
  }
  .flow_step_complete h3 {
    font-size: 18px;
  }
  .flow_step_complete p {
    font-size: 14px;
  }
  .flow_step_complete::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 70px;
    height: 10px;
  }
  .flow_step_complete::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 15px;
    width: 70px;
    background: url(../images/pic_triangle_01.png) center bottom no-repeat;
    background-size: contain;
    z-index: 10;
  }
  .flow_step_last {
    margin-bottom: 40px;
  }
  .howto {
    overflow-x: auto;
    margin-right: -4%;
  }
  .howto01 {
    position: relative;
    width: 800px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .howto01::after {
    content: "";
    position: absolute;
    right: -2%;
    top: 0;
    width: 2%;
    height: 10px;
  }
  .howto01 .ttl {
    width: 50px;
    background: #39a2dc;
    margin-right: 2%;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #fff;
    font-weight: 700;
    line-height: 50px;
    padding-top: 20px;
    position: relative;
  }
  .howto01 .ttl::before {
    content: "";
    position: absolute;
    bottom: -34px;
    left: 0;
    width: 100%;
    height: 15px;
    background: url(../images/pic_triangle_04_02.png) center bottom no-repeat;
    background-size: contain;
    z-index: 5;
  }
  .howto01 .ttl::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: url(../images/pic_triangle_03.png) center bottom no-repeat;
    background-size: contain;
    z-index: 10;
  }
  .howto01 .wrap {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .howto01 .wrap .seven {
    background: #fff;
    width: 31.8%;
    margin-bottom: 20px;
    padding: 25px 20px 5px;
  }
  .howto01 .wrap .seven h3 {
    max-width: 192px;
    margin: 0 auto 36px;
  }
  .howto01 .wrap .seven .pic01 {
    max-width: 108px;
    margin: 10px auto;
  }
  .howto01 .wrap .lawson {
    background: #fff;
    width: 31.8%;
    margin-bottom: 20px;
    padding: 25px 20px 5px;
  }
  .howto01 .wrap .lawson h3 {
    max-width: 217px;
    margin: 0 auto 5px;
  }
  .howto01 .wrap .lawson .pic01 {
    max-width: 94px;
    margin: 10px auto;
  }
  .howto01 .wrap .familymart {
    background: #fff;
    width: 31.8%;
    margin-bottom: 20px;
    padding: 25px 20px 5px;
  }
  .howto01 .wrap .familymart h3 {
    max-width: 168px;
    margin: 0 auto 24px;
  }
  .howto01 .wrap .familymart .pic01 {
    max-width: 107px;
    margin: 10px auto;
  }
  .howto01 .wrap .last {
    background: #fff;
    width: 100%;
    padding: 20px;
    position: relative;
  }
  .howto01 .wrap .last .box {
    padding: 2px 20px;
  }
  .howto01 .wrap .last::after {
    content: "";
    position: absolute;
    top: 10px;
    left: calc(50% - 7px);
    width: 15px;
    height: 15px;
    background: url(../images/ico_arrow.png) no-repeat;
    background-size: contain;
  }
  .howto01 .wrap .link {
    display: block;
    color: #fff;
    font-size: 12px;
    padding: 2px 10px;
    text-align: center;
    background: #1d50a2;
    word-break: break-all;
  }
  .howto01 .wrap .link + .link {
    margin-top: 10px;
  }
  .howto01 .wrap p {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
  }
  .howto01 .wrap p span {
    color: #e60012;
  }
  .howto01 .wrap .box {
    border: 2px solid #1d50a2;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #1d50a2;
    text-align: center;
  }
  .howto01 .wrap ul li {
    margin-bottom: 25px;
    position: relative;
  }
  .howto01 .wrap ul li::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: calc(50% - 7px);
    width: 15px;
    height: 15px;
    background: url(../images/ico_arrow.png) no-repeat;
    background-size: contain;
  }
  .howto02 {
    position: relative;
    width: 800px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .howto02::after {
    content: "";
    position: absolute;
    right: -2%;
    top: 0;
    width: 2%;
    height: 10px;
  }
  .howto02 .ttl {
    width: 50px;
    background: #39a2dc;
    margin-right: 2%;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #fff;
    font-weight: 700;
    line-height: 50px;
    padding-top: 20px;
    position: relative;
  }
  .howto02 .ttl::before {
    content: "";
    position: absolute;
    bottom: -34px;
    left: 0;
    width: 100%;
    height: 15px;
    background: url(../images/pic_triangle_04_02.png) center bottom no-repeat;
    background-size: contain;
    z-index: 5;
  }
  .howto02 .ttl::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: url(../images/pic_triangle_03.png) center bottom no-repeat;
    background-size: contain;
    z-index: 10;
  }
  .howto02 .wrap {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .howto02 .wrap .div01 {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
    padding: 25px 30px;
    position: relative;
  }
  .howto02 .wrap .div01::after {
    content: "";
    position: absolute;
    top: 10px;
    left: calc(50% - 7px);
    width: 15px;
    height: 15px;
    background: url(../images/ico_arrow.png) no-repeat;
    background-size: contain;
  }
  .howto02 .wrap .div02 {
    width: 49%;
    background: #fff;
    padding: 25px 10px 25px 30px;
    position: relative;
  }
  .howto02 .wrap .div02::after {
    content: "";
    position: absolute;
    top: 10px;
    left: calc(50% - 7px);
    width: 15px;
    height: 15px;
    background: url(../images/ico_arrow.png) no-repeat;
    background-size: contain;
  }
  .howto02 .wrap .div03 {
    width: 49%;
    background: #fff;
    padding: 25px 10px 25px 30px;
    position: relative;
  }
  .howto02 .wrap .div03::after {
    content: "";
    position: absolute;
    top: 10px;
    left: calc(50% - 7px);
    width: 15px;
    height: 15px;
    background: url(../images/ico_arrow.png) no-repeat;
    background-size: contain;
  }
  .howto02 .wrap h4 {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 2px 10px;
    text-align: center;
    background: #1d50a2;
  }
  .howto02 .wrap h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1d50a2;
    margin-left: 1em;
    text-indent: -1em;
  }
  .howto02 .wrap h3 span {
    color: #e60012;
  }
  .howto02 .wrap p {
    font-size: 15px;
    font-weight: 700;
    padding-left: 1.2em;
  }
  .howto02 .wrap p span {
    color: #e60012;
  }
  .howto03 {
    position: relative;
    width: 800px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  .howto03::after {
    content: "";
    position: absolute;
    right: -2%;
    top: 0;
    width: 2%;
    height: 10px;
  }
  .howto03 .ttl {
    width: 50px;
    background: #39a2dc;
    margin-right: 2%;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #fff;
    font-weight: 700;
    line-height: 50px;
    padding-top: 20px;
    position: relative;
  }
  .howto03 .ttl::before {
    content: "";
    position: absolute;
    bottom: -34px;
    left: 0;
    width: 100%;
    height: 15px;
    background: url(../images/pic_triangle_04_02.png) center bottom no-repeat;
    background-size: contain;
    z-index: 5;
  }
  .howto03 .ttl::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: url(../images/pic_triangle_03.png) center bottom no-repeat;
    background-size: contain;
    z-index: 10;
  }
  .howto03 .div01 {
    flex: 1;
    width: 100%;
    background: #fff;
    padding: 25px 30px;
    position: relative;
  }
  .howto03 .div01::after {
    content: "";
    position: absolute;
    top: 10px;
    left: calc(50% - 7px);
    width: 15px;
    height: 15px;
    background: url(../images/ico_arrow.png) no-repeat;
    background-size: contain;
  }
  .howto03 .div01 h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1d50a2;
    margin-left: 1em;
    text-indent: -1em;
  }
  .howto03 .div01 h3 span {
    color: #e60012;
  }
  .howto03 .div01 p {
    font-size: 15px;
    font-weight: 700;
    padding-left: 1.2em;
  }
  .howto03 .div01 p span {
    color: #e60012;
  }
  .flow_btn a {
    font-size: 18px;
  }
  .flow_btn a span {
    font-size: 14px;
  }
}
/*----------------------------------------------------- */
/*  careertasu           */
/*----------------------------------------------------- */
.careertasu {
  padding: 80px 0;
}

.careertasu_txt {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
  padding: 30px 60px;
  border-radius: 20px;
  background-color: #edefef;
}

.careertasu_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.careertasu_list li {
  border: 2px solid #4599a5;
  width: 19%;
}
.careertasu_list h3 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  height: 60px;
  line-height: 58px;
  background: #4599a5;
  position: relative;
}
.careertasu_list h3::before {
  content: "";
  position: absolute;
  right: -12.5%;
  top: 0;
  width: 12px;
  height: 100%;
  background: url(../images/pic_triangle_06.png) no-repeat;
  background-size: contain;
  z-index: 5;
}
.careertasu_list h3::after {
  content: "";
  position: absolute;
  right: -6.7%;
  top: 0;
  width: 12px;
  height: 100%;
  background: url(../images/pic_triangle_07.png) no-repeat;
  background-size: contain;
  z-index: 10;
}
.careertasu_list .last::before {
  display: none;
}
.careertasu_list .last::after {
  display: none;
}
.careertasu_list .wrap {
  padding: 0 5px 10px;
}
.careertasu_list h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  height: 65px;
  font-weight: 700;
  line-height: 1.4;
}
.careertasu_list h4 img {
  display: block;
  max-width: 120px;
  margin-top: 5px;
}
.careertasu_list p {
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
}

.careertasu_btn a {
  display: block;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  background: #004894;
  border-radius: 100px;
  padding: 10px 0;
  position: relative;
  transition: 0.3s ease-in-out;
}
.careertasu_btn a span {
  display: inline-block;
  background: #fff;
  padding: 2px 10px;
  color: #004894;
  font-weight: 700;
  font-size: 16px;
}
.careertasu_btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.careertasu_btn a:hover {
  opacity: 0.7;
}

.bnr_list {
  max-width: 600px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
}
.bnr_list li {
  width: 48%;
}
.bnr_list a {
  transition: 0.3s ease-in-out;
}
.bnr_list a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .careertasu {
    padding: 40px 0;
  }
  .careertasu_txt {
    padding: 20px;
    border-radius: 10px;
    margin: 0 auto 40px;
  }
  .careertasu_list {
    margin-bottom: 40px;
  }
  .careertasu_list li {
    border: 2px solid #4599a5;
    width: 19%;
  }
  .careertasu_list h3 {
    font-size: 12px;
    height: 40px;
    line-height: 38px;
  }
  .careertasu_list h3::before {
    content: "";
    position: absolute;
    right: -18px;
    top: 0;
    width: 12px;
    height: 100%;
    background: url(../images/pic_triangle_06.png) no-repeat;
    background-size: contain;
    z-index: 5;
  }
  .careertasu_list h3::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 0;
    width: 12px;
    height: 100%;
    background: url(../images/pic_triangle_07.png) no-repeat;
    background-size: contain;
    z-index: 10;
  }
  .careertasu_list .wrap {
    padding: 0 3% 10px;
  }
  .careertasu_list h4 {
    font-size: 12px;
    height: 55px;
  }
  .careertasu_list h4 img {
    max-width: 100%;
  }
  .careertasu_list p {
    font-size: 10px;
  }
  .careertasu_btn a {
    font-size: 18px;
  }
  .careertasu_btn a span {
    font-size: 14px;
  }
  .bnr_list {
    margin: 40px auto 0;
  }
}/*# sourceMappingURL=style.css.map */