@charset "utf-8";

/* ----------------------------------------------------------

Common Setting

---------------------------------------------------------- */
/*pc + sp*/
.pc   {display:block}
.sp   {display:none}
@media only screen and (max-width:520px) {
.pc   {display:none}
.sp   {display:block}
}

div,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd  {
  position: relative;
  word-break:break-all;
  padding:0;
  margin:0;
  box-sizing:border-box;
  outline:none;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6   {
  font-weight:normal;
  padding:0;
  margin:0
}

/*font*/
.en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/*ul dl*/
ul,ul li  {
  list-style:none;
  padding:0;
  margin:0
}

ul.disc li {
  list-style: disc;
  margin-left: 1em;
}

ol  {
  margin-left: 1em;
}


/*position*/
.center {
  text-align:center
}

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 90%;
}

/*flex*/
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
}

  .flex.alignitems__center {
    align-items: center;
  }

  .flex.space__between {
    justify-content: space-between;
  }

  .flex.center {
    justify-content: center;
  }

  .flex.left {
    justify-content: left;
  }

  .flex.right {
    justify-content: right;
  }

.flex.divided2 .flex__list {
  flex-basis: 48%;
  margin-bottom: 4%;
}

  .flex.divided2 .flex__list:nth-child(even) {
    margin-left: 2%;
  }

.flex.divided3 .flex__list {
  flex-basis: 32%;
  margin-bottom: 4%;
}

  .flex.divided3 .flex__list:nth-child(3n-1) {
    margin-left: 1%;
    margin-right: 1%;
  }

.flex .flex__list.w20 {
  flex-basis: 20%;
}

.flex .flex__list.w25 {
  flex-basis: 25%;
}

.flex .flex__list.w30 {
  flex-basis: 30%
}

.flex .flex__list.w31 {
  flex-basis: 31%
}

.flex .flex__list.w32 {
  flex-basis: 32%
}

.flex .flex__list.w33 {
  flex-basis: 33%
}

.flex .flex__list.w35 {
  flex-basis: 35%
}

.flex .flex__list.w40 {
  flex-basis: 40%;
}

.flex .flex__list.w45 {
  flex-basis: 45%;
}

.flex .flex__list.w50 {
  flex-basis: 50%;
}

.flex .flex__list.w55 {
  flex-basis: 55%;
}

.flex .flex__list.w60 {
  flex-basis: 60%;
}

.flex .flex__list.w65 {
  flex-basis: 65%;
}

.flex .flex__list.w70 {
  flex-basis: 70%;
}

.flex__list a {
  text-decoration: none!important
}

@media only screen and (max-width:520px) {
  .flex.divided2 ,
  .flex.divided3  {
    margin-left: auto;
    margin-right: auto;
  }
  
  .flex.space__between {
    justify-content: center;
  }

  .flex .flex__list,
  .flex.divided2 .flex__list,
  .flex.divided3 .flex__list,
  .flex.divided2 .flex__list:nth-child(even),
  .flex.divided3 .flex__list:nth-child(even),
  .flex.divided3 .flex__list:nth-child(3n-1) {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 4%;
    margin-left: auto;
    margin-right: auto;
  }

  .flex .flex__list.w20,
  .flex .flex__list.w25,
  .flex .flex__list.w30 ,
  .flex .flex__list.w31,
  .flex .flex__list.w32,
  .flex .flex__list.w33,
  .flex .flex__list.w35,
  .flex .flex__list.w40,
  .flex .flex__list.w45,
  .flex .flex__list.w50,
  .flex .flex__list.w55 ,
  .flex .flex__list.w60,
  .flex .flex__list.w65 ,
  .flex .flex__list.w70 {
    flex-basis: 100%;
    margin-left: auto;
    margin-right: auto;
  }

}


/*wide*/
.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

/*link*/
a,
a:hover {
  cursor:pointer;
  color: inherit;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition: 0.2s all;
}

a:hover {
  opacity: 0.7; 
}

@media (min-width: 520px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
}

@media only screen and (max-width: 520px) {
  a:hover {
    opacity: 1.0; 
  }
}

/*img*/
img {
  vertical-align:middle;
  -ms-interpolation-mode:bicubic;
  max-width:100%
}

figure  {
  padding-left: 0;
  margin-right: 0;
  margin-left: auto;
  margin-right: auto;
}

img.radius {
  border-radius: 36px;
}

@media only screen and (max-width:520px) {
  img.radius {
    border-radius:calc(36px / 2);
  }
}

img.round {
  border-radius: 100%;
}

.alignnone,
.alignleft,
.alignright,
.aligncenter  {
  margin:0;
}

.alignleft  {
  display:inline;
  float:left;
  margin-top:9px;
  margin-right:36px;
  margin-bottom:18px
}

.alignright {
  display:inline;
  float:right;
  margin-top:9px;
  margin-left:36px;
  margin-bottom:18px
}

.aligncenter  {
  clear:both;
  display:block;
  margin-left:auto;
  margin-right:auto;
  text-align:center
}

@media only screen and (max-width:520px) {
  .alignnone,
  .alignleft,
  .alignright,
  .aligncenter  {
    display:block;
    float:none;t
    ext-align:center;
    margin:1em auto
  }
}


/*loading */
.loader-bg {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 123456789;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  font-size: 10px;
  margin: auto;
  text-indent: -9999em;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #999 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.loader:before {
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.loader:after {
  background: #fff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  }
  100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  }
  100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  }
}
/* ----------------------------------------------------------

Btn Setting

---------------------------------------------------------- */
/*btn*/
.btn, 
button[type="button"], 
input[type="button"], 
input[type="submit"]  {
  display:block;
  text-align:center;
  text-decoration:none;
  box-sizing:border-box;
  position:relative;
  cursor:pointer;
  box-shadow:none;
  outline:none;
  appearance:none;
  font-weight: 600;
  padding:22.5px;
  border-radius:180px;
  text-align: center;
  transition: 0.2s all;
}

/*btn__primary*/
.btn__primary {
  background-color: rgba(11, 47, 158, 1.0);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 24px;

  background-image: url(../img/icon__arrow1.png);
  background-position: 95% 50%;
  background-size:27px;
  background-repeat: no-repeat;
  text-align: center;
}

  .btn__primary:hover,
  .btn__primary:focus  {
    color:#fff;
    background-color: rgba(11, 47, 158, 0.75);
  }

/*btn__secondary*/
.btn__secondary {
  background-color: rgba(11, 47, 158, 0.75);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 24px;
  transition: 0.2s all;

  background-image: url(../img/icon__arrow1.png);
  background-position: 95% 50%;
  background-size:27px;
  background-repeat: no-repeat;
  text-align: center;
}

  .btn__secondary:hover,
  .btn__secondary:focus  {
    color:#fff;
    background-color: rgba(11, 47, 158, 0.5);
  }

/*btn__white*/
.btn__white {
  background-color: #fff;
  color: rgba(11, 47, 158, 1.0);
  font-size: 2rem;
  font-weight: bold;
  padding: 24px;
  transition: 0.2s all;

  background-image: url(../img/icon__arrow2.png);
  background-position: 95% 50%;
  background-size:27px;
  background-repeat: no-repeat;
  text-align: center;
}

  .btn__white:hover,
  .btn__white:focus  {
    color: rgba(11, 47, 158, 0.7);
    background-color: #fff;
  }


/* ----------------------------------------------------------

Table Setting

---------------------------------------------------------- */
/*wide*/
table.w20 th {
  width: 20%;
}

table.w30 th {
  width: 30%;
}

table.w35 th {
  width: 35%;
}

table.w40 th {
  width: 40%;
}

table.w45 th {
  width: 45%;
}

table.w50 th {
  width: 50%;
}

@media only screen and (max-width:520px) {
  table.w30 th,
  table.w35 th,
  table.w40 th ,
  table.w45 th ,
  table.w50 th {
    width: 50%;
  }
}

/* ----------------------------------------------------------

Layout Setting

---------------------------------------------------------- */
html {
  font-size: 62.5%;
  /* font-sizeは16pxの62.5%の10px */
}

body  {
  position: relative;
  font-feature-settings:"palt" 1;
  line-break:strict!important;
  overflow-wrap:break-word!important;
  word-wrap:break-word!important;
  box-sizing:border-box;
  width:100%;
  color: #222;
  font-weight: normal;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  max-width: 100%;
  line-height:2;
  padding:0;
  margin:auto;
}


