@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 62.5%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

@media screen and (max-width: 768px) {
  * {
    box-sizing: border-box;
  }
}

body {
  line-height: 1;
  font-family: YuGothic, "Yu Gothic", "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
}
@media screen and (max-width: 768px) {
  body {
    overflow: auto;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}

a {
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: none;
}

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

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

img[src$=".svg"] {
  width: 100%;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/*--------------------------------------------------------------------
  header
--------------------------------------------------------------------*/
#header {
  /*background: linear-gradient(to right, #1a2980, #26d0ce);
  background: -moz-linear-gradient(left, #1a2980, #26d0ce);
  background: -webkit-linear-gradient(left, #1a2980, #26d0ce);*/
}
@media screen and (max-width: 768px) {
  #header {
    position: fixed;
    background: none;
    padding: 0;
    width: 100%;
    z-index: 5;
    opacity: 0;
  }
}
#header .navi__main {
  background: #fff;
  padding: 40px 0;
  left: 0;
  margin: 0;
  /* padding: 10px; */
  height: 20px;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
#header .navi__main__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 70px;
  width: 190px;
}
@media screen and (max-width: 1040px) {
  #header .navi__main__logo {
    padding-left: 20px;
  }
}
#header .navi__main__logo a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
#header .navi__main__logo a img {
  width: 100%;
}
#header .navi__main__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 70px;
}
@media screen and (max-width: 1040px) {
  #header .navi__main__text {
    padding-right: 20px;
  }
}
#header .navi__main__text ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
}
@media screen and (min-width: 1040px) {
  #header .navi__main__text ul {
    justify-content: space-between;
    padding-right: 20px;
  }
}
#header .navi__main__text ul li {
  padding: 0 15px;
}
@media screen and (max-width: 1040px) {
  #header .navi__main__text ul li {
    padding: 0 10px;
  }
}
#header .navi__main__text ul li a {
  display: inline-block;
  position: relative;
  color: #555;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (max-width: 1040px) {
  #header .navi__main__text ul li a {
    font-size: 12px;
  }
}
#header .navi__main__text ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #555;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.4s;
}
#header .navi__main__text a:hover:before {
  transform: scale(1);
}
#header .navi__main__text_sub01 a {
  background: #203c58;
  padding: 20px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}
#header .navi__main__text_sub01 a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
#header .navi__main__text_sub02 a {
  background: #caddf4;
  padding: 20px;
  color: #203c58;
  font-size: 14px;
  border: 1px solid #203c58;
  margin-left: 10px;
  white-space: nowrap;
}
#header .navi__main__text_sub02 a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
#header .navi__main__text_sub03 a {
  background: #fff;
  padding: 20px;
  color: #203c58;
  font-size: 14px;
  border: 1px solid #203c58;
  margin-left: 10px;
  white-space: nowrap;
}
#header .navi__main__text_sub03 a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1040px) {
  #header p[class^=navi__main__text_sub0] a {
    padding: 20px 10px;
    font-size: 12px;
  }
}
#header .navi-a__main {
  background: #fff;
  padding: 40px 0;
  left: 0;
  margin: 0;
  /* padding: 10px; */
  height: 20px;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  margin: 0 auto;
}
#header .navi-a__main__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 100px;
}
#header .navi-a__main__logo a {
  width: 70%;
}
#header .navi-a__main__logo a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
#header .navi-a__main__logo a img {
  width: 100%;
}
#header .navi-a__main__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: 8%;
}
#header .navi-a__main__text ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .navi-a__main__text ul li {
  padding: 0 15px;
}
#header .navi-a__main__text ul li a {
  display: inline-block;
  position: relative;
  color: #555;
  text-decoration: none;
  font-size: 14px;
}
#header .navi-a__main__text ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #555;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.4s;
}
#header .navi-a__main__text a:hover:before {
  transform: scale(1);
}
#header .navi-a__main__text p a {
  background: #203c58;
  padding: 20px;
  color: #fff;
  font-size: 14px;
}
#header .navi-a__main__text p a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

.header-inner {
  width: 980px;
  margin: 0 auto;
  display: flex;
  /*justify-content: center;*/
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-inner {
    display: none;
    background: linear-gradient(to right, #0061a4, #158abb);
    background: -moz-linear-gradient(left, #0061a4, #158abb);
    background: -webkit-linear-gradient(left, #0061a4, #158abb);
    padding: 80px 0 40px;
    position: absolute;
    width: 100%;
    top: -20px;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .close-btn {
    position: absolute;
    top: 0;
    right: 5%;
    max-width: 33px;
    width: 40%;
    padding: 10px 0;
  }
  .header-inner .close-btn img {
    width: 100%;
  }
}
.header-inner li {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .header-inner li {
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  }
}
.header-inner li + li {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .header-inner li + li {
    padding-left: 0;
  }
}
.header-inner li a {
  color: #333;
}
@media screen and (max-width: 768px) {
  .header-inner li a {
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .sp-header {
    background: #fff;
    display: flex !important;
    justify-content: space-between;
    padding: 10px 5%;
    width: 100%;
    align-items: center;
    position: relative;
    top: -20px;
  }
  .sp-header #sp-logo {
    width: 60%;
    max-width: 333px;
  }
  .sp-header #sp-logo img {
    width: 100%;
  }
  .sp-header .menu-btn {
    width: 100%;
    max-width: 44px;
  }
  .sp-header .menu-btn img {
    width: 100%;
  }
}
.header-inner01 {
  width: 980px;
  margin: 0 auto;
  display: flex;
  /*justify-content: center;*/
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-inner01 {
    display: none;
    background: linear-gradient(to right, #0061a4, #158abb);
    background: -moz-linear-gradient(left, #0061a4, #158abb);
    background: -webkit-linear-gradient(left, #0061a4, #158abb);
    padding: 80px 0 40px;
    position: absolute;
    width: 100%;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .header-inner01 .close-btn {
    position: absolute;
    top: 0;
    right: 5%;
    max-width: 33px;
    width: 40%;
    padding: 10px 0;
  }
  .header-inner01 .close-btn img {
    width: 100%;
  }
}
.header-inner01 li {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .header-inner01 li {
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  }
}
.header-inner01 li + li {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .header-inner01 li + li {
    padding-left: 0;
  }
}
.header-inner01 li a {
  color: #333;
}
@media screen and (max-width: 768px) {
  .header-inner01 li a {
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .sp-header01 {
    background: #fff;
    display: flex !important;
    justify-content: space-between;
    padding: 10px 5%;
    width: 100%;
    align-items: center;
    position: relative;
    top: 0;
  }
  .sp-header01 #sp-logo {
    width: 60%;
    max-width: 333px;
  }
  .sp-header01 #sp-logo img {
    width: 100%;
  }
  .sp-header01 .menu-btn {
    width: 100%;
    max-width: 44px;
  }
  .sp-header01 .menu-btn img {
    width: 100%;
  }
}
#global_nav {
  background: #fff;
  width: 100%;
}

#global_nav.fixed {
  left: 0;
  position: fixed;
  top: 29px;
}

/*--------------------------------------------------------------------
  fv
--------------------------------------------------------------------*/
#logo {
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  #logo {
    max-width: 80%;
    margin-top: 30px;
    top: 0;
  }
}
#logo img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #logo img {
    width: 100%;
  }
}

