@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
.nav-header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #023591;
}
.nav-header__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 960px;
  height: 85px;
  margin: 0 auto;
  padding: 0 23px;
}
.nav-header__info {
  margin-top: 14px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
}
.nav-header__info > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  line-height: 1.7;
}
.nav-header__info > div:first-child {
  font-size: 1.2rem;
}
.nav-header__info > div:last-child {
  font-size: 2.6rem;
}
.nav-header__info > div:last-child > p {
  font-weight: 700;
  padding-right: 9px;
}
.nav-header__info > div p {
  flex: 1;
  line-height: 1;
}
.nav-header__info > div span {
  background-color: #fff;
  color: #000;
  padding: 0 10px;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 700;
}
.nav-header__info > div span.time {
  font-size: 1.2rem;
  line-height: 2.4rem;
}
.nav-header__info > div span:last-child {
  width: 175px;
  text-align: center;
}
.nav-header__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.nav-header__logo-image {
  display: block;
  height: 3rem;
}
.nav-header__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .nav-header__menu {
    display: flex;
    align-items: center;
  }
}
.nav-header__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.nav-header__contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  background-color: #023591;
  color: #ffffff;
  margin-left: 1.6rem;
  padding: 1.2rem 3.2rem;
  border-radius: 100px;
}
.nav-header__contact:hover {
  background-color: #022c78;
}

.mainread__container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 25px 15px 15px;
}
.mainread__container p {
  text-align: center;
  font-size: 3.15rem;
  font-weight: 700;
}
.mainread__container p b {
  display: block;
  font-size: 4rem;
  line-height: 1.7;
}

.mainvisual {
  position: relative;
  background-color: #023591;
}
.mainvisual__container {
  display: block;
  align-items: center;
  max-width: 960px;
  padding-top: 12rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: url("../img/main/main.jpg") no-repeat center top;
}
.mainvisual__container > h1 > img {
  width: 870px;
  margin: 0 auto;
}
.mainvisual__container > h2 {
  font-size: 3.4rem;
  color: #ffffff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 170px auto 0;
  position: relative;
}
.mainvisual__container > h2::after {
  content: "";
  display: block;
  position: relative;
  width: 1000%;
  margin-top: 6px;
  margin-left: -900%;
  border-bottom: 1px solid #fff;
}
.mainvisual__container > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 750px;
  gap: 25px;
  margin: 77px auto 63px;
  padding: 0;
}
.mainvisual__container > ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  width: 362px;
  height: 308px;
  box-shadow: 3px 3px 0 black;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mainvisual__container > ul li:nth-of-type(1) {
  background: url(../img/main/case1.png) no-repeat center/cover;
  background-color: rgba(255, 255, 255, 0.12);
  background-blend-mode: lighten;
}
.mainvisual__container > ul li:nth-of-type(2) {
  background: url(../img/main/case2.png) no-repeat center/cover;
  background-color: rgba(255, 255, 255, 0.12);
  background-blend-mode: lighten;
}
.mainvisual__container > ul li:nth-of-type(3) {
  background: url(../img/main/case3.png) no-repeat center/cover;
  background-color: rgba(255, 255, 255, 0.12);
  background-blend-mode: lighten;
}
.mainvisual__container > ul li:nth-of-type(3) h3 span:last-child {
  font-size: 1.8rem;
}
.mainvisual__container > ul li:nth-of-type(4) {
  background: url(../img/main/case4.png) no-repeat center/cover;
  background-color: rgba(255, 255, 255, 0.12);
  background-blend-mode: lighten;
}
.mainvisual__container > ul li:nth-of-type(4) h3 span:last-child {
  font-size: 2.1rem;
}
.mainvisual__container > ul li h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mainvisual__container > ul li h3 span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
}
.mainvisual__container > ul li h3 span:first-child {
  width: 68px;
  background-color: rgba(255, 255, 255, 0.8);
}
.mainvisual__container > ul li h3 span:last-child {
  flex: 1;
  background-color: rgba(2, 53, 145, 0.8);
  font-size: 2.3rem;
  color: #ffffff;
}
.mainvisual__container > ul li p {
  background-color: rgba(35, 24, 21, 0.9);
  color: #ffffff;
  text-align: left;
  display: flex;
  align-items: center;
  height: 86px;
  padding: 0 15px;
  font-size: 1.4rem;
  line-height: 1.7;
}
.mainvisual__text-main {
  font-weight: 700;
  font-size: 4.9rem;
  line-height: 1;
  text-align: center;
}
.mainvisual__text-main span:first-child {
  display: block;
  font-size: 7rem;
  line-height: 2.1;
  text-shadow: 4px 4px 0px #ffffff, -4px 4px 0px #ffffff, 4px -4px 0px #ffffff, -4px -4px 0px #ffffff, 4px 0px 0px #ffffff, 0px 4px 0px #ffffff, -4px 0px 0px #ffffff, 0px -4px 0px #ffffff; /* 文字の影 */
}
.mainvisual__text-main span:last-child {
  display: block;
  background-color: #ffffff;
}
.mainvisual__footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  background: linear-gradient(90deg, #e7161b 0%, #e7161b 50%, #073684 50%, #073684 100%);
  border-top: 1px solid #ffffff;
}