#wrapper {/*
  overflow-x:hidden;*/
  overflow: clip;  
}

main {
  background-color: #f2f5fb;
  background-image: url(../img/bg.png);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: 2400px;
}

.container__fluid  {
  width:100%;
  margin:auto;
  max-width: 1980px;
}

.container__wide {
  width:100%;
  margin:auto;
  padding-left: 2.5em;
  padding-right: 2.5em;
  max-width: 1980px;
}

.container  {
  width:1180px;
  max-width: 1980px;
  margin:auto;
}

.container__middle {
  width:1080px;
  margin:auto;
}

.container__narrow {
  width:1024px;
  margin:auto;
}

.container__xnarrow  {
  width:980px;
  margin:auto;
}

.container__xxnarrow {
  width:880px;
  margin:auto;
}

.container__xxxnarrow {
  width:780px;
  margin:auto;
}

.container__xxxxnarrow {
  width:680px;
  margin:auto;
}

.container__xxxxxnarrow {
  width:580px;
  margin:auto;
}

.container__xxxxxxnarrow {
  width:480px;
  margin:auto;
}

@media only screen and (max-width:768px) {
  body  {
    min-width:1px;
    font-size:calc(1.8rem / 1.35);
    line-height: 1.89;
    -webkit-text-size-adjust:100%;
    -webkit-overflow-scrolling:touch;
  }

  .container__wide,
  .container,
  .container__middle,
  .container__narrow,
  .container__xnarrow,
  .container__xxnarrow,
  .container__xxxnarrow,
  .container__xxxxnarrow,
  .container__xxxxxnarrow ,
  .container__xxxxxxnarrow {
    width:100%;
    max-width:100%;/*
    padding-left:1em;
    padding-right:1em;*/
    box-sizing:border-box
  }

}

/*iPhone横*/
@media (orientation: landscape) and (max-width:900px)　{
  body  {
    min-width:1180px;
  }
}

/*iPad用*/
@media screen and (device- width : 768px ) and (device- height : 1024px ) and (-webkit-device-pixel-ratio: 2 ) {
  body  {
    min-width: 1024px;
  }
}

/* ----------------------------------------------------------

Header Setting

---------------------------------------------------------- */
header {
  position: relative;
}

/*header*/
.topbar {
  padding:18px 0 ;
  background-color:#fff
}

.topbar__container {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
}

.topbar h1  {
  flex-basis:45%;
  padding: 0;
  line-height: 1;
  margin: 0;
}

.topbar__contact {
  flex-basis:45%;
  text-align:right;
}

.topbar h1 img   {
  max-width: 468px;
}

.topbar__contact a {
  display: block;
  margin: 0 0 0 auto;
  padding:13.5px 18px;
  font-weight:500;
  font-size: 2.4rem;
  max-width: 400px;
  background-size:22.5px;
}

@media only screen and (max-width:768px) {
  .topbar {
    padding:calc(18px / 1.5) 0 calc(18px / 1);
  }

  .topbar h1  {
    flex-basis:100%;
    text-align: center;
    margin: 0 auto;
  }

  .topbar h1 img   {
    width: 280px;
  }

  .topbar__contact {
    display: none;
  }

  .topbar h1 img   {
    max-width: 468px;
  }

}