.fv-wrapper {
  /*background: url(../img/texture.png) #d7e1ec;*/
  background: #f6f8fb;
  position: relative;
  z-index: 5;
  height: auto !important;
}

.fv-inner {
  width: 955px;
  min-height: 552px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 1366px) {
  .fv-inner {
    min-height: 486px;
  }
}
@media screen and (max-width: 768px) {
  .fv-inner {
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 352px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .fv-inner .main-visual {
    text-align: center;
    margin: 20px 0 0;
    position: relative;
  }
}
@media screen and (max-width: 414px) {
  .fv-inner .main-visual {
    margin: 0px 0 0;
  }
}
@media screen and (max-width: 320px) {
  .fv-inner .main-visual {
    margin: 30px 0 0;
  }
}
.fv-inner .main-visual .iphone {
  transform: scale(0.93);
  transition: all 1.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  position: absolute;
  /*top: 0;
  right: 0;*/
  top: 30px;
  right: -30px;
  z-index: 5;
  /*width: 60%;*/
  width: 50%;
}
@media screen and (max-width: 1366px) {
  .fv-inner .main-visual .iphone {
    transform: scale(0.73);
    top: -40px;
    right: 10px;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .fv-inner .main-visual .iphone {
    transform: scale(0.93);
    max-width: 379px;
    width: 90%;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin: auto;
  }
  .fv-inner .main-visual .iphone img {
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .fv-inner .main-visual .iphone {
    width: 90%;
    max-width: 369px;
  }
}
@media screen and (max-width: 375px) {
  .fv-inner .main-visual .iphone {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .fv-inner .main-visual .iphone {
    width: 75%;
    max-width: 369px;
  }
}
.fv-inner .main-visual .shadow {
  position: absolute;
  top: 0;
  right: -100px;
  z-index: 3;
  width: 65%;
}
@media screen and (max-width: 1366px) {
  .fv-inner .main-visual .shadow {
    top: -17px;
    right: -104px;
  }
}
@media screen and (max-width: 768px) {
  .fv-inner .main-visual .shadow {
    max-width: 379px;
    width: 100%;
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    margin: auto;
  }
}
@media screen and (max-width: 414px) {
  .fv-inner .main-visual .shadow {
    /*top: 25px;*/
    top: -10px;
    height: 350px;
  }
}
@media screen and (max-width: 320px) {
  .fv-inner .main-visual .shadow {
    /*width: 55%;*/
    width: 100%;
    height: 250px;
  }
}
@media screen and (max-width: 768px) {
  .fv-inner__btn {
    margin-top: 30px;
  }
}

.scroll-text {
  font-size: 12.75px;
  color: #2270be;
  text-align: center;
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
  letter-spacing: 2px;
}
@media screen and (max-width: 414px) {
  .scroll-text {
    bottom: 40px;
  }
}

.scroll {
  font-size: 12.75px;
  color: #2270be;
  text-align: center;
  width: 1px;
  height: 70px;
  -webkit-transition: 0.5s all 1s ease;
  transition: 0.5s all 1s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
}
@media screen and (max-width: 414px) {
  .scroll {
    height: 30px;
  }
}
.scroll:after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  content: "";
  top: 0;
  background: #2270be;
  -webkit-animation: scroll 1.2s linear 0s infinite;
  animation: scroll 1.2s linear 0s infinite;
  z-index: 100;
}

@keyframes scroll {
  0% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  46% {
    height: 100%;
    top: 0;
    bottom: auto;
  }
  54% {
    height: 100%;
    bottom: 0;
    top: auto;
  }
  100% {
    height: 0%;
    bottom: 0;
    top: auto;
  }
}
.logo {
  margin-top: 36px;
}
.logo__btn {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}
.logo__btn a {
  color: #fff;
  padding: 20px 20px 25px;
  display: inline-block;
  min-width: 385px;
  min-height: 55px;
  box-sizing: border-box;
  position: relative;
  background: #1d3d62;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .logo__btn a {
    min-width: 320px;
  }
}
@media screen and (max-width: 320px) {
  .logo__btn a {
    min-width: 260px;
  }
}
.logo__btn a span {
  font-size: 15px;
  position: relative;
  top: 0px;
}
.logo__btn a::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #4a6481;
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: 50%;
  margin: auto;
}
.logo__btn a::after {
  content: url(../img/arrow.png);
  border-image-width: 50%;
  vertical-align: sub;
  position: absolute;
  right: 21px;
  top: 50%;
  bottom: 50%;
  height: 29px;
  margin: auto;
}
.logo__btn a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.logo__btn02 {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  margin-top: 12px;
}
.logo__btn02 a {
  color: #1d3d62;
  padding: 20px 20px 25px;
  display: inline-block;
  min-width: 385px;
  min-height: 55px;
  box-sizing: border-box;
  position: relative;
  background: #caddf4;
  text-align: left;
  border: 1px solid #1d3d62;
}
@media screen and (max-width: 768px) {
  .logo__btn02 a {
    min-width: 320px;
  }
}
@media screen and (max-width: 320px) {
  .logo__btn02 a {
    min-width: 260px;
  }
}
.logo__btn02 a span {
  font-size: 15px;
  position: relative;
  top: 0px;
}
.logo__btn02 a::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #4a6481;
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: 50%;
  margin: auto;
}
.logo__btn02 a::after {
  content: url(../img/arrow.png);
  border-image-width: 50%;
  vertical-align: sub;
  position: absolute;
  right: 21px;
  top: 50%;
  bottom: 50%;
  height: 29px;
  margin: auto;
}
.logo__btn02 a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.logo__btn03 {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  margin-top: 12px;
}
.logo__btn03 a {
  color: #1d3d62;
  padding: 20px 20px 25px;
  display: inline-block;
  min-width: 385px;
  min-height: 55px;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  text-align: left;
  border: 1px solid #1d3d62;
}
@media screen and (max-width: 768px) {
  .logo__btn03 a {
    min-width: 320px;
  }
}
@media screen and (max-width: 320px) {
  .logo__btn03 a {
    min-width: 260px;
  }
}
.logo__btn03 a span {
  font-size: 15px;
  position: relative;
  top: 0px;
}
.logo__btn03 a::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #4a6481;
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: 50%;
  margin: auto;
}
.logo__btn03 a::after {
  content: url(../img/arrow.png);
  border-image-width: 50%;
  vertical-align: sub;
  position: absolute;
  right: 21px;
  top: 50%;
  bottom: 50%;
  height: 29px;
  margin: auto;
}
.logo__btn03 a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

