@charset "UTF-8";
/*------------------------------------------------------------
color
------------------------------------------------------------*/
/*------------------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
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;
  -webkit-box-sizing: border-box;
          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%;
}

body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Shippori Mincho", serif;
  -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;
  max-width: 100%;
}

a {
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  -webkit-backface-visibility: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font: inherit;
  font-style: normal;
  font-weight: normal;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
  list-style: none;
  border: 0;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*------------------------------------------------------------
Header
------------------------------------------------------------*/
.l-header {
  padding: 30px 60px 30px 40px;
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
@media screen and (max-width: 1023px) {
  .l-header {
    padding: 0 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header--logo {
    padding-left: 15px;
  }
  .l-header--logo img {
    width: 184px;
  }
}
.l-header--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .l-header--menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #fff;
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-top: 120px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .l-header--menu.open {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-header--menu > li {
  position: relative;
  padding: 0 13px;
}
.l-header--menu > li > a,
.l-header--menu > li > span {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 1023px) {
  .l-header--menu > li > a,
  .l-header--menu > li > span {
    display: block;
    padding: 10px 0;
    position: relative;
  }
}
@media screen and (min-width: 767px) {
  .l-header--menu > li:hover ol {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-header--menu ol {
  position: absolute;
  top: 99%;
  left: 0;
  width: 100%;
  text-align: center;
  background: #fff;
  padding-top: 40px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header--menu ol {
    position: static;
    opacity: 1;
    pointer-events: auto;
    text-align: left;
    padding-top: 10px;
    padding-left: 20px;
  }
}
.l-header--menu ol li {
  margin-bottom: 15px;
}
.l-header--menu ol li a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 1023px) {
  .l-header--menu ol li a {
    padding-left: 25px;
    position: relative;
  }
  .l-header--menu ol li a:before {
    content: "";
    width: 15px;
    height: 1px;
    background: #174690;
    position: absolute;
    left: 0;
    top: 50%;
  }
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Footer
------------------------------------------------------------*/
.l-footer {
  background: #174690;
  padding-top: 33px;
}
.l-footer--logo {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .l-footer--logo {
    margin-bottom: 25px;
    text-align: left;
  }
}
.l-footer--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .l-footer--menu {
    display: block;
    padding: 0 10px 25px;
  }
}
.l-footer--menu > li {
  margin-right: 45px;
}
@media screen and (max-width: 767px) {
  .l-footer--menu > li {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.l-footer--menu > li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .l-footer--menu > li:last-child {
    margin-bottom: 0;
  }
}
.l-footer--menu > li a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer--menu > li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer--menu > li ol {
    padding-left: 20px;
  }
}
.l-footer--menu > li ol li {
  margin-top: 20px;
}
.l-footer--menu > li ol li a {
  display: block;
  position: relative;
  padding-left: 20px;
}
.l-footer--menu > li ol li a:before {
  content: "";
  width: 11px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
}
.l-footer--copy {
  border-top: 1px solid #5C7DB0;
  font-size: 12px;
  color: #8DA4C8;
  letter-spacing: 0.11em;
  font-weight: 400;
  text-align: center;
  padding: 25px 0;
}
@media screen and (max-width: 767px) {
  .l-footer--copy {
    font-size: 10px;
    padding: 17px 0;
  }
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
main
------------------------------------------------------------*/
body {
  width: 100%;
  margin: 0;
  padding: 0;
  word-break: break-word;
  padding-top: 90px;
}
@media screen and (max-width: 1023px) {
  body {
    padding-top: 80px;
  }
}
body.home {
  background-image: url("../img/common/bg.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  body.home {
    background-image: url("../img/common/bg_sp.png");
  }
}

.l-main {
  max-width: 1156px;
  margin: 0 auto;
  padding: 0 15px;
}

.l-main02 {
  max-width: 942px;
  margin: 0 auto;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
nav
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Button
------------------------------------------------------------*/
.btn-menu {
  display: none;
  width: 80px;
  height: 80px;
  background: #174690;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1023px) {
  .btn-menu {
    display: block;
  }
}
.btn-menu span {
  width: 34px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 23px;
  top: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-menu span:before, .btn-menu span:after {
  content: "";
  width: 34px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-menu span:before {
  top: -10px;
}
.btn-menu span:after {
  bottom: -10px;
}
.btn-menu.open span {
  background: #174690;
}
.btn-menu.open span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}
.btn-menu.open span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 0;
}

.btn-top {
  display: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: #174690;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 98;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 35px;
  -webkit-box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .btn-top {
    right: 10px;
    bottom: 10px;
  }
}
.btn-top:hover span {
  top: 10px;
}
.btn-top span {
  display: inline-block;
  width: 1px;
  height: 15px;
  background: #fff;
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-top span:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: -3.5px;
}

.c-btn01 {
  font-size: 18px;
  font-weight: 400;
  max-width: 100%;
  color: #174690;
  letter-spacing: 0.1em;
  display: inline-block;
  width: 400px;
  border: 1px solid #174690;
  text-align: center;
  padding: 34px 0;
  -webkit-box-shadow: 5px 5px 0 rgba(23, 70, 144, 0.24);
          box-shadow: 5px 5px 0 rgba(23, 70, 144, 0.24);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    width: 345px;
    font-size: 15px;
    padding: 25px 0;
    -webkit-box-shadow: 3px 3px 0 rgba(23, 70, 144, 0.24);
            box-shadow: 3px 3px 0 rgba(23, 70, 144, 0.24);
  }
}
.c-btn01:after {
  content: "";
  width: 36px;
  height: 11px;
  background: url("../img/common/icon/arr_r.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 5px);
  right: 40px;
}
@media screen and (max-width: 767px) {
  .c-btn01:after {
    right: 20px;
  }
}
@media screen and (min-width: 767px) {
  .c-btn01:hover {
    -webkit-box-shadow: 0 0 0;
            box-shadow: 0 0 0;
  }
}

.c-btn02 {
  display: inline-block;
  width: 230px;
  border: 1px solid #174690;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #174690;
  padding: 11px 0;
  position: relative;
  background: #fff;
}
.c-btn02:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #174690;
  border-right: 1px solid #174690;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn02:hover:after {
  right: 10px;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
heading
------------------------------------------------------------*/
.c-title1 {
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.09em;
  color: #174690;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title1 {
    font-size: 24px;
    padding-bottom: 30px;
  }
}
.c-title1:after {
  content: "";
  width: 55px;
  height: 1px;
  background: #174690;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-title1:after {
    width: 44px;
  }
}
.c-title1 span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.13em;
  color: #BCBCBC;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-title1 span {
    font-size: 10px;
  }
}

.c-title2 {
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.09em;
  color: #174690;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title2 {
    font-size: 24px;
  }
}
.c-title2 span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.13em;
  color: #BCBCBC;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-title2 span {
    font-size: 10px;
  }
}

.c-title3 {
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.09em;
  color: #174690;
}
@media screen and (max-width: 767px) {
  .c-title3 {
    font-size: 24px;
  }
}
.c-title3 span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.13em;
  color: #BCBCBC;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-title3 span {
    font-size: 10px;
  }
}
.c-title3 small {
  display: block;
  font-size: 22px;
  letter-spacing: 0.09em;
  line-height: 1.5;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .c-title3 small {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}

.c-title4 {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.259;
  color: #174690;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title4 {
    font-size: 19px;
  }
}
.c-title4:before {
  content: "";
  width: 41px;
  height: 3px;
  background: #174690;
  position: absolute;
  right: calc(100% + 15px);
  bottom: 15px;
}
@media screen and (max-width: 1156px) {
  .c-title4:before {
    right: calc(100% + 10px);
  }
}
@media screen and (max-width: 767px) {
  .c-title4:before {
    width: 15px;
    height: 2px;
    bottom: 10px;
    right: calc(100% + 5px);
  }
}
.c-title4 span {
  display: block;
  font-size: 19px;
  letter-spacing: 0.13em;
  color: #888888;
}
@media screen and (max-width: 767px) {
  .c-title4 span {
    font-size: 13px;
  }
}
.c-title4 small {
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .c-title4 small {
    font-size: 12px;
  }
}