/*mainvisual*/
.mainvisual {
  width: 100%;
  height: 100%;
  background-image: url(../img/mv__pc.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.mainvisual__container {
  display: flex;
  flex-wrap: wrap;
  justify-content:flex-start;
  align-items: center;
  padding: 72px 0;
}

.mainvisual__text {
  flex-basis: 100%;
}

.mainvisual__title ,
.mainvisual__subtitle ,
.mainvisual__title img ,
.mainvisual__subtitle img {
  text-align: left;
  margin:13.5px 0;
}

  .mainvisual__title img {
    width: calc(1365px /2);
  }

  .mainvisual__subtitle img {
    width: calc(1011px /2);
  }

.mainvisual__text p {
  text-align: left;
  font-size: 2rem;
  margin: 13.5px 0 0;
  color: #fff;
}

.mainvisual__btn a {
  margin: 30.5px 0 0;
  max-width: 430px;
  font-size: 2.4rem;
  letter-spacing: 0.025em;
  padding:13.5px 18px;
  background-size:20px;
}

@media only screen and (max-width:768px) {
  .mainvisual {
    width: 100%;
    height: 100%;
    background-image: url(../img/mv__sp__head.jpg);
    background-color: #0b2f9f;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
  }

  .mainvisual__container {
    padding: calc(72px / 4) 18px;
  }

  .mainvisual__text p {
    font-size: calc(2rem / 1.35);
    margin: 13.5px 0 0;
  }

  .mainvisual__btn a {
    margin: 30.5px 0 0;
    max-width: 100%;
    font-size: calc(2.4rem / 1.3);
    padding:9px 18px;
  }

}


/* ----------------------------------------------------------

Section Setting

---------------------------------------------------------- */
/*bg*/
.color1 {
  color: #fff;

}

/*section*//*
.section {
  padding:calc(90px / 2) 0;
}

@media only screen and (min-width:768px) {
  .section__container {
    max-width: 1280px;
    margin: auto;
  }

}*/

/*padding margin*/
.mt-4  {
  margin-top: -4.5px
}

.mt-9  {
  margin-top: -9px
}

.mt-18  {
  margin-top: -18px
}

.mt-27  {
  margin-top: -27px
}

.mt-36 {
  margin-top: -36px
}

.mt-45 {
  margin-top: -45px
}

.mt-54 {
  margin-top: -54px
}

.mt-63 {
  margin-top: -63px
}

.mt-72 {
  margin-top: -72px
}

.mt-81 {
  margin-top: -81px
}

.mt-90 {
  margin-top: -90px
}

.mt-120 {
  margin-top: -120px;
}

.mt-150 {
  margin-top: -150px;
}

.mt-180 {
  margin-top: -180px;
}

.mb-9  {
  margin-bottom: -9px
}

.mb-18  {
  margin-bottom: -18px
}

.mb-27  {
  margin-bottom: -27px
}

.mb-36 {
  margin-bottom: -36px
}

.mb-45 {
  margin-bottom: -45px
}

.mb-54 {
  margin-bottom: -54px
}

.mb-63 {
  margin-bottom: -63px
}

.mb-72 {
  margin-bottom: -72px
}

.mb-81 {
  margin-bottom: -81px
}

.mb-90 {
  margin-bottom: -90px
}

.mt0 {
  margin-top: 0!important;
}

.mt9 {
  margin-top: 9px;
}

.mt18 {
  margin-top: 18px;
}

.mt27 {
  margin-top: 27px;
}

.mt36 {
  margin-top: 36px;
}

.mt45 {
  margin-top: 45px;
}

.mt54 {
  margin-top: 54px;
}

.mt63 {
  margin-top: 63px;
}

.mt72 {
  margin-top: 72px;
}

.mt81 {
  margin-top: 81px;
}

.mt90 {
  margin-top: 90px;
}

.mb0 {
  margin-bottom: 0!important;
}

.mb9 {
  margin-bottom: 9px;
}

.mb18 {
  margin-bottom: 18px;
}

.mb27 {
  margin-bottom: 27px;
}

.mb36 {
  margin-bottom: 36px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb54 {
  margin-bottom: 54px;
}

.mb63 {
  margin-bottom: 63px;
}

.mb72 {
  margin-bottom: 72px;
}

.mb81 {
  margin-bottom: 81px;
}

.mb90 {
  margin-bottom: 90px;
}

.pt0 {
  padding-top: 0;
}

.pt9 {
  padding-top: 9px;
}

.pt18 {
  padding-top: 18px;
}

.pt27 {
  padding-top: 27px;
}

.pt36 {
  padding-top: 36px;
}

.pt45 {
  padding-top: 45px;
}

.pt54 {
  padding-top: 54px;
}

.pt63 {
  padding-top: 63px;
}

.pt72 {
  padding-top: 72px;
}

.pt81 {
  padding-top: 81px;
}

.pt90 {
  padding-top: 90px;
}

.pt120 {
  padding-top: 120px;
}

.pt150 {
  padding-top: 150px;
}

.pt180 {
  padding-top: 180px;
}

.pb0 {
  padding-bottom: 0;
}

.pb9 {
  padding-bottom: 9px;
}

.pb18 {
  padding-bottom: 18px;
}

.pb27{
  padding-bottom: 27px;
}

.pb36 {
  padding-bottom: 36px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb54 {
  padding-bottom: 54px;
}

.pb63 {
  padding-bottom: 63px;
}

.pb72 {
  padding-bottom: 72px;
}

.pb81 {
  padding-bottom: 81px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb180 {
  padding-bottom: 180px;
}

.pb210 {
  padding-bottom: 210px;
}

.pd9 {
  padding: 9px;
}

.pd18 {
  padding: 18px;
}

.pd27 {
  padding: 27px;
}

.pd36 {
  padding: 36px;
}

.pd45 {
  padding: 45px;
}

.pd54 {
  padding: 54px;
}

.pd63 {
  padding: 63px;

}

@media only screen and (max-width:520px) {
  .mt-4  {
    margin-top: calc(-4.5px / 2)
  }

  .mt-9  {
    margin-top: calc(-9px / 2)
  }

  .mt-18  {
    margin-top: calc(-18px / 2)
  }

  .mt-27  {
    margin-top: calc(-27px / 2)
  }

  .mt-36 {
    margin-top: calc(-36px / 2)
  }

  .mt-45 {
    margin-top: calc(-45px / 2)
  }

  .mt-54 {
    margin-top: calc(-54px / 2)
  }

  .mt-63 {
    margin-top: calc(-63px / 2)
  }

  .mt-72 {
    margin-top: calc(-72px / 2)
  }

  .mt-81 {
    margin-top: calc(-81px / 2)
  }

  .mt-90 {
    margin-top: calc(-90px / 2)
  }

  .mt-120 {
    margin-top: calc(-120px / 2)
  }

  .mt-150 {
    margin-top: calc(-150px / 2)
  }

  .mt-180 {
    margin-top: calc(-180px / 2)
  }

  .mb-9  {
    margin-bottom: calc(-9px / 2)
  }

  .mb-18  {
    margin-bottom: calc(-18px / 2)
  }

  .mb-27  {
    margin-bottom: calc(-27px / 2)
  }

  .mb-36 {
    margin-bottom: calc(-36px / 2)
  }

  .mb-45 {
    margin-bottom: calc(-45px / 2)
  }

  .mb-54 {
    margin-bottom: calc(-54px / 2)
  }

  .mb-63 {
    margin-bottom: calc(-63px / 2)
  }

  .mb-72 {
    margin-bottom: calc(-72px / 2)
  }

  .mb-81 {
    margin-bottom: calc(-81px / 2)
  }

  .mb-90 {
    margin-bottom: calc(-90px / 2)
  }

  .mt9 {
    margin-top: calc(9px / 2)
  }

  .mt18 {
    margin-top: calc(18px / 2)
  }

  .mt27 {
    margin-top: calc(27px / 2)
  }

  .mt36 {
    margin-top: calc(36px / 2)
  }

  .mt45 {
    margin-top: calc(45px / 2)
  }

  .mt54 {
    margin-top: calc(54px / 2)
  }

  .mt63 {
    margin-top: calc(63px / 2)
  }

  .mt72 {
    margin-top: calc(72px / 2)
  }

  .mt81 {
    margin-top: calc(81px / 2)
  }

  .mt90 {
    margin-top: calc(90px / 2)
  }

  .mb9 {
    margin-bottom: calc(9px / 2)
  }

  .mb18 {
    margin-bottom: calc(18px / 2)
  }

  .mb27 {
    margin-bottom: calc(27px / 2)
  }

  .mb36 {
    margin-bottom: calc(36px / 2)
  }

  .mb45 {
    margin-bottom: calc(45px / 2)
  }

  .mb54 {
    margin-bottom: calc(54px / 2)
  }

  .mb63 {
    margin-bottom: calc(63px / 2)
  }

  .mb72 {
    margin-bottom: calc(72px / 2)
  }

  .mb81 {
    margin-bottom: calc(81px / 2)
  }

  .mb90 {
    margin-bottom: calc(90px / 2)
  }

  .pt9 {
    padding-top: calc(9px / 2)
  }

  .pt18 {
    padding-top: calc(18px / 2)
  }

  .pt27 {
    padding-top: calc(27px / 2)
  }

  .pt36 {
    padding-top: calc(36px / 2)
  }

  .pt45 {
    padding-top: calc(45px / 2)
  }

  .pt54 {
    padding-top: calc(54px / 2)
  }

  .pt63 {
    padding-top: calc(63px / 2)
  }

  .pt72 {
    padding-top: calc(72px / 2)
  }

  .pt81 {
    padding-top: calc(81px / 2)
  }

  .pt90 {
    padding-top: calc(90px / 2)
  }

  .pt120 {
    padding-top: calc(120px / 2)
  }

  .pt150 {
    padding-top: calc(150px / 2)
  }

  .pt180 {
    padding-top: calc(180px / 2)
  }

  .pb9 {
    padding-bottom: calc(9px / 2)
  }

  .pb18 {
    padding-bottom: calc(18px / 2)
  }

  .pb27{
    padding-bottom: calc(27px / 2)
  }

  .pb36 {
    padding-bottom: calc(36px / 2)
  }

  .pb45 {
    padding-bottom: calc(45px / 2)
  }

  .pb54 {
    padding-bottom: calc(54px / 2)
  }

  .pb63 {
    padding-bottom: calc(63px / 2)
  }

  .pb72 {
    padding-bottom: calc(72px / 2)
  }

  .pb81 {
    padding-bottom: calc(81px / 2)
  }

  .pb90 {
    padding-bottom: calc(90px / 2)
  }

  .pb180 {
    padding-bottom: calc(180px / 2)
  }

  .pb210 {
    padding-bottom: calc(210px / 2)
  }

  .pd9 {
    padding: calc(9px / 2)
  }

  .pd18 {
    padding: calc(18px / 2)
  }

  .pd27 {
    padding: calc(27px / 2)
  }

  .pd36 {
    padding: calc(36px / 2)
  }

  .pd45 {
    padding: calc(45px / 2)
  }

  .pd54 {
    padding: calc(54px / 2)
  }

  .pd63 {
    padding: calc(63px / 2)
  }

}


/*section__title*/
.section__title {
  text-align: center;
  position: relative;
  margin: auto auto 0.25em;
}

.section__title span {
  display: block;
  text-align: center;
  margin: auto;
}

.section__title span.label {
  text-align: center;
  margin: auto;
  display: inline-block;
  position: relative;
  background-color: #3346a5;
  padding: 13.5px 63px;
  font-size: 3.0rem;
  line-height: 1.12;
  border-radius: 7.25px;
  color:#fff;
  font-weight: 100%;
}

.section__title span.label:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #3346a5;
}

.section__title span.ja {
  color:#0b2f9e;
  font-weight: 600;
  letter-spacing: 0.025em;
  font-size:5.4rem;
  line-height: 1.789;
}

  .section__title span.ja.small {
    font-size:4.5rem;
    line-height: 1.789;
  }

  .section__title span.ja.xsmall {
    font-size:3.6rem;
    line-height: 1.789;
  }

.section__title.border {
  position: relative;
  margin-bottom: 36px;
}

.section__title.border:after {
  position: absolute;
  content: "";
  top: 100%;
  left: calc(50% - calc(64px / 2));
  width: 64px;
  height: 2px;
  border-bottom: 2px solid #0b2f9e;
  margin: 9px auto auto;
}

.section__title.color1 span {
  color: #fff;
}

  .section__title.color1.border:after {
    border-bottom: 2px solid #f2f5fb;
  }

@media only screen and (max-width:768px) {
  .section__title {
    margin: auto auto 0.25em;
  }

  .section__title span.label {
    padding: 9px 63px;
    font-size: calc(3.0rem / 1.6);
    line-height: 1.12;;
    margin-bottom: 18px;
  }

  .section__title span.label:before {
    position: absolute;
    content: "";
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #3346a5;
  }

  .section__title span.ja {
    font-size:calc(5.4rem / 2.25);
    line-height: 1.56789;
  }

  .section__title span.ja.small {
    font-size:calc(4.5rem / 1.85);
    line-height: 1.56789;
  }

  .section__title span.ja.xsmall {
    font-size:calc(3.6rem / 1.75);
    line-height: 1.56789;
  }

  .section__title.border {
    margin-bottom: calc(36px / 1.5);
  }

  .section__title.border:after {
    top: 100%;
    left: calc(50% - calc(45px / 2));
    width: 45px;
  }

}


/*section__content*/
.section__content {
  padding-top: 1.25em;
}

/*common*/
.section.common {
  padding-top: 90px;
  padding-bottom: 90px;
}

.common__container {
  border-radius: 18px;
  padding: 72px 54px 63px;
  background-color: #fff;;
}

.common__btn {
  margin:36px auto;
  max-width: 256px;
  text-align: center;
}

.common__btn a {
  display: block;
  font-size: 2rem;
  background-image: none;
  text-align: center;;
  padding: 13.5px 18px;
}

@media only screen and (max-width:768px) {
  .section.common {
    padding-top: calc(90px /2);
    padding-bottom:calc(90px /2);;
  }

  .common__container {
    padding: calc(72px /2) 18px ;
  }

  .common__btn {
    margin:calc(36px / 2) auto;
    max-width: 75.0%;
  }

  .common__btn a {
    font-size: calc(2rem / 1.25);
    padding: 9px 18px;
  }
}


/* ----------------------------------------------------------

Case Setting

---------------------------------------------------------- */
/*case*/
.section.case {
  position: relative;
  padding-top:calc(90px + 18px);
  padding-bottom: 45px;
}

@media only screen and (max-width:768px) {
  .section.case {
    padding-top:calc(90px /2);
    padding-bottom: calc(45px / 45);
  }
}

/*case__nav*/

.case__nav__container {
  position: relative;
  height: 100%;
  overflow: visible !important
}

.case__nav {
  position: sticky;
  top: 0;left: 0;
  z-index: 10;  
  text-align: center;
}

.case__nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  text-align: top;
}

.case__nav__list li {
  margin: 0;
}

  .case__nav__list li:nth-child(1) {
    margin-left: 0;
    flex-basis: 27.5%;
  }

  .case__nav__list li:nth-child(2) {
    flex-basis: 32.5%;
  }

  .case__nav__list li:nth-child(3) {
    margin-right: 0;
    flex-basis: 37.5%;
  }

.case__nav__list li a,
.case__nav__menu {
  display: block;
  background-color: #fff;
  min-width: 27px;
  min-height: 27px;
  background-image: url(../img/icon__arrow3.png);
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 27px 27px;
  border-radius: 18px;
  padding:40.5px 18px 40.5px 45px ;
  text-decoration: none;
  text-align: left;
}


.case__nav__list li a:hover ,
.case__nav__list li a:focus {
  opacity: 1;
}

.case__nav__list .icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5%;
}

.case__nav__list .ja {
  display: inline-block;
  vertical-align: middle;
  font-size: 2.205rem;
  font-weight: bold;
}

.case__nav__list .icon img {
  height:calc(125px / 3);
  width: auto;
}

@media only screen and (max-width:768px) {
  .case__nav {
    margin:  auto;
  }

  .case__nav__list {
    padding-left: 1em;
    padding-right:1em;
  }

  .case__nav__list li:nth-child(1),
  .case__nav__list li:nth-child(2),
  .case__nav__list li:nth-child(3) {
    margin:0;
    border-radius: 0;
    flex-basis:calc(100% / 3);
  }

  .case__nav__list li a,
  .case__nav__menu {
    min-width:1px;
    border-radius: 0;
    line-height: 1.234568;
    background-image: url(../img/icon__arrow3.png);
    background-position: 95% 50%;
    background-size:100%;
    background-size:calc(27px / 2) calc(27px / 2);
    padding:15px 0;
    text-align: center;
  }

    .case__nav__list li:nth-child(1) a {
      border-radius: 18px 0 0 18px;
    }

    .case__nav__list li:nth-child(3) a {
      border-radius: 0 18px 18px 0 ;
    }

  .case__nav__list .icon {
    margin:auto;
    display: block;
    width: 100%;
    margin-bottom: 6px;
    text-align: center;
  }

  .case__nav__list .ja {
    font-size: calc(2.205rem / 1.7);
  }

  .case__nav__list .icon img {
    margin:auto;
    text-align: center;
    display: block;
    height:calc(125px / 5);
  }
}

/*case__detail*/
.case__container {
  padding-top: 45px;
}

.case__body p {
  font-size: 1.8rem;
}

.case__detail {
  border-radius: 18px;
  padding: 72px 45px 36px;
  background-color: #fff;
  position: relative;
  margin: 72px auto;
}

.case__head {
  position: relative;
  margin-bottom:45px;
}

.case__num {
  position: absolute;
  left: 0px;
  top:calc(-90px - 36px);
}

.case__num span.en {
  color: #0b2f9e;
  display: inline-block;
  position: relative;
  font-weight: 900;
  line-height: 1;
  font-size: calc(9.0rem + 6.3rem);
  font-style: italic;
}

  .case__detail:nth-child(1) .case__num span.en {
    letter-spacing: -0.05em;
  }

.case__num span.en:after {
  position: absolute;
  content: '';
  border-bottom: 2.5px solid #0b2f9e;
  top: 100%;
  left: 2.5%;
  display: block;
  width: 95%;
  height: 2.5px;
}

.case__title {
  text-align: center
}

.case__title .icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.125%;
}

.case__title .ja {
  color: #0b2f9e;
  display: inline-block;
  vertical-align: middle;
  font-size: 4.5rem;
  line-height: 1.56789;
  font-weight: bold;
}

.case__title .icon img {
  height:calc(125px /2);
  width: auto;
}

@media only screen and (max-width:768px) {
  .case__body p {
    font-size: calc(1.8rem / 1.35);
  }

  .case__detail {
    padding: calc(72px / 1.5) 18px calc(72px / 3.5);
    margin: calc(72px / 1.5)  auto;
  }

  .case__head {
    margin-bottom:calc(45px /2) ;
  }

  .case__num {
    top:-90px
  }

  .case__num span.en {
    font-size: calc(9.0rem / 1.25);
  }

  .case__num span.en:after {
    border-bottom: 2.5px solid #0b2f9e;
    left: 2.5%;
    width: 95%;
    height: 2.5px;
  }

  .case__title .icon {
    margin-right: 1.125%;
  }

  .case__title .ja {
    font-size: calc(4.5rem / 1.85);
  }

  .case__title .icon img {
    height:calc(125px / 3.25);
  }

}

/*case__block*/
.case__block,
.case__main__block  {
  padding: 45px 54px;
  border-radius: 18px;
  margin:27px auto;
}

  .case__block.bg1,
  .case__main__block.bg1 {
    border:1.5px solid #0b2f9e;
    background-color: #fff;
  }

  .case__block.bg2 ,
  .case__main__block.bg2 {
    border:1.5px solid #f2f5fb;
    background-color: #f2f5fb;
  }

  .case__block.bg3 ,
  .case__main__block.bg3 {
    border:1.5px solid #3c59b1;
    background-color: #3c59b1;
  }

.case__block__title   {
  position: relative;
  display: block;
  text-align: left;
  margin-bottom: 9px;
  text-indent: 54px;
}

.case__block__title span  {
  display: block;
  text-align: left;
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  color: #0b2f9e;;
  font-weight: bold;
}

.case__block__title:after  {
  position: absolute;
  content: '';
  border-bottom: 2px solid #0b2f9e;
  width: 36px;
  height: 2px;
  top: 22.25px;
  left:0;
  margin: 0;
}

@media only screen and (max-width:768px) {
  .case__block,
  .case__main__block  {
    padding: calc(45px /2) 18px calc(45px / 3);
    margin:calc(27px /2) auto;
}

  .case__block.bg1,
  .case__main__block.bg1 {
    border:1.25px solid #0b2f9e;
  }

  .case__block.bg2 ,
  .case__main__block.bg2 {
    border:1.25px solid #f2f5fb;
  }

  .case__block.bg3 ,
  .case__main__block.bg3 {
    border:1.25px solid #3c59b1;
  }

  .case__block__title   {
    text-indent: calc(54px /2);
  }

  .case__block__title span  {
    font-size: calc(2.4rem / 1.35);
    letter-spacing: 0;
    color: #0b2f9e;;
    font-weight: bold;
  }

  .case__block__title:after  {
    border-bottom:1px solid #0b2f9e;
    width: calc(36px / 2);
    height:1px;
    top: calc(22.25px / 1.45);
  }

}

/*case__caution__list*/
.case__caution__list  {
  margin-top: 18px;
}

.case__caution__list li {
  display: inline-block;
  margin-right: 1.25%;
  margin-bottom: 1.25%;
  color: #0b2f9e;;
  border-radius: 7.25px;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #fff;
  border: 1.5px solid #0b2f9e;
  line-height: 1.456789;
  padding:11.5px 20.25px;
  text-indent: 18px;
}

.case__caution__list li:before {
  position: absolute;
  content: '';
  top: 18px;
  left: 18px;
  margin: 0;
  background-image: url(../img/icon__check1.png);
  background-repeat: no-repeat;
  background-position: 0% 50%;
  background-size: calc(21px / 1.25);
  min-width: calc(21px / 1.25);
  min-height: calc(21px /1.25);
}

@media only screen and (max-width:768px) {
  .case__caution__list  {
    margin-top: calc(18px / 2);
  }

  .case__caution__list li {
    margin-right: auto;
    margin-bottom: 2.5%;
    width: 100%;
    display: block;
    font-size:calc(1.8rem / 1.35);
    border: 1.25px solid #0b2f9e;
    padding:11.5px 18px;
    text-indent: 0;
    padding-left: 36px;
  }

  .case__caution__list li:before {
    top: 18px;
    left: 18px;
    background-image: url(../img/icon__check1.png);
    background-position: 0% 50%;
    background-size: calc(21px / 1.5);
    min-width: calc(21px / 1.5);
    min-height: calc(21px / 1.5);
  }

}

/*case__main__block*/
.case__main__block  { 
  min-height: 520px;
  clear: both;
}

  .case__main__block__container .case__main__block.bg1 {
    border-radius: 18px 18px 0 0;
  }

  .case__main__block__container .case__main__block.bg3 {
    border-radius: 0 0 18px 18px;
    top: -45px;
    margin-bottom: -18px;
  }

.case__main__block__title {
  text-align: center;
  margin: auto;
  position: relative;
  padding: 4.25px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
}

.case__main__block__title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
}