/*--------------------------------------------------------------------
  canvas
--------------------------------------------------------------------*/
.box-wrap {
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 10;
}

.box-flex {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  z-index: 10;
}
.box-flex .box {
  bottom: 0;
  transition: all 1s linear;
}

.box {
  width: 100px;
  height: 100px;
  background-color: #fff;
  position: absolute;
}
@media screen and (max-width: 1366px) {
  .box {
    width: 73px;
    height: 73px;
  }
}
@media screen and (max-width: 768px) {
  .box {
    width: 71px;
    height: 71px;
  }
}
.box + .box {
  margin-top: 2px;
}

/*--------------------------------------------------------------------
  concept
--------------------------------------------------------------------*/
.concept {
  background: #caddf4;
  padding: 20px 10px;
}
.concept .concept-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 815px;
  padding: 20px 10px;
  margin: 0 auto;
  min-height: 154px;
}
@media screen and (max-width: 768px) {
  .concept .concept-inner {
    width: 100%;
    padding: 30px 20px;
  }
}
.concept .concept-inner p {
  font-size: 18px;
  line-height: 2;
  color: #1d3d62;
}
@media screen and (max-width: 768px) {
  .concept .concept-inner p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------------
  topics
--------------------------------------------------------------------*/
.topics {
  margin: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .topics {
    margin: 30px 0 0;
  }
}
.topics h2 {
  color: #005bab;
  font-size: 26px;
  text-align: center;
  border-bottom: 1px solid #005bab;
  padding-bottom: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .topics h2 {
    border-bottom: none;
  }
  .topics h2::after {
    content: "";
    width: 50px;
    height: 1px;
    background: #005bab;
    display: block;
    margin: 10px auto 0;
  }
}
.topics .topics-list {
  width: 812px;
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  .topics .topics-list {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto 30px;
  }
}
.topics .topics-list .item {
  font-size: 13px;
  color: #575757;
  padding: 10px 0;
  font-weight: bold;
  line-height: 1.8;
}
.topics .topics-list .item a {
  color: #575757;
  text-decoration: underline;
}
.topics .topics-list .item::after {
  content: "";
  display: block;
  clear: both;
}
.topics .topics-list .item .date {
  margin-right: 10px;
  display: block;
  float: left;
  width: 100px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .topics .topics-list .item .date {
    width: 100%;
    float: none;
  }
}
.topics .topics-list .item .topic-title {
  display: block;
  float: left;
  width: 700px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .topics .topics-list .item .topic-title {
    width: 100%;
    float: none;
  }
}
.topics .more-btn {
  display: flex;
  justify-content: center;
}
.topics .more-btn .more {
  background: linear-gradient(to right, #1a2980, #26d0ce);
  background: -moz-linear-gradient(left, #1a2980, #26d0ce);
  background: -webkit-linear-gradient(left, #1a2980, #26d0ce);
  padding: 1px;
  display: block;
  font-size: 13.6px;
  font-weight: bold;
  border-radius: 40px;
  color: #575757;
}
.topics .more-btn .more span {
  padding: 13px 40px;
  background: #fff;
  display: block;
  border-radius: 40px;
}

/*--------------------------------------------------------------------
  section
--------------------------------------------------------------------*/
.section {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section {
    margin: 0 auto;
  }
}
.section h2 {
  font-size: 36px;
  color: #060731;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  /*&::after {
  	content: "";
  	width: 100px;
  	height: 1px;
  	background: #1589bb;
  	display: block;
  	margin: 10px auto 0;
  	@media screen and (max-width: 768px){
  		width: 50px;
  	}
  }*/
}
@media screen and (max-width: 768px) {
  .section h2 {
    font-size: 24px;
  }
}

.animation {
  margin-top: 200px;
  opacity: 0;
}

/*--------------------------------------------------------------------
  characteristics
--------------------------------------------------------------------*/
.characteristics {
  background: #f6f8fb;
  padding: 65px 10px 30px;
}
@media screen and (max-width: 768px) {
  .characteristics {
    width: 100%;
  }
}
.characteristics__main {
  width: 813px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .characteristics__main {
    width: 100%;
  }
}
.characteristics__main .point-features {
  text-align: center;
  padding: 35px 0 0;
  letter-spacing: 3px;
}
.characteristics__main .point-wrapper {
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  .characteristics__main .point-items {
    padding: 0 5%;
    margin-bottom: 60px;
  }
}
.characteristics__main .point-items:last-child .desc-wrapper {
  background: #fff;
  padding: 10px 20px 30px 20px;
  border-radius: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .characteristics__main .point-items:last-child .desc-wrapper {
    padding: 10px 20px 20px 20px;
  }
}
.characteristics__main .point-items:last-child .desc-wrapper .desc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.characteristics__main .point-items:last-child .desc-wrapper .desc img {
  max-width: 46%;
  max-height: 32px;
  padding: 20px 0 0 10px;
}
@media screen and (max-width: 768px) {
  .characteristics__main .point-items:last-child .desc-wrapper .desc img {
    max-width: 50%;
    max-height: 48px;
  }
}
.characteristics__main .point-items:last-child .desc-wrapper .desc img:nth-child(odd) {
  padding: 20px 10px 0 0;
}
.characteristics__main .point-items .heading {
  color: #005bab;
  display: inline-block;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
.characteristics__main .point-items .heading02 {
  color: #005bab;
  display: inline-block;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
.characteristics__main .point-items .horizon1 {
  position: absolute;
  top: 5px;
  left: 80px;
  width: 0;
  height: 1px;
  background: #005bab;
}
.characteristics__main .point-items .horizon2 {
  position: absolute;
  top: 5px;
  left: 80px;
  width: 0;
  height: 1px;
  background: #005bab;
}
.characteristics__main .point-items h3 {
  font-size: 34px;
  font-weight: bold;
  color: #333;
  margin: 17px 0 22px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .characteristics__main .point-items h3 {
    font-size: 27px;
  }
}
.characteristics__main .point-items .text {
  line-height: 1.8;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .characteristics__main .point-items .text {
    padding-bottom: 20px;
  }
}
.characteristics__main .point-items .spacing {
  letter-spacing: -2px;
  line-height: 1.3;
}
.characteristics__main .point-items .desc {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .characteristics__main .point-items .desc {
    font-weight: normal;
  }
}
.characteristics__main .point-items .desc span {
  letter-spacing: -1px;
}
.characteristics__main .point-items .desc a {
  color: #575757;
  text-decoration: underline;
}
.characteristics__main .point-items .desc img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .characteristics__main .point-items .desc img {
    max-width: 100%;
  }
}
.characteristics__main .point-items .desc01 {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .characteristics__main .point-items .desc01 {
    font-weight: normal;
  }
}
.characteristics__main .point-items .desc01 span {
  letter-spacing: -1px;
}
.characteristics__main .point-items .desc01 a {
  color: #575757;
  text-decoration: underline;
}
.characteristics__main .point-items .desc01 img {
  max-width: 70%;
}
@media screen and (max-width: 768px) {
  .characteristics__main .point-items .desc01 img {
    max-width: 100%;
  }
}
.characteristics__main .row-point {
  display: flex;
  margin-bottom: 70px;
  justify-content: space-between;
}
.characteristics__main .row-point .heading-wrapper {
  width: 49%;
}
.characteristics__main .row-point .desc-wrapper {
  width: 49%;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.characteristics__main .point-thumbanail {
  display: flex;
  justify-content: space-between;
  margin: 50px 30px 50px 0;
}
@media screen and (max-width: 768px) {
  .characteristics__main .point-thumbanail {
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0 50px;
    padding: 0 10%;
  }
  .characteristics__main .point-thumbanail li {
    margin: 0 40px;
  }
  .characteristics__main .point-thumbanail li:first-child {
    margin: 0 40px 40px 0;
  }
}
@media screen and (max-width: 414px) {
  .characteristics__main .point-thumbanail {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 60px;
  }
  .characteristics__main .point-thumbanail li {
    margin: 0;
  }
  .characteristics__main .point-thumbanail li:first-child {
    margin: 0 0 20px 0;
  }
  .characteristics__main .point-thumbanail li:first-child img {
    width: 100%;
  }
  .characteristics__main .point-thumbanail li:nth-child(2) {
    width: 43%;
  }
  .characteristics__main .point-thumbanail li:nth-child(2) img {
    width: 100%;
  }
  .characteristics__main .point-thumbanail li:last-child {
    margin-left: 13%;
    width: 43%;
  }
  .characteristics__main .point-thumbanail li:last-child img {
    width: 100%;
  }
}
.characteristics__main .point-thumbanail p {
  text-align: center;
  font-size: 18px;
  color: #2270be;
  margin-top: 15px;
  font-weight: bold;
}

.Text-Span {
  position: relative;
  z-index: 1;
}

.Text-Span:after {
  content: "";
  position: absolute;
  left: 80px;
  /*bottom: -14px;*/
  top: 5px;
  width: 0%;
  height: 1px;
  background: #005bab;
  z-index: -1;
  transition: all 0.8s;
}
@media screen and (max-width: 768px) {
  .Text-Span:after {
    top: 8px;
  }
}

.Text-Span.isActive:after {
  width: 100%;
}

/*--------------------------------------------------------------------
  another-features
--------------------------------------------------------------------*/
.another-features {
  background: #dce8f6;
  padding: 30px 10px;
}
@media screen and (max-width: 768px) {
  .another-features {
    padding: 20px 10px;
  }
}
.another-features__main {
  width: 813px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .another-features__main {
    width: 100%;
  }
}
.another-features__main h2 {
  font-size: 30px;
  color: #005bab;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .another-features__main h2 {
    font-size: 24px;
  }
}
.another-features__main__cover {
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .another-features__main__cover {
    display: inherit;
    margin: 30px auto 0;
  }
}
.another-features__main__cover_item {
  width: 40%;
  background: #eef4fb;
  padding: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .another-features__main__cover_item {
    width: 100%;
    padding: 30px 20px;
  }
}
.another-features__main__cover_item:nth-of-type(5) {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
}
.another-features__main__cover_item:nth-of-type(5) > ul,
.another-features__main__cover_item:nth-of-type(5) > p {
  width: 50%;
}
.another-features__main__cover_item:nth-of-type(5) a {
  display: block;
  position: absolute;
  right: 30px;
}
.another-features__main__cover_item ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.another-features__main__cover_item ul li:nth-child(1) {
  width: 10%;
  color: #005bab;
  font-weight: bold;
  font-size: 14px;
}
.another-features__main__cover_item ul li:nth-child(2) {
  width: 90%;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4;
  margin-top: -5px;
}
.another-features__main__cover_item p {
  line-height: 1.6;
  margin-top: 10px;
  font-size: 15px;
}
.another-features__main__cover_item a .features-btn {
  position: relative;
  background: #fff;
  padding: 10px;
  border: 1px solid #333;
  color: #1d3d62;
  font-size: 14px;
  font-weight: bold;
  margin: 10px auto 0;
}
.another-features__main__cover_item a .features-btn p::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1d3d62;
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: 50%;
  margin: auto;
}
.another-features__main__cover_item a .features-btn p::after {
  content: url(../img/arrow.png);
  border-image-width: 50%;
  vertical-align: sub;
  position: absolute;
  right: 21px;
  top: 52%;
  bottom: 50%;
  height: 29px;
  margin: auto;
}
.another-features__main__cover_item a .features-btn p img {
  max-width: 50%;
}
.another-features__main__cover_item a .features-btn p span {
  color: #1d3d62;
}
.another-features__main__cover_item:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.another-features__main__cover_item01 {
  width: 100%;
  background: #eef4fb;
  padding: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .another-features__main__cover_item01 {
    max-width: 100%;
    padding: 30px 20px;
  }
}
.another-features__main__cover_item01_sub01 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.another-features__main__cover_item01_sub01 ul li:nth-child(1) {
  width: 4%;
  color: #005bab;
  font-weight: bold;
  font-size: 14px;
}
.another-features__main__cover_item01_sub01 ul li:nth-child(2) {
  width: 95%;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4;
  margin-top: -5px;
}
@media screen and (max-width: 768px) {
  .another-features__main__cover_item01_sub01 ul li:nth-child(2) {
    width: 90%;
  }
}
.another-features__main__cover_item01_sub02 {
  width: 100%;
  /*ul{
  	display: flex;
  	justify-content: space-between;
  	margin: 50px 30px 50px 0;
  	@media screen and (max-width: 768px){
  		margin: 50px 0 50px 0;
  	}
     li{
     	padding: 0 10px;
  		@media screen and (max-width: 768px){
  			padding: 0 5px;
  		}
     	img{
     		max-width: 100%;
     	}
     	p{
  			text-align: center;
  			font-size: 18px;
  			color: #2270be;
  			margin-top: 15px;
  			font-weight: 700;
  			@media screen and (max-width: 768px){
  				font-size: 10px;
  			}
     	}
     }
  }	*/
}
.another-features__main__cover_item01_sub02 p {
  text-align: center;
  font-size: 18px;
  color: #2270be;
  margin-top: 15px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .another-features__main__cover_item01_sub02 p {
    font-size: 10px;
  }
}
.another-features__main__cover_item01_sub02 p img {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .another-features__main__cover_item01_sub02 p img {
    width: 80%;
    margin: 0 auto;
  }
}
.another-features__main__cover_item01 p {
  line-height: 1.6;
  margin-top: 20px;
  font-size: 15px;
}

/*--------------------------------------------------------------------
  ad-service
--------------------------------------------------------------------*/
.ad-service {
  background: #f6f8fb;
  padding: 30px 10px;
}
.ad-service__main {
  width: 813px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ad-service__main {
    width: 100%;
  }
}
.ad-service__main .sponsor-wrapper {
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .ad-service__main .sponsor-wrapper {
    padding: 2px 5%;
  }
}
.ad-service__main h2 {
  font-size: 36px;
  color: #060731;
  text-align: left;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .ad-service__main h2 {
    font-size: 30px;
  }
}
.ad-service__main h2::after {
  background: #fff;
}
.ad-service__main .sponsor-text {
  font-size: 14px;
  letter-spacing: 2px;
  padding-top: 15px;
}
.ad-service__main .sponsor-inner {
  width: 813px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .ad-service__main .sponsor-inner {
    width: 100%;
  }
  .ad-service__main .sponsor-inner img {
    width: 100%;
  }
}
.ad-service__main .sponsor-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ad-service__main .sponsor-img {
    padding: 0 3%;
    width: 100%;
  }
}
.ad-service__main .sponsor-img img {
  max-width: 30%;
  max-height: 40px;
  padding: 0 10px 20px 10px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .ad-service__main .sponsor-img img {
    max-width: 45%;
    padding: 0 5px 15px 5px;
    max-height: 51px;
  }
}
.ad-service__main .sponsor-img img[src*="09"] {
  max-width: 40%;
}
.ad-service__main .sponsor-img img[src*="04"], .ad-service__main .sponsor-img img[src*="06"] {
  max-height: 55px;
}
.ad-service__main .contact-text {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: #005bab;
}
@media screen and (max-width: 768px) {
  .ad-service__main .contact-text {
    font-size: 16px;
    padding: 0 3%;
    line-height: 1.6;
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------------
  initiatives
--------------------------------------------------------------------*/
.initiatives {
  background: #fff;
}
.initiatives__main {
  width: 813px;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .initiatives__main {
    width: 100%;
    display: inherit;
  }
}
.initiatives__main_details {
  width: 100%;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 768px) {
  .initiatives__main_details {
    margin: 0;
    padding: 0 20px;
  }
}
.initiatives__main_details h2 {
  font-size: 30px;
  color: #005bab;
  text-align: left;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.5;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .initiatives__main_details h2 {
    font-size: 24px;
    padding-bottom: 10px;
  }
}
.initiatives__main_details h2::after {
  background: #fff;
}
.initiatives__main_details .explanation {
  line-height: 1.6;
  font-size: 15px;
}
.initiatives__main_details .notes01 {
  line-height: 1.6;
  font-size: 15px;
  padding-top: 10px;
}
.initiatives__main_details .notes01 span {
  font-size: 12px;
}
.initiatives__main_details .notes02 {
  line-height: 1.6;
  font-size: 15px;
}
.initiatives__main_details .notes02 span {
  font-size: 12px;
}
.initiatives__main_image {
  margin: 0 0 0 20px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .initiatives__main_image {
    margin: 0;
    padding: 20px 20px 0;
    width: 100%;
  }
}
.initiatives__main_image img {
  width: 100%;
}

/*--------------------------------------------------------------------
  introduction
--------------------------------------------------------------------*/
.introduction {
  background: #f6f8fb;
  color: #fff;
  /* padding: 20px 30px; */
  background: linear-gradient(to left, #3774c2, #659ec0);
  background: -webkit-linear-gradient(right, #3774c2, #659ec0);
  /* border-radius: 50px; */
  /* box-shadow: 3px 3px 6px #cff3f3; */
  /* display: inline-block; */
  min-width: 350px;
  min-height: 88px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .introduction {
    min-width: auto;
    min-height: auto;
  }
}
.introduction__main {
  width: 813px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .introduction__main {
    width: 100%;
    display: inherit;
  }
}
.introduction__main .introduction-wrapper {
  padding: 62px 0;
  width: 48%;
}
@media screen and (max-width: 768px) {
  .introduction__main .introduction-wrapper {
    padding: 62px 5%;
    width: 100%;
  }
}
.introduction__main h2 {
  font-size: 36px;
  color: #fff;
  text-align: left;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .introduction__main h2 {
    font-size: 30px;
  }
}
.introduction__main h2::after {
  background: #fff;
}
.introduction__main .introduction-text {
  font-size: 14px;
  letter-spacing: 2px;
  padding-top: 15px;
}
.introduction__main .introduction-inner {
  width: 813px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .introduction__main .introduction-inner {
    width: 100%;
  }
  .introduction__main .introduction-inner img {
    width: 100%;
  }
}
.introduction__main .introduction-img {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .introduction__main .introduction-img {
    display: block;
    padding: 0 3%;
  }
}
.introduction__main .introduction-text01 {
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .introduction__main .introduction-text01 {
    font-size: 16px;
    padding: 0;
    line-height: 1.6;
    margin-top: 30px;
  }
}
.introduction__main .introduction-wrapper01 {
  padding: 0 0 62px;
  width: 48%;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .introduction__main .introduction-wrapper01 {
    padding: 2px 5% 62px;
    width: 100%;
  }
}
.introduction__main .introduction-wrapper01__btn a {
  color: #1d3d62;
  padding: 20px 20px;
  display: inline-block;
  min-width: 385px;
  min-height: 55px;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .introduction__main .introduction-wrapper01__btn a {
    min-width: 280px;
    width: 100%;
    min-height: 60px;
  }
}
.introduction__main .introduction-wrapper01__btn a::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1d3d62;
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: 50%;
  margin: auto;
}
.introduction__main .introduction-wrapper01__btn a::after {
  content: url(../img/arrow.png);
  border-image-width: 50%;
  vertical-align: sub;
  position: absolute;
  right: 21px;
  top: 60%;
  bottom: 50%;
  height: 29px;
  margin: auto;
}
.introduction__main .introduction-wrapper01__btn a span {
  font-size: 15px;
  font-weight: bold;
}
.introduction__main .introduction-wrapper01__btn a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

/*--------------------------------------------------------------------
  news
--------------------------------------------------------------------*/
.news {
  background: #f6f8fb;
  padding: 30px 10px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 20px 0 10px;
  }
}
.news__main {
  width: 813px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news__main {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news__main .news-wrapper {
    padding: 8% 4% 10%;
  }
}
.news__main h2 {
  font-size: 36px;
  color: #060731;
  text-align: left;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .news__main h2 {
    font-size: 30px;
  }
}
.news__main h2::after {
  background: #fff;
}
.news__main .news-text {
  font-size: 14px;
  letter-spacing: 2px;
  padding: 15px 0 30px;
}
.news__main .news-inner {
  width: 813px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .news__main .news-inner {
    width: 100%;
  }
  .news__main .news-inner img {
    width: 100%;
  }
}
.news__main .news-img {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .news__main .news-img {
    display: block;
    padding: 0 3%;
  }
}
.news__main .contact-text {
  text-align: center;
  margin-top: 60px;
  font-size: 18px;
  color: #005bab;
}
@media screen and (max-width: 768px) {
  .news__main .contact-text {
    font-size: 16px;
    padding: 0 3%;
    line-height: 1.6;
    margin-top: 30px;
  }
}
.news__main__contents ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news__main__contents ul {
    display: inherit;
    margin-bottom: 0;
  }
}
.news__main__contents ul li {
  background: #fff;
  padding-bottom: 15px;
  /*width: 32%;*/
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .news__main__contents ul li {
    margin-bottom: 30px;
    width: 100%;
  }
}
.news__main__contents ul li a {
  transition: 0.3s ease-in-out;
}
.news__main__contents ul li a img {
  width: 100%;
  transition: 0.2s ease-in-out;
}
.news__main__contents ul li a:hover {
  opacity: 0.8;
}
.news__main__contents ul li a:hover .news-text01 {
  overflow: hidden;
}
.news__main__contents ul li a:hover .news-text01 img {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .news__main__contents ul li:nth-child(1) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .news__main__contents ul li:nth-child(2) {
    margin-right: 0;
  }
}
.news__main__contents .news-text01 p {
  font-size: 17px;
  padding: 20px 15px;
  line-height: 1.6;
  color: #005bab;
  font-weight: bold;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .news__main__contents .news-text01 p {
    font-size: 16px;
    height: auto;
  }
}
.news__main__contents .news-text02 p {
  font-size: 14px;
  padding: 10px 25px;
  line-height: 1.6;
  color: #333;
  font-weight: bold;
  position: relative;
}
.news__main__contents .news-text02 p::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1d3d62;
  position: absolute;
  top: 15%;
  right: 10px;
  margin: auto;
}
.news__main__contents .news-text02 p::after {
  content: url(../img/arrow.png);
  border-image-width: 50%;
  vertical-align: sub;
  position: absolute;
  right: 19px;
  top: 58%;
  bottom: 50%;
  height: 29px;
  margin: auto;
}

/*--------------------------------------------------------------------
  contact
--------------------------------------------------------------------*/
.contact {
  /*background: url(../img/contact_bg.png) ;*/
  background: linear-gradient(to left, #f1fcfb, #c4e1f5);
  background: -webkit-linear-gradient(right, #f1fcfb, #c4e1f5);
  /*background: linear-gradient(217deg, rgba(190,225,245,.8), rgba(190,225,245,0) 70.71%),
             	linear-gradient(127deg, rgba(238,252,245,.8), rgba(238,252,245,0) 70.71%),
             	linear-gradient(336deg, rgba(225,238,252,.8), rgba(225,238,252,0) 70.71%);*/
  /* border-radius: 50px; */
  /* box-shadow: 3px 3px 6px #cff3f3; */
  /* display: inline-block; */
  /*min-width: 350px;*/
  min-height: 88px;
  box-sizing: border-box;
  /*padding: 10px;*/
  padding: 30px 0px;
}
@media screen and (max-width: 768px) {
  .contact {
    /*background: url(../img/contact_bg_sp.png);*/
    padding: 10px 0px;
  }
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 10% 4%;
  }
}
@media screen and (min-width: 769px) {
  .contact__inner {
    max-width: 1520px;
    margin: auto;
    padding: 0% 2% 2%;
  }
}
.contact h2 {
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .contact h2 {
    font-size: 30px;
    margin-top: 0;
  }
}
.contact .point-contact {
  text-align: center;
  padding: 35px 0 35px;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .contact .point-contact {
    padding: 17px 0 17px;
  }
}
.contact__text {
  font-size: 15px;
  padding: 0 0 10px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .contact__text {
    text-align: left;
  }
}
.contact__info {
  font-size: 22px;
  padding: 10px 0 25px;
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact__info {
    font-size: 19px;
  }
}
.contact__btn {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.contact__btn a {
  color: #fff;
  padding: 20px 20px 25px;
  display: inline-block;
  min-width: 385px;
  min-height: 55px;
  box-sizing: border-box;
  position: relative;
  background: #1d3d62;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact__btn a {
    min-width: 320px;
  }
}
@media screen and (max-width: 320px) {
  .contact__btn a {
    min-width: 260px;
  }
}
.contact__btn a span {
  font-size: 15px;
  position: relative;
  top: 0px;
}
.contact__btn a::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #4a6481;
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: 50%;
  margin: auto;
}
.contact__btn a::after {
  content: url(../img/arrow.png);
  border-image-width: 50%;
  vertical-align: sub;
  position: absolute;
  right: 21px;
  top: 50%;
  bottom: 50%;
  height: 29px;
  margin: auto;
}
.contact__btn a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.contact__btn01 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 12px;
}
.contact__btn01 a {
  color: #1d3d62;
  padding: 20px 20px 25px;
  display: inline-block;
  min-width: 385px;
  min-height: 55px;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  text-align: left;
  border: 1px solid #1d3d62;
}
@media screen and (max-width: 768px) {
  .contact__btn01 a {
    min-width: 320px;
  }
}
@media screen and (max-width: 320px) {
  .contact__btn01 a {
    min-width: 260px;
  }
}
.contact__btn01 a span {
  font-size: 15px;
  position: relative;
  top: 0px;
}
.contact__btn01 a::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1d3d62;
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: 50%;
  margin: auto;
}
.contact__btn01 a::after {
  content: url(../img/arrow.png);
  border-image-width: 50%;
  vertical-align: sub;
  position: absolute;
  right: 21px;
  top: 50%;
  bottom: 50%;
  height: 29px;
  margin: auto;
}
.contact__btn01 a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

/*--------------------------------------------------------------------
  flow
--------------------------------------------------------------------*/
.flow {
  background: #f6f8fb;
  padding: 30px 10px;
}
.flow__main {
  width: 813px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .flow__main {
    width: 100%;
  }
}
.flow__main .flow-wrapper {
  padding: 30px 0;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .flow__main .flow-wrapper {
    padding: 2px 0;
    margin-top: 0;
  }
}
.flow__main h2 {
  font-size: 36px;
  color: #060731;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .flow__main h2 {
    font-size: 30px;
  }
}
.flow__main h2::after {
  background: #fff;
}
.flow__main .flow-text {
  font-size: 14px;
  letter-spacing: 2px;
  padding-top: 15px;
  text-align: center;
  color: #1d3d62;
}
.flow__main .flow-inner {
  width: 813px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 768px) {
  .flow__main .flow-inner {
    width: 100%;
  }
  .flow__main .flow-inner img {
    width: 100%;
  }
}
.flow__main .flow-img {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .flow__main .flow-img {
    display: block;
    padding: 0 3%;
  }
}
.flow__main .contact-text {
  text-align: center;
  margin-top: 60px;
  font-size: 18px;
  color: #005bab;
}
@media screen and (max-width: 768px) {
  .flow__main .contact-text {
    font-size: 16px;
    padding: 0 3%;
    line-height: 1.6;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------------
  payment
--------------------------------------------------------------------*/
.payment {
  background: #fff;
  padding: 30px 10px;
}
.payment__main {
  width: 813px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .payment__main {
    width: 100%;
  }
}
.payment__main__title {
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .payment__main__title {
    padding: 2px 0;
  }
}
.payment__main__title h2 {
  font-size: 36px;
  color: #060731;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .payment__main__title h2 {
    font-size: 30px;
  }
}
.payment__main__title h2::after {
  background: #fff;
}
.payment__main__title_sub {
  font-size: 14px;
  letter-spacing: 2px;
  padding-top: 15px;
  text-align: center;
  color: #1d3d62;
}
.payment__main__text ul {
  width: 530px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .payment__main__text ul {
    width: 100%;
    margin-top: 30px;
    padding: 0 15px;
  }
}
.payment__main__text ul li {
  line-height: 1.8;
  text-indent: -16px;
  padding-right: 0;
}
.payment__main .contact-text {
  text-align: center;
  margin-top: 60px;
  font-size: 18px;
  color: #005bab;
}
@media screen and (max-width: 768px) {
  .payment__main .contact-text {
    font-size: 16px;
    padding: 0 3%;
    line-height: 1.6;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------------
  optout
--------------------------------------------------------------------*/
.optout {
  background: #f6f8fb;
  padding: 30px 10px;
}
.optout__main {
  width: 813px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .optout__main {
    width: 100%;
  }
}
.optout__main .optout-wrapper {
  padding: 30px 0;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .optout__main .optout-wrapper {
    padding: 2px 0;
    margin-top: 0;
  }
}
.optout__main h2 {
  font-size: 36px;
  color: #060731;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .optout__main h2 {
    font-size: 30px;
  }
}
.optout__main h2::after {
  background: #fff;
}
.optout__main .optout-text {
  font-size: 14px;
  letter-spacing: 2px;
  padding-top: 15px;
  text-align: center;
  color: #1d3d62;
}
.optout__main .optout-inner {
  width: 813px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 768px) {
  .optout__main .optout-inner {
    width: 100%;
  }
  .optout__main .optout-inner img {
    width: 100%;
  }
}
.optout__main__details_title {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .optout__main__details_title {
    font-size: 20px;
  }
}
.optout__main__details_text {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .optout__main_box {
    padding: 10px 0;
  }
}
.optout__main_box dt {
  margin-top: 40px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .optout__main_box dt {
    margin-top: 20px;
  }
}
.optout__main_box dd {
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .optout__main_box dd {
    font-size: 13px;
    margin-bottom: 30px;
  }
}
.optout__main_box a {
  text-decoration: underline;
  color: #1d3d62;
  word-break: break-all;
}
.optout__main_box a:hover {
  opacity: 0.8;
}

/*--------------------------------------------------------------------
  copyright
--------------------------------------------------------------------*/
#copyright .foot_nav_wrapper {
  background: #005bac;
  color: #fff;
  text-align: center;
  padding: 40px 0 20px;
}
#copyright .foot_nav_wrapper .page_share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}
#copyright .foot_nav_wrapper .page_share p {
  color: #fff;
  font-weight: bold;
  line-height: 32px;
  font-size: 14px;
}
#copyright .foot_nav_wrapper .page_share li {
  height: 32px;
}
#copyright .foot_nav_wrapper .page_share li a, #copyright .foot_nav_wrapper .page_share li div {
  display: block;
  width: 32px;
  height: 100%;
  cursor: pointer;
}
#copyright .foot_nav_wrapper .page_share li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#copyright .foot_nav_wrapper p.copy {
  font-size: 11px;
  padding: 0;
}
@media screen and (max-width: 640px) {
  #copyright {
    border-top: none;
    padding: 20px 0;
    margin-top: 0;
  }
}

