/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  /* font-size: 1em; */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

input, button, textarea, select, option {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  transition: 0.3s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

/* a:hover,
a:hover img{
    opacity: 0.80;
    filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
} */
img {
  max-width: 100%;
}

button {
  font-family: inherit;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table p {
  line-height: 1.5;
}

#__next {
  height: 100%;
}

::placeholder {
  color: #9b9b9b;
  opacity: 1;
  /* font-size: 1.4rem; */
}

:-ms-input-placeholder {
  color: #9b9b9b;
  /* font-size: 1.4rem; */
}

::-webkit-input-placeholder {
  color: #9b9b9b;
  /* font-size: 1.4rem; */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-calendar-picker-indicator {
  display: none;
}

button:disabled,
input:disabled,
select:disabled {
  pointer-events: none;
}

* {
  margin: 0;
  padding: 0;
}

a:hover {
  text-decoration: none;
  color: unset;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  color: #212121;
  font-weight: 400;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, p, a, span, small {
  color: inherit;
  background: none;
  font-family: "Noto Sans JP", sans-serif;
}

button {
  box-sizing: border-box;
}

/*=============================================
 Header
==============================================*/
.c-header {
  border-bottom: 1.75px solid #0059AF;
  background-color: #fff;
}
.c-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .c-header__inner {
    padding: 12px 20px;
  }
}
.c-header__main {
  display: flex;
  align-content: center;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .c-header__main {
    flex-direction: row-reverse;
  }
}

.hamburger {
  display: flex;
  align-items: center;
}
.hamburger__head {
  display: none;
}
@media (max-width: 1024px) {
  .hamburger__head {
    display: block;
    margin-left: 30px;
    margin-right: 13px;
    position: relative;
    z-index: 999;
  }
}
.hamburger__head .nav-icon {
  width: 18px;
  height: 12px;
  position: relative;
  margin: 0px auto;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  background-color: #fff;
}
.hamburger__head .nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 18px;
  background: #0059AF;
  opacity: 1;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
.hamburger__head .nav-icon span:nth-child(1) {
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger__head .nav-icon span:nth-child(2) {
  top: 5px;
}
.hamburger__head .nav-icon span:nth-child(3) {
  top: 5px;
}
.hamburger__head .nav-icon span:nth-child(4) {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger__head .nav-icon.is-opened span:nth-child(1) {
  top: 5px;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger__head .nav-icon.is-opened span:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger__head .nav-icon.is-opened span:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburger__head .nav-icon.is-opened span:nth-child(4) {
  top: 5px;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .hamburger__body {
    position: fixed;
    z-index: 900;
    top: 60px;
    right: 20px;
    transition: top .3s ease-in-out;
    border-radius: 4px;
    width: 200px;
    background-color: #fff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px rgba(0, 0, 0, 0.15);
    height: 0px;
    overflow: hidden;
    transition: all .3s;
  }
  .hamburger__body.is-opened {
    height: auto;
    padding: 8px 0;
  }
  .hamburger__body.is-opened .c-gnav {
    display: block;
  }
}

.c-gnav {
  display: inline-flex;
  align-items: center;
  background: #fff;
}
.c-gnav a {
  font-size: 16px;
  font-weight: 500;
  color: #0059AF;
  position: relative;
}
@media (max-width: 1024px) {
  .c-gnav a {
    display: block;
    padding: 12px 16px;
    text-align: left;
  }
  .c-gnav a:hover:after {
    display: none;
  }
}
.c-gnav a + a {
  margin-left: 48px;
}
@media (max-width: 1024px) {
  .c-gnav a + a {
    margin-left: 0;
  }
}
.c-gnav a:after {
  content: '';
  display: block;
  width: 0%;
  border-bottom: 2px solid #0059AF;
  position: absolute;
  left: 0;
  transition: width .3s;
}
.c-gnav a:hover:after {
  width: 100%;
}

/*=============================================
 Footer
==============================================*/
.c-footer__top {
  padding: 40px 31px 48px;
  background-color: #0059AF;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.c-footer__top .footer_box {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-footer__top .footer_box {
    flex-direction: column;
  }
}
.c-footer__top .footer_box p {
  margin-top: 16px;
}
.c-footer__top .footer_box a {
  transition: all .6s;
}
.c-footer__top .footer_box a:hover img {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .c-footer__top .footer_box a:hover img {
    opacity: 1;
  }
}
.c-footer__logo {
  padding: 28px 20px;
  text-align: center;
}
.c-footer__link {
  padding: 22px 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .c-footer__link {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.c-footer__link a {
  font-size: 14px;
  color: #0059AF;
  transition: all .3s;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-footer__link a {
    margin-bottom: 20px;
  }
}
.c-footer__link a + a {
  margin-left: 32px;
}
@media (max-width: 767px) {
  .c-footer__link a + a {
    margin-left: 0;
  }
}
.c-footer__link a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .c-footer__link a:hover {
    text-decoration: none;
  }
}
.c-footer .copyright {
  padding: 23px 20px;
  font-size: 12px;
  color: #0059AF;
  text-align: center;
  font-weight: 500;
}

/*=============================================
 Slider
==============================================*/
.carousel {
  height: 555px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .carousel {
    height: 392px;
  }
}
.carousel .uk-slideshow-items {
  height: 555px;
}
@media (max-width: 1024px) {
  .carousel .uk-slideshow-items {
    height: 392px;
  }
}
.carousel__item {
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0C2F78;
}
@media (max-width: 1024px) {
  .carousel__item {
    height: 392px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .carousel__item {
    background-size: auto 100%;
  }
}
.carousel__item--1 {
  background-image: url("images/slide/img_section_hero_slide_1.png");
}
.carousel__item--2 {
  background-image: url("images/slide/img_section_hero_slide_2.png");
}
.carousel__item--3 {
  background-image: url("images/slide/img_section_hero_slide_3.png");
}
.carousel__item__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 555px;
  padding-left: 67px;
  padding-right: 20px;
  color: #fff;
}
@media (max-width: 1024px) {
  .carousel__item__inner {
    height: 392px;
    padding-left: 46px;
  }
}
@media (max-width: 767px) {
  .carousel__item__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.carousel__item .txt-en {
  font-size: 24px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .carousel__item .txt-en {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .carousel__item .txt-en {
    font-size: 12px;
  }
}
.carousel__item h2 {
  font-size: 64px;
  font-weight: bold;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.7);
  margin-top: 11px;
  margin-bottom: 11px;
  color: #fff;
}
@media (max-width: 1024px) {
  .carousel__item h2 {
    font-size: 32px;
    margin-top: 8px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .carousel__item h2 {
    font-size: 24px;
    margin-top: 13px;
    margin-bottom: 13px;
  }
}
.carousel__item .txt-jp--small {
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
@media (max-width: 1024px) {
  .carousel__item .txt-jp--small {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .carousel__item .txt-jp--small {
    font-size: 16px;
  }
}
.carousel__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .carousel__progress {
    bottom: 28px;
  }
}
.carousel__progress p {
  width: 40px;
  height: 40px;
  background-image: url("images/ic_play.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  text-indent: 100px;
  overflow: hidden;
  margin-left: 24px;
}
.carousel__progress p.is-playing {
  background-image: url("images/ic_pause.svg");
}

.uk-slideshow-nav li a {
  width: 16px;
  height: 16px;
  border-color: #757575;
  background-color: #757575;
}
.uk-slideshow-nav li.uk-active a {
  border-color: #fff;
  background-color: #fff;
}

.uk-dotnav > * {
  padding-left: 24px;
}

/*=============================================
 Section 1
==============================================*/
.section1__inner {
  display: flex;
  width: 100%;
  background: #0C2F78;
  background: linear-gradient(to right, #0C2F78, #1657DE);
}
@media (max-width: 1024px) {
  .section1__inner {
    display: block;
  }
}
.section1 .left {
  background-image: url("images/bg_expo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  width: 59.6%;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  .section1 .left {
    flex: 1;
  }
}
@media (max-width: 1024px) {
  .section1 .left {
    width: 100%;
    padding: 36px 20px 24px;
  }
}
@media (max-width: 767px) {
  .section1 .left {
    width: 100%;
    padding: 24px 20px 36px;
  }
}
.section1 .left figure {
  display: flex;
  align-items: center;
  width: 93%;
  max-width: 840px;
  margin-left: auto;
  text-align: center;
}
@media (max-width: 1024px) {
  .section1 .left figure {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .section1 .left figure {
    flex-direction: column;
  }
}
.section1 .left .expo-title {
  flex: 1.4;
}
@media (max-width: 1024px) {
  .section1 .left .expo-title {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .section1 .left .expo-title {
    padding-bottom: 20px;
  }
  .section1 .left .expo-title img {
    max-width: 315px;
  }
}
.section1 .left .expo-map {
  flex: 1;
  padding: 25px;
}
@media (max-width: 1024px) {
  .section1 .left .expo-map {
    width: 100%;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .section1 .left .expo-map {
    padding: 0;
  }
  .section1 .left .expo-map img {
    max-width: 315px;
  }
}
.section1 .right {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 1024px) {
  .section1 .right {
    padding: 28px 20px 32px;
  }
}
@media (max-width: 767px) {
  .section1 .right {
    padding: 25px 20px;
  }
}
.section1 .right__inner {
  width: calc(461px + 15%);
  padding-left: 15%;
}
@media (max-width: 1300px) {
  .section1 .right__inner {
    width: 410px;
    padding-left: 25px;
  }
}
@media (max-width: 1024px) {
  .section1 .right__inner {
    padding-left: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 461px;
  }
}
@media (max-width: 767px) {
  .section1 .right__inner {
    max-width: 304px;
  }
}
.section1 .right h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 1300px) {
  .section1 .right h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
@media (max-width: 1024px) {
  .section1 .right h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .section1 .right h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.section1 .right p.line1 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1;
}
@media (max-width: 1300px) {
  .section1 .right p.line1 {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .section1 .right p.line1 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .section1 .right p.line1 {
    font-size: 13px;
    padding-left: 10px;
  }
}
@media (max-width: 345px) {
  .section1 .right p.line1 {
    padding-left: 0;
  }
}
.section1 .right p.line2 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media (max-width: 1300px) {
  .section1 .right p.line2 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .section1 .right p.line2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .section1 .right p.line2 {
    font-size: 18px;
    margin-bottom: 8px;
    padding-left: 10px;
  }
}
@media (max-width: 345px) {
  .section1 .right p.line2 {
    padding-left: 0;
  }
}
.section1 .right p.line2 small {
  padding-left: 12px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1300px) {
  .section1 .right p.line2 small {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .section1 .right p.line2 small {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .section1 .right p.line2 small {
    font-size: 13px;
    padding-top: 20px;
    padding-left: 0;
  }
}
.section1 .right .btn {
  max-width: 344px;
  height: 56px;
}
@media (max-width: 1340px) {
  .section1 .right .btn {
    max-width: 320px;
  }
}
.section1 .right .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding-left: 10px;
  padding-right: 10px;
  color: #0C2F78;
  font-size: 22px;
  font-weight: bold;
  border: 1.75px solid #0059AF;
  border-radius: 8px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .section1 .right .btn a {
    max-width: 300px;
    height: 48px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .section1 .right .btn a {
    font-size: 20px;
  }
}
.section1 .right .btn a::before {
  content: "";
  display: flex;
  width: 50%;
  height: 100%;
  transform: skewX(-45deg);
  position: absolute;
  left: 0;
  background-color: rgba(0, 89, 175, 0.16);
  left: -60%;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .section1 .right .btn a::before {
    display: none;
  }
}
.section1 .right .btn a:hover:before {
  left: 110%;
}

/*=============================================
 Section 2
==============================================*/
.section2 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  max-height: 702px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 1237px) {
  .section2 {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .section2 {
    flex-direction: column-reverse;
    max-height: initial;
    gap: 40px;
    padding: 64px 50px 35px;
  }
}
@media (max-width: 767px) {
  .section2 {
    gap: 16px;
    padding: 40px 0px 0px;
  }
}
.section2 figure {
  width: 64%;
  max-width: 921px;
  margin-left: -40px;
}
@media (max-width: 1237px) {
  .section2 figure {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .section2 figure {
    max-width: 768px;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .section2 figure {
    max-width: 375px;
  }
}
.section2__txt {
  margin-left: -30px;
  text-align: center;
}
@media (max-width: 1024px) {
  .section2__txt {
    margin-left: 0;
  }
}
.section2__txt h2 {
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
  color: #0C2F78;
  padding-bottom: 22px;
  background: url("images/bg_line.png") no-repeat left bottom;
}
@media (max-width: 767px) {
  .section2__txt h2 {
    line-height: 1.5;
    text-align: left;
  }
}
.section2__txt h2 span {
  font-size: 20px;
  font-weight: 900;
  color: #252525;
}
.section2__txt h3 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.5;
  color: #252525;
}
@media (max-width: 767px) {
  .section2__txt h3 {
    font-size: 24px;
  }
}

/*=============================================
 Section 3
==============================================*/
.section3 .issues {
  padding: 32px 20px 40px;
  background: #EAEAEA;
}
@media (max-width: 1024px) {
  .section3 .issues {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .section3 .issues {
    padding: 32px 20px 64px;
  }
}
.section3 .issues h2 {
  font-size: 24px;
  font-weight: bold;
  color: #212121;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 1024px) {
  .section3 .issues h2 {
    margin-bottom: 15px;
  }
}
.section3 .issues__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .section3 .issues__list {
    gap: 24px;
    flex-direction: column;
  }
}
.section3 .issues__item {
  text-align: center;
}
.section3 .issues__item h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 1024px) {
  .section3 .issues__item h3 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .section3 .issues__item img {
    width: 140px;
  }
}
.section3 .solutions {
  padding: 40px 16px 40px;
}
@media (max-width: 1024px) {
  .section3 .solutions {
    padding: 40px 16px 96px;
  }
}
@media (max-width: 767px) {
  .section3 .solutions {
    padding: 40px 16px 40px;
  }
}
.section3 .solutions h2 {
  font-size: 32px;
  font-weight: bold;
  color: #0C2F78;
  text-align: center;
  margin-bottom: 62px;
}
@media (max-width: 1024px) {
  .section3 .solutions h2 {
    font-size: 24px;
    margin-bottom: 70px;
  }
}
.section3 .solutions__list {
  display: flex;
  justify-content: center;
  gap: 40px 17px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .section3 .solutions__list {
    flex-direction: column;
    align-items: center;
    gap: 54px;
  }
}
.section3 .solutions__item {
  position: relative;
}
@media (max-width: 767px) {
  .section3 .solutions__item {
    width: 343px;
    max-width: 100%;
  }
}
.section3 .solutions__item img {
  position: absolute;
  top: -28px;
  left: 20px;
}
.section3 .solutions__item h3 {
  border-radius: 2px;
  border: 1.5px solid #0059AF;
  background-color: #fff;
  width: 396px;
  height: 169px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 22px;
  line-height: 1.5;
  color: #0C2F78;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section3 .solutions__item h3 {
    flex-basis: 1;
    font-size: 20px;
    width: 100%;
  }
}
@media (max-width: 345px) {
  .section3 .solutions__item h3 {
    font-size: 18px;
  }
}
.section3 .solutions__item h3 span + span {
  margin-top: 12px;
}

/*=============================================
 Section 4
==============================================*/
.section4 {
  padding: 24px 10px 40px;
  /* PC
  -----------------------------*/
  /* SP
  -----------------------------*/
}
@media (max-width: 1024px) {
  .section4 {
    padding: 24px 10px 30px;
  }
}
@media (max-width: 767px) {
  .section4 {
    padding: 40px 20px 30px;
  }
}
.section4 h2 {
  font-size: 32px;
  font-weight: bold;
  color: #0C2F78;
  margin-bottom: 22px;
  text-align: center;
}
@media (max-width: 1024px) {
  .section4 h2 {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .section4 h2 {
    margin-bottom: 40px;
  }
}
.section4 .flow-diagram {
  max-width: 1310px;
  margin: 0 auto;
}
@media (max-width: 1340px) {
  .section4 .flow-diagram {
    max-width: 1000px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow-diagram {
    max-width: 713px;
  }
}
.section4 .step-list .step-item {
  display: inline-block;
  padding: 6px 0;
  text-align: center;
  background-color: #0059AF;
  position: relative;
  margin-left: 0.20%;
}
.section4 .step-list .step-item:nth-child(1) {
  width: 204px;
}
.section4 .step-list .step-item:nth-child(2) {
  width: 331px;
}
.section4 .step-list .step-item:nth-child(3) {
  width: 367px;
}
.section4 .step-list .step-item:nth-child(4) {
  width: 134px;
}
.section4 .step-list .step-item:nth-child(5) {
  width: 238px;
}
@media (max-width: 1340px) {
  .section4 .step-list .step-item {
    height: 40px;
  }
  .section4 .step-list .step-item:nth-child(1) {
    width: 155px;
  }
  .section4 .step-list .step-item:nth-child(2) {
    width: 253px;
  }
  .section4 .step-list .step-item:nth-child(3) {
    width: 280px;
  }
  .section4 .step-list .step-item:nth-child(4) {
    width: 102px;
  }
  .section4 .step-list .step-item:nth-child(5) {
    width: 180px;
  }
}
@media (max-width: 1024px) {
  .section4 .step-list .step-item {
    height: auto;
    padding: 7px 0;
  }
  .section4 .step-list .step-item:nth-child(1) {
    width: 131px;
  }
  .section4 .step-list .step-item:nth-child(2) {
    width: 198px;
  }
  .section4 .step-list .step-item:nth-child(3) {
    width: 117px;
  }
  .section4 .step-list .step-item:nth-child(4) {
    width: 88px;
  }
  .section4 .step-list .step-item:nth-child(5) {
    width: 149px;
  }
}
.section4 .step-list .step-item:before {
  width: 0;
  height: 0;
  border-top: 24px inset transparent;
  border-bottom: 24px inset transparent;
  border-left: 18px solid #FFFFFF;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}
@media (max-width: 1340px) {
  .section4 .step-list .step-item:before {
    border-top: 20px inset transparent;
    border-bottom: 20px inset transparent;
  }
}
@media (max-width: 1024px) {
  .section4 .step-list .step-item:before {
    border-top: 19px inset transparent;
    border-bottom: 19px inset transparent;
  }
}
.section4 .step-list .step-item:after {
  width: 0;
  height: 0;
  border-top: 24px inset transparent;
  border-bottom: 24px inset transparent;
  border-left: 18px solid #0059AF;
  position: absolute;
  content: "";
  top: 0;
  right: -18px;
  z-index: 2;
}
@media (max-width: 1340px) {
  .section4 .step-list .step-item:after {
    border-top: 20px inset transparent;
    border-bottom: 20px inset transparent;
  }
}
@media (max-width: 1024px) {
  .section4 .step-list .step-item:after {
    border-top: 19px inset transparent;
    border-bottom: 19px inset transparent;
    right: -17px;
  }
}
.section4 .step-list .step-item:first-child {
  margin-left: 0;
}
.section4 .step-list .step-item:first-child:before {
  border: none;
}
.section4 .step-list .step-item span {
  margin-left: 18px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1340px) {
  .section4 .step-list .step-item span {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .section4 .step-list .step-item span {
    font-size: 16px;
  }
}
.section4 .flow {
  display: grid;
  column-gap: 5px;
  grid-template-columns: 368px 482px 453px;
  margin-top: 24px;
}
@media (max-width: 1340px) {
  .section4 .flow {
    column-gap: 4px;
    grid-template-columns: 281px 367px 346px;
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow {
    column-gap: 4px;
    grid-template-columns: 226px 247px 235px;
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .section4 .flow.pc {
    display: none;
  }
}
.section4 .flow.sp {
  display: none;
}
@media (max-width: 767px) {
  .section4 .flow.sp {
    display: block;
    margin-bottom: 16px;
  }
}
.section4 .flow__box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 5px 16px;
  background-color: rgba(12, 47, 120, 0.08);
}
@media (max-width: 1340px) {
  .section4 .flow__box {
    padding: 15px 5px 12px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__box {
    justify-content: stretch;
  }
}
@media (max-width: 767px) {
  .section4 .flow__box {
    padding: 12px 10px 16px;
    margin-bottom: 16px;
    max-width: 335px;
    margin: 0 auto;
  }
}
.section4 .flow__box h3 {
  font-size: 24px;
  font-weight: bold;
  color: #0C2F78;
  padding-left: 15px;
}
@media (max-width: 1340px) {
  .section4 .flow__box h3 {
    font-size: 18px;
    padding-left: 10px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__box h3 {
    font-size: 16px;
  }
}
.section4 .flow__box h3 span {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
@media (max-width: 1340px) {
  .section4 .flow__box h3 span {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__box h3 span {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    margin-left: -7px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__box h3 span {
    font-size: 14px;
  }
}
.section4 .flow__box figure {
  text-align: center;
}
.section4 .flow__box .caption {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 1340px) {
  .section4 .flow__box .caption {
    font-size: 16px;
    height: 36px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__box .caption {
    font-size: 12px;
    height: 28px;
    font-weight: 400;
  }
}
@media (max-width: 767px) {
  .section4 .flow__box .caption {
    font-size: 14px;
    height: 34px;
  }
}
.section4 .flow__box .caption--blue {
  height: auto;
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #0C2F78;
}
@media (max-width: 1340px) {
  .section4 .flow__box .caption--blue {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__box .caption--blue {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__box .caption--blue {
    font-size: 14px;
  }
}
.section4 .flow__box .caption--oneline {
  height: auto;
  display: block;
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 1024px) {
  .section4 .flow__box .caption--oneline {
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__box .caption--oneline {
    margin-top: 8px;
  }
}
.section4 .flow__group {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .section4 .flow__group {
    min-height: 138px;
  }
}
.section4 .flow__group--1 {
  gap: 4px;
}
@media (max-width: 767px) {
  .section4 .flow__group--1 {
    gap: 14px;
    margin-top: -25px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__group--2 {
    margin-top: -17px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__group--2 {
    margin-top: -40px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__group--3 {
    margin-top: -12px;
  }
}
@media (max-width: 345px) {
  .section4 .flow__group--3 {
    margin-top: 0px;
  }
}
.section4 .flow__item--1 .caption {
  margin-right: -25px;
}
@media (max-width: 1024px) {
  .section4 .flow__item--1 .caption {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .section4 .flow__item--1 .caption {
    margin-right: 0;
  }
}
@media (max-width: 345px) {
  .section4 .flow__item--1 .caption {
    margin-right: -10px;
  }
}
.section4 .flow__item--1 img {
  position: relative;
  top: -13px;
}
@media (max-width: 1340px) {
  .section4 .flow__item--1 img {
    width: 125px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__item--1 img {
    width: 102px;
    position: relative;
    top: -15px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__item--1 img {
    width: 148px;
    max-width: 100%;
  }
}
@media (max-width: 1340px) {
  .section4 .flow__item--2 img {
    width: 126px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__item--2 img {
    width: 89px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__item--2 img {
    width: 115px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .section4 .flow__item--2 .caption br {
    display: none;
  }
}
@media (max-width: 370px) {
  .section4 .flow__item--2 .caption br {
    display: block;
  }
}
@media (max-width: 1340px) {
  .section4 .flow__item--3 img {
    width: 180px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__item--3 img {
    width: 128px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__item--3 img {
    width: 148px;
    max-width: 100%;
  }
}
.section4 .flow__item--4 figure {
  margin-top: -30px;
}
@media (max-width: 1024px) {
  .section4 .flow__item--4 figure {
    margin-top: 0;
  }
}
@media (max-width: 1340px) {
  .section4 .flow__item--4 img {
    width: 133px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__item--4 img {
    width: 84px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__item--4 img {
    width: 102px;
    max-width: 100%;
  }
}
.section4 .flow__item--5 img {
  position: relative;
  top: -20px;
}
@media (max-width: 1340px) {
  .section4 .flow__item--5 img {
    width: 144px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__item--5 img {
    width: 102px;
    position: relative;
    top: -15px;
    left: 20px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__item--5 img {
    width: 153px;
    max-width: 100%;
    left: 0;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__item--5 .caption {
    margin-right: -40px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__item--5 .caption {
    margin-right: 0;
  }
}
@media (max-width: 1340px) {
  .section4 .flow__item--6 img {
    width: 128px;
  }
}
@media (max-width: 1024px) {
  .section4 .flow__item--6 img {
    width: 89px;
  }
}
@media (max-width: 767px) {
  .section4 .flow__item--6 img {
    width: 115px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .section4 .flow__item--6 .caption br {
    display: none;
  }
}
@media (max-width: 370px) {
  .section4 .flow__item--6 .caption br {
    display: block;
  }
}
.section4 .label {
  display: flex;
  margin-bottom: 4px;
  width: 336px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section4 .label p {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding: 5px 10px;
  background-color: #0059AF;
  flex-basis: 100%;
}
.section4 .label--2 p:nth-child(1) {
  flex-basis: 50%;
}
.section4 .label--2 p:nth-child(2) {
  margin-left: 4px;
  flex-basis: 50%;
}
.section4 .label--3 p:nth-child(1) {
  flex-basis: 35%;
}
.section4 .label--3 p:nth-child(2) {
  margin-left: 4px;
  flex-basis: 23%;
}
.section4 .label--3 p:nth-child(3) {
  margin-left: 4px;
  flex-basis: 42%;
}

/*=============================================
 Section 5
==============================================*/
.w192 {
  width: 192px;
}

.w252 {
  width: 252px;
}

.w232 {
  width: 232px;
}

.w234 {
  width: 234px;
}

.w250 {
  width: 250px;
}

.w193 {
  width: 193px;
}

.w240 {
  width: 240px;
}

.w300 {
  width: 300px;
}

.w322 {
  width: 322px;
}

.section5 {
  padding-top: 43px;
}
@media (max-width: 1024px) {
  .section5 {
    padding-top: 28px;
  }
}
.section5__inner {
  max-width: 1340px;
  margin: 0 auto;
}
.section5 h2 {
  padding-bottom: 48px;
  line-height: 1.2;
  font-size: 32px;
  color: #0C2F78;
  text-align: center;
}
@media (max-width: 767px) {
  .section5 h2 {
    padding-bottom: 40px;
  }
}
.section5 .block {
  min-height: 412px;
  margin-bottom: 40px;
  padding: 56px 42px 44px 40px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-right: calc(42px + 374px + 20px);
}
@media (max-width: 1024px) {
  .section5 .block {
    margin-bottom: 20px;
    padding: 40px 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .section5 .block {
    padding: 32px 20px 40px;
    margin-bottom: 16px;
  }
}
.section5 .block:nth-child(2) {
  background-image: url("images/section5/bg_block_001.jpg");
}
@media (max-width: 1024px) {
  .section5 .block:nth-child(2) {
    background-image: url("images/section5/bg_block_001_ipad.jpg");
  }
}
@media (max-width: 767px) {
  .section5 .block:nth-child(2) {
    background-image: url("images/section5/bg_block_001_sp.jpg");
  }
}
.section5 .block:nth-child(3) {
  background-image: url("images/section5/bg_block_002.jpg");
}
@media (max-width: 1024px) {
  .section5 .block:nth-child(3) {
    background-image: url("images/section5/bg_block_002_ipad.jpg");
  }
}
@media (max-width: 767px) {
  .section5 .block:nth-child(3) {
    background-image: url("images/section5/bg_block_002_sp.jpg");
  }
}
.section5 .block .thumb {
  width: 100%;
  max-width: 374px;
  padding: 16px 12px 24px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 2px;
  text-align: center;
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .section5 .block .thumb {
    max-width: 372px;
    position: static;
    transform: none;
    margin: 0 auto 24px;
    padding: 16px 32px 24px;
  }
}
@media (max-width: 767px) {
  .section5 .block .thumb {
    max-width: 335px;
    margin: 0 auto 18px;
    padding: 16px 14px 20px;
  }
}
.section5 .block .thumb figure img {
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .section5 .block .thumb figure img {
    width: 100%;
    max-width: 313px;
  }
}
.section5 .block .para + .para {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .section5 .block .para + .para {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .section5 .block .para + .para {
    margin-top: 16px;
  }
}
.section5 .block .para h3 {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
}
@media (max-width: 1245px) {
  .section5 .block .para h3 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .section5 .block .para h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .section5 .block .para h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }
}
@media (max-width: 1024px) {
  .section5 .block .para ul {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    max-width: 432px;
  }
}
@media (max-width: 767px) {
  .section5 .block .para ul {
    max-width: 335px;
    margin-bottom: 18px;
  }
}
@media (max-width: 1024px) {
  .section5 .block .para ul.ipad--right li {
    margin-right: -24px;
  }
}
@media (max-width: 767px) {
  .section5 .block .para ul.ipad--right li {
    margin-right: 0;
  }
}
.section5 .block .para ul li {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  text-align: left;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  padding-left: 40px;
  background: url("images/ic_checked.svg") no-repeat left top 5px;
  line-height: 34px;
  padding-bottom: 2px;
}
@media (max-width: 1245px) {
  .section5 .block .para ul li {
    font-size: 20px;
  }
}
@media (max-width: 1160px) {
  .section5 .block .para ul li {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .section5 .block .para ul li {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .section5 .block .para ul li {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 345px) {
  .section5 .block .para ul li {
    font-size: 18px;
  }
}
.section5 .block .para ul li + li {
  margin-top: 14px;
}
@media (max-width: 1024px) {
  .section5 .block .para ul li + li {
    margin-top: 8px;
  }
}
@media (max-width: 1024px) {
  .section5 .block .para ul li {
    padding-left: 48px;
  }
}
.section5 .block .para ul li .break1060 {
  display: none;
}
@media (max-width: 1060px) {
  .section5 .block .para ul li .break1060 {
    display: block;
  }
}
@media (max-width: 767px) {
  .section5 .block .para ul li .break1060 {
    display: none;
  }
}
.section5 .block .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .section5 .block .tags {
    flex-direction: column;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .section5 .block .tags {
    margin-top: 16px;
  }
}
.section5 .block .tags p {
  font-size: 20px;
  font-weight: bold;
  color: #0059AF;
  line-height: 1.2;
  border-radius: 2px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 64px;
  text-align: center;
}
@media (max-width: 1245px) {
  .section5 .block .tags p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .section5 .block .tags p {
    width: 100%;
    max-width: 372px;
    margin: 0 auto;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .section5 .block .tags p {
    max-width: 335px;
  }
}
@media (max-width: 350px) {
  .section5 .block .tags p {
    font-size: 16px;
  }
}
.section5 .block .tags p span {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  margin-top: -15px;
}
@media (max-width: 1024px) {
  .section5 .block .tags p.w322 {
    width: 100%;
  }
}
.section5 .block .cmt-box + .btn-link {
  margin-top: 12px;
}

.cmt-box {
  max-width: 308px;
  margin: 0 auto;
  border: 1px solid #0C2F78;
  border-radius: 2px;
  background-color: #fff;
  color: #0C2F78;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1160px) {
  .cmt-box {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .cmt-box {
    width: 100%;
    max-width: 313px;
    font-size: 20px;
  }
}
@media (max-width: 345px) {
  .cmt-box {
    font-size: 18px;
  }
}
.cmt-box--2line {
  height: 77px;
}

.btn-link {
  max-width: 308px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .btn-link {
    width: 100%;
    max-width: 313px;
  }
}
.btn-link a {
  border: 2px solid #0C2F78;
  border-radius: 8px;
  background-color: #0C2F78;
  color: #fff;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  transition: all .6s;
}
@media (max-width: 1160px) {
  .btn-link a {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .btn-link a {
    font-size: 20px;
  }
}
@media (max-width: 345px) {
  .btn-link a {
    font-size: 18px;
  }
}
.btn-link a:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .btn-link a:hover {
    opacity: 1;
  }
}
.btn-link a img {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .btn-link a img {
    margin-left: 8px;
  }
}

/*=============================================
 Section 6
==============================================*/
.section6 {
  padding-top: 20px;
  padding-left: 28px;
  padding-right: 28px;
}
.section6 h2 {
  margin-bottom: 25px;
  font-size: 32px;
  color: #0059AF;
  text-align: center;
}
@media (max-width: 1024px) {
  .section6 h2 {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .section6 h2 {
    margin-bottom: 20px;
  }
}
.section6 .note {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 58px;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .section6 .note {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .section6 .note {
    line-height: 1.5;
  }
}
@media (max-width: 360px) {
  .section6 .note {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.section6__contact {
  padding: 64px 0 40px;
}
@media (max-width: 1024px) {
  .section6__contact {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .section6__contact {
    padding: 40px 0 72px;
  }
  .section6__contact .btn-contact {
    max-width: 360px;
    margin: 0 auto;
  }
}
.section6 .box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1024px) {
  .section6 .box {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .section6 .box {
    flex-direction: column;
  }
}
.section6 .box__item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 2px;
  width: 100%;
  max-width: 310px;
  height: 214px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section6 .box__item:nth-child(1) {
  background-image: url("images/section6/img_001.png");
}
.section6 .box__item:nth-child(2) {
  background-image: url("images/section6/img_002.png");
}
.section6 .box__item:nth-child(3) {
  background-image: url("images/section6/img_003.png");
}
.section6 .box__item:nth-child(4) {
  background-image: url("images/section6/img_004.png");
}
.section6 .box__item h3 {
  margin-bottom: 18px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.13;
}
@media (max-width: 1024px) {
  .section6 .box__item h3 {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .section6 .box__item h3 {
    margin-bottom: 16px;
    font-size: 24px;
  }
}
.section6 .box__item p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .section6 .box__item p {
    font-size: 16px;
  }
}

.btn-contact {
  height: 64px;
}
@media (max-width: 767px) {
  .btn-contact {
    height: 62px;
  }
}
.btn-contact a {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  max-width: 502px;
  height: 64px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  background: #0059AF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.btn-contact a span {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 767px) {
  .btn-contact a span {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .btn-contact a {
    max-width: 420px;
    height: 62px;
  }
}
@media (max-width: 767px) {
  .btn-contact a {
    max-width: 310px;
  }
}
.btn-contact a:before {
  content: '';
  display: flex;
  width: 50%;
  height: 100%;
  transform: skewX(-45deg);
  position: absolute;
  left: 0;
  background-color: rgba(255, 255, 255, 0.16);
  left: -60%;
  transition: all .3s;
}
.btn-contact a:hover:before {
  left: 110%;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.ipad {
  display: none;
}
@media (max-width: 1024px) {
  .ipad {
    display: block;
  }
}
@media (max-width: 767px) {
  .ipad {
    display: none;
  }
}

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

.ipad-sp {
  display: none;
}
@media (max-width: 1024px) {
  .ipad-sp {
    display: block;
  }
}

@media only screen and (max-width: 370px) {
  .section4 h2,
  .section5 h2,
  .section5 .block h3,
  .section6 h2 {
    font-size: 28px;
  }
}