.case__main__block__title:after {
  display: none;
}

.case__main__block__title span {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  margin: auto;
  font-size: 2.7rem;
  font-weight: bold;
}

  .case__main__block.bg1 .case__main__block__title  {
    background: #6078c0;
  }

  .case__main__block.bg1 .case__main__block__title:before  {
    border-top: 15px solid #6078c0;
  }

  .case__main__block.bg1 .case__main__block__title span {
    color: #fff;
  }

  .case__main__block.bg3 .case__main__block__title  {
    background: #fff;
  }

  .case__main__block.bg3 .case__main__block__title:before  {
    border-top: 15px solid #fff;
  }

  .case__main__block.bg3 .case__main__block__title span {
    color: #0b2f9e;
  }

.case__main__block__title span.icon   {
  margin-right:1%;
  margin-top: -2px;
}

.case__main__block__title span.icon img  {
  width: calc(70px / 2);
}

.case__main__block p   {
  text-align: justify; 
  line-height: 2;
}

  .case__main__block.bg3 p   {
    color: #fff;
  }

.case__main__block__img.alignright {
  margin-left: 54px;
  margin-bottom: 54px;
}

.case__main__block .case__main__block__img {
  border-radius: 18px;
  border: 5px solid #fff;
}

  .case__main__block__img.radius {
    border-radius: 18px;
  }