.c-title5 {
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1.5;
  color: #174690;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title5 {
    font-size: 24px;
  }
}
.c-title5:before {
  content: "";
  width: 5px;
  height: 100%;
  background: #174690;
  opacity: 0.46;
  position: absolute;
  left: -24px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-title5:before {
    width: 2px;
    left: -8px;
  }
}
.c-title5:after {
  content: "";
  width: 90px;
  height: 100%;
  background: #174690;
  position: absolute;
  left: -120px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-title5:after {
    width: 5px;
    left: -15px;
  }
}
.c-title5 span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .c-title5 span {
    font-size: 10px;
  }
}
.c-title5 small {
  display: block;
  font-size: 30px;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .c-title5 small {
    font-size: 20px;
  }
}

.c-title6 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.55;
  color: #174690;
}
@media screen and (max-width: 767px) {
  .c-title6 {
    font-size: 18px;
    line-height: 1.89;
  }
}
.c-title6 small {
  display: block;
  font-size: 15px;
  line-height: 2.33;
}
@media screen and (max-width: 767px) {
  .c-title6 small {
    font-size: 12px;
    line-height: 2.83;
  }
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
time
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.u-flex {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.u-flex-row-reverse-pc {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .u-flex-row-reverse-sp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.u-flex-col-reverse-pc {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media screen and (max-width: 767px) {
  .u-flex-col-reverse-sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.u-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.u-wrap {
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.u-right {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .u-reverseSP {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/*------------------------------------------------------------
Banner
------------------------------------------------------------*/
.c-banner {
  background: url("../img/common/bg.png") top center no-repeat;
  background-size: cover;
}
.c-banner--title {
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 99px 0;
  color: #174690;
}
@media screen and (max-width: 767px) {
  .c-banner--title {
    font-size: 24px;
    padding: 56px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-banner--title.fz18 {
    font-size: 18px;
  }
}
.c-banner--title small {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .c-banner--title small {
    font-size: 18px;
  }
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Box
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
breacrumb
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Loading page
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Pagenavi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Animation
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.post_content {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}
.post_content ul,
.post_content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.post_content ul[style*="list-style-type: circle;"] li {
  list-style-type: circle;
}
.post_content ul[style*="list-style-type: square;"] li {
  list-style-type: square;
}
.post_content ul li {
  list-style: disc;
}
.post_content ol[style*="list-style-type: lower-roman;"] li {
  list-style-type: lower-roman;
}
.post_content ol[style*="list-style-type: lower-alpha;"] li {
  list-style-type: lower-alpha;
}
.post_content ol[style*="list-style-type: lower-greek;"] li {
  list-style-type: lower-greek;
}
.post_content ol[style*="list-style-type: upper-alpha;"] li {
  list-style-type: upper-alpha;
}
.post_content ol[style*="list-style-type: upper-roman;"] li {
  list-style-type: upper-roman;
}
.post_content ol li {
  list-style-type: decimal;
}
.post_content iframe {
  max-width: 100% !important;
}
.post_content img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  width: auto;
  margin-bottom: 77px;
}
@media screen and (max-width: 767px) {
  .post_content img {
    margin-bottom: 24px;
  }
}
.post_content em {
  font-style: italic;
}
.post_content strong {
  font-weight: bold !important;
}
.post_content h1 {
  display: block;
  font-size: 2em;
  -webkit-margin-before: 0.67em;
          margin-block-start: 0.67em;
  -webkit-margin-after: 0.67em;
          margin-block-end: 0.67em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
}
.post_content h2 {
  display: block;
  font-size: 1.5em;
  -webkit-margin-before: 0.83em;
          margin-block-start: 0.83em;
  -webkit-margin-after: 0.83em;
          margin-block-end: 0.83em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
}
.post_content h3 {
  display: block;
  font-size: 1.17em;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
}
.post_content h4 {
  display: block;
  -webkit-margin-before: 1.33em;
          margin-block-start: 1.33em;
  -webkit-margin-after: 1.33em;
          margin-block-end: 1.33em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
}
.post_content h5 {
  display: block;
  font-size: 0.83em;
  -webkit-margin-before: 1.67em;
          margin-block-start: 1.67em;
  -webkit-margin-after: 1.67em;
          margin-block-end: 1.67em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
}
.post_content h6 {
  display: block;
  font-size: 0.67em;
  -webkit-margin-before: 2.33em;
          margin-block-start: 2.33em;
  -webkit-margin-after: 2.33em;
          margin-block-end: 2.33em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  font-weight: bold;
}
.post_content pre {
  display: block;
  white-space: pre;
  margin: 1em 0px;
}
.post_content blockquote {
  display: block;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-start: 40px;
          margin-inline-start: 40px;
  -webkit-margin-end: 40px;
          margin-inline-end: 40px;
}
.post_content p {
  display: block;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
}

/*------------------------------------------------------------
Top
------------------------------------------------------------*/
.top-mv {
  width: 100%;
  height: 54.8vw;
  background: url("../img/top/mv_bg.png") top right no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-mv {
    width: 100%;
    height: unset;
    background: none;
  }
}
.top-mv--imgSp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top-mv--imgSp {
    display: block;
  }
}
.top-mv--cont {
  padding: 6.2vw 40px 0;
}
@media screen and (max-width: 767px) {
  .top-mv--cont {
    padding: 0 8px;
    position: relative;
    top: -70px;
    margin-bottom: -70px;
  }
}
.top-mv--title {
  font-size: 54px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.61;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top-mv--title {
    font-size: 33px;
    line-height: 1.6;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
}
.top-mv--title:after {
  content: "";
  width: 72px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .top-mv--title:after {
    display: none;
  }
}
.top-mv--title span {
  color: #174690;
}
.top-mv--txt {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 2.33;
  opacity: 0.62;
}
@media screen and (max-width: 767px) {
  .top-mv--txt {
    font-size: 10px;
    line-height: 2.3;
    letter-spacing: 0.17em;
  }
}
.top_sec01 {
  padding: 110px 0;
}
@media screen and (max-width: 767px) {
  .top_sec01 {
    padding: 130px 0 50px;
  }
}
.top_sec01--main {
  max-width: 813px;
  margin: 0 auto;
}
.top_sec01 .c-title1 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_sec01 .c-title1 {
    margin-bottom: 40px;
  }
}
.top_sec01--txt1 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.277;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_sec01--txt1 {
    font-size: 15px;
    line-height: 2.133;
    margin-bottom: 10px;
  }
}
.top_sec01--txt2 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.77;
  color: #174690;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .top_sec01--txt2 {
    font-size: 15px;
  }
}
.top_sec01--txt3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .top_sec01--txt3 {
    font-size: 14px;
    line-height: 1.643;
    margin-top: 30px;
  }
}
.top_sec01--btn {
  margin-top: 70px;
}
.top_sec02 {
  padding: 110px 0;
  background: #fff;
  border-top: 1px solid #174690;
}
@media screen and (max-width: 767px) {
  .top_sec02 {
    padding: 40px 0;
  }
}
.top_sec02 .c-title2 {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .top_sec02 .c-title2 {
    margin-bottom: 60px;
  }
}
.top_sec02--main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
}
.top_sec02--box {
  width: 31.15%;
  max-width: 340px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_sec02--box {
    width: 100%;
    margin-bottom: 50px;
    max-width: 100%;
  }
  .top_sec02--box:last-child {
    margin-bottom: 0;
  }
}
.top_sec02--box--num {
  display: inline-block;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #BCBCBC;
  margin-bottom: 10px;
}
.top_sec02--box--title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_sec02--box--title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.top_sec02--box--btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .top_sec02--box--btn {
    margin-top: 20px;
  }
}
.top_sec03 {
  padding: 60px 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top_sec03 {
    padding: 50px 0;
  }
}
.top_sec03--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: calc(50% - 563px);
}
@media screen and (max-width: 767px) {
  .top_sec03--box {
    display: block;
    padding: 0 15px;
  }
}
.top_sec03--box--img {
  width: 42.54%;
}
@media screen and (max-width: 767px) {
  .top_sec03--box--img {
    width: calc(100% + 30px);
    position: relative;
    left: -15px;
  }
  .top_sec03--box--img img {
    width: 100%;
  }
}
.top_sec03--box--title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_sec03--box--title {
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 1.333;
    margin-bottom: 30px;
  }
}
.top_sec03--box--title span {
  color: #174690;
}
.top_sec03--box--txt {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.055;
}
@media screen and (max-width: 767px) {
  .top_sec03--box--txt {
    font-size: 15px;
    line-height: 2.133;
    margin-bottom: 20px;
  }
}
.top_sec03--box--btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top_sec03--box--btn {
    margin-top: 30px;
  }
}
.top_sec04 {
  padding: 110px 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top_sec04 {
    padding: 30px 0;
  }
}
.top_sec04--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top_sec04--box {
    display: block;
    margin-bottom: 60px;
  }
}
.top_sec04--box:last-child {
  margin-bottom: 0;
}
.top_sec04--box--title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #174690;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_sec04--box--title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.top_sec04--box--txt {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.1875;
}
@media screen and (max-width: 767px) {
  .top_sec04--box--txt {
    font-size: 15px;
    line-height: 1.933;
    margin-bottom: 20px;
  }
}
.top_sec04--box--txt small {
  display: block;
  font-size: 12px;
  margin-top: 10px;
  position: relative;
  padding-left: 15px;
}
.top_sec04--box--txt small:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.top_sec04--box--img {
  width: 53%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_sec04--box--img {
    width: 100%;
  }
}
.top_sec05 {
  padding: 130px 0;
}
@media screen and (max-width: 767px) {
  .top_sec05 {
    padding: 40px 0 60px;
  }
}
.top_sec05--main {
  position: relative;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .top_sec05--main {
    padding-bottom: 0;
  }
}
.top_sec05 .c-title3 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top_sec05 .c-title3 {
    margin-bottom: 30px;
  }
}
.top_sec05--list--item {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_sec05--list--item {
    margin-bottom: 30px;
  }
}
.top_sec05--list--item:last-child {
  margin-bottom: 0;
}
.top_sec05--list--item--title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_sec05--list--item--title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.top_sec05--list--item--title:before {
  content: "";
  width: 5px;
  height: 100%;
  background: #174690;
  position: absolute;
  left: 0;
  top: 0;
}
.top_sec05--list--item--title:after {
  content: "";
  width: 3px;
  height: 100%;
  background: #174690;
  position: absolute;
  left: 10px;
  top: 0;
  opacity: 0.24;
}
.top_sec05--list--item--title span {
  color: #174690;
}
.top_sec05--list--item--cont {
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .top_sec05--list--item--cont {
    padding-left: 20px;
  }
}
.top_sec05--list--item--txt {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.666;
}
@media screen and (max-width: 767px) {
  .top_sec05--list--item--txt {
    font-size: 15px;
    line-height: 1.533;
  }
}
.top_sec05--list--item .c-btn02 {
  margin-top: 10px;
}
.top_sec05--img {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1023px) {
  .top_sec05--img {
    position: relative;
    margin-top: 80px;
    padding: 0 15px;
  }
  .top_sec05--img img {
    width: 100%;
  }
}
.top_sec05--img--title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #174690;
  background: #fff;
  border: 1px solid #174690;
  position: absolute;
  top: 15px;
  left: -45px;
  padding: 10px 20px;
  -webkit-box-shadow: 4px 4px 0 rgba(23, 70, 144, 0.25);
          box-shadow: 4px 4px 0 rgba(23, 70, 144, 0.25);
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .top_sec05--img--title {
    top: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .top_sec05--img--title {
    font-size: 16px;
    padding: 8px 20px;
    -webkit-box-shadow: 3px 3px 0 rgba(23, 70, 144, 0.25);
            box-shadow: 3px 3px 0 rgba(23, 70, 144, 0.25);
  }
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
History
------------------------------------------------------------*/
.history_sec01 {
  border-top: 1px solid #174690;
  padding: 126px 0;
}
@media screen and (max-width: 767px) {
  .history_sec01 {
    padding: 40px 0 60px;
  }
}
.history_sec02--main {
  position: relative;
  padding-top: 50px;
}
@media screen and (max-width: 1156px) {
  .history_sec02--main {
    padding: 50px 15px 10px;
  }
}
.history_sec02--main:before {
  content: "";
  width: 50px;
  height: calc(100% - 20px);
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(18%, #E3EBF7), to(#B4C8E8));
  background: linear-gradient(to bottom, #fff 0%, #E3EBF7 18%, #B4C8E8 100%);
  position: absolute;
  left: calc(50% - 563px);
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1156px) {
  .history_sec02--main:before {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .history_sec02--main:before {
    height: calc(100% - 145px);
    top: 125px;
  }
}
.history_sec02--main:after {
  content: "";
  border-top: 20px solid #B4C8E8;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  position: absolute;
  bottom: 0;
  left: calc(50% - 563px);
  z-index: -1;
}
@media screen and (max-width: 1156px) {
  .history_sec02--main:after {
    left: 0;
  }
}
.history_sec02--box {
  padding-left: calc(50% - 471px);
  position: relative;
  min-height: 260px;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .history_sec02--box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 40px;
  }
}
.history_sec02--box--img {
  position: absolute;
  right: 0;
  top: 0;
  width: 600px;
  max-width: calc(100% - 505px);
}
@media screen and (max-width: 767px) {
  .history_sec02--box--img {
    position: static;
    width: calc(100% + 15px);
    max-width: calc(100% + 15px);
    margin-bottom: 25px;
  }
}
.history_sec02--box .c-title4 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .history_sec02--box .c-title4 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .history_sec02--box--cont {
    padding: 0 15px;
  }
}
.history_sec02--box--list li {
  padding-left: 40px;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .history_sec02--box--list li {
    font-size: 14px;
    padding-left: 20px;
  }
}
.history_sec02--box--list li:before {
  content: "";
  width: 13px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 13px;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .history_sec02--box--list li:before {
    width: 9px;
    left: 0;
  }
}
.history_sec02--box--list li:last-child {
  margin-bottom: 0;
}
.history_sec02--box--list li span {
  color: #E22121;
}
.history_sec02--box--txt {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .history_sec02--box--txt {
    font-size: 14px;
    line-height: 1.857;
  }
}
.history_sec02--box--txt span {
  color: #E22121;
}
.history_sec02--box--btn01 {
  padding-left: 40px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .history_sec02--box--btn01 {
    padding-left: 0;
    margin-top: 15px;
  }
}
.history_sec02--box--btn02 {
  margin-top: 10px;
}
.history_sec02--box--btn02 a {
  display: block;
  width: 100%;
  max-width: 370px;
}
.history_sec02--txt1 {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.29;
}
@media screen and (max-width: 767px) {
  .history_sec02--txt1 {
    font-size: 15px;
    line-height: 2.133;
  }
}
.history_sec02--box02 {
  max-width: 100%;
}
.history_sec02--box02:nth-child(1) {
  width: 387px;
}
.history_sec02--box02:nth-child(2) {
  width: 490px;
}
.history_sec02--box02--title {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .history_sec02--box02--title {
    font-size: 14px;
  }
}
.history_sec02--box02--title span {
  display: inline-block;
  position: relative;
  padding: 0 15px;
}
.history_sec02--box02--title span:before, .history_sec02--box02--title span:after {
  content: "";
  width: 6px;
  height: 100%;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  top: 0;
}
.history_sec02--box02--title span:before {
  border-left: 2px solid #000;
  left: 0;
}
.history_sec02--box02--title span:after {
  border-right: 2px solid #000;
  right: 0;
}
.history_sec02--box02--img {
  height: 248px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .history_sec02--box02--img {
    height: auto;
    display: block;
  }
}
.history_sec02--box02--title2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1.353;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .history_sec02--box02--title2 {
    font-size: 15px;
    line-height: 1.53;
  }
}
.history_sec02--box02--note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #888888;
}
@media screen and (max-width: 767px) {
  .history_sec02--box02--note {
    font-size: 13px;
  }
}
.history_sec02--bot {
  padding: 40px 0;
  border-bottom: 1px solid #174690;
  position: relative;
}
@media screen and (max-width: 1156px) {
  .history_sec02--bot {
    margin: 40px 20px 0;
  }
}
.history_sec02--bot:before {
  content: "";
  width: calc(100% - 105px);
  height: 1px;
  background: #174690;
  position: absolute;
  top: 0;
  right: 0;
}
.history_sec02--bot--title {
  width: 92px;
  height: 33px;
  background: #174690;
  border-radius: 17px 17px 17px 0;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: -17px;
}
.history_sec02--bot--txt {
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 1.765;
}
@media screen and (max-width: 767px) {
  .history_sec02--bot--txt {
    font-size: 14px;
    line-height: 1.857;
  }
}
.history_sec02--bot--btn {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: #174690;
  text-decoration: underline;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .history_sec02--bot--btn {
    font-size: 14px;
  }
}
.history_sec02--bot--btn:after {
  content: "";
  width: 12px;
  height: 10px;
  background: url("../img/common/icon/target.svg") no-repeat;
  position: absolute;
  bottom: 5px;
  left: 100%;
}
@media screen and (max-width: 767px) {
  .history_sec02--bot--btn:after {
    bottom: 3px;
  }
}
.history_sec03 {
  padding: 120px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .history_sec03 {
    padding: 40px 0;
  }
}
.history_sec03 .c-title5 {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .history_sec03 .c-title5 {
    margin-bottom: 25px;
  }
}
.history_sec03--box {
  background: #EAF3FF;
  border-radius: 10px;
  padding: 60px;
  margin-bottom: 88px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .history_sec03--box {
    padding: 25px 10px;
  }
}
.history_sec03--box:after {
  content: "";
  width: 163px;
  height: 35px;
  background: url("../img/history/polygon.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -66px;
  left: calc(50% - 81px);
}
.history_sec03--box:last-child {
  margin-bottom: 0;
}
.history_sec03--box:last-child:after {
  display: none;
}
.history_sec03--box--title {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: #174690;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .history_sec03--box--title {
    font-size: 18px;
  }
}
.history_sec03--box--title small {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .history_sec03--box--title small {
    font-size: 18px;
  }
}
.history_sec03--box--txt1 {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .history_sec03--box--txt1 {
    font-size: 15px;
  }
}
.history_sec03--list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.history_sec03--list01--item {
  background: #fff;
  width: 32.24%;
  max-width: 265px;
  text-align: center;
  border-radius: 10px;
  padding: 30px 0 15px;
}
@media screen and (max-width: 767px) {
  .history_sec03--list01--item {
    width: 32%;
    padding: 30px 10px 15px;
  }
  .history_sec03--list01--item:nth-child(1) img {
    width: 52px;
  }
  .history_sec03--list01--item:nth-child(2) img {
    width: 59px;
  }
  .history_sec03--list01--item:nth-child(3) img {
    width: 61px;
  }
}
.history_sec03--list01--item--img {
  height: 58px;
}
@media screen and (max-width: 767px) {
  .history_sec03--list01--item--img {
    height: 42px;
  }
}
.history_sec03--list01--item--txt {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #174690;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .history_sec03--list01--item--txt {
    font-size: 15px;
  }
}
.history_sec03--list02 {
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .history_sec03--list02 {
    margin-top: 50px;
  }
}
.history_sec03--list02:after {
  content: "";
  width: 24px;
  height: 24px;
  border-right: 1.5px solid #174690;
  border-bottom: 1.5px solid #174690;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  bottom: -34px;
  left: calc(50% - 12px);
}
.history_sec03--list02--item {
  background: #fff;
  border-radius: 10px;
  padding: 35px;
  margin-bottom: 56px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item {
    display: block;
    padding: 30px 25px 15px;
    margin-bottom: 46px;
  }
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item:nth-child(1) img {
    width: 39px;
  }
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item:nth-child(2) img {
    width: 31px;
  }
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item:nth-child(3) img {
    width: 31px;
  }
}
.history_sec03--list02--item--title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  background: #174690;
  border-radius: 21px;
  position: absolute;
  left: 0;
  top: -22px;
  padding: 12px 25px 12px 46px;
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item--title {
    font-size: 15px;
    padding: 9px 15px 9px 58px;
  }
}
.history_sec03--list02--item--title span {
  width: 70px;
  height: 70px;
  border: 6px solid #174690;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: -30px;
  top: calc(50% - 35px);
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item--title span {
    width: 56px;
    height: 56px;
    left: -3px;
    top: calc(50% - 28px);
  }
}
.history_sec03--list02--item--lf {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item--lf {
    width: 100%;
  }
}
.history_sec03--list02--item--rt {
  width: 50%;
  border-left: 1px solid #174690;
  padding: 10px 0 10px 28px;
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item--rt {
    border-left: none;
    border-top: 1px solid #174690;
    width: 100%;
    margin-top: 10px;
    padding: 15px 0;
  }
}
.history_sec03--list02--item--title2 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #174690;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item--title2 {
    font-size: 15px;
  }
}
.history_sec03--list02--item--txt {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #174690;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item--txt {
    font-size: 13px;
  }
}
.history_sec03--list02--item ol li {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 22px;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .history_sec03--list02--item ol li {
    font-size: 14px;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    padding-left: 20px;
  }
}
.history_sec03--list02--item ol li:before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #B4C8E8;
  position: absolute;
  left: 0;
  top: 3px;
}
.history_sec03--list02--item ol li:last-child {
  margin-bottom: 0;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Do
------------------------------------------------------------*/
.do_sec01 {
  border-top: 1px solid #174690;
  padding: 110px 0;
}
@media screen and (max-width: 767px) {
  .do_sec01 {
    padding: 50px 0;
  }
}
.do_sec01 .c-title6 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .do_sec01 .c-title6 {
    margin-bottom: 25px;
  }
}
.do_sec01--title1 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .do_sec01--title1 {
    font-size: 15px;
  }
}
.do_sec01--txt1 {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.294;
}
@media screen and (max-width: 767px) {
  .do_sec01--txt1 {
    font-size: 15px;
  }
}
.do_sec01--box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .do_sec01--box1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.do_sec01--box1--img {
  width: 325px;
}
@media screen and (max-width: 767px) {
  .do_sec01--box1--img {
    width: 100%;
    text-align: center;
  }
  .do_sec01--box1--img img {
    width: 325px;
  }
}
.do_sec01--box1--cont {
  width: 567px;
  max-width: 100%;
  background: #EAF3FF;
  padding: 40px;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .do_sec01--box1--cont {
    width: 100%;
    padding: 20px 15px;
  }
}
.do_sec01--box1--cont:after {
  content: "";
  width: 74px;
  height: 51px;
  background: url("../img/common/union.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 100%;
  left: 40px;
}
@media screen and (max-width: 767px) {
  .do_sec01--box1--cont:after {
    width: auto;
    height: auto;
    background: none;
    left: calc(50% - 20px);
    border-top: 35px solid #EAF3FF;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
  }
}
.do_sec01--box1--title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #174690;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .do_sec01--box1--title {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.do_sec01--box1--list--item {
  position: relative;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.389;
  padding-left: 25px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .do_sec01--box1--list--item {
    font-size: 15px;
  }
}
.do_sec01--box1--list--item:last-child {
  margin-bottom: 0;
}
.do_sec01--box1--list--item:before {
  content: "";
  width: 19px;
  height: 16px;
  background: url("../img/common/icon/check.svg") no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 6px;
}
@media screen and (max-width: 767px) {
  .do_sec01--box1--list--item:before {
    top: 3px;
  }
}
.do_sec01--box1--list--item small {
  display: block;
  font-size: 15px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .do_sec01--box1--list--item small {
    font-size: 13px;
  }
}
.do_sec01--box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .do_sec01--box2 {
    display: block;
    margin-bottom: 50px;
  }
}
.do_sec01--box2.box-pre {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.do_sec01--box2--cont {
  width: 47.16%;
}
@media screen and (max-width: 767px) {
  .do_sec01--box2--cont {
    width: 100%;
  }
}
.do_sec01--box2--img {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .do_sec01--box2--img {
    width: 100%;
    margin-top: 20px;
  }
}
.do_sec01--box3 {
  background: #EAF3FF;
  border-radius: 10px;
  padding: 40px 45px;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .do_sec01--box3 {
    padding: 30px 24px;
    margin-bottom: 30px;
  }
}
.do_sec01--box3--title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #174690;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .do_sec01--box3--title {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.do_sec01--box3--list--item {
  font-size: 17px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .do_sec01--box3--list--item {
    font-size: 15px;
  }
}
.do_sec01--box3--list--item:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #B4C8E8;
  position: absolute;
  left: 0;
  top: 2px;
}
.do_sec01--box3--list--item:last-child {
  margin-bottom: 0;
}
.do_sec01--box4 {
  width: 48.67%;
  max-width: 548px;
}
@media screen and (max-width: 767px) {
  .do_sec01--box4 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .do_sec01--box4:last-child {
    margin-bottom: 0;
  }
}
.do_sec01--box4--txt {
  font-size: 17px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .do_sec01--box4--txt {
    font-size: 15px;
    margin-top: 10px;
  }
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
trou
------------------------------------------------------------*/
.trou_sec01 {
  border-top: 1px solid #174690;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .trou_sec01 {
    padding: 50px 0;
  }
}
.trou_sec01 .c-title5 {
  margin-bottom: 40px;
}
.trou_sec01--txt1 {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.412;
}
@media screen and (max-width: 767px) {
  .trou_sec01--txt1 {
    font-size: 15px;
  }
}
.trou_sec01--title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #174690;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .trou_sec01--title {
    font-size: 18px;
  }
}
.trou_sec01--link {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: underline;
  color: #174690;
}
@media screen and (max-width: 767px) {
  .trou_sec01--link {
    font-size: 14px;
    line-height: 1.7;
  }
}
.trou_sec01--link:after {
  content: "";
  width: 12px;
  height: 10px;
  background: url("../img/common/icon/target.svg") no-repeat;
  background-size: contain;
  display: inline-block;
}
.trou_sec02 {
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .trou_sec02 {
    padding-bottom: 60px;
  }
}
.trou_sec02 .c-title5 {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .trou_sec02 .c-title5 {
    margin-bottom: 20px;
  }
}
.trou_sec02--main {
  padding-left: calc(50% - 593px);
}
@media screen and (max-width: 767px) {
  .trou_sec02--main {
    padding-left: 0;
  }
}
.trou_sec02--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .trou_sec02--box {
    display: block;
    padding: 0 15px;
  }
}
@media screen and (max-width: 1023px) {
  .trou_sec02--box--img {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .trou_sec02--box--img {
    display: none;
  }
}
.trou_sec02--box--list--item {
  padding-bottom: 60px;
  position: relative;
}
.trou_sec02--box--list--item:after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 1px solid #174690;
  border-bottom: 1px solid #174690;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 35px;
  bottom: calc(50% - 45px);
}
@media screen and (max-width: 767px) {
  .trou_sec02--box--list--item:after {
    left: 24px;
    bottom: calc(50% - 35px);
  }
}
.trou_sec02--box--list--item:nth-child(3) {
  padding-bottom: 20px;
}
.trou_sec02--box--list--item:last-child {
  padding-bottom: 0;
}
.trou_sec02--box--list--item:last-child:after {
  display: none;
}
.trou_sec02--box--list--item--title {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #174690;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .trou_sec02--box--list--item--title {
    font-size: 18px;
  }
}
.trou_sec02--box--list--item--title span {
  width: 85px;
  height: 85px;
  border: 1px solid #174690;
  border-radius: 50%;
  font-size: 35px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .trou_sec02--box--list--item--title span {
    font-size: 25px;
    width: 61px;
    height: 61px;
    margin-right: 14px;
  }
}
.trou_sec02--box--list--item--cont {
  padding-left: 105px;
}
@media screen and (max-width: 767px) {
  .trou_sec02--box--list--item--cont {
    padding-left: 75px;
  }
}
.trou_sec02--box--list--item--txt {
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .trou_sec02--box--list--item--txt {
    font-size: 14px;
  }
}
.trou_sec02--box2 {
  background: #EBF3FF;
  border-radius: 9px;
  padding: 20px;
  max-width: 353px;
}
@media screen and (max-width: 767px) {
  .trou_sec02--box2 {
    padding: 15px;
  }
}
.trou_sec02--box2--title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #174690;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .trou_sec02--box2--title {
    font-size: 14px;
  }
}
.trou_sec02--box2--title span {
  display: inline-block;
  position: relative;
  padding: 0 10px;
}
.trou_sec02--box2--title span:before, .trou_sec02--box2--title span:after {
  content: "";
  width: 5px;
  height: 100%;
  border-top: 1px solid #174690;
  border-bottom: 1px solid #174690;
  position: absolute;
  top: 0;
}
.trou_sec02--box2--title span:before {
  left: 0;
  border-left: 1px solid #174690;
}
.trou_sec02--box2--title span:after {
  right: 0;
  border-right: 1px solid #174690;
}
.trou_sec02--box2 ol li {
  position: relative;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 15px;
  padding-left: 22px;
}
@media screen and (max-width: 767px) {
  .trou_sec02--box2 ol li {
    font-size: 14px;
    padding-left: 15px;
    letter-spacing: 0;
  }
}
.trou_sec02--box2 ol li:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #B4C8E8;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  .trou_sec02--box2 ol li:before {
    width: 11px;
    height: 11px;
    top: 2px;
  }
}
.trou_sec02--box2 ol li:last-child {
  margin-bottom: 0;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Build
------------------------------------------------------------*/
.build_sec01 {
  border-top: 1px solid #174690;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .build_sec01 {
    padding: 50px 0;
  }
}
.build_sec01--box {
  padding-left: calc(50% - 563px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .build_sec01--box {
    padding: 0 15px;
  }
}
.build_sec01--box:nth-child(2n) {
  margin-top: 70px;
  padding-left: 0;
  padding-right: calc(50% - 563px);
}
@media screen and (max-width: 1023px) {
  .build_sec01--box:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .build_sec01--box:nth-child(2n) {
    padding: 0 15px;
    margin-top: 25px;
  }
}
.build_sec01--box--img {
  width: 40%;
}
@media screen and (max-width: 1023px) {
  .build_sec01--box--img {
    width: 100%;
    margin-top: 15px;
  }
}
.build_sec01--box--img img {
  width: 100%;
}
.build_sec01--box--cont {
  width: 53.85%;
}
@media screen and (max-width: 1023px) {
  .build_sec01--box--cont {
    width: 100%;
  }
}
.build_sec01--box--txt {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.4118;
}
@media screen and (max-width: 767px) {
  .build_sec01--box--txt {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.build_sec02 {
  overflow: hidden;
}
.build_sec02 .c-title5 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .build_sec02 .c-title5 {
    margin-bottom: 40px;
  }
}
.build_sec02--chart {
  text-align: center;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .build_sec02--chart {
    padding-bottom: 50px;
    width: calc(100% + 30px);
    position: relative;
    left: -15px;
    margin-right: -15px;
  }
}
.build_sec02--box {
  position: relative;
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .build_sec02--box {
    padding-bottom: 0;
  }
}
.build_sec02--box--txt {
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 2.4118;
}
@media screen and (max-width: 767px) {
  .build_sec02--box--txt {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.build_sec02--box--img {
  width: 615px;
  position: absolute;
  bottom: 0;
  left: 67.5%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .build_sec02--box--img {
    position: relative;
    width: 100%;
    text-align: right;
    left: auto;
    right: -15px;
    margin-top: 15px;
  }
  .build_sec02--box--img img {
    width: 327px;
  }
}
.build_sec03 {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .build_sec03 {
    padding: 50px 0;
  }
}
.build_sec03 .c-title5 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .build_sec03 .c-title5 {
    margin-bottom: 35px;
  }
}
.build_sec03--chart {
  text-align: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .build_sec03--chart {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .build_sec03--chart img {
    width: 668px;
  }
}
@media screen and (max-width: 767px) {
  .build_sec03--chart img {
    width: 334px;
  }
}
.build_sec03--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .build_sec03--box {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.build_sec03--box--img {
  position: absolute;
  right: 61%;
  top: 0;
}
@media screen and (max-width: 767px) {
  .build_sec03--box--img {
    width: calc(100% + 15px);
    position: relative;
    right: 0;
    left: -15px;
    margin-top: 15px;
  }
}
.build_sec03--box--cont {
  width: 63.33%;
}
@media screen and (max-width: 767px) {
  .build_sec03--box--cont {
    width: 100%;
  }
}
.build_sec03--box--txt {
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 2.4118;
}
@media screen and (max-width: 767px) {
  .build_sec03--box--txt {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.build_sec03--bot {
  padding: 90px 0 50px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#FCF6EC));
  background-image: linear-gradient(#fff, #FCF6EC);
}
@media screen and (max-width: 767px) {
  .build_sec03--bot {
    padding: 50px 0 25px;
  }
}
.build_sec03--bot--title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.09em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .build_sec03--bot--title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.build_sec03--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.build_sec03--list li {
  width: 31.1%;
  max-width: 350px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .build_sec03--list li {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .build_sec03--list li {
    margin-bottom: 25px;
  }
}
.build_sec03--list li:last-child {
  margin-bottom: 0;
}
.build_sec03--list li:after {
  content: "";
  width: 31px;
  height: 23px;
  background: url("../img/build/check01.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  right: -20px;
}
@media screen and (max-width: 1023px) {
  .build_sec03--list li:after {
    display: none;
  }
}
.build_sec03--list li:nth-child(1):after {
  background: url("../img/build/check02.png") no-repeat;
  background-size: contain;
  right: auto;
  left: -20px;
}
.build_sec03--list li img {
  max-width: 350px;
}
.build_sec04 {
  overflow: hidden;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .build_sec04 {
    padding-bottom: 50px;
  }
}
.build_sec04 .c-title5 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .build_sec04 .c-title5 {
    margin-bottom: 30px;
  }
}
.build_sec04--chart {
  margin-bottom: 50px;
}
.build_sec04--box {
  padding-bottom: 68px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .build_sec04--box {
    padding-bottom: 0;
  }
}
.build_sec04--box--txt {
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 2.4118;
}
@media screen and (max-width: 767px) {
  .build_sec04--box--txt {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.build_sec04--box--img {
  width: 578px;
  position: absolute;
  bottom: 0;
  left: 59%;
}
@media screen and (max-width: 767px) {
  .build_sec04--box--img {
    width: calc(100% + 15px);
    position: relative;
    left: auto;
    right: -15px;
    margin-top: 15px;
  }
}
.build_sec05 {
  overflow: hidden;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .build_sec05 {
    padding-bottom: 50px;
  }
}
.build_sec05 .c-title5 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .build_sec05 .c-title5 {
    margin-bottom: 30px;
  }
}
.build_sec05--box {
  padding-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .build_sec05--box {
    padding-bottom: 0;
  }
}
.build_sec05--box--txt {
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 2.4118;
}
@media screen and (max-width: 767px) {
  .build_sec05--box--txt {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.build_sec05--box--img {
  width: 578px;
  position: absolute;
  bottom: 0;
  left: 59%;
}
@media screen and (max-width: 767px) {
  .build_sec05--box--img {
    width: calc(100% + 15px);
    position: relative;
    left: auto;
    right: -15px;
    margin-top: 15px;
  }
}
.build_sec06 {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .build_sec06 {
    padding-bottom: 40px;
  }
}
.build_sec06 .c-title5 {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .build_sec06 .c-title5 {
    margin-bottom: 30px;
  }
}
.build_sec06--box {
  padding-left: calc(50% - 563px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .build_sec06--box {
    padding: 0 15px;
  }
}
.build_sec06--box--logo {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .build_sec06--box--logo {
    margin-bottom: 30px;
  }
}
.build_sec06--box--txt {
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 2.4118;
}
@media screen and (max-width: 767px) {
  .build_sec06--box--txt {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.build_sec06--box--btn {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .build_sec06--box--btn {
    margin-top: 30px;
  }
}
.build_sec06--box--img {
  padding-top: 55px;
}
@media screen and (max-width: 767px) {
  .build_sec06--box--img {
    padding-top: 40px;
  }
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Plan
------------------------------------------------------------*/
.plan--txt {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.29;
}
@media screen and (max-width: 767px) {
  .plan--txt {
    font-size: 15px;
    line-height: 2.133;
    letter-spacing: 0;
  }
}
.plan_sec01 {
  border-top: 1px solid #174690;
  padding: 100px 0 80px;
}
@media screen and (max-width: 767px) {
  .plan_sec01 {
    padding: 50px 0 40px;
  }
}
.plan_sec01--img {
  display: inline-block;
  position: relative;
  text-align: center;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .plan_sec01--img {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .plan_sec01--img img {
    width: 345px;
    max-width: 100%;
  }
}
.plan_sec01--link {
  width: 226px;
  height: 226px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  opacity: 0;
}
@media screen and (max-width: 1156px) {
  .plan_sec01--link {
    width: 21.985%;
    height: 21.885vw;
  }
}
@media screen and (max-width: 1023px) {
  .plan_sec01--link {
    width: 124px;
    height: 124px;
    border-radius: 50%;
  }
}
.plan_sec01--link:hover {
  opacity: 0.3;
}
.plan_sec01--link.link01 {
  left: 142px;
  top: 222px;
}
@media screen and (max-width: 1156px) {
  .plan_sec01--link.link01 {
    left: 13.8%;
    top: 34.7%;
  }
}
@media screen and (max-width: 1023px) {
  .plan_sec01--link.link01 {
    left: 0;
    top: 38.4%;
  }
}
.plan_sec01--link.link02 {
  bottom: 0;
  left: 344px;
}
@media screen and (max-width: 1156px) {
  .plan_sec01--link.link02 {
    left: 33.46%;
  }
}
@media screen and (max-width: 1023px) {
  .plan_sec01--link.link02 {
    bottom: 27.1%;
    left: 31.88%;
  }
}
.plan_sec01--link.link03 {
  right: 256px;
  bottom: 191px;
}
@media screen and (max-width: 1156px) {
  .plan_sec01--link.link03 {
    right: 24.9%;
    bottom: 29.89%;
  }
}
@media screen and (max-width: 1023px) {
  .plan_sec01--link.link03 {
    right: 0;
    bottom: 42.77%;
  }
}
.plan_sec02 {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .plan_sec02 {
    padding-bottom: 50px;
  }
}
.plan_sec02 .c-title5 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .plan_sec02 .c-title5 {
    margin-bottom: 30px;
  }
}
.plan_sec02--title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.54;
  color: #174690;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .plan_sec02--title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.plan_sec02--title small {
  display: block;
  font-size: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .plan_sec02--title small {
    font-size: 13px;
    line-height: 1.38;
  }
}
.plan_sec02--btn {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .plan_sec02--btn {
    margin-top: 15px;
  }
}
.plan_sec02--btn a {
  width: 370px;
  max-width: 100%;
}
.plan_sec02--group {
  max-width: 1046px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0 120px;
}
@media screen and (max-width: 767px) {
  .plan_sec02--group {
    margin: 30px 0 70px;
  }
}
.plan_sec02--box {
  width: 478px;
  max-width: 48%;
}
@media screen and (max-width: 767px) {
  .plan_sec02--box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .plan_sec02--box:last-child {
    margin-bottom: 0;
  }
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Check
------------------------------------------------------------*/
.check--txt {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.29;
}
@media screen and (max-width: 767px) {
  .check--txt {
    font-size: 15px;
    line-height: 2.133;
    letter-spacing: 0;
  }
}
.check--title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.54;
  color: #174690;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .check--title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.check--title small {
  display: block;
  font-size: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .check--title small {
    font-size: 13px;
    line-height: 1.38;
  }
}
.check_sec01 {
  border-top: 1px solid #174690;
  padding: 90px 0 120px;
}
@media screen and (max-width: 767px) {
  .check_sec01 {
    padding: 50px 0;
  }
}
.check_sec01--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.check_sec01--box--img {
  width: 46%;
  max-width: 515px;
}
@media screen and (max-width: 1023px) {
  .check_sec01--box--img {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .check_sec01--box--img img {
    width: 515px;
    max-width: 100%;
  }
}
.check_sec01--box--cont {
  width: 47%;
  padding-top: 15px;
}
@media screen and (max-width: 1023px) {
  .check_sec01--box--cont {
    width: 100%;
    padding-top: 0;
    margin-top: 30px;
  }
}
.check_sec02 {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .check_sec02 {
    padding-bottom: 60px;
  }
}
.check_sec02--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.check_sec02--box--cont {
  width: 530px;
}
.check_sec02--box--img {
  width: 457px;
}
@media screen and (max-width: 1023px) {
  .check_sec02--box--img {
    margin-top: 10px;
  }
}
.check_sec03 {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .check_sec03 {
    padding-bottom: 20px;
  }
}
.check_sec03--box {
  margin-bottom: 40px;
  overflow: hidden;
}
.check_sec03--box:nth-child(1) {
  width: 594px;
}
.check_sec03--box:nth-child(2) {
  width: 508px;
}
@media screen and (max-width: 767px) {
  .check_sec03--box:nth-child(2) .check_sec03--box--img {
    overflow-x: scroll;
    padding-bottom: 10px;
  }
}
.check_sec03--box:nth-child(2) .check_sec03--box--img img {
  min-width: 508px;
}
.check_sec03--box--title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.check_sec03--box--title span {
  display: inline-block;
  font-size: 16px;
  line-height: 2.1875;
  position: relative;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .check_sec03--box--title span {
    font-size: 14px;
    line-height: 1.357;
  }
}
.check_sec03--box--title span:before, .check_sec03--box--title span:after {
  content: "";
  width: 5px;
  height: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  top: 0;
}
.check_sec03--box--title span:before {
  border-left: 1px solid #000;
  left: 0;
}
.check_sec03--box--title span:after {
  border-right: 1px solid #000;
  right: 0;
}
.check_sec03--box--title small {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .check_sec03--box--title small {
    font-size: 12px;
  }
}
.check_sec03--box--note {
  font-size: 9px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 10px;
  color: #888888;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
Action
------------------------------------------------------------*/
.action--txt {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.29;
}
@media screen and (max-width: 767px) {
  .action--txt {
    font-size: 15px;
    line-height: 2.133;
    letter-spacing: 0;
  }
}
.action--title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.54;
  color: #174690;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .action--title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.action--title small {
  display: block;
  font-size: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .action--title small {
    font-size: 13px;
    line-height: 1.38;
  }
}
.action_sec01 {
  border-top: 1px solid #174690;
  padding: 90px 0 140px;
}
@media screen and (max-width: 767px) {
  .action_sec01 {
    padding: 50px 0;
  }
}
.action_sec01--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.action_sec01--box--cont {
  width: 525px;
  padding-top: 10px;
}
.action_sec01--box--img {
  width: 530px;
}
@media screen and (max-width: 1023px) {
  .action_sec01--box--img {
    margin-top: 10px;
  }
}
.action_sec02 {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .action_sec02 {
    padding-bottom: 60px;
  }
}
.action_sec02--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.action_sec02--box--cont {
  width: 525px;
  padding-top: 10px;
}
.action_sec02--box--img {
  width: 540px;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
margin
------------------------------------------------------------*/
.u-mg--0 {
  margin: 0;
}

.u-mg--auto {
  margin: auto;
}

.u-mgTop--auto {
  margin-top: auto;
}

.u-mgLeft--auto {
  margin-left: auto;
}

.u-mgRight--auto {
  margin-right: auto;
}

.u-mgBottom--auto {
  margin-bottom: auto;
}

.u-mgTop--0 {
  margin-top: 0px;
}

.u-mgTop--5 {
  margin-top: 5px;
}

.u-mgTop--10 {
  margin-top: 10px;
}

.u-mgTop--15 {
  margin-top: 15px;
}

.u-mgTop--20 {
  margin-top: 20px;
}

.u-mgTop--25 {
  margin-top: 25px;
}

.u-mgTop--30 {
  margin-top: 30px;
}

.u-mgTop--35 {
  margin-top: 35px;
}

.u-mgTop--40 {
  margin-top: 40px;
}

.u-mgTop--45 {
  margin-top: 45px;
}

.u-mgTop--50 {
  margin-top: 50px;
}

.u-mgTop--55 {
  margin-top: 55px;
}

.u-mgTop--60 {
  margin-top: 60px;
}

.u-mgTop--65 {
  margin-top: 65px;
}

.u-mgTop--70 {
  margin-top: 70px;
}

.u-mgTop--75 {
  margin-top: 75px;
}

.u-mgTop--80 {
  margin-top: 80px;
}

.u-mgTop--85 {
  margin-top: 85px;
}

.u-mgTop--90 {
  margin-top: 90px;
}

.u-mgTop--95 {
  margin-top: 95px;
}

.u-mgTop--100 {
  margin-top: 100px;
}

.u-mgLeft--0 {
  margin-left: 0px;
}

.u-mgLeft--5 {
  margin-left: 5px;
}

.u-mgLeft--10 {
  margin-left: 10px;
}

.u-mgLeft--15 {
  margin-left: 15px;
}

.u-mgLeft--20 {
  margin-left: 20px;
}

.u-mgLeft--25 {
  margin-left: 25px;
}

.u-mgLeft--30 {
  margin-left: 30px;
}

.u-mgLeft--35 {
  margin-left: 35px;
}

.u-mgLeft--40 {
  margin-left: 40px;
}

.u-mgLeft--45 {
  margin-left: 45px;
}

.u-mgLeft--50 {
  margin-left: 50px;
}

.u-mgLeft--55 {
  margin-left: 55px;
}

.u-mgLeft--60 {
  margin-left: 60px;
}

.u-mgLeft--65 {
  margin-left: 65px;
}

.u-mgLeft--70 {
  margin-left: 70px;
}

.u-mgLeft--75 {
  margin-left: 75px;
}

.u-mgLeft--80 {
  margin-left: 80px;
}

.u-mgLeft--85 {
  margin-left: 85px;
}

.u-mgLeft--90 {
  margin-left: 90px;
}

.u-mgLeft--95 {
  margin-left: 95px;
}

.u-mgLeft--100 {
  margin-left: 100px;
}

.u-mgRight--0 {
  margin-right: 0px;
}

.u-mgRight--5 {
  margin-right: 5px;
}

.u-mgRight--10 {
  margin-right: 10px;
}

.u-mgRight--15 {
  margin-right: 15px;
}

.u-mgRight--20 {
  margin-right: 20px;
}

.u-mgRight--25 {
  margin-right: 25px;
}

.u-mgRight--30 {
  margin-right: 30px;
}

.u-mgRight--35 {
  margin-right: 35px;
}

.u-mgRight--40 {
  margin-right: 40px;
}

.u-mgRight--45 {
  margin-right: 45px;
}

.u-mgRight--50 {
  margin-right: 50px;
}

.u-mgRight--55 {
  margin-right: 55px;
}

.u-mgRight--60 {
  margin-right: 60px;
}

.u-mgRight--65 {
  margin-right: 65px;
}

.u-mgRight--70 {
  margin-right: 70px;
}

.u-mgRight--75 {
  margin-right: 75px;
}

.u-mgRight--80 {
  margin-right: 80px;
}

.u-mgRight--85 {
  margin-right: 85px;
}

.u-mgRight--90 {
  margin-right: 90px;
}

.u-mgRight--95 {
  margin-right: 95px;
}

.u-mgRight--100 {
  margin-right: 100px;
}

.u-mgBottom--0 {
  margin-bottom: 0px;
}

.u-mgBottom--5 {
  margin-bottom: 5px;
}

.u-mgBottom--10 {
  margin-bottom: 10px;
}

.u-mgBottom--15 {
  margin-bottom: 15px;
}

.u-mgBottom--20 {
  margin-bottom: 20px;
}

.u-mgBottom--25 {
  margin-bottom: 25px;
}

.u-mgBottom--30 {
  margin-bottom: 30px;
}

.u-mgBottom--35 {
  margin-bottom: 35px;
}

.u-mgBottom--40 {
  margin-bottom: 40px;
}

.u-mgBottom--45 {
  margin-bottom: 45px;
}

.u-mgBottom--50 {
  margin-bottom: 50px;
}

.u-mgBottom--55 {
  margin-bottom: 55px;
}

.u-mgBottom--60 {
  margin-bottom: 60px;
}

.u-mgBottom--65 {
  margin-bottom: 65px;
}

.u-mgBottom--70 {
  margin-bottom: 70px;
}

.u-mgBottom--75 {
  margin-bottom: 75px;
}

.u-mgBottom--80 {
  margin-bottom: 80px;
}

.u-mgBottom--85 {
  margin-bottom: 85px;
}

.u-mgBottom--90 {
  margin-bottom: 90px;
}

.u-mgBottom--95 {
  margin-bottom: 95px;
}

.u-mgBottom--100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .u-sp-mg--0 {
    margin: 0;
  }
  .u-sp-mgTop--0 {
    margin-top: 0px;
  }
  .u-sp-mgTop--5 {
    margin-top: 5px;
  }
  .u-sp-mgTop--10 {
    margin-top: 10px;
  }
  .u-sp-mgTop--15 {
    margin-top: 15px;
  }
  .u-sp-mgTop--20 {
    margin-top: 20px;
  }
  .u-sp-mgTop--25 {
    margin-top: 25px;
  }
  .u-sp-mgTop--30 {
    margin-top: 30px;
  }
  .u-sp-mgTop--35 {
    margin-top: 35px;
  }
  .u-sp-mgTop--40 {
    margin-top: 40px;
  }
  .u-sp-mgTop--45 {
    margin-top: 45px;
  }
  .u-sp-mgTop--50 {
    margin-top: 50px;
  }
  .u-sp-mgTop--55 {
    margin-top: 55px;
  }
  .u-sp-mgTop--60 {
    margin-top: 60px;
  }
  .u-sp-mgTop--65 {
    margin-top: 65px;
  }
  .u-sp-mgTop--70 {
    margin-top: 70px;
  }
  .u-sp-mgTop--75 {
    margin-top: 75px;
  }
  .u-sp-mgTop--80 {
    margin-top: 80px;
  }
  .u-sp-mgTop--85 {
    margin-top: 85px;
  }
  .u-sp-mgTop--90 {
    margin-top: 90px;
  }
  .u-sp-mgTop--95 {
    margin-top: 95px;
  }
  .u-sp-mgTop--100 {
    margin-top: 100px;
  }
  .u-sp-mgLeft--0 {
    margin-left: 0px;
  }
  .u-sp-mgLeft--5 {
    margin-left: 5px;
  }
  .u-sp-mgLeft--10 {
    margin-left: 10px;
  }
  .u-sp-mgLeft--15 {
    margin-left: 15px;
  }
  .u-sp-mgLeft--20 {
    margin-left: 20px;
  }
  .u-sp-mgLeft--25 {
    margin-left: 25px;
  }
  .u-sp-mgLeft--30 {
    margin-left: 30px;
  }
  .u-sp-mgLeft--35 {
    margin-left: 35px;
  }
  .u-sp-mgLeft--40 {
    margin-left: 40px;
  }
  .u-sp-mgLeft--45 {
    margin-left: 45px;
  }
  .u-sp-mgLeft--50 {
    margin-left: 50px;
  }
  .u-sp-mgLeft--55 {
    margin-left: 55px;
  }
  .u-sp-mgLeft--60 {
    margin-left: 60px;
  }
  .u-sp-mgLeft--65 {
    margin-left: 65px;
  }
  .u-sp-mgLeft--70 {
    margin-left: 70px;
  }
  .u-sp-mgLeft--75 {
    margin-left: 75px;
  }
  .u-sp-mgLeft--80 {
    margin-left: 80px;
  }
  .u-sp-mgLeft--85 {
    margin-left: 85px;
  }
  .u-sp-mgLeft--90 {
    margin-left: 90px;
  }
  .u-sp-mgLeft--95 {
    margin-left: 95px;
  }
  .u-sp-mgLeft--100 {
    margin-left: 100px;
  }
  .u-sp-mgRight--0 {
    margin-right: 0px;
  }
  .u-sp-mgRight--5 {
    margin-right: 5px;
  }
  .u-sp-mgRight--10 {
    margin-right: 10px;
  }
  .u-sp-mgRight--15 {
    margin-right: 15px;
  }
  .u-sp-mgRight--20 {
    margin-right: 20px;
  }
  .u-sp-mgRight--25 {
    margin-right: 25px;
  }
  .u-sp-mgRight--30 {
    margin-right: 30px;
  }
  .u-sp-mgRight--35 {
    margin-right: 35px;
  }
  .u-sp-mgRight--40 {
    margin-right: 40px;
  }
  .u-sp-mgRight--45 {
    margin-right: 45px;
  }
  .u-sp-mgRight--50 {
    margin-right: 50px;
  }
  .u-sp-mgRight--55 {
    margin-right: 55px;
  }
  .u-sp-mgRight--60 {
    margin-right: 60px;
  }
  .u-sp-mgRight--65 {
    margin-right: 65px;
  }
  .u-sp-mgRight--70 {
    margin-right: 70px;
  }
  .u-sp-mgRight--75 {
    margin-right: 75px;
  }
  .u-sp-mgRight--80 {
    margin-right: 80px;
  }
  .u-sp-mgRight--85 {
    margin-right: 85px;
  }
  .u-sp-mgRight--90 {
    margin-right: 90px;
  }
  .u-sp-mgRight--95 {
    margin-right: 95px;
  }
  .u-sp-mgRight--100 {
    margin-right: 100px;
  }
  .u-sp-mgBottom--0 {
    margin-bottom: 0px;
  }
  .u-sp-mgBottom--5 {
    margin-bottom: 5px;
  }
  .u-sp-mgBottom--10 {
    margin-bottom: 10px;
  }
  .u-sp-mgBottom--15 {
    margin-bottom: 15px;
  }
  .u-sp-mgBottom--20 {
    margin-bottom: 20px;
  }
  .u-sp-mgBottom--25 {
    margin-bottom: 25px;
  }
  .u-sp-mgBottom--30 {
    margin-bottom: 30px;
  }
  .u-sp-mgBottom--35 {
    margin-bottom: 35px;
  }
  .u-sp-mgBottom--40 {
    margin-bottom: 40px;
  }
  .u-sp-mgBottom--45 {
    margin-bottom: 45px;
  }
  .u-sp-mgBottom--50 {
    margin-bottom: 50px;
  }
  .u-sp-mgBottom--55 {
    margin-bottom: 55px;
  }
  .u-sp-mgBottom--60 {
    margin-bottom: 60px;
  }
  .u-sp-mgBottom--65 {
    margin-bottom: 65px;
  }
  .u-sp-mgBottom--70 {
    margin-bottom: 70px;
  }
  .u-sp-mgBottom--75 {
    margin-bottom: 75px;
  }
  .u-sp-mgBottom--80 {
    margin-bottom: 80px;
  }
  .u-sp-mgBottom--85 {
    margin-bottom: 85px;
  }
  .u-sp-mgBottom--90 {
    margin-bottom: 90px;
  }
  .u-sp-mgBottom--95 {
    margin-bottom: 95px;
  }
  .u-sp-mgBottom--100 {
    margin-bottom: 100px;
  }
}
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
b {
  font-weight: bold;
}

.u-text-read01 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.286;
}

.u-text-note01 {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: #D52D2D;
  background: #FFDDDD;
  line-height: 1.43;
  padding: 7px 0;
}

.u-text-center {
  text-align: center;
}

.u-text-bold {
  font-weight: bold;
}

.u-text-underline {
  text-decoration: underline;
}

.u-text-red {
  color: red;
}

.u-text-white {
  color: #ffffff;
}

.u-text-blue {
  color: #0D3780;
}

.u-text-black {
  color: #000000;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
display
------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-tb {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-tb {
    display: block;
  }
}

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

.u-in {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-in {
    display: inline-block;
  }
}

/* PC（768px以上）のとき */
.pc-br {
  display: inline; /* 改行有効 */
}

.sp-br {
  display: none; /* 改行無効 */
}

/* SP（768px未満）のとき */
@media screen and (max-width: 767px) {
  .pc-br {
    display: none; /* 改行無効 */
  }
  .sp-br {
    display: inline; /* 改行有効 */
  }
}
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
align
------------------------------------------------------------*/
/*
------------------------------------------------------------*/