@media only screen and (max-device-width: 768px), only screen and (max-width: 768px) {
  #gmocommonfooter {
    margin-top: 0 !important;
  }
}
/*--------------------------------------------------------------------
  products
--------------------------------------------------------------------*/
.products {
  padding: 30px 10px;
}
@media screen and (max-width: 768px) {
  .products__inner {
    padding: 8% 4%;
  }
}
@media screen and (min-width: 769px) {
  .products__inner {
    max-width: 1520px;
    margin: auto;
    padding: 4% 1.6rem;
  }
}
.products__ttl {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .products__ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .products__ttl {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.2;
  }
}
@media screen and (min-width: 769px) {
  .products__ttl > span {
    margin-right: 1.1rem;
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .products__ttl > span {
    /*width: 90%;*/
    width: 100%;
    margin-right: 1.2rem;
    display: inline-block;
  }
}
.products__list {
  display: flex;
  /*margin-top: 3%;*/
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .products__list {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .products__list {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10%;
  }
}
.products__list > li {
  border: 1px solid #d2d2d3;
  /*&:not(:nth-child(5n)) {
  	margin-right: 1%;
  }*/
}
@media screen and (max-width: 768px) {
  .products__list > li {
    width: 100%;
    margin: 0.6rem auto 0;
  }
}
@media screen and (min-width: 769px) {
  .products__list > li {
    width: 32%;
    margin-top: 0.7rem;
  }
}
.products__list > li:not(:nth-child(3n)) {
  margin-right: 1%;
}
.products__list > li:nth-child(3n) {
  margin-right: 0;
}
.products__list > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: inherit;
  text-align: center;
  /*padding: 6% 2%;*/
  transition: 0.3s ease-in-out;
}
.products__list > li a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .products__list > li a {
    /*height: 132px;*/
    height: auto;
  }
}
.products__list > li a img {
  width: 100%;
}
.products__wrap p {
  color: #333;
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.products__wrap figure {
  margin: auto;
}
@media screen and (min-width: 769px) {
  .products__wrap figure {
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .products__wrap figure {
    width: 90%;
  }
}

/*--------------------------------------------------------------------
  footer
--------------------------------------------------------------------*/
.footer-seal {
  padding: 30px 0 46px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.contact__btn02 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 12px;
}
.contact__btn02 a {
  color: #1d3d62;
  padding: 20px 20px 25px;
  display: inline-block;
  min-width: 385px;
  min-height: 55px;
  box-sizing: border-box;
  position: relative;
  background: #caddf4;
  text-align: left;
  border: 1px solid #1d3d62;
}
@media screen and (max-width: 768px) {
  .contact__btn02 a {
    min-width: 320px;
  }
}
@media screen and (max-width: 320px) {
  .contact__btn02 a {
    min-width: 260px;
  }
}
.contact__btn02 a span {
  font-size: 15px;
  position: relative;
  top: 0px;
}
.contact__btn02 a::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1d3d62;
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: 50%;
  margin: auto;
}
.contact__btn02 a::after {
  content: url(../img/arrow.png);
  border-image-width: 50%;
  vertical-align: sub;
  position: absolute;
  right: 21px;
  top: 50%;
  bottom: 50%;
  height: 29px;
  margin: auto;
}
.contact__btn02 a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.contact__btn03 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 12px;
}
.contact__btn03 a {
  color: #1d3d62;
  padding: 20px 20px 25px;
  display: inline-block;
  min-width: 385px;
  min-height: 55px;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  text-align: left;
  border: 1px solid #1d3d62;
}
@media screen and (max-width: 768px) {
  .contact__btn03 a {
    min-width: 320px;
  }
}
@media screen and (max-width: 320px) {
  .contact__btn03 a {
    min-width: 260px;
  }
}
.contact__btn03 a span {
  font-size: 15px;
  position: relative;
  top: 0px;
}
.contact__btn03 a::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1d3d62;
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: 50%;
  margin: auto;
}
.contact__btn03 a::after {
  content: url(../img/arrow.png);
  border-image-width: 50%;
  vertical-align: sub;
  position: absolute;
  right: 21px;
  top: 50%;
  bottom: 50%;
  height: 29px;
  margin: auto;
}
.contact__btn03 a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