.case__block__subtitle {
  text-align: left;
  margin: 0;
  position: relative;
}

@media only screen and (max-width:768px) {
  .case__main__block  { 
    min-height: auto;
    clear: both;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .case__main__block__container .case__main__block.bg1 {
    border-radius: 18px 18px 0 0;
  }

  .case__main__block__container .case__main__block.bg3 {
    border-radius: 0 0 18px 18px;
    top: -18px;
    margin-bottom: 0;
  }

  .case__main__block__title {
    padding: 13px 18px 18px;
    border-radius: 18px;
    display: block;
    margin-bottom: calc(36px / 1.5);
  }

  .case__main__block__title:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #e0edff;
  }

  .case__main__block__title span {
    line-height: 1.56789;
    font-size: calc(2.7rem / 1.4755);
  }

  .case__main__block.bg1 .case__main__block__title:before  {
    border-top: calc(15px / 1.5) solid #6078c0;
  }

  .case__main__block.bg3 .case__main__block__title:before  {
    border-top: calc(15px / 1.5) solid #fff;
  }

  .case__main__block__title span.icon   {
    margin-right:auto;
    display: inline-block;
    vertical-align: top;
    margin:1px auto ;
  }

  .case__main__block__title span.icon img  {
    width: calc(70px / 2.5);
  }

  .case__main__block.bg1 .case__main__block__title span.icon img  {
    width: calc(70px / 2);
  }

  .case__main__block__img.alignright {
    margin:13.5px auto;
    float: none;
  }

  .case__main__block .case__main__block__img {
    border: calc(5px / 2) solid #fff;
  }

}


/*case__block__inner*/
.case__block__inner {
  position: relative;
  margin: 36px auto;
}

.case__block__subtitle:before {
  position: relative;
  color: #0b2f9e;
  content: '●';
  display: inline-block;
  vertical-align: middle;
  font-size: 2.0rem;
  text-align: left;
  margin:2px 0 0;
}

.case__block__subtitle span {
  display: inline-block;
  vertical-align: middle;
  color: #0b2f9e;
  font-size: 2.025rem;
  font-weight: bold;
  text-align: left;
  margin: 0;
}

.case__block__detail {
  border-radius: 9px;
  background-color: #f2f5fb;
  padding:18px 36px;
  margin: 1em 0;
}

.case__block__detail ul li {
  margin-left: 1em;
  font-size: 1.8rem;
  text-indent: calc(-1em + 15px);
  position: relative;
}

.case__block__detail ul li:before {
  position: absolute;
  content: '';
  top: 9px;
  left: -24px;
  margin: 0;
  background-image: url(../img/icon__check1.png);
  background-repeat: no-repeat;
  background-position: 0% 50%;
  background-size: calc(21px / 1.25);
  min-width: calc(21px / 1.25);
  min-height: calc(21px /1.25);
}

.case__block__detail ul li strong {
  color: #0b2f9e;
  font-weight: bold;
}

@media only screen and (max-width:768px) {
  .case__block__inner {
    margin: calc(36px /2) auto;
  }

  .case__block__subtitle:before {
    font-size: calc(2.0rem / 1.35);
    margin:2px 0 0;
  }

  .case__block__subtitle span {
    font-size: calc(2.025rem / 1.35);
  }

  .case__block__detail {
    padding:13.5px 18px ;
    margin: 0.5em 0;
  }

  .case__block__detail ul li {
    font-size: calc(1.8rem / 1.35);
    text-indent: calc(-1em + 15px);
  }

  .case__block__detail ul li:before {
    position: absolute;
    content: '';
    top: 7.25px;
    left: -18px;
    background-image: url(../img/icon__check1.png);
    background-size: calc(21px / 1.5);
    min-width: calc(21px / 1.5);
    min-height: calc(21px / 1.5);
  }

  .case__block__detail ul li strong {
    color: #0b2f9e;
    font-weight: bold;
  }
}

/*case__block__img*/
.case__block__img {
  margin: 18px auto;
}


/* ----------------------------------------------------------

Example Setting

---------------------------------------------------------- */
/*example*/
.section.example {
  padding-top: 0;
  padding-bottom:calc(90px + 27px);
  position: relative;
}

.example__container {
  padding: 45px 18px ;
  border-radius: 18px;
  background-color: #fff;
  text-align: center;
}

.example__list {
  margin: auto;
  text-align: center;
}

.example__list li {
  display: inline-block;
  vertical-align: middle;
  margin: auto;
  font-size: 2.4rem;
  text-align: center;
  text-indent: 13.5px;
  font-weight: 600;
  margin: 0 36px;
}

.example__list li:before {
  position: absolute;
  content: '';
  top:11.25px;
  left: -18px;
  margin: 0;
  background-image: url(../img/icon__check2.png);
  background-repeat: no-repeat;
  background-position: 0% 50%;
  background-size: calc(72px / 2.5);
  min-width: calc(72px / 2.5);
  min-height: calc(72px / 2.5);
}