.banner {
  display: block;
  margin: 0 auto;
  width: 960px;
}
.mainvisual__container .banner {
  width: 450px;
  margin: 26px auto 0;
  border: 10px solid #000000;
}

.balloon {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  min-width: 120px;
  max-width: 100%;
  background: #FFF;
  border: solid 1px #023591;
  box-sizing: border-box;
}

.balloon:before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 50%;
  margin-left: -40px;
  border: 40px solid transparent;
  border-top: 30px solid #FFF;
  z-index: 2;
}

.balloon:after {
  content: "";
  position: absolute;
  bottom: -74px;
  left: 50%;
  margin-left: -42px;
  border: 42px solid transparent;
  border-top: 32px solid #023591;
  z-index: 1;
}

.balloon2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  min-width: 120px;
  max-width: 100%;
  background: #456bb3;
  color: #fff;
  box-sizing: border-box;
}

.balloon2:before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 50%;
  margin-left: -40px;
  border: 40px solid transparent;
  border-top: 48px solid #456bb3;
  z-index: 2;
}

.footer {
  position: relative;
  width: 100%;
  background: #023591;
  border-top: 1px solid #fff;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 960px;
  height: 85px;
  margin: 0 auto;
  padding: 0 23px 23px;
}
.footer__info {
  display: flex;
  gap: 30px;
  color: #fff;
  font-size: 1rem;
  padding-right: 20px;
}
.footer__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  padding-left: 60px;
}
.footer__logo-image {
  display: block;
  height: 3rem;
}
.footer__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .footer__menu {
    display: flex;
    align-items: center;
  }
}
.footer__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.footer__contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  background-color: #023591;
  color: #ffffff;
  margin-left: 1.6rem;
  padding: 1.2rem 3.2rem;
  border-radius: 100px;
}
.footer__contact:hover {
  background-color: #022c78;
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * Page
 * -------------------------------------------------------------------
 */
.section1__header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 65px 0;
  background-color: #ffffff;
  text-align: center;
}
.section1__header h2 {
  font-size: 3.7rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 30px;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
}
.section1__container {
  width: 100%;
}
.section1__container .gyousya {
  border-top: 34px solid rgba(0, 0, 0, 0.4);
  border-bottom: 60px solid rgba(0, 0, 0, 0.4);
}
.section1__container .gyousya + .gyousya {
  border-top: 0;
}
.section1__container .gyousya + .gyousya > div > div > ul {
  right: unset;
  left: 75px;
}
.section1__container .gyousya > div {
  background-color: #000000;
}
.section1__container .gyousya > div > div {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px;
  color: #ffffff;
  display: flex;
  position: relative;
}
.section1__container .gyousya > div > div > div {
  width: 50%;
  padding: 0 30px;
}
.section1__container .gyousya > div > div > div h3 {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  font-size: 4.6rem;
}
.section1__container .gyousya > div > div > div p {
  padding: 30px 0;
  font-size: 2.3rem;
  line-height: 1.9;
  font-weight: 700;
}
.section1__container .gyousya > div > div > div p b {
  color: red;
  font-size: 2.5rem;
  font-weight: 900;
}
.section1__container .gyousya > div > div > div p span {
  display: block;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
.section1__container .gyousya > div > div > img {
  width: 50%;
}
.section1__container .gyousya > div > div > ul {
  position: absolute;
  bottom: -20px;
  right: 67px;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.section1__container .gyousya > div > div > ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 140px;
  height: 140px;
  border-radius: 70px;
  background-color: #ffdb00;
  color: #e60012;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section1__footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  background: linear-gradient(90deg, #e7161b 0%, #e7161b 50%, #073684 50%, #073684 100%);
  border-top: 1px solid #ffffff;
}

.section2 {
  background-color: #d6e6f5;
}
.section2__header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 65px 0;
  background-color: #ffffff;
  text-align: center;
}
.section2__header h2 {
  font-size: 3.7rem;
  color: #023591;
  line-height: 1.7;
  margin: 24px 0;
  padding: 0 80px 14px;
}
.section2__container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px;
  background: url(../img/section2/back.jpg) no-repeat center top;
  background-size: cover;
  height: 1263px;
}
.section2__container > h3 {
  font-size: 7.4rem;
  font-weight: 900;
  letter-spacing: -4px;
  color: #231815;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 42px auto 0;
  position: relative;
  z-index: 1;
}
.section2__container > h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  right: -40px;
  height: 104px;
  width: 1000%;
  margin-left: -900%;
  background-color: #fff;
  z-index: -1;
}
.section2__container ul {
  font-size: 2.3rem;
  font-weight: 700;
  padding-left: 98px;
  margin-top: 33px;
  line-height: 1.7;
}
.section2__container ul b {
  color: #0000ff;
  font-weight: 900;
}
.section2__container p {
  writing-mode: vertical-rl;
  font-size: 4.6rem;
  font-weight: 900;
  color: #ffffff;
  display: block;
  background-color: #023591;
  position: absolute;
  bottom: 0;
  left: calc(50% - 373px);
  padding: 40px 13px;
}
.section2__footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  background: linear-gradient(90deg, #e7161b 0%, #e7161b 50%, #073684 50%, #073684 100%);
  border-top: 1px solid #ffffff;
}