@media only screen and (max-width:768px) {
  .section.example {
    padding-top: 0;
    padding-bottom:calc(90px /2);
    padding-left: 18px;
    padding-right: 18px;
  }

  .example__container {
    padding: calc(45px / 2) 27px ;
  }

  .example__list li {
    display: block;
    text-align: left;
    font-size: calc(2.4rem / 1.35);
    text-indent: 9px;
    font-weight: 600;
    margin: 0 calc(36px / 1.5);
  }

  .example__list li:before {
    top:9px;
    left: -18px;
    margin: 0;
    background-image: url(../img/icon__check2.png);
    background-position: 0% 50%;
    background-size: calc(72px / 3.5);
    min-width: calc(72px / 3.5);
    min-height: calc(72px / 3.5);
  }
}


/* ----------------------------------------------------------

CTA Setting

---------------------------------------------------------- */
/*cta*/
.section.cta {
  padding-bottom: 90px;
  position: relative;
}

@media only screen and (max-width:768px) {
  .section.cta {
    padding-bottom: calc(90px /2);
  }

}

/*cta__head*/
.cta__head {
  padding: 90px 0 0;
  background-color: #0b2f9e;
}

.cta__menu__list  {
  padding-top: 27px;
}

.cta__menu__list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  width: 100%;
}

.cta__menu__list ul li {
  flex-basis: 49.5%;
  box-sizing: border-box;
}

.cta__menu__list ul li .cta__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #fff;
  padding:18px 90px 0 0px;
  font-size: 2.7rem;
  border-radius: 18px 18px 0 0;
  text-align: center;
  margin: auto;
  cursor: pointer;
  transition: 0.5s all;
}

  .cta__menu__list ul li.active .cta__menu {
    background-color: #fff;
    color: #0b2f9e;
    background-image: url(../img/icon__arrow3.png);
    background-position: 95.5% 55%;
    background-repeat: no-repeat;
    background-size: 36px;
  }

  .cta__menu__list ul li .cta__menu {
    background-color: transparent;
    color: #fff;
    background-image: url(../img/icon__arrow4.png);
    background-position: 95.5% 55%;
    background-repeat: no-repeat;
    background-size: 36px;
  }

.cta__menu__list li span.icon  {
  margin-right: 10.5%;
}

.cta__menu__list li span.icon img {
  width: calc(232px/ 2);
}

@media only screen and (max-width:768px) {
  .cta__head {
    padding: calc(90px / 3) 0 0;
  }

  .cta__menu__list  {
    padding-top: calc(27px / 27);
  }
/*
  .cta__menu__list ul li {
    flex-basis: 100%;
    box-sizing: border-box;
    margin: 4.5px auto;
  }
*/
  .cta__menu__list ul li .cta__menu {
    border: 1px solid #fff;
    padding:13.5px 0 ;
    text-align: left;
    font-size: calc(2.7rem / 1.3);
    border-radius:18px 18px 0 0;
    transition: 0.5s all;
  }

  .cta__menu__list ul li.active .cta__menu {
    background-color: #fff;
    background-image: url(../img/icon__arrow3.png);
    background-position: 95.5% 55%;
    background-repeat: no-repeat;
    background-size: calc(36px / 2.25);
  }

  .cta__menu__list ul li .cta__menu {
    background-color: transparent;
    background-image: url(../img/icon__arrow4.png);
    background-position: 95.5% 55%;
    background-repeat: no-repeat;
    background-size: calc(36px / 2.25);
  }

  .cta__menu__list li span.icon ,
  .cta__menu__list li span.text  {
    flex-basis: 100%;
    display: block;
    text-align: center;
    margin: auto;
  }

  .cta__menu__list li span.icon img {
    width: calc(232px/ 5.25);
    display: block;
    text-align: center;
    margin: auto;
  }

  .cta__menu__list li span.text  {
    font-size: 1.75rem;
  }
}

/*cta__body*/
.cta__body {
  padding: 72px 72px 90px;
  background-color: #fff;
  border-bottom: 36px solid #0b2f9e;;
}

.cta__content2 {
  display:none;
}

.cta__message {
  color: #0b2f9e;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
}

.cta__btn__list {
  margin:18px auto auto;
  text-align: center;
}

.cta__btn__list li {
  margin: 18px auto auto;
  text-align: center;
}

.cta__btn__list li a {
  display: block;
  margin: auto;
  width: 100%;
}

.cta__btn__list li a img {
  width: calc(68px /2);
}

.cta__btn__list li a span.ja {
  font-size: 2.7rem;
  display: inline-block;
  text-align: left;
  margin-left: 22.5px;
}

.cta__btn__list li a img {
  width: calc(68px /2);
}

.cta__btn__list li.line a {
  background-color: #67c88f;
  padding-top:18px
}

.cta__btn__list li.line span.small {
  display: block!important;
  width: 100%;
  line-height: 0.5!important;
  font-weight: 400;
  padding-bottom:0.25em;
  text-align: center!important;
  margin: 0 auto;
}

.cta__btn__list li.line  a img {
  margin-top: -0.5em;
  margin-bottom: -1.5em;
}

@media only screen and (max-width:768px) {
  .cta__body {
    padding: calc(72px /2) 18px ;
    border-bottom: 36px solid #0b2f9e;;
  }

  .cta__message {
    font-size: calc(3.6rem / 1.75);
  }

  .cta__btn__list {
    margin:calc(18px /2) auto auto;
  }

  .cta__btn__list li {
    margin: calc(18px /2) auto auto;
  }

  .cta__btn__list li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    padding-left: 0;
    width: 100%;
    background-size: 18px;
  }

  .cta__btn__list li a span.ja {
    font-size: calc(2.7rem / 1.5);
    margin-left: 13.5px;
  }

  .cta__btn__list li a img {
    width: calc(68px /3);
  }

  .cta__btn__list li.line span.small {
    display: block!important;
    width: 100%;
    line-height: 0.5!important;
    font-weight: 400;
    padding-bottom:0.25em;
    font-size: 1.65rem!important;
  }

  .cta__btn__list li.line a img {
    width: calc(68px / 2.25);
  }


}


/* ----------------------------------------------------------

Feature Setting

---------------------------------------------------------- */
/*feature*/
.section.feature {
  position: relative;
  padding-top:72px;
  padding-bottom: 45px;
}

.feature__container {
  border-radius: 18px;
  padding: 72px 54px 36px;
  background-color: #6078c0;
}

@media only screen and (max-width:768px) {
  .section.feature {
    padding-top:calc(72px / 1.5);
    padding-bottom: calc(45px / 1.5);
  }

  .feature__container {
    border-radius: 18px;
    padding: calc(72px / 2) 18px;
    background-color: #6078c0;
  }

}

/*feature__list*/
.feature__list__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.feature__list  {
  border-radius: 27px;
  flex-basis: 48.5%;
  margin:1.5%;
  background-color: #fff;
}

  .feature__list:nth-child(odd)  {
    margin-left: 0;
  }

  .feature__list:nth-child(even)  {
    margin-right: 0;
  }

.feature__img,
.feature__img img {
  text-align: center;
  margin: auto;
  border-radius: 27px 27px 0 0;
}

.feature__text {
  margin: auto;
  padding: 24px 54px 36px;
  text-align: center;
  border-radius:0 0 27px 27px
}

.feature__num {
  position: relative;
  margin: auto auto 9px;
  margin-top: -72px;
  text-align: center;
}

.feature__num span.en {
  display:block;
  color: #0b2f9e;
  background-color: #fff;
  border-radius: 156px;
  width: 156px;
  height: 156px;
  font-style: italic;
  font-size: 8.1rem;
  margin: -45px auto;
  line-height: 1.5678;
  font-weight: 800;
  text-align: center;
}

.feature__title {
  margin: auto;
  text-align: center;
}

.feature__title span.ja {
  color: #0b2f9e;
  display:block;
  line-height: 1.56789;
  font-weight: bold;
  font-size:2.9rem;
  margin: auto;
  text-align: center;
}

@media only screen and (max-width:768px) {
  .feature__list  {
    border-radius: 18px;
    flex-basis: 100%;
    margin:3% auto;
  }

  .feature__list:nth-child(odd),
  .feature__list:nth-child(even)  {
    margin-left: auto;
    margin-right: auto;
  }

  .feature__img,
  .feature__img img {
    border-radius: 18px 18px 0 0;
  }

  .feature__text {
    padding: calc(24px / 2) 18px calc(24px / 1);
    border-radius:0 0 18px 18px
  }

  .feature__num {
    margin: auto auto 9px;
    margin-top: -36px;
  }

  .feature__num span.en {
    border-radius: 128px;
    width: 128px;
    height: 128px;
    font-size: calc(8.1rem / 2);
    margin: -22.5px auto -81px;
  }

  .feature__title span.ja {
    font-size:calc(2.9rem / 1.45);
  }
}

/*feature__comment*/
.feature__comment__container {
  margin: 36px auto;
  text-align: center;
}

.feature__comment {
  position: relative;
  border-radius: 18px;
  border:1.5px solid #fff;
  padding: 36px 54px 40.5px;
}

.feature__comment p {
  font-size: 2.025rem;
  color: #fff;
  text-align: center;
  margin: auto;
}

.feature__comment p strong {
  font-size: 3.0rem;
  line-height: 1.5678;
}

@media only screen and (max-width:768px) {
  .feature__comment__container {
    margin: calc(36px /2) auto;
  }

  .feature__comment {
    border:1px solid #fff;
    padding: calc(36px / 1.5) 36px 
  }

  .feature__comment p {
    text-align: left;
    font-size: calc(2.025rem / 1.35);
  }

  .feature__comment p strong {
    display: block;
    text-align: center;
    font-size: calc(3.0rem / 1.5);
  }

}

/*icon__feature*/
.icon__feature1 ,
.icon__feature2 ,
.icon__feature3 ,
.icon__feature4  {
  position: absolute;
}

  .icon__feature1  {
    top: 15px;
    left: 24px;
  }

  .icon__feature2 {
    bottom: 21px;
    left: 24px;
  }

  .icon__feature3  {
    top: 15px;
    right: 24px;
  }

  .icon__feature4 {
    bottom: 21px;
    right: 24px;
  }

.icon__feature1 img,
.icon__feature2 img,
.icon__feature3 img,
.icon__feature4 img {
  pointer-events: no-repeat;
  width: calc(50px /2);
}

@media only screen and (max-width:768px) {
  .icon__feature1  {
    top: calc(18px / 2);
    left: calc(27px / 2);
  }

  .icon__feature2 {
    bottom:calc(24px / 2);
    left:calc(27px / 2);
  }

  .icon__feature3  {
    top: calc(18px / 2);
    right: calc(27px / 2);
  }

  .icon__feature4 {
    bottom: calc(24px / 2);
    right: calc(27px / 2);
  }

  .icon__feature1 img,
  .icon__feature2 img,
  .icon__feature3 img,
  .icon__feature4 img {
    pointer-events: no-repeat;
    width: calc(50px / 4);
  }
}


/* ----------------------------------------------------------

Flow Setting

---------------------------------------------------------- */
/*flow*/
.section.flow {
  padding-bottom: 45px;
  position: relative;
}

.flow__container {
  border-radius: 18px;
  padding: 72px 54px 45px;
  background-color: #fff;;
}

@media only screen and (max-width:768px) {
  .section.flow {
    padding-bottom:calc(45px /1.5);
  }

  .flow__container {
    padding: calc(72px /2) 18px
  }

}


/*flow__list*/
.flow__list {
  margin-top: -27px;
}

.flow__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 36px ;
  margin: 36px auto;
  border-radius: 18px;
  background-color: #f2f5fb;
}

.flow__list dl dt {
  flex-basis: 5%;
  position: relative;
}

  .flow__list dl dt:after {
    position: absolute;
    content: '';
    left:calc(72px/ 2);
    top: calc(72px/ 2);
    height: 300%;
    z-index: 12;
    width: 1.5px;
    margin: 0;
    border-left: 1.5px solid #4863b6;
  }

  .flow__list dl:nth-last-child(1) dt:after {
    display: none;
  }

.flow__list dl dd {
  flex-basis: 90%;
}

.flow__list dl dt span {
  display: block;
  text-align: center;
  margin: auto;
  font-weight: bold;
  z-index: 34;
  font-size:3.1rem ;
  color: #fff;
  background-color: #4863b6;
  border-radius: 72px;
  width: 72px; 
  z-index: 234;
  height: 72px;
  line-height: 2.456789;
}

.flow__list dl dd.text .title {
  display: block;
  text-align: left;
  margin: 0 0 ;
  font-weight: bold;
  font-size:2.7rem ;
  line-height: 1.56789;
}

.flow__list dl dd.text p {
  font-size:1.8rem ;
}

@media only screen and (max-width:768px) {
  .flow__list {
    margin-top: -27px;
  }

  .flow__list dl {
    padding: calc(36px / 2) ;
    margin: calc(36px /1.5) auto;
  }

  .flow__list dl dt {
    flex-basis:10%;
  }

  .flow__list dl dt:after {
    left:calc(54px/ 2);
    top: calc(54px/ 2);
    height: 250%;
  }

  .flow__list dl:nth-last-child(1) dt:after {
    display: none;
  }

  .flow__list dl dd {
    flex-basis: 75%;
  }

  .flow__list dl dt span {
    font-size:calc(3.1rem / 1.45) ;
    border-radius:60px;
    width: 54px;
    height: 54px;
    line-height: 2.56789;
  }

  .flow__list dl dd.text .title {
    font-size:calc(2.7rem / 1.357);
  }

  .flow__list dl dd.text p {
    font-size:calc(1.8rem / 1.35);
  }

}


/*flow__comment*/
.flow__comment__container {
  background-color: #fff;
  border: 1px solid #4863b6;
  border-radius: 18px;
  margin:54px auto auto;
}

.flow__comment {
  text-align: center;
  margin: auto;
}

.flow__comment__title {
  text-align: center;
  margin: -30.5px auto auto;
}

.flow__comment__title span {
  display: inline-block;
  background-color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  color: #4863b6;
  padding: 9px 45px;
  text-align: center;
}

.flow__comment__list  {
  padding: 0 0 27px;
}

.flow__comment__list li {
  text-align: left;
  margin: 0;
  font-size: 1.6rem;
}

@media only screen and (max-width:768px) {
  .flow__comment__container {
    padding-left: 27px;
    padding-right: 27px;
    margin:calc(54px /2) auto auto;
  }

  .flow__comment__title {
    margin: -27px auto auto;
  }

  .flow__comment__title span {
    font-size: calc(2.4rem / 1.35);
    padding: 9px 27px;
  }

  .flow__comment__list  {
    padding: 0 0 calc(27px / 1.5);
  }

  .flow__comment__list li {
    font-size: calc(1.6rem / 1.2);
  }

}


/* ----------------------------------------------------------

Price Setting

---------------------------------------------------------- */
/*price*/
.section.price {
  position: relative;
  padding-bottom: 45px;
}

.price__container {
  border-radius: 18px;
  padding: 72px 54px 63px;
  background-color: #fff;;
}

.section.price p.leed {
  text-align: center;
  margin: auto;
  font-size: 1.7rem;
}

  .section.price p.leed strong {
    font-size: 2.4rem;
    font-weight: bold;
  }

@media only screen and (max-width:768px) {
  .section.price {
    padding-bottom: calc(45px / 2);
  }

  .price__container {
    padding: calc(72px /2) 18px 
  }

  .section.price p.leed {
    font-size: calc(1.7rem / 1.225);
  }

  .section.price p.leed strong {
    display: block;
    font-size: calc(2.4rem / 1.35);
    line-height: 1.56789;
  }

}


/*price__table*/
.price__table {
  border: none;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  padding: 0;
  margin:54px auto auto;
}

.price__table thead tr th  {
  text-align: left;
  padding:18px;
  background-color: #e1e4f2;
  text-align: center;
  line-height: 1.23456789;
  font-weight: bold;
}

.price__table tbody tr th,
.price__table tbody tr td  {
  padding: 27px;
  line-height: 1.23456789;
  font-size: 1.8rem;
  font-weight: 500;
}

  .price__table tbody tr th  {
    text-align: left;
  }

  .price__table tbody tr th.title ,
  .price__table tbody tr td.price  {
    padding: 27px calc(90px + 90px);
  }

  .price__table tbody tr td  {
    text-align: right;
  }

  .price__table tbody tr td.text  {
    padding: 27px calc(90px + 90px) 27px 0;
  }

  .price__table tbody tr:nth-child(odd) th ,
  .price__table tbody tr:nth-child(odd) td {
    background-color: #fff;
  }

  .price__table tbody tr:nth-child(even) th ,
  .price__table tbody tr:nth-child(even) td {
    background-color: #eff2fa;
  }