.section3 {
  background-color: #456bb3;
}
.section3__header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 65px 0;
  background-color: #ffffff;
  text-align: center;
}
.section3__header h2 {
  font-size: 3.7rem;
  color: #023591;
  line-height: 1.7;
  padding: 39px 80px;
  margin-bottom: 35px;
}
.section3__container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px;
  padding-left: 105px;
  padding-top: 70px;
  padding-bottom: 56px;
}
.section3__container p {
  color: #ffffff;
  background-color: #023591;
  width: -moz-fit-content;
  width: fit-content;
}
.section3__container p:nth-of-type(1) {
  font-size: 3.9rem;
  font-weight: 700;
  padding: 9px 45px 9px 16px;
  position: relative;
}
.section3__container p:nth-of-type(1) span {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 2.2rem;
}
.section3__container p:nth-of-type(2) {
  font-size: 7.6rem;
  font-weight: 900;
  padding: 5px 30px;
  margin-top: 20px;
}
.section3__container p:nth-of-type(3) {
  font-size: 3.1rem;
  font-weight: 900;
  padding: 14px 16px;
  margin-top: 20px;
}
.section3__container p:nth-of-type(4) {
  font-size: 1.1rem;
  background-color: transparent;
  margin-top: 18px;
}

.section4 {
  background-color: #FFF;
}
.section4__header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 65px 0;
  background-color: #ffffff;
  text-align: center;
  padding-top: 53px;
}
.section4__header h2 {
  font-size: 3.7rem;
  color: #023591;
  line-height: 1.7;
  padding: 39px 100px;
}
.section4__container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px;
}
.section4__container > p:nth-of-type(1) {
  font-size: 2.6rem;
  font-weight: 700;
  padding-left: 86px;
  line-height: 1.7;
}
.section4__container > p:nth-of-type(2) {
  margin: 120px 0 56px 72px;
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
}
.section4__container > p:nth-of-type(2) span {
  display: block;
  background-color: #023591;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 14px;
}
.section4__container > p:nth-of-type(2) span + span {
  margin-top: 16px;
}
.section4__container ul {
  margin: 55px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.section4__container ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 220px;
  height: 194px;
  position: relative;
}
.section4__container ul li p {
  position: absolute;
  right: -30px;
  bottom: -63px;
  background-color: #456bb3;
  width: 140px;
  height: 140px;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.section4__container ul li:nth-of-type(1) {
  background: url(../img/section4/img1.jpg) no-repeat center/cover;
}
.section4__container ul li:nth-of-type(2) {
  background: url(../img/section4/img2.jpg) no-repeat center/cover;
}
.section4__container ul li:nth-of-type(3) {
  background: url(../img/section4/img3.jpg) no-repeat center/cover;
}
.section4__footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  background: linear-gradient(90deg, #e7161b 0%, #e7161b 50%, #073684 50%, #073684 100%);
}

.section5 {
  background-color: #FFF;
}
.section5__header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 65px 0;
  background-color: #ffffff;
  text-align: center;
  padding-bottom: 13px;
}
.section5__header h2 {
  font-size: 4.5rem;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1.7;
  padding: 23px 41px;
  margin-top: 37px;
}
.section5__header h2 span {
  letter-spacing: -13px;
}
.section5__container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px;
}
.section5__container h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 3rem;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 0 6px;
  border-bottom: 3px solid #023591;
}
.section5__container h3::before {
  content: "";
  display: block;
  width: 73px;
  height: 56px;
  background: url(../img/section5/ico01.png) no-repeat center/cover;
}
.section5__container h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 32px;
  background: url(../img/section5/ico02.png) no-repeat center/cover;
}
.section5__container > img {
  width: 750px;
  margin: 28px auto 0;
}
.section5__container > p:nth-of-type(1) {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.46);
  color: #ffffff;
  display: block;
  width: 750px;
  margin: 23px auto 0;
  padding: 6px;
}
.section5__container > p:nth-of-type(2) {
  width: 750px;
  margin: 13px auto 0;
  text-align: right;
  font-size: 1.2rem;
  font-weight: 700;
}
.section5__container2 {
  position: relative;
  height: 1160px;
  margin-top: 100px;
}
.section5__container2 > div:nth-of-type(1) {
  background-color: #456bb3;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 440px);
  margin-right: calc(50% - 440px);
  height: 1260px;
}
.section5__container2 > div:nth-of-type(1)::before {
  content: "";
  position: absolute;
  display: block;
  top: -100px;
  right: 0;
  width: 920px;
  border-bottom: 100px solid #456bb3;
  border-left: 920px solid transparent;
}
.section5__container2 > div:nth-of-type(2) {
  background-color: #023591;
  position: absolute;
  top: 30px;
  right: 0;
  width: calc(50% + 440px);
  margin-left: calc(50% - 440px);
  height: 1260px;
}
.section5__container2 > div:nth-of-type(2)::before {
  content: "";
  position: absolute;
  display: block;
  top: -100px;
  width: 100%;
  border-bottom: 100px solid #023591;
  border-left: 920px solid transparent;
}
.section5__container2__inner {
  width: 880px;
  padding: 30px;
}
.section5__container2__inner h3 {
  margin: 0 auto;
  padding: 11px 32px;
  font-size: 2.6rem;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.section5__container2__inner h3:nth-of-type(2) {
  margin-top: 62px;
}
.section5__container2__inner ul {
  margin: 67px auto 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px 15px;
}
.section5__container2__inner ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 380px;
}
.section5__container2__inner ul li:nth-of-type(5) {
  margin-top: -37px;
}
.section5__container2__inner ul li h4 {
  color: #FFF;
  font-size: 1.5rem;
  line-height: 3;
  letter-spacing: -0.04rem;
}
.section5__container2__inner ul li > div {
  display: flex;
  gap: 15px;
}
.section5__container2__inner ul li > div p {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.7;
  flex: 1;
  letter-spacing: 0.03em;
}
.section5__container2__inner ul li > div > div {
  width: 150px;
}
.section5__footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  background: linear-gradient(90deg, #e7161b 0%, #e7161b 50%, #073684 50%, #073684 100%);
  border-top: 1px solid #fff;
}