.price__caution {
  text-align: center;
  margin: 36px auto auto;

}

@media only screen and (max-width:768px) {
  .price__table {
    margin:calc(54px / 1.5) auto auto;
  }

  .price__table thead tr th,
  .price__table tbody tr th,
  .price__table tbody tr td  {
    font-size: calc(1.8rem / 1.25);
    vertical-align: middle;
    line-height: 1.45678;
  }

  .price__table tbody tr th.title ,
  .price__table tbody tr td.price,
  .price__table tbody tr td.text,
  .price__table tbody tr th ,
  .price__table tbody tr th.title  {
    padding: calc(27px / 1.5) ;
  }

    .price__table tbody tr td ,
    .price__table tbody tr td.text ,
    .price__table tbody tr td.price  {
      padding: 4.5px;
    }

  .price__caution {
    margin: calc(36px / 1.5) auto auto;
  }
}


/* ----------------------------------------------------------

FAQ Setting

---------------------------------------------------------- */
/*faq*/
.section.faq {
  position: relative;
  padding-bottom: 90px;
}

.faq__container {
  border-radius: 18px;
  padding: 72px 54px 63px;
  background-color: #fff;;
}

@media only screen and (max-width:768px) {
  .section.faq {
    padding-top:0;
    padding-bottom: calc(90px / 2);
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq__container {
    padding: calc(72px / 2) 18px;
  }

}

/*faq__list*/
.faq__list__container {
  margin-top: -18px;
  position: relative;
}

.faq__list dl {
  border-radius: 18px;
  padding:9px 18px;
  background-color: #f2f5fb;
  margin: 18px 0;
}

.faq__list dl dt,
.faq__list dl dd {
  position: relative;
  margin: 18px 0;
  padding-left:  calc(103px / 1.345);
}

.faq__list dl dt:before,
.faq__list dl dd:before {
  position: absolute;
  content: '';
  top: 9px;
  left: 13.5px;
  margin: 0;
  background-repeat: no-repeat;
  background-position: 0% 50%;
  background-size: calc(103px / 2.25);
  min-width: calc(103px / 2.25);
  min-height: calc(103px /2.25);
}

  .faq__list dl dt:before {
    background-image: url(../img/icon__q.png);
  }

  .faq__list dl dd:before {
    background-image: url(../img/icon__a.png);
  }

.faq__list dl dt span,
.faq__list dl dd span  {
  display: block;
  text-align: left;
  font-weight: 500;
}

  .faq__list dl dt span {
    font-size: 2.7rem;
    font-weight: bold;
  }

  .faq__list dl dd span {
    font-size: 1.8rem;
  }

.faq__caution {
  text-align: center;
  margin: 36px auto auto;
}

@media only screen and (max-width:768px) {
  .faq__list__container {
    margin-top: -18px;
    position: relative;
  }

  .faq__list dl {
    padding:calc(9px / 1.5) calc(18px / 1.5);
    margin: calc(18px / 1.5) 0;
  }

  .faq__list dl dt,
  .faq__list dl dd {
    margin: 18px 0;
    padding-left: calc(103px / 1.95);
  }

  .faq__list dl dt:before,
  .faq__list dl dd:before {
    top: 2.25px;
    left: 9px;
    background-size: calc(103px /3);
    min-width: calc(103px / 3);
    min-height: calc(103px /3);
  }

  .faq__list dl dt span {
    font-size: calc(2.7rem / 1.435);
    line-height: 1.56789;
  }

  .faq__list dl dd span {
    font-size: calc(1.8rem / 1.35);
    font-size: ;
  }

  .faq__caution {
    margin: calc(36px / 1.5) auto auto;
  }

}


/* ----------------------------------------------------------

Contact Setting

---------------------------------------------------------- */
/*contact */
.section.contact {
  position: relative;
  padding: 72px 0;
  background-color: #4863b6;
  z-index: 123456789;
  margin: auto;
}

.form__container  {
  border-radius: 18px;
  padding: 54px ;
  background-color: #fff;
}

.form__container p.leed {
  text-align: center;
  margin: auto;
  font-size: 1.8rem
}

@media only screen and (max-width:768px) {
  .section.contact {
    padding: calc(72px / 1.5) 18px 
  }

  .form__container  {
    padding: 36px 18px 
  }

  .form__container p.leed {
    text-align: left;
    font-size: calc(1.8rem / 1.35)
  }
}

/*form__list*/
.form__list {
  padding: 2em 0.5em 1em;
}

.form__list dt,
.form__list dd {
  font-size: calc(2.7rem / 1.75);
}

  .form__list dt {
    font-weight: bold;
  }

  .form__list dd {
    margin: 0.25em 0 1em;
  }

@media only screen and (max-width:768px) {
  .form__list {
    padding: 1em 0 ;
  }

  .form__list dt,
  .form__list dd {
    font-size: calc(2.7rem / 1.85);
  }

  .form__list dd {
    margin: 0.25em 0 1em;
  }

}

/*wpcf7*/
.wpcf7 input[type=text],
.wpcf7 input[type=number],
.wpcf7 input[type=email],
.wpcf7 input[type=password],
.wpcf7 input[type=date],
.wpcf7 input[type=url],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:none;
  padding :22.5px 18px;
  background-color:#fff;
  border: 1px solid #ccc;
  box-sizing:border-box;
  width: 100%;
  font-size: calc(2.7rem / 1.75);
}

.wpcf7 input[type=text].inline {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.wpcf7 input[type=text]:focus,
.wpcf7 input[type=number]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=password]:focus,
.wpcf7 input[type=date]:focus,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 textarea:focus {
  transition: 0.3s;
  background-color: #fff;
  box-shadow: 0 0 0 6px rgba(0,0,0,0.1)
}

.wpcf7 select {
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:none;
  padding :22.5px 18px;
  background-color:#fff;
  border: 1px solid #ccc;
  box-sizing:border-box;
  width: 100%;
  font-size: calc(2.7rem / 1.75);
}

::-webkit-input-placeholder {
  color:#aaa;
}
:-ms-input-placeholder {
  color:#aaa;
}
::placeholder{
  color:#aaa
}

.wpcf7 input[type=radio],
.wpcf7 input[type=checkbox] {
  transform:scale(1.5);
  margin-right: 9px;
}

.wpcf7 .req {
  font-size: calc(2.7rem / 1.75);
  font-weight: bold;
  color: #F40012;
  margin-left: 0.125em;
}

.wpcf7 .form__accept {
  text-align: center;
  margin: auto;
  font-size: calc(2.7rem / 1.75);
}

.form__submit  {
  padding: 0 1em;
  text-align: center;
  margin: auto;
  max-width: 300px;
}

.form__submit input[type=submit] {
  margin:1.25em auto auto ;
  width: 100%;
  text-align: center;
  background-image: none;
}

@media only screen and (max-width:768px) {
  .wpcf7 input[type=text].inline {
    width: 100%;
    margin: 5px auto;
  }
      
}


/* ----------------------------------------------------------

Footer Setting

---------------------------------------------------------- */
/*footer*/
.footer {
  background-color: #fff;
  padding: 72px 0 ;
  margin: auto;
}

.footer__container {
  margin:auto;
  text-align: center;
}

.footer__logo ,
.footer__text {
  text-align: center;
  margin:auto auto 18px;
}

.footer__logo img {
  max-width: 400px;
}

.footer__container address {
  font-style: normal;
  font-size:1.4rem;
  color: #999;
}

@media only screen and (max-width:768px) {
  .footer {
    padding: calc(72px / 2) 18px calc(90px + 27px);
  }

  .footer__logo ,
  .footer__text {
    margin:auto auto calc(18px / 2);
  }

  .footer__logo img {
    width: 80%;
    max-width: 80%;
  }

  .footer__container address {
    font-size:calc(1.4rem / 1.18);
  }
    
}


/*footer__nav
.footer__nav {
  width: 100%;
  display: block;
  position: fixed;
  bottom: 0;
  z-index:12345;
  overflow-y: hidden;
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer__nav ul li {
  flex-basis: 100%;
}

.footer__nav a {
  display: block;
  text-decoration: none;
  text-align: center;
  padding:27.25px 9px 24px;
  line-height: 1;
  font-size: 1.8rem;
  border-radius: 0;
  background-image: none;
  background-color: rgba(11, 47, 158, 1.0);
  color: #fff;
  font-weight: bold;;
}