.section6 {
  background-color: #FFF;
}
.section6__header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 65px 0;
  background-color: #ffffff;
  text-align: center;
  padding-bottom: 14px;
}
.section6__header h2 {
  font-size: 2rem;
}
.section6__container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px;
}
.section6__container #form {
  background-color: #023591;
  font-size: 2.7rem;
  font-weight: 700;
  color: #FFF;
  padding: 63px 0 40px;
  text-align: center;
  position: relative;
  margin-bottom: 100px;
}
.section6__container #form::after {
  content: "";
  position: absolute;
  bottom: -62px;
  display: block;
  width: 100%;
  border-top: 62px solid #023591;
  border-left: 450px solid transparent;
  border-right: 450px solid transparent;
}
.section6__container #form_content {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.section6__container #form_content > p:nth-of-type(1) {
  font-size: 1.2rem;
  letter-spacing: 0.03rem;
  line-height: 1.7;
  font-weight: 500;
}
.section6__container #form_content > p:nth-of-type(2) {
  border: 1px solid #231815;
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  padding: 24px 10px;
  line-height: 1;
}
.section6__container form {
  margin: 30px 0;
}
.section6__container form table th {
  text-align: left;
  font-weight: 500;
  width: 200px;
  vertical-align: top;
}
.section6__container form table td {
  font-weight: 500;
}
.section6__container form table td .error {
  display: block;
  color: red;
}
.section6__container form input[type=email],
.section6__container form input[type=tel],
.section6__container form input[type=text] {
  width: 500px;
}
.section6__container form textarea {
  width: 500px;
}
.section6__container form .submit-btn {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section6__container form .submit-btn input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 200px;
  height: 40px;
  background-color: #023591;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  outline: none;
}
.section6__container form .submit-btn input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.8;
}
.section6__container form .submit-btn input[name=submitBack] {
  background-color: #666;
}
.section6__container .mw_wp_form_complete {
  margin: 30px 0;
  background-color: rgba(2, 53, 145, 0.1);
  padding: 30px;
}
.section6__container .mw_wp_form_complete p:first-child {
  font-weight: 700;
  text-align: center;
  font-size: 2rem;
}
.section6__footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  background: linear-gradient(90deg, #e7161b 0%, #e7161b 50%, #073684 50%, #073684 100%);
}/*# sourceMappingURL=style.css.map */