@charset "utf-8";

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

Common Setting

---------------------------------------------------------- */
/*pc + sp*/
.pc   {display:block}
.sp   {display:none}
@media only screen and (max-width:767px) {
.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-optical-sizing: auto;
  font-style: normal;
  */
  font-family: "Arial","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic" , sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

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


/*font*/
.en {
  font-family: Arial, sans-serif;
  font-weight: 700;
  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*/
p.center ,
.center {
  text-align:center
}

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 90%;
}


/*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:not(.nohover),
a:not(.nohover):hover {
  cursor:pointer;
  color: inherit;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition: 0.2s all;
}

a:not(.nohover):hover {
  opacity: 0.7; 
}

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

@media only screen and (max-width: 767px) {
  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:767px) {
  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:767px) {
  .alignnone,
  .alignleft,
  .alignright,
  .aligncenter  {
    display:block;
    float:none;t
    ext-align:center;
    margin:1em auto
  }
}


/*loading */
.loader-bg {
  width: 100vw;
  height: 100vh;
  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-decoration: none;
  text-align:center;
  text-decoration:none;
  box-sizing:border-box;
  position:relative;
  cursor:pointer;
  box-shadow:none;
  outline:none;
  /*
  border-radius: 18px;
  */
  appearance:none;
  font-weight: bold;
  border-radius: 6.25px;
}

.btn.en  {
  font-weight: 300;
  line-height: 2;
}

.btn.ja  {
}

.btn__round {
  border-radius: 200px!important;
}


/*btn__primary*/
.btn__primary {
  background-color: #c8161d;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow1.png);
  background-size: calc(11px / 1.5);
  background-repeat: no-repeat;
  border: 3px solid #fff;
  text-align: center;
  color: #fff!important;
  padding:15px 18px;
}

  .btn__primary:hover,
  .btn__primary:focus  {
    color: #fff!important;
  }

/*btn__secondary*/
.btn__secondary {
  background-color: #fff;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow2.png);
  background-size: calc(11px / 1.5);
  background-repeat: no-repeat;
  border: 3px solid #245993;
  text-align: center;
  color: #245993!important;
  padding:15px 18px;
}

  .btn__secondary:hover,
  .btn__secondary:focus  {
    color: #245993!important;
  }


/*icon__line*/
.btn__line  {
  background-color: #3eab76;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow1.png);
  background-size: calc(11px / 1.5);
  background-repeat: no-repeat;
  border: 3px solid #fff;
  text-align: center;
  color: #fff!important;
  padding:15px 18px;
}

  .btn__line:hover,
  .btn__line:focus  {
    color: #fff!important;
  }


/*btn__white*/
.btn__white  {
  background-color: transparent;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow1.png);
  background-size: calc(11px / 1.5);
  background-repeat: no-repeat;
  border: 3px solid #fff;
  text-align: center;
  color: #fff!important;
  padding:15px 18px;
}

  .btn__white:hover,
  .btn__white:focus  {
    color: #fff!important;
  }

/*btn__arrow*/
.btn__primary.btn__arrow {
  display: block;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow2.png);
  background-size: calc(30px / 4);
  background-repeat: no-repeat;
}

.btn__secondary.btn__arrow  {
  display: block;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow1.png);
  background-size: calc(30px / 4);
  background-repeat: no-repeat;
}

@media only screen and (max-width:767px) {
  .btn__primary ,
  .btn__secondary,
  .btn__line,
  .btn__white  {
    border-width:1px;
    padding:15px 18px;
  }

  .btn__primary.btn__arrow ,
  .btn__secondary.btn__arrow  {
    background-size: calc(30px /6);
  }

}

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

Table Setting

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

  table.w10 td {
    width: 80%;
  }

table.w15 th {
  width: 15%;
}

  table.w15 td {
    width: 80%;
  }

table.w20 th {
  width: 20%;
}

  table.w20 td {
    width: 80%;
  }

table.w25 th {
  width: 25%;
}

  table.w20 td {
    width: 75%;
  }


table.w30 th {
  width: 30%;
}

table.w40 th {
  width: 40%;
}

table.w50 th {
  width: 50%;
}

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

table.table__bordered tr {
  background-image : linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

table.table__bordered th ,
table.table__bordered td {
  text-align: left;
  font-weight: 300;
  padding:36px 18px;
}

  table.table__bordered tr:nth-last-child(1) {
    background-image: none;
  }

table.table__bordered.vertical__top th ,
table.table__bordered.vertical__top td {
  vertical-align: top;
}


@media only screen and (max-width:767px) {
  table.table__bordered  {
    border: none;
  }

  table.table__bordered tr {
    background-image : linear-gradient(to right, #000 1px, transparent 1px);
    background-size: 5px 1px;
  }

  table.table__bordered tr th ,
  table.table__bordered tr td {
    display: block;
    width: 100%;
    padding:calc(36px / 1.5) 0;
    box-sizing: border-box;
    position: relative;
    border: none;
  }

  table.table__bordered tr th {
    padding-bottom: 0;
  }

  table.table__bordered tr td {
    padding-top: 0;
  }

}

.wp-block-table table ,
.wp-block-table tr th ,
.wp-block-table tr td {
  border: 1px solid #ccc;
  border-collapse: collapse;
}


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

table.table__striped tr th ,
table.table__striped tr td {
  text-align: left;
  font-weight: 400;
  padding: 18px;
}

table.table__striped tr th {
  font-weight: bold;
}

  table.table__striped tr th.right {
    text-align: right;
  }

  table.table__striped tr:nth-child(odd) th ,
  table.table__striped tr:nth-child(odd) td {
    background: #F8F4EF;
  }

  table.table__striped tr:nth-child(even) th ,
  table.table__striped tr:nth-child(even) td {
    background: #fff;
  }

/*

  table.table__bordered tr:nth-last-child(1) th ,
  table.table__bordered tr:nth-last-child(1) td  {
    border-bottom: none;
  }
*/

@media only screen and (max-width:767px) {
  table.table__striped  {
    border: none;
  }

  table.table__striped tr th ,
  table.table__striped tr td {
    display: block;
    width: 100%;
    padding:calc(18px / 1.5);
    box-sizing: border-box;
    position: relative;
    border: none;
  }

    table.table__striped tr th{
      padding-bottom: 2.25px
    }

    table.table__striped tr td {
      padding-top:2.25px;
    }

}


/*table__responsive*/
@media only screen and (max-width:767px) {
  /*table__responsive*/
  .table__responsive {
    table-layout: fixed;
  }

  .table__responsive tr th,
  .table__responsive tr td {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    display: block;
  }

  .table__responsive tr th,
  .table__striped.table__responsive tr th,
  .table__bordered.table__responsive tr th {
    padding-bottom: 2.25px;
    border: none;
  }

  .table__bordered.table__responsive tr {
    border: 1px solid #dedede;
  }

  .table__responsive tr td,
  .table__striped.table__responsive tr td,
  .table__bordered.table__responsive tr td {
    padding-top: 2.25px;
    border: none;
  }

  .table__responsive.w15,
  .table__responsive.w20,
  .table__responsive.w25,
  .table__responsive.w30,
  .table__responsive.w40,
  .table__responsive.w50 {
    width: 100%;
  }
}

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

Layout Setting

---------------------------------------------------------- */
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%;
  max-width: 1920px;
  min-width: 1180px;
  color: #000;
  /*
  font-weight:400;
  */
  font-weight:400;
  letter-spacing: 0.05em;
  font-size:16px;
  line-height:2;
  padding:0;
  margin:auto;
}

#wrapper {
  position: relative;
}

main {
  position: relative;
  z-index: 1;
}

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

.container__wide {
  width:100%;
  margin:auto;
  box-sizing: border-box;
  padding-left:2em;
  padding-right:2em;
  max-width: 1920px;
}

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

.container__middle {
  max-width:1024px;
  margin:auto;
}

.container__narrow {
  max-width:900px;
  margin:auto;
}

.container__xnarrow  {
  max-width:880px;
  margin:auto;
}

.container__xxnarrow {
  max-width:700px;
  margin:auto;
}

.container__xxxnarrow {
  max-width:600px;
  margin:auto;
}

.container__xxxxnarrow {
  max-width:500px;
  margin:auto;
}

.container__xxxxxnarrow {
  max-width:400px;
  margin:auto;
}

.container__xxxxxxnarrow {
  max-width:350px;
  margin:auto;
}


@media only screen and (max-width:767px) {
  body  {
    min-width:1px;
    max-width: 100%;
    font-size:calc(16px / 1.16);
    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 {
    width:100%;
    max-width:100%;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box
  }

  .container .container,
  .container .container__middle,
  .container .container__narrow,
  .container .container__xnarrow,
  .container .container__xxnarrow,
  .container .container__xxxnarrow,
  .container .container__xxxxnarrow,
  .container .container__xxxxxnarrow ,

  .container__middle .container__middle,
  .container__middle .container__middle,
  .container__middle .container__narrow,
  .container__middle .container__xnarrow,
  .container__middle .container__xxnarrow,
  .container__middle .container__xxxnarrow,
  .container__middle .container__xxxxnarrow,
  .container__middle .container__xxxxxnarrow {
    padding-left:0;
    padding-right:0;
  }

  #wrapper,
  main {
    overflow-x: hidden;
  }

}

/*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

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

/*topbar*/
.topbar {
  width: 100%;
  position: relative;
  background-color: #245993;
  padding: 18px 0;
}

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

.topbar__logo {
  flex-basis:256.0px;
  position: relative;
}

.topbar__menu {
  flex-basis: calc(100% - 700px);
  text-align: center;
  margin: auto;
}

.topbar__contact {
  flex-basis:400px;
  max-width: 400px;
  z-index: 12;
}

.topbar__logo img {
  width: 100%;
  margin-top: -4.5px;
}

@media only screen and (max-width:767px) {
  .topbar {
    padding:13.5px 0 4.5px;
    height: 70px;
  }

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

  .topbar__logo {
    flex-basis:100%;
    position: relative;
    margin: auto;
  }

  .topbar__contact,
  .topbar__menu {
    display: none;
  }

  .topbar__logo img {
    width: 198px;
    text-align: center;
    margin: auto;
  }

}

/*gnav__pc__list*/
.gnav__pc__list li {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}

.gnav__pc__list li a {
  color: #fff;
  font-size: 16px;
  display: block;
  margin: 0 9px;
  padding: 0 9px;
  text-decoration: none;
  line-height: 1;
}

.gnav__pc__list li:after {
  content: '/';
  position: absolute;
  top: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  left:100%;
  line-height:1;
  padding: 0 ;
}

  .gnav__pc__list li:nth-last-child(1)::after {
    display: none;
  }


.gnav__pc__list li a:hover,
.gnav__pc__list li a:focus {
  color: rgba(255, 255, 255, 0.75);
}


/*topbar__contact__list*/
.topbar__contact__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
}

.topbar__contact__list li {
  flex-basis: 49%;
}

.topbar__contact__list li a {
  border-width: 1px;
}

.topbar__contact__list li.line img.btn__icon,
.topbar__contact__list li.interview img.btn__icon {
  width: calc(48px/ 2.25);
  margin-right: 2.25px;
}

@media only screen and (max-width:767px) {
  .topbar__contact__list {
    display: none;
  }

}



#navArea  {
  display: none;
}
@media only screen and (max-width:767px) {
  .gnav__pc {
    display: none;
  }

  #navArea  {
    display:block;
  }

  nav.gnav__sp  {
    display:block;
    position:fixed;
    top:0;
    right:-100%;
    bottom:0;
    width:100%;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transition:all .5s;
    opacity:0;
    background: #035794;
    z-index: 1234567890123456789;
  }

  .open nav.gnav__sp  {
    right:0;
    opacity:1
  }

  nav.gnav__sp .inner {
    padding: 18px
  }

  nav.gnav__sp .inner ul  {
    list-style:none;
    padding:9px ;
  }

  nav.gnav__sp .inner ul li {
    position:relative;
    margin:0;
    text-align:left
  }

  nav.gnav__sp .inner ul li a     {
    display:block;
    color:rgba(255,255,255,1)!important;
    box-sizing:border-box;
    font-size:calc(16px / 1.17);
    font-weight: 500;
    padding:18px 9px;
    text-decoration:none;
    transition-duration:0.2s;
    border-bottom:0.75px solid rgba(255,255,255,0.25);
  }

    nav.gnav__sp .inner ul li a:hover,
    nav.gnav__sp .inner ul li a:focus {
      color:rgba(255,255,255,0.75)!important;
    }

  /*toggle__btn*/
  .toggle__btn {
    display:block;
    position:fixed;
    top:22.5px;
    right:15.5px;
    width:24px;
    height:30px;
    transition:all .5s;
    cursor:pointer;
    z-index: 123456789012345678901
  }

  .toggle__btn span {
    display:block;
    position:absolute;
    right:0;
    width:40px;
    height:2px;
    background-color:#fff;
    border-radius:0;
    z-index: 234;
    transition:all .5s;
  }

    .toggle__btn span.transform2 {
      background-color:#035794;
    }

  .toggle__btn span:nth-child(1) {
    top:4px
  }

  .toggle__btn span:nth-child(2) {
    top:12px;
  }

  .toggle__btn span:nth-child(3)  {
    bottom:8px
  }

  .open .toggle__btn span {
    background-color:#fff
  }

  .open .toggle__btn span:nth-child(1) {
    -webkit-transform:translateY(8px) rotate(-315deg);
    transform:translateY(8px) rotate(-315deg)
  }

  .open .toggle__btn span:nth-child(2) {
    opacity:0
  }

  .open .toggle__btn span:nth-child(3) {
    -webkit-transform:translateY(-8px) rotate(315deg);
    transform:translateY(-8px) rotate(315deg)
  }

/*
  .open .toggle__btn span:nth-child(2) {
    -webkit-transform:translateY(-8px) rotate(315deg);
    transform:translateY(0px) rotate(315deg);
    width:40px;
  }
*/
  .toggle__btn__label {
    display: block;
    font-size:10px;
    color: #035794;
    font-weight: 600;
    text-align: center;
    margin:20.5px auto auto;
    margin-left: -7.25px;
    width:40px;
  }

  .open .toggle__btn__label {
    display: none;
  }

  .gnav__sp .parent__menu__sp .child__menu__sp  {
    margin-top: -4.5px!important;
  }

  .gnav__sp .parent__menu__sp a.label {
    pointer-events: none;
    color: rgba(255,255,255,0.55)!important;
    font-size: 12px!important;
    margin-bottom: 0!important;
    padding-top: 36px!important;
    padding-bottom: 0!important;
    border-bottom: none!important;
  }

  .gnav__sp .child__menu__sp {
    padding-left: 0!important;
  }

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

  .gnavsp__contact__list li {
    flex-basis: 100%;
    margin: 4.5px auto!important
  }

  .gnavsp__contact__list li a.btn {
    padding:18px!important;
    font-size: calc(20px/ 1.20)!important;
    border: 1.25px solid #fff!important;
  }

  .gnavsp__contact__list .btn__icon {
    width: calc(48px/ 3.5);
  }
}


@media only screen and (max-width:767px) {
  /*gnav__sp__menu__list*/
  .gnav__sp__list .gnav__sp__menu__list  {
    margin-top: -18px;
    padding: 0 0 9px 1em;
  }

  .gnav__sp__list .gnav__sp__menu__list a  {
    padding: 18px 0px!important;
    color:rgba(255,255,255,1)!important;
    font-size:calc(17px / 1.3)!important;
    transition-duration:0.2s;
    border-bottom:0.75px solid rgba(255,255,255,0.25);
  }

  .gnav__sp .inner ul li a.menu__list__link {
    border-bottom: none;
  }

  .gnav__sp__menu__child__list {
    margin-top: 0!important;
    padding: 0 0 0 1em!important;
  }

  .gnav__sp .inner ul ul.gnav__sp__menu__child__list li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
  }

  .gnav__sp .inner ul ul.gnav__sp__menu__child__list li a {
    display:block;
    color:rgba(255,255,255,1)!important;
    font-weight: 5400;
    padding:9px 0!important;
  }

  /*gnav__sp__sns__list*/
  .gnav__sp__sns__list  {
    margin: 18px auto;
    text-align: center;
  }

  .gnav__sp__sns__list li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    margin-right: 12px;
  }

  .gnav__sp__sns__list li a {
    border-bottom: none!important;
  }

  .gnav__sp__sns__list li img {
    height: calc(79px / 2);
  }
}


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

Section Setting

---------------------------------------------------------- */
/*bg*/
.bg1 {
  background-color: #fff
}

.bg2 {
  background-color: #4675b5;
}

.bg3 {
  background-color: #def1fb;
}

.bg4 {
  background-color: #035794;
}

/*color*/
.color1 {
  color: #fff;
}


/*section*/
.section {
  padding:90px 0 ;
}

p.leed {
  font-size: 17px;
}

p.leed.center {
  text-align: center;
}

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

  p.leed {
    font-size: calc(17px / 1.17)
  }

}

/*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:767px) {
  .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__container*/
.section__container .leed {
  text-align: center;
  margin:auto;
}
/*

@media only screen and (max-width:767px) {
  .section__container .leed {
    text-align: justify;
    margin:0;
    padding-left: 18px;
    padding-right: 18px;
  }

}*/


/*section__title**/
.section__title {
  position: relative;
  font-style: normal;
}

.section__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-weight: 900;
  color: #245993;
}

  .section__title span.ja.small {
    font-size:27px;
  }

  .section__title span.ja {
    font-size:36px;
  }

  .section__title span.ja.large {
    font-size:40.5px;
  }

  .section__title span.color1 ,
  .bg2 .section__title span ,
  .bg4 .section__title span { 
    color: #fff;
  }

.section__title.left span {
  text-align: left;
}

@media only screen and (max-width:767px) {
  .section__title span.ja.small {
    font-size:calc(27px / 1.5);
    line-height: 1.3456789;
  }

  .section__title span.ja {
    font-size:calc(36px / 1.5);
    line-height: 1.3456789;
  }

  .section__title span.ja.large {
    font-size:calc(40.5px / 1.55);
    line-height: 1.3456789;
  }

}

/*section__content*/
@media only screen and (max-width:767px) {
  .section__content {
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
  }
}

/*ul li square*/
ul.square li {
  color: #245993;
  font-weight: 500;
  padding-left: 1em;
}

ul.square li:before {
  position: relative;
  content: '■';
  color: #e75297;
  margin-left: -1em;
}

ul.square.inline li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5em;
}

ul.square.center ,
ul.square.center li {
  text-align: center;
}


@media only screen and (max-width:767px) {

}


/*breadnav*/
.breadnav {
  padding: 45px 0
}

.breadnav p {
  font-size: 15px;
  line-height: 2
}

.breadnav p a {
  text-decoration: underline!important;
}

  .breadnav p a:focus ,
  .breadnav p a:hover  {
    text-decoration: none!important;
    transition: 0.3s;
  }

@media only screen and (max-width:767px) {
  .breadnav {
    padding:calc(45px / 1.5) 9px;
  }

  .breadnav p {
    font-size: calc(15px / 1.2)
  }
}


/*cta*/
.cta  {
  background-image: url(../img/cta.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0;
}

.cta .section__title span {
  color: #000;
}

.cta__container {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 72px 45px 54px;
}

.cta__menu__container {
  display: flex;
  margin-top: 27px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.cta__menu {
  flex-basis: 49%;
}

.cta__menu__title {
  text-align: center;
  margin: auto;
  padding: 13.5px 9px;
  background-color: #245993;
}

.cta__menu__title span.ja {
  color: #fff;
  font-size: 22.5px;
  font-weight: bold;
  text-align: center;
  margin: auto;
}

.cta__menu__body {
  background-color: #fff;
  padding: 36px;
  height: 300px;
}

.cta__menu__text {
  text-align: center;
}

.cta__menu__list {
  background-color: #ebf6fc;
  padding:18px 36px;
}

  .cta__menu1 .cta__menu__list {
    margin-bottom: 13.5px;
  }

.cta__menu1 ul.square li {
  font-size: 17px;
  font-weight: 600;
}

  .cta__menu1 ul.square li {
    padding-top: 2.25px;
    padding-bottom:2.25px;
  }

  .cta__menu2 ul.square li {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }
  
.cta__menu1 ul.square li:before {
  font-size: 14px;
}

.cta__menu__btn {
  text-align:center;
  margin: 36px auto 22.5px;
  max-width: 468px;
}

.cta__menu__btn a {
  font-size: 22.5px;
  padding: 22.5px;
}

.cta__menu__btn .btn__icon {
  width: calc(48px/ 2);
  line-height: 1;
}

@media only screen and (max-width:767px) {
  .cta  {
    background-image: url(../img/cta.png);
    padding: calc(90px / 1.5) 0;
  }

  .cta__container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: calc(72px / 1.5) 18px;
  }

  .cta__menu__container {
    margin-top: calc(27px / 1.5);
  }

  .cta__menu {
    flex-basis: 100%;
  }

  .cta__menu__title {
    padding: calc(13.5px / 1.5) 9px;
  }

  .cta__menu__title span.ja {
    font-size: calc(22.5px / 1.225);
  }

  .cta__menu__body {
    padding: calc(36px / 2);
    height: auto;
  }

  .cta__menu__text {
    text-align: left;
  }
  
  .cta__menu__list {
    padding:calc(18px / 2) calc(36px / 2);
  }

  .cta__menu1 .cta__menu__list {
    margin-bottom: calc(13.5px / 1.5)
  }

  .cta__menu1 ul.square li ,
  .cta__menu2 ul.square li {
    font-size: calc(17px / 1.1);
  }

  .cta__menu1 ul.square li ,
  .cta__menu2 ul.square li {
    padding-top: calc(2.25px / 1.5);
    padding-bottom:calc(2.25px / 1.5)
  }
  
  .cta__menu1 ul.square li:before {
    font-size: 14px;
  }

  .cta__menu__btn {
    margin: calc(36px / 1.5) auto calc(22.5px / 1.5);
    max-width: 100%;
  }

  .cta__menu__btn a {
    font-size: calc(22.5px / 1.225);
    padding: calc(22.5px / 1.5);
  }

  .cta__menu__btn .btn__icon {
    width: calc(48px/ 2.5);
  }
}


/*page__header*/
.page__header {
  width: 100%;
  position: relative;
  background-image: url(../img/page__header__pc.png);
  background-size:cover;
  background-position:no-repeat;
  background-position: top center;
}

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

.page__header__text {
  flex-basis: 100%;
  padding: 90px 0 ;
  text-align: center;
  margin: auto;
}

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

.page__header__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 45px;
  font-weight:900;
  letter-spacing: 0.05em;
}

.page__header__text p {
  font-size: 18px;
  text-align: center;
  margin: auto;
  font-weight: 600;
}

@media only screen and (max-width:767px) {
  .page__header {
    width: 100%;
    background-image: url(../img/page__header__sp.png);
  }

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

  .page__header__title span {
    font-size: calc(45px / 1.55);
    line-height: 1.234567890;
    letter-spacing: 0.025em;
  }

  .page__header__text p {
    margin-top:13.5px;
    font-size: calc(18px / 1.18);
    line-height: 1.567890;
  }
}


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

Common menu Setting

---------------------------------------------------------- */
/*common__menu*/
.common__menu {
  padding:72px 0;
}

.common__menu__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.common__menu__list {
  flex-basis: 48%;
  margin: auto;
  height: 380px;
  padding: 54px;
}

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

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

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

.common__menu__tile span {
  display: block;
  font-size: 24px;
  font-weight: 400;
}

.common__menu__tile span img {
  width: calc(76px/ 1.9);
  vertical-align: middle;
  display: inline-block;
  margin-right: 9px;
}

.common__menu__text   {
  padding-top: 45px;
}

.common__menu__text h3  {
  font-weight: 400;
  font-size: 16px;
}

.common__menu__text p  {
  font-weight: 300;
  font-size: 15px;
}

.common__menu__tel {
  padding-top: 45px;
  text-align: center;
  margin: auto;
}

.common__menu__tel a {
  display: block;
  text-align: center;
  margin: auto;
  text-decoration: none;
}

.common__menu__tel a span.en {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.3456789;
  font-size: 47px;
}

.common__menu__tel span.ja {
  display: block;
  text-align: center;
  display: block;
  font-size: 14px;
}

.common__menu__tel img {
  width: 31px;
}

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

.common__menu__btn a {
  width: 408px;
  text-align: center;
  margin: auto; 
}

@media only screen and (max-width:767px) {
  .common__menu {
    padding:calc(72px / 2) 0;
  }

  .common__menu__list {
    flex-basis: 100%;
    margin:9px auto;
    height: auto;
    padding:calc(54px / 1.5) 18px;
  }

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

  .common__menu__tile span {
    font-size: calc(24px / 1.24);
  }

  .common__menu__tile span img {
    width: calc(76px/ 3);
    margin-right: calc(9px / 1.5);
  }

  .common__menu__text   {
    padding-top: calc(45px / 1.5);
  }

  .common__menu__text h3  {
    font-size: calc(16px / 1.1);
  }

  .common__menu__text p  {
    font-size: calc(15px / 1.1);
  }

  .common__menu__tel {
    padding-top: calc(45px / 1.5)
  }

  .common__menu__tel a span.en {
    font-size: calc(47px / 1.475);
  }

  .common__menu__tel span.ja {
    font-size: calc(14px / 1.1);
  }

  .common__menu__tel img {
    width:calc(31px / 1.5);
  }

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

  .common__menu__btn a {
    width: 100%;
  }
}


/*withmal*/
.withmal {
  text-align: center;
  margin:54px auto auto;
  padding: 0 ;
}

.withmal img {
  max-width: 330px;
}

.withmal p.center {
  font-size: 15px;
  text-align: center;
  margin: auto;
  font-weight: 600;
}

@media only screen and (max-width:767px) {
  .withmal {
    margin:calc(54px /2);
    padding: 0 
  }

  .withmal img {
    max-width: 200px;
  }

  .withmal p.center {
    font-size: calc(15px / 1.1);
  }

}


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

HOME Setting

---------------------------------------------------------- */
/*home__header*/
.home__header {
  width: 100% ;
  height: 100%;
  position: relative;
  display: block
}

.home__header__container {
  padding: 81px 0;
  background-color: #245993;
}

.home__header__title {
  position: relative;
  padding: 0 0 0;
  text-align: center;
  margin: auto;
}

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

.home__header__subtitle p {
  margin:  auto ;
  color: #fff;
  font-weight: bold;
  font-size: 32.25px;
  line-height: 1.456789;
  text-align: center;
}

.home__header__subtitle p strong {
  margin:  auto ;
  color: #fff000;
  font-weight: bold;
  font-size: 45px;
  text-align: center;
}

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

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

.home__header__btn__list li {
  flex-basis: 49%;
}

.home__header__btn__list li.line img.btn__icon,
.home__header__btn__list li.interview img.btn__icon {
  width: calc(48px/ 2);
}

.home__header__btn__list li a {
  font-size: 22.25px;
  padding: 22.5px;
}

@media only screen and (max-width:767px) {
  .home__header__container {
    padding: calc(81px / 2) 0;
  }

  .home__header__subtitle p {
    font-size:calc(32.25px / 1.65);
  }

  .home__header__subtitle p strong {
    font-size:calc(45px / 1.8);
  }

  .home__header__btn {
    margin: calc(36px / 2) auto auto;
  }

  .home__header__btn__list li {
    flex-basis: 100%;
    margin: 4.5px auto;
  }

  .home__header__btn__list li.line img.btn__icon,
  .home__header__btn__list li.interview img.btn__icon {
    width: calc(48px/ 2.5);
  }

  .home__header__btn__list li a {
    width: 100%;
    font-size: calc(22.25px / 1.325);
    padding: calc(22.5px/ 1.5);
  }
}


/*home__benefits*/
.home__benefits {
  padding: 0;
  margin-top: 45px;
}

.home__benefits__maintitle {
  text-align: center;
  margin: auto;
  background-color: #e75297;
}

.home__benefits__maintitle span {
  display: block;
  text-align: center;
  margin: auto;
  color: #fff;
  font-size:40.5px;
  font-weight: bold;
  padding: 36px 0;
  line-height: 1.123456;
}

.home__benefits__body {
  padding: 72px 0;
}

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

.home__benefits__left {
  flex-basis: 35%;
}

.home__benefits__right {
  flex-basis: 60%;
}

.home__benefits__list.square li:before {
  font-size: 20.25px;
  top: -2.5px;
}

.home__benefits__container img {
  pointer-events: none;
}

.home__benefits__title {
  margin-bottom: 18px;
}

.home__benefits__subtitle {
  background-color: #fff;
  border: 3px solid #245993;
  border-radius: 4.5px;
  text-align: center;
  margin: auto;
}

.home__benefits__subtitle span {
  display: block;
  text-align: center;
  font-size: 30.5px;
  font-weight: bold;
  line-height: 1.789;
  color: #245993;
}

.home__benefits__list  {
  margin-top: 11.5px;
}

.home__benefits__list li {
  font-size:30.5px;
  color: #245993;
  line-height: 1.67890;
  font-weight: 500;
}

.home__benefits__line {
  position: absolute;
  right: 0;
  top: 330.0px
}

.home__benefits__line__title {
  width: calc(330px /2);
  text-align: center;
  margin: auto;
}

.home__benefits__line__qr {
  width: 170px;
  text-align: center;
  margin: auto;
}

.home__benefits__btn {
  margin: 36px auto auto;
  max-width: 640px;
  text-align: center;
}

.home__benefits__btn a {
  font-size: 27px;
}

.home__benefits__btn a img.btn__icon {
  width: calc(48px/ 1.5);
  line-height: 1;
}

@media only screen and (max-width:767px) {
  .home__benefits {
    margin-top: calc(45px / 2);
  }

  .home__benefits__maintitle span {
    font-size:calc(40.5px / 1.75);
    padding: calc(36px / 2) 18px;
  }

  .home__benefits__body {
    padding: calc(72px / 3) 0;
  }

  .home__benefits__left {
    flex-basis: 100%;
    order: 2;
    text-align: center;
    margin: auto;
  }

  .home__benefits__right {
    flex-basis: 100%;
    order:1;
  }

  .home__benefits__list.square li:before {
    font-size: calc(20.25px / 1.025);
    top: -1.25px;
  }

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

  .home__benefits__subtitle {
    border-width: 1px;
  }

  .home__benefits__subtitle span {
    font-size: calc(30.5px / 1.75);
  }

  .home__benefits__list  {
    margin-top: calc(11.5px / 2);
  }

  .home__benefits__list li {
    font-size:calc(30.5px / 1.5);
  }

  .home__benefits__img {
    transform: rotate(5.5deg);
    text-align: center;
    max-width: 75%;
    margin: 9px auto auto;
  }

  .home__benefits__line,
  .home__benefits__line__title,
  .home__benefits__line__qr {
    display: none;
  }

  .home__benefits__btn {
    margin:calc(36px / 3) auto auto;
    max-width: 100%;
  }

  .home__benefits__btn a {
    font-size:calc(27px /1.27);
  }

  .home__benefits__btn a img.btn__icon {
    width: calc(48px/ 2.5);
  }

}


/*home__news*/
.home__news {
  position: relative;
}

.home .news__list__container {
  padding-top: 45px;
}

@media only screen and (max-width:767px) {
  .home .news__list__container {
    padding-top: calc(45px / 2);
  }
}



/*home__policy*/
.home__policy {
  padding: 0;
}

.home__policy__head {
  text-align: center;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: calc(90px + 45px) 0;
  background-image: url(../img/home__policy.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home__policy__head .section__title span.ja {
  color: #fff;
}

.home__policy__body {
  position: relative;
  padding: 63px 0;
}

.home__policy__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.home__policy__list {
  flex-basis: 49%;
  margin: 1% 0;
}

.home__policy__title {
  text-align: center;
  margin:auto;
  background-color: #245993;
  padding:22.5px 0;
}

.home__policy__title span {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}

  .home__policy__title span.en.num {
    font-size: 30.5px;
    text-align: center;
    line-height:1.3456789;
    width: 40.5px;
    height: 40.5px;
    font-weight: 600;
    background-color: #e75297;
    border: 2px solid #fff;
    border-radius: 100%;
  }

  .home__policy__title span.ja {
    font-size:27px;
    margin-left: 9px;
    font-weight: 700;
    text-align: center;
    line-height:2;
  }

.home__policy__img,
.home__policy__img img {
  text-align: center;
  margin: auto;
}

.home__policy__text {
  background-color: #fff;
  padding: 30.5px ;
  min-height: 225px;
}

.home__policy__text p {
  text-align: justify;;
}

@media only screen and (max-width:767px) {
  .home__policy__head {
    padding: calc(calc(90px + 45px) /2) 0;
  }

  .home__policy__body {
    padding: calc(63px /5) 0 calc(63px / 2.5);
  }

  .home__policy__list {
    flex-basis: 100%;
    margin:2% auto;
  }

  .home__policy__title {
    padding:calc(22.5px / 1.5) 0;
  }

  .home__policy__title span.en.num {
    font-size: calc(30.5px / 1.5);
    width: 28px;
    height: 28px;
    border: 1px solid #fff;
  }

  .home__policy__title span.ja {
    font-size:calc(27px / 1.37);
    margin-left: calc(9px /1.5);
  }

  .home__policy__text {
    padding: calc(30.5px / 1.5) ;
    min-height:1px;
  }

}


/*home__teacher*/
.section.home__teacher {
  padding: 72px 0 54px;
}

.home__teacher__title {
  background-color: #e75297;
  padding:9px 27px;
}

.home__teacher__title span {
  font-size:26px;
  font-weight: 500;
  line-height: 1.456789;
  color: #fff;
}

.home__teacher__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.home__teacher__text {
  flex-basis: 50%;
  padding-top: 27px;
  padding-left: 5%;
}

.home__teacher__img {
  text-align: right;
  flex-basis: 50%;
}

.home__teacher__subtitle {
  text-align: left;
  margin: 0;
  margin-bottom: 18px;
}

.home__teacher__subtitle span.ja {
  font-weight:bold;
  font-size: 30.5px;
  letter-spacing: 0.025em;
}

.home__teacher__subtitle span.ja small {
  font-weight: 400;
  font-size: 14px;
  margin-left: 18px;
  letter-spacing: 0.25em;
}

.home__teacher__text ul  {
  margin-bottom: 24px;
}

.home__teacher__text p  {
  text-align: justify;
  margin-bottom: 36px;
}

.home__teacher__img img {
  max-width: 390px;
  margin-top: -90px;
  margin-bottom:18px;
}

@media only screen and (max-width:767px) {
  .section.home__teacher {
    padding: calc(72px /3) 0 calc(54px / 2);
    padding-bottom: 0;
  }

  .home__teacher__title {
    padding:calc(9px / 9) 18px;
  }

  .home__teacher__title span {
    font-size:calc(26px / 1.26);
  }

  .home__teacher__text {
    flex-basis: 100%;
    padding-top: calc(27px /2);
    padding-left: 0
  }

  .home__teacher__img {
    text-align: center;
    flex-basis: 100%;
  }

  .home__teacher__subtitle {
    margin-bottom:calc(18px /1.5);
  }

  .home__teacher__subtitle span.ja {
    font-size: calc(30.5px / 1.305);
    padding-left: 2.5px;
  }

  .home__teacher__subtitle span.ja small {
    font-size: 14px;
    margin-left: calc(18px /1.5);
  }

  .home__teacher__text ul  {
    margin-bottom:calc(24px /1.5);
  }

  .home__teacher__text p  {
    margin-bottom: calc(36px /1.5);
  }

  .home__teacher__img img {
    max-width: 75%;
    margin-top: auto;
    margin-bottom:0
  }

}


/*home__difference*/
.home__difference {
  width: 100%;
  position: relative;
  padding: 90px 0;
}

.home__difference__body {
  padding:63px 54px;
  margin-top: 45px;
}

@media only screen and (max-width:767px) {
  .home__difference {
    padding: calc(90px /2) 0 ;
  }

  .home__difference__body {
    margin: calc(45px /1.5) -1em 0;
    width: calc(100% + 2em);
    box-sizing: border-box;
    padding:9px;
  }

}


/*difference__table*
.difference__table {
  width: 100%;
  position: relative;
}

.difference__table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: none;
}

.difference__table thead th ,
.difference__table tbody th {
  padding: 4.5px 9px;
  font-weight: 700;
}

  .difference__table thead th:nth-child(1) ,
  .difference__table tbody th {
    width: 200px;
  }

  .difference__table thead th:nth-child(2) ,
  .difference__table thead th:nth-child(3) ,
  .difference__table thead th:nth-child(4) ,
  .difference__table tbody td {
    width: 250px;
  }

  .difference__table thead th.lm {
    background:none;
    background-color: #4675b5!important;
    padding: 27px;
  }

    .difference__table thead th.lm img {
      max-width: 198px;
    }

  .difference__table thead th {
    background: linear-gradient(180deg, #fff 0%, #fff 30%, #eaeaea 30%, #eaeaea 100%);
    padding: 30px 9px 2.25px;
    border-right: 1px solid #787878;
  }

    .difference__table thead th:nth-child(4) {
      border-right: none;
    }

  .difference__table thead th.blank {
    background: transparent;
  }

  .difference__table tbody th {
    background-color: #fff;
    text-align: left;
    padding: 9px;
    border-top: 1px solid #787878;
  }

  .difference__table tbody td.lm {
    background-color: #4675b5!important;
    padding:20.5px 27px 16px;
    border-top: 1px solid #91aace;
    color: #fff000;
  }

  .difference__table tbody td {
    text-align: center;
    background-color: #f3f5f6;
    padding:13.5px 9px 7.5px;
    border-top: 1px solid #787878;
    border-right: 1px solid #91aace;
  }

    .difference__table tbody td:nth-child(4) {
      border-right: none;
    }

.difference__table tbody tr.last th ,
.difference__table tbody tr.last td.lm,
.difference__table tbody tr.last td {
  padding: 18px;
}

  .difference__table tbody tr.last td.lm p {
    font-weight: bold;
    font-size: 17px;
  }

.difference__table__mask {
  position: absolute;
  z-index: 345;
  background-color: #fff;
  width:543px;
  right: 0;
  height: 30px;
}

.difference__table tbody td span {
  display: block;
  position: relative;
  text-align: center;
}

  .difference__table tbody td span.maru {
    padding-top: calc(67px /2);
  }

  .difference__table tbody td span.sankaku {
    padding-top: calc(53px /2.25);
  }

  .difference__table tbody td span.maru:before {
    position: absolute;
    content: '';
    margin: auto;
    top: 0;
    left: calc(50% - calc(67px / 5));
    width: calc(67px /2); 
    height:  calc(67px /2);;
    background-image: url(../img/icon__maru.png);
    background-position: top center;
    background-size: calc(67px /2);
    background-repeat: no-repeat;
    text-align: center
  }

  .difference__table tbody td span.sankaku:before {
    position: absolute;
    content: '';
    margin: auto;
    top: 0;
    left: calc(50% - calc(53px / 5));
    width: calc(53px /2); 
    height:  calc(53px /2);;
    background-image: url(../img/icon__sankaku.png);
    background-position: top center;
    background-size: calc(53px /2);
    background-repeat: no-repeat;
    text-align: center
  }

  .difference__table tbody td span.batsu:before {
    position: absolute;
    content: '';
    margin: auto;
    top: 0;
    left: calc(50% - calc(41px / 5));
    width: calc(41px /2); 
    height:  calc(41px /2);;
    background-image: url(../img/icon__batsu.png);
    background-position: top center;
    background-size: calc(41px /2);
    background-repeat: no-repeat;
    text-align: center
  }

@media only screen and (max-width:767px) {

}

*/


/*home__plan*/
.home__plan ,
.section.plan  {
  position: relative;
  padding: 90px 0;
}

.plan__body {
  padding:63px 54px 18px;
  margin-top: 45px;
}

.home__plan__caution {
  background-color:#fef6fa;
  padding: 27px;
  margin: 36px auto;
  text-align: center;
}

.home__plan__caution p {
  text-align: center;
  margin: auto;
}

.home__plan__caution p span.large {
  text-align: center;
  margin: auto;
  font-weight: bold;
  font-size: 20px;
  color: #e75297;
}

.home__plan__caution p span.large strong {
  background-color: #fff000;
}

.home__plan__btn {
  margin: 36px auto ;
  text-align: center;
  max-width: 468px;
}

.home__plan__btn a {
  font-size: 22.5px;
}


@media only screen and (max-width:767px) {
  .home__plan ,
  .section {
    padding: calc(90px /2) 0 ;
  }

  .plan__body {
    margin: calc(45px /1.5) -1em 0;
    width: calc(100% + 2em);
    box-sizing: border-box;
    padding:9px;
  }

  .home__plan__caution {
    background-color:#fef6fa;
    padding:calc(27px / 1.5);
    margin: calc(36px / 1.5) auto;
  }

  .home__plan__caution p span.large {
    font-size: calc(20px/ 1.2);
  }

  .home__plan__btn {
    margin: calc(36px / 1.5) auto ;
    padding-left: 18px;
    padding-right: 18px;
    max-width: 100%;
  }

  .home__plan__btn a {
    font-size: calc(22.5px / 1.4);
  }
}

/*plan__table
.plan__table {
  width: 100%;
  position: relative;
}

.plan__table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: none;
}

.plan__table table tr {
  border-top: 1px solid #787878;
}

  .plan__table table tr.first {
    border-top:none;
  }

  .plan__table table tr.last {
    border-bottom:none;
  }

.plan__table thead th  {
  text-align: center;
  margin: auto;
  color: #fff;
  font-weight: 500;
}

  .plan__table .th__inner,
  .plan__table .td__inner {
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
  }

    .plan__table .th__inner {
      padding: 30.5px 9px 18px ;
    }

    .plan__table .td__inner {
      padding:40px 9px 18px ;
      height: 80px;
    }

  .plan__table thead th span,
  .plan__table thead th small {
    display: block;
    font-size: 18px;
    line-height: 1.45678;
  }

  .plan__table thead th span.ja {
    font-size: 18px;
    margin: 4.5px auto;
  }

  .plan__table thead th small {
    font-size: 14px;
    margin-top: 18px;
    font-weight: 300;
  }

  .plan__table thead th span.en {
    font-size: 34px;
    margin: 4.5px auto;
    display: inline-block;
  }

.plan__table thead th ,
.plan__table tbody td {
  text-align: center;
  margin: auto;
}

  .plan__table thead th.bronze .th__inner {
    background-color: #a67d4e;
  }

  .plan__table tbody td.bronze .td__inner {
    background-color: #f1eae1;
  }

  .plan__table thead th.silver .th__inner {
    background-color: #767676;
  }

  .plan__table tbody td.silver .td__inner {
    background-color: #e9e9e9;
  }

  .plan__table thead th.gold .th__inner {
    background-color: #8b7529;
  }

  .plan__table tbody td.gold .td__inner {
    background-color: #ece9da;
  }

  .plan__table thead th:nth-child(1) ,
  .plan__table tbody th {
    width: 20%;
  }

  .plan__table thead th:nth-child(2) ,
  .plan__table thead th:nth-child(3) ,
  .plan__table thead th:nth-child(4) ,
  .plan__table tbody td {
    width: calc(80% /3);
  }

  .plan__table thead th.blank {
    background: transparent;
  }

.plan__table span.mark {
  display: block;
  font-size: 27px;
  line-height: 0;
}

  .plan__table tbody td.bronze span.mark {
    color: #b68e60;
  }

  .plan__table tbody td.silver span.mark {
    color: #898989;
  }

  .plan__table tbody td.gold span.mark {
    color: #9d8736;
  }
*/





/*home__platinum*/
.home__platinum {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  background-image: url(../img/home__platinum.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home__platinum__container {
  flex-basis: 100%;
  text-align: left;
  color: #fff;
  padding: 27px 0 45px;
}

.home__platinum__container p {
  font-size: 19px;
}

.home__platinum__btn  {
  margin: 36px 0 0;
  text-align:center ;
  max-width: 356.0px;
}

.home__platinum__btn a {
  font-size: 18px;
}

@media only screen and (max-width:767px) {
   .home__platinum {
    background-image: url(../img/home__platinum.png);
  }

  .home__platinum__container {
    padding: calc(27px / 1.5) 18px ;
  }

  .home__platinum__container p {
    font-size: calc(19px / 1.19);
  }

  .home__platinum__btn  {
    margin: calc(36px / 1.5) 0 0;
    max-width: 100%;
  }

  .home__platinum__btn a {
    font-size: calc(18px / 1.189);
  }
}


/*home__column*/
.home__column {
  background-image: url(../img/home__column.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home__column__container {
  margin: 36px auto auto;
  padding: 45px 45px 63px;
}

.home__column__btn  {
  margin: 36px auto 0;
  text-align:center ;
  max-width: 300px;
}

.home__column__btn a {
  font-size: 17px;
}

@media only screen and (max-width:767px) {
  .home__column__container {
    margin: calc(36px / 1.5) auto auto;
    padding:0 18px ;
  }

  .home__column__btn  {
    margin-top: 18px;
    padding-bottom: 27px;
    position: relative;
    max-width: 100%;
  }

  .home__column__btn a {
    font-size: calc(17px / 1.17);
  }

}



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

Interview Setting

---------------------------------------------------------- */
/*interview__about*/
.interview__about {
  position: relative;
  padding: 72px 0;
}

.interview__about p {
  font-size: 17px;
  text-align: center;
}

@media only screen and (max-width:767px) {
  .interview__about {
    padding: calc(72px / 2) 0;
  }

  .interview__about p {
    font-size: calc(17px / 1.17);
  }
}


/*interview__detail*/
.interview__detail {
  padding: 0 0 90px;
  position: relative;
}

.interview__detail__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-image: url(../img/interview__detail.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0 calc(90px + 90px + 45px) 0 ;
}

.interview__detail__body {
  position: relative;
  margin-top: -135px;
  padding: 72px;
}

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

.interview__detail__title span {
  display: block;
  font-weight: 800;
  font-size:27px ;
  text-align: center;
  margin: auto;
}

.interview__detail__list {
  margin: 9px auto ;
  background-color: #ebf6fc;
  padding:36px 45px;
}

.interview__detail__list li {
  font-size: 20px;
}

  .interview__detail__list li:before {
    font-size: 14px;
  }

.interview__detail__btn {
  text-align:center;
  margin: 36px auto 22.5px;
  max-width: 468px;
}

.interview__detail__btn a {
  font-size: 22.5px;
  padding: 22.5px;
}

.interview__detail__btn .btn__icon {
  width: calc(48px/ 2);
  line-height: 1;
}

@media only screen and (max-width:767px) {
  .interview__detail {
    padding: 0 0 calc(90px / 2);
  }

  .interview__detail__head {
    background-image: url(../img/interview__detail.png);
    padding: calc(90px / 1) 0 calc(calc(90px + 90px + 45px) / 1.5) 0 ;
  }

  .interview__detail__body {
    margin-top: -65px;
    padding: calc(72px /2) 18px;
  }

  .interview__detail__title {
    margin-bottom: calc(18px / 1.5);;
  }

  .interview__detail__title span {
    font-size:calc(27px / 1.35); ;
    line-height: 1.56789;
  }

  .interview__detail__list {
    margin: calc(9px / 1.5) auto ;
    padding:calc(36px / 1.5) 18px;
  }

  .interview__detail__list li {
    font-size: calc(20px / 1.35);;
  }

    .interview__detail__list li:before {
      font-size: calc(14px / 1.14)
    }

  .interview__detail__btn {
    margin: calc(36px / 1.51) auto ;
    max-width: 100%;
  }

  .interview__detail__btn a {
    font-size: calc(22.5px / 1.225);
    padding: calc(22.5px / 1.5);
  }

  .interview__detail__btn .btn__icon {
    width: calc(48px/ 3);
  }
}

/*interview__target*/
.interview__target {
  position:relative;
}

.interview__target__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  text-align: center;
  margin-top: 63px;
}

.interview__target__list li {
  flex-basis: 33%;
  max-width: 260px;
  text-align: center;
  box-sizing: border-box;
  margin: auto;
}

.interview__target__list li img {
  border: 20px solid #ebf6fc;
  border-radius: 100%;
  text-align: center;
  box-sizing: border-box;
  margin:auto auto 9px;
  width: 100%;
  height: 100%;
}

.interview__target__list li span.ja {
  text-align: center;
  margin: auto;
  display: block;
  font-size: 18px;
  height: 80px;
  line-height: 1.456789;
  font-weight: 400;
}

@media only screen and (max-width:767px) {
  .interview__target__list {
    margin-top: calc(63px / 3.5);
  }

  .interview__target__list li {
    flex-basis: 100%;
    max-width: 178px;
    box-sizing: border-box;
    margin-bottom: 18px;
  }

  .interview__target__list li img {
    border: calc(20px / 1) solid #ebf6fc;
    box-sizing: border-box;
    margin:auto auto calc(9px / 1);
  }

  .interview__target__list li span.ja {
    font-size: calc(18px / 1.18);
    height: auto;
  }

}


/*interview__flow*/
.interview__flow {
  position: relative;
}

.interview__flow__container {
  margin: 27px auto auto;
}

.interview__flow__list {
  background-color: #fff;
  padding:13.5px 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin:36px auto;
}

.interview__flow__list:after {
  position: absolute;
  content: '';
  background-image:url(../img/icon__arrow3.png) ;
  background-size: calc(215px /2);
  background-repeat: no-repeat;
  background-position: top center;
  top: calc(100% - calc(108px / 8.5));
  left: calc(50% - calc(215px / 4));
  width:calc(215px /2);
  height: 100%;
  z-index: 234;
  margin: auto;
}

.interview__flow__list:last-of-type::after ,
.interview__flow__list:nth-last-child(1)::after {
  background-image: none;
}

.interview__flow__text {
  flex-basis: calc(100% - 200px);
  background-color: #fff;
  padding: 27px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.interview__flow__img {
  flex-basis: 180px;
  text-align: center;
  margin: auto;
}

.interview__flow__img img {
  width: auto;
  max-height: calc(218px / 2);
  text-align: center;
  margin: auto;
}

.interview__flow__text span {
  line-height: 1.123456789;
}

.interview__flow__text span.en {
  font-size: 45px;
  color: #e75297;
  text-align: center;
  margin-top: 7.5px;
  font-weight:900;
}

.interview__flow__text span.ja {
  font-size: 30.5px;
  text-align: left;
  font-weight:700;
  margin-left: 18px;
}

@media only screen and (max-width:767px) {
  .interview__flow__container {
    margin: calc(27px / 1.5) auto auto;
  }

  .interview__flow__list {
    padding:calc(13.5px / 2.5) 4.5px;
    margin:calc(36px / 2.5) auto;
  }

  .interview__flow__list:after {
    background-image:url(../img/icon__arrow3.png) ;
    background-size: calc(215px / 3.5);
    top: calc(100% - calc(108px / 10));
    left: calc(50% - calc(215px / 8));
    width:calc(215px / 3.5);
  }

  .interview__flow__text {
    flex-basis: 100%;
    padding:9px;
  }

  .interview__flow__img {
    flex-basis: 100%;
    margin-bottom: 9px;
    padding:9px 18px;
    box-sizing: border-box;
  }

  .interview__flow__img img {
    max-height: 100%;
    width: 256px;
    height: auto;
  }

  .interview__flow__text span.en {
    font-size:calc(45px / 1.6);
    margin-top: calc(7.5px / 1.5);
  }

  .interview__flow__text span.ja {
    font-size: calc(30.5px / 1.6);
    margin-left:calc(18px / 2.5);
  }

  /*flow__list1*/
  .interview__flow__list1 .interview__flow__img a.btn {
    padding:9px 18px!important;
    font-size: calc(20px/ 1.20)!important;
    border: 1.25px solid #fff!important;
  }

  .interview__flow__list1 .interview__flow__img img.btn__icon {
    width: calc(48px/ 2.5);
  }

}


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

Column Setting

---------------------------------------------------------- */
/*column__menu*/
.column__menu {
  padding: 72px 0 0;
  margin:  auto auto -18px;
  position: relative;
  text-align: center;
}

.column__menu__list {
  display: flex;
  flex-wrap:wrap;
  justify-content:center ;
  align-items: top;
}

.column__menu__list li {
  margin: 0 9px;
}

.column__menu__list li a {
  display: block;
  text-decoration: none;
  text-align: center;
  border: 1px solid #245993;
  background-color: #fff;
  color: #245993;
  padding: 9px 24px;
  font-size: 15px;
  line-height: 1.789;
}

  .column__menu__list li.default a ,
  .column__menu__list li.active a ,
  .column__menu__list li a:hover,
  .column__menu__list li a:focus {
    border: 1px solid #245993;
    background-color: #245993;
    color: #fff;
  }

@media only screen and (max-width:767px) {
  .column__menu {
    padding: calc(72px / 3) 18px 0;
    margin:  auto auto -9px;
  }

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

  .column__menu__list li {
    margin:-1px -1px;
    flex-basis: 50%;
    border-collapse: collapse;
  }

  .column__menu__list li a {
    padding: calc(9px / 1.5) ;
    font-size: calc(14px / 1.14);
  }

}


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

Flow Setting

---------------------------------------------------------- */
/*flow__about*/
.flow__about {
  padding: 72px 0;
  position: relative;
}

.flow__about p {
  font-size: 17px;
  text-align: center;
}

@media only screen and (max-width:767px) {
  .flow__about {
    padding: calc(72px / 1.5) 0;
  }

  .flow__about p {
    font-size: calc(17px / 1.17);
  }
}

/*flow__detail*/
.flow__detail {
  padding:36px 0;
  position: relative;
}

.flow__detail__container {
  padding: 22.5px 0 45px;
}

.flow__list {
  margin: 30.5px 0;
  position: relative;
}

.flow__list:after {
  position: absolute;
  content: '';
  background-image:url(../img/icon__arrow3.png) ;
  background-size: calc(215px /2);
  background-repeat: no-repeat;
  background-position: top center;
  top: calc(100% - calc(108px / 8.5));
  left: calc(50% - calc(215px /4));
  width:calc(215px /2);
  height: 100%;
  z-index: 234;
  margin: auto;
}

  .flow__list:last-of-type::after ,
  .flow__list:nth-last-child(1)::after {
    background-image: none;
  }

.flow__list__title {
  text-align: left;
  margin:0;
  background-color: #245993;
  padding:22.5px 72px;
}

.flow__list__title span {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}

  .flow__list__title span.en.num {
    font-size: 30.5px;
    text-align: center;
    line-height:1.3456789;
    width: 40.5px;
    height: 40.5px;
    font-weight: 600;
    background-color: #e75297;
    border: 2px solid #fff;
    border-radius: 100%;
  }

  .flow__list__title span.ja {
    font-size:27px;
    margin-left: 9px;
    font-weight: 700;
    text-align: center;
    line-height:2;
  }

.flow__list__body {
  background-color: #fff;
  padding: 40.5px 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.flow__list__text {
  flex-basis:calc(100% - 410px) ;
}

.flow__list__img {
  flex-basis: 380px;
  text-align: right;
  margin: auto;
}

.flow__list__img img {
  width: 100%;
  text-align: center;
  margin: auto;
}

  .flow__list1 .flow__list__img img {
    margin-top: -108px;
    width: 90%;
  }

.flow__list__text p {
  font-size: 17px;
  text-align: justify;
}

.flow__list__text p strong.strong {
  font-weight: bold;
  color: #e75297;
}

.flow__list__text ul.square  {
  margin: 9px 0;
}

.flow__list__text ul.square li {
  font-weight: bold;
  font-size: 18px;
}

@media only screen and (max-width:767px) {
  .flow__detail {
    padding:calc(36px /1.5) 0;
  }

  .flow__detail__container {
    padding: calc(22.5px /1.5) 0 ;
  }

  .flow__list {
    margin: calc(30.5px /1.5) 0;
  }

  .flow__list:after {
    background-image:url(../img/icon__arrow3.png) ;
    background-size: calc(215px / 4);
    top: calc(100% - calc(108px / 8.5));
    left: calc(50% - calc(215px / 8));
    width:calc(215px / 4);
  }

  .flow__list__title {
    padding:calc(22.5px /1.5) 18px;
  }

  .flow__list__title span.en.num {
    font-size: calc(30.5px / 1.45);
    width: 30px;
    height: 30px;
    border: 1.5px solid #fff;
    line-height: 1.56789;
    border-radius: 100%;
  }

  .flow__list__title span.ja {
    font-size:calc(27px / 1.37);
    margin-left: calc(9px / 1.5);
  }

  .flow__list__body {
    padding: calc(40.5px / 1.5) 18px;
  }

  .flow__list__text {
    flex-basis:100%
  }

  .flow__list__img {
    flex-basis:100%;
    margin: 18px auto;
    text-align: center;
  }

  .flow__list__text p {
    font-size: calc(17px / 1.17);
  }

  .flow__list__text ul.square  {
    margin: calc(9px / 1.5) 0;
  }

  .flow__list__text ul.square li {
    font-size: calc(18px / 1.18);
  }

  /*flow__list1*/
  .flow__list1 .flow__list__img a.btn {
    padding: 18px!important;
    font-size: calc(20px/ 1.20);
    border: 1.25px solid #fff!important;
  }

  .flow__list1 .flow__list__img img.btn__icon {
    margin: 0;
    top: 0;
    padding: 0;
    width: calc(48px/ 2.25);
  }

}


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

Plan Setting

---------------------------------------------------------- */
/*plan__support*/
.plan__support {
  position: relative;
}

.plan__support__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin-top: 18px;
}

.plan__support__list {
  flex-basis: 48%;
  border: 1px solid #245993;
  box-sizing: box-sizing;
  margin: 1% auto;
}

.plan__support__title {
  background-color: #245993;
  padding:13.5px 9px;
  text-align: center;
  margin: auto;
}

.plan__support__title span {
  display: block;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 27px;
  line-height: 1.789;
  margin: auto;
}

.plan__support__body {
  background-color: #fff;
  padding:27px 36px;
}

.plan__support__body p {
  text-align: justify;
}

@media only screen and (max-width:767px) {
  .plan__support__container {
    margin-top: calc(18px / 1);
  }

  .plan__support__list {
    flex-basis: 100%;
    margin: 1% auto;
  }

  .plan__support__title {
    padding:calc(13.5px / 1.5) 9px;
  }

  .plan__support__title span {
    font-size: calc(27px / 1.44);
  }

  .plan__support__body {
    background-color: #fff;
    padding:calc(27px / 1.5) 18px;
  }

}


/*plan__flow*/
.plan__flow {
  position: relative;
}

.plan__flow__container {
  padding: 54px 90px ;
  margin: 36px auto auto;
}

@media only screen and (max-width:767px) {
  .plan__flow__container {
    padding: calc(54px / 2) 18px ;
    margin: calc(36px / 2) auto auto;
  }

}


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

Platinum Setting

---------------------------------------------------------- */
/*platinum__about*/
.platinum__about {
  position: relative;
  padding-bottom:27px;
}

.platinum__about__container {
  padding: 54px;
  background: #ebf6fc;
  margin:36px auto auto;
}

.platinum__about__detail {
  padding: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.platinum__about__text {
  flex-basis: 50%;
}

.platinum__about__img {
  flex-basis: 50%;
}

.platinum__about__list ul.square li {
  margin: 13.5px 0;
  font-size: 17px;
}

.platinum__about__list ul.square .child li {
  margin-left: 0;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 0;
}

  .platinum__about__list ul.square .child li:before {
    display: none;
  }

.platinum__about__caution {
  margin-top: 1.25em;
  font-size: 17px;
  font-weight: 500;
  color: #245993
}

.platinum__about__img li {
  margin: 9px auto;
}

.platinum__about__img span.ja {
  display: block;
  text-align: center;
  margin: 2.25px auto auto;
  font-size: 15px;
}

.platinum__about__img img {
  text-align: center;
  margin: auto;
}

@media only screen and (max-width:767px) {
  .platinum__about {
    padding-bottom:calc(27px / 1.5);
  }

  .platinum__about__container {
    padding: calc(54px / 2) 18px;;
    margin:calc(36px / 1.5) auto auto;
  }

  .platinum__about__detail.container__middle {
    padding: calc(45px / 2) 18px;
  }

  .platinum__about__text {
    flex-basis: 100%;
    margin-bottom: 18px;
  }

  .platinum__about__img {
    flex-basis: 100%;
  }

  .platinum__about__list ul.square li {
    margin: calc(13.5px / 1) 0;
    font-size: calc(17px / 1.17);
  }

  .platinum__about__caution {
    margin-top: calc(1.25em / 1.5);
    font-size: calc(17px / 1.17);
  }

  .platinum__about__img li {
    margin: calc(9px / 1.5) auto;
  }

  .platinum__about__img span.ja {
    margin: calc(2.25px / 1.5) auto auto;
    font-size: calc(15px / 1.15);
  }

}

/*platinum__detail*/
.platinum__detail {
  padding-bottom: 27px;
  position: relative;
}

.platinum__detail__head {
  text-align: center;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: calc(90px + 27px) 0;
  background-image: url(../img/platinum__detail.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.platinum__detail__head .section__title span.ja {
  color: #fff;
  line-height: 1.456789;
}

.platinum__detail__inner {
  position: relative;
  padding: 54px 0;
}

.platinum__detail__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.platinum__detail__list {
  flex-basis: 48%;
}

.platinum__detail__title {
  text-align: center;
  margin: auto;
  padding: 18px;
  flex-basis: 48%;
}

  .platinum__detail__list.fail .platinum__detail__title {
    background-color: #4c4e5c
  }

  .platinum__detail__list.pass .platinum__detail__title {
    background-color: #e75297
  }

.platinum__detail__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 27px;
  color: #fff;
  font-weight: 800;
  line-height: 1.456789;
}

.platinum__detail__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 27px;
  color: #fff;
  font-weight: 800;
  line-height: 1.456789;
}

.platinum__detail__body {
  padding: 36px 36px 18px;
  position: relative;
}

  .platinum__detail__list.fail .platinum__detail__body {
    background-color: #ededf0
  }

  .platinum__detail__list.pass .platinum__detail__body {
    background-color: #fbe8f1
  }

.platinum__detail__flow {
  padding: 18px 9px;
}

.platinum__detail__text {
  padding-left:27px;
  padding-right: 27px;
}

.platinum__detail__flow li {
  list-style: none;
  position: relative;
  line-height: 1;
}

  .platinum__detail__list.fail .platinum__detail__flow li {
    font-size: 20px;
    padding: 18px 0;
    font-weight: 400;
  }

  .platinum__detail__list.pass .platinum__detail__flow li {
    font-size: 22.5px;
    padding: 15.5px 0;
    font-weight: 600;
  }

.platinum__detail__list.fail .platinum__detail__flow li:before ,
.platinum__detail__list.pass .platinum__detail__flow li:before {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  content: '';
}

  .platinum__detail__list.fail .platinum__detail__flow li:before {
    background-image: url(../img/icon__fail.png);
    background-position: 0 4.5px;
    background-size: calc(38px/ 2);
    width: calc(38px/ 2);
    height: calc((38px/ 2) + 12px);
    margin: 0 9px 0 0;
  }

  .platinum__detail__list.pass .platinum__detail__flow li:before {
    background-image: url(../img/icon__pass.png);
    background-position: 0 4.5px;
    background-size: calc(65px/ 2);
    width: calc(65px/ 2);
    height: calc((48px/ 2) + 12px);
    margin: 0 9px 0 0;
  }

.platinum__detail__list.fail .platinum__detail__flow li:after ,
.platinum__detail__list.pass .platinum__detail__flow li:after {
  position: absolute;
  content: '';
  background-repeat: no-repeat;
  background-size: calc(215px / 5);
  background-repeat: no-repeat;
  top: calc(100% - calc(108px / 8.5));
  left: calc(50% - calc(215px / 6));
  width:calc(215px / 5);
  height: 100%;
  z-index: 234;
  margin: auto;
}

  .platinum__detail__list.fail .platinum__detail__flow li:after  {
    background-image:url(../img/icon__arrow4.png) ;
  }

  .platinum__detail__list.pass .platinum__detail__flow li:after  {
    background-image:url(../img/icon__arrow3.png) ;
  }

  .platinum__detail__list.fail .platinum__detail__flow li:last-of-type::after ,
  .platinum__detail__list.fail .platinum__detail__flow li:nth-last-child(1)::after,
  .platinum__detail__list.pass .platinum__detail__flow li:last-of-type::after ,
  .platinum__detail__list.pass .platinum__detail__flow li:nth-last-child(1)::after {
    background-image: none;
  }

@media only screen and (max-width:767px) {
  .platinum__detail {
    padding-bottom: calc(27px / 27);
  }

  .platinum__detail__head {
    padding: calc(calc(90px + 27px) / 2) 0;
  }

  .platinum__detail__inner {
    padding: calc(54px / 2) 0;
  }

  .platinum__detail__list {
    flex-basis: 100%;
    margin-bottom:18px;
  }

  .platinum__detail__title {
    flex-basis: 100%;
    padding: 9px ;
  }

  .platinum__detail__title span {
    font-size: calc(27px / 1.35);
  }

  .platinum__detail__body {
    padding: calc(36px / 1.5) 18px 0;
  }

  .platinum__detail__flow {
    padding: calc(18px / 1.5) 0;
  }

  .platinum__detail__text {
    padding-left:0;
    padding-right: 0
  }

  .platinum__detail__list.fail .platinum__detail__flow li {
    font-size: calc(20px / 1.225);
    padding: calc(18px / 1) 0;
  }

  .platinum__detail__list.pass .platinum__detail__flow li {
    font-size: calc(22.5px / 1.35);
    padding: calc(15.5px / 1) 0;
  }

  .platinum__detail__list.fail .platinum__detail__flow li:before {
    background-image: url(../img/icon__fail.png);
    background-position: 0 calc(4.5px / 1.5);
    background-size: calc(38px/ 3);
    width: calc(38px/ 3);
    height: calc(calc((38px/ 2) + 12px) /1.5);
    margin: 0 calc(9px / 1.5) 0 0;
  }

  .platinum__detail__list.pass .platinum__detail__flow li:before {
    background-image: url(../img/icon__pass.png);
    background-position: 0 calc(4.5px / 1.5);
    background-size: calc(65px/ 3);
    width: calc(65px/ 3);
    height: calc(calc((48px/ 2) + 12px) /1.5);
    margin: 0 calc(9px / 1.5) 0 0;
  }

  .platinum__detail__list.fail .platinum__detail__flow li:after ,
  .platinum__detail__list.pass .platinum__detail__flow li:after {
    background-size: calc(215px / 7);
    top: calc(100% - calc(108px / 8.5));
    left: calc(50% - calc(215px / 7));
    width:calc(215px / 7);
  }

}

/*platinum__flow*/
.platinum__flow {
  position:relative;
}

.platinum__flow .section__title span {
  line-height: 1.4567890;
}

.platinum__flow__container {
  padding-top:36px;
}

.platinum__flow__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  padding: 11.5px 52px;
  border: 1px solid #245993;
  margin: 18px auto;
}

.platinum__flow__list.last {
  display: block;
  padding: 30.5px 52px;
  border: 1px solid #245993;
  margin: 18px auto;
  text-align: center;
  background-color: #245993;/*
  background-image: url(../img/platinum__flow.png);
  background-position: 49.85% 13.5px;
  background-size: calc(397px / 2.1);
  background-repeat: no-repeat;*/
}

.platinum__flow__list.last img {
  width: calc(398px/ 2);
  pointer-events: none;
  text-align: center;
  margin: auto;
}

.platinum__flow__list:after {
  position: absolute;
  content: '';
  background-repeat: no-repeat;
  background-image:url(../img/icon__arrow6.png) ;
  background-size: calc(32px / 2.5);
  background-repeat: no-repeat;
  top: calc(100% - calc(108px / 8.5));
  left: calc(50% - calc(32px / 4));
  width:calc(32px / 2.5);
  height: 100%;
  z-index: 234;
  margin: auto;
}

  .platinum__flow__list:last-of-type::after ,
  .platinum__flow__list:nth-last-child(1)::after {
    background-image: none;
  }
  
.platinum__flow__title {
  flex-basis: 33.5%;
}

.platinum__flow__text {
  flex-basis: 62.5%;
}

.platinum__flow__title span {
  display: inline-block;
  vertical-align: middle;
}

.platinum__flow__title span.en {
  font-size: 35px;
  color: #e75297;
  margin: auto;
  line-height: 2;
  text-align: center;
  font-weight: 700;
  margin-top: 4.25px;
}

.platinum__flow__title span.ja {
  font-size: 24px;
  color: #245993;
  font-weight: 600;
  text-align: left;
  margin-left: 6.25px;
  line-height: 1.3456789;
}

.platinum__flow__text {
  font-size: 17px;
}

@media only screen and (max-width:767px) {
  .platinum__flow .section__title span {
    font-size: 21.65px;
  }

  .platinum__flow__container {
    padding-top:calc(36px / 1.5);
  }

  .platinum__flow__list {
    padding: calc(11.5px / 1.5) 18px;
    margin: calc(18px / 1.5) auto;
  }

  .platinum__flow__list.last {
    padding: 18px 18px 9px;
    margin: calc(18px / 1.5) auto;/*
    background-position: 49.85% 9px;
    background-size: calc(397px / 2.75);*/
  }

  .platinum__flow__list.last img {
    width: calc(398px/ 2.5);
  }

  .platinum__flow__list:after {
    background-image:url(../img/icon__arrow6.png) ;
    background-size: calc(32px / 3);
    top: calc(100% - calc(108px / 8.5));
    left: calc(50% - calc(32px / 3));
    width:calc(32px / 3);
  }
    
  .platinum__flow__title {
    flex-basis: 100%;
  }

  .platinum__flow__text {
    flex-basis:100%;
  }

  .platinum__flow__title span {
    display: inline-block;
    vertical-align: middle;
  }

  .platinum__flow__title span.en {
    font-size: calc(35px / 1.45);
    line-height:1.56789;
    margin-top: 4.5px;
  }

  .platinum__flow__title span.ja {
    font-size: calc(24px / 1.24);
    line-height:1.56789;
    margin-left:calc(6.25px / 4)
  }

  .platinum__flow__text {
    font-size: calc(17px / 1.2);
    margin: 0;
    padding:0 9px 9px;
    line-height:1.56789
  }

}



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

Column Setting

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

.column__list {
  flex-basis: 32%;
  margin: 0 1%;
  position: relative;
}

  .column__list:nth-child(3n-2) {
    margin-left: 0;
  }

  .column__list:nth-child(3n) {
    margin-right: 0;
  }

.column__list span.cat {
  display: inline-block;
  position: absolute;
  text-decoration: none;
  background-color: #035794;
  top: 9px;
  left: 9px;
  z-index: 123;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: 1.345678;
  padding: 4px 18px;
}
/*
.column__list span.cat a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: 1.345678;
  padding: 4px 18px;
}
*/

.column__list a {
  display: block;
  text-decoration: none;
}

.column__list .column__img {
  margin-bottom: 9px;
}


@media only screen and (max-width:767px) {
  .column__list {
    flex-basis: 100%;
    margin:18px auto;
  }

  .column__list:nth-child(3n-2) ,
  .column__list:nth-child(3n) {
    margin-left: auto;
    margin-right:auto;
  }

  .column__list span.cat {
    top: 9px;
    left: 9px;
  }

  .column__list span.cat a {
    font-size: 12px;
    padding: 4px 18px;
  }
}

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

News Setting

---------------------------------------------------------- */
/*news__list__container*/
.news__list__container {
  position: relative;
  width: 100%;
}

.news__list dl  {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 18px 0;
  border-bottom: 0.5px solid #000;
}

  .news__list dl:nth-last-child(1)  {
    border-bottom:none;
  }

.news__list dl dt  {
  flex-basis: 15%;
  font-weight:400;
}

.news__list dl dd  {
  flex-basis: 84%;
}

.news__list dl dd a  {
  text-decoration: underline;
}

@media only screen and (max-width:767px) {
  .news__list dl  {
    padding: calc(18px / 1.25) 0;
  }

  .news__list dl dt ,
  .news__list dl dd  {
    flex-basis: 100%;
    padding: 0;
  }
}


/*wp-pagenavi*/
.pagination {
  position: relative;
  text-align: center;
  margin: 18px auto auto;
  z-index: 11111;
}

.wp-pagenavi  {
  clear:both;
  margin:18px auto ;
  text-align:center
}

.wp-pagenavi a, .wp-pagenavi span {
  border:1px solid #42210b;
  background-color:#fff;
  padding:9px 12.5px;
  margin:0 9px;
  white-space:nowrap;
  border-radius:0;
  transition:0.2s ease-in-out;
  text-align:center;
  text-decoration:none;
}

.wp-pagenavi a {
  color:#42210b;
}

.wp-pagenavi a:hover  {
  background-color:#42210b;
  border-color:#42210b;
  color:#fff!important
}

.wp-pagenavi span.current {
  background-color:#42210b;
  border-color:#42210b;
  color:#fff!important;
  font-weight:bold
}

.wp-pagenavi .pages {
  border:none;
}

.wp-pagenavi .extend {
  border:none;
  padding:9px 0;
  margin:0 4.5px;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  border:none!important;
}

@media only screen and (max-width:767px) {
  .wp-pagenavi  {
    clear:both;
    margin:calc(27px / 1.5) auto calc(45px / 1.5)
  }

  .wp-pagenavi .pages {
    display: none;
  }

  .wp-pagenavi a, .wp-pagenavi span {
    font-size: calc(18px / 1.2);
    padding:calc(9px / 1.5) calc(18px / 2);
    margin:0 calc(9px  /1.5);
  } 
} 


/*single*/
.single-news .p-articleMetas__termList.c-categoryList .c-categoryList__link {
  background-color: #f5f5f5!important;
  color: #000!important;
}

.single-news .c-categoryList {
  color: #000!important;
}

.single-news .section__title ,
.single-news .section__title span {
  text-align: left;
  margin: 0;
}

.single-news .single__date {
  display: block;
  font-size: 14px;
}

.single-news .entry__content {
  padding-top: 54px;
}

.single-news .entry__content p {
  margin-bottom: 1.25em;
}

.single-news .entry__btn a {
  display: block;
  text-decoration: none;
  margin: 36px auto auto ;
  max-width: 256px;
}
 
@media only screen and (max-width:767px) {
  .single-news .post_content  {
    font-size: initial!important;
  }
  
  .single-news .entry__btn a {
    margin: calc(36px / 1.5) auto auto ;
    max-width: 100%;
  }

}



/*recent*/
.recent__container {
  background: #fff;
  padding: 45px 0;
}

.recent .entry__btn {
  margin-top:45px;
}

@media only screen and (max-width:767px) {
  .recent__container {
    background: #fff;
    padding: calc(45px / 1) 18px;
  }

  .recent .entry__btn {
    margin-top:calc(45px / 5);
  }

}


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

Contact Setting

---------------------------------------------------------- */
/*contact__about*/
.contact__about {
  padding: 72px 0;
  position: relative;
}

.contact__about p {
  font-size: 17px;
  text-align: center;
}

@media only screen and (max-width:767px) {
  .contact__about {
    padding: calc(72px / 2) 0;
  }

  .contact__about p {
    font-size: calc(17px / 1.17);
  }
}


/*contact__list*/
.contact__detail__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin: 54px auto auto;
  padding-bottom: 36px;
}

.contact__list {
  flex-basis: 48%;
  background-color: #fff;
  padding: 72px 36px 36px 
}

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

.contact__list__title span {
  display: block;
  font-weight:800;
  text-align: center;
  margin: auto;
  color: #245993;
  font-size: 29.5px;
}

.contact__list__icon {
  position: absolute;
  top:-63px;
  left: 18px;
}

.contact__list__icon img {
  width: calc(247px/ 2);
  pointer-events: none;
}

.contact__list__text {
  text-align: center;
  min-height: 360px;
}

  .contact__list.line .contact__list__text {
    padding: 27px 0 0;
  }

  .contact__list.form .contact__list__text {
    padding:72px 0;
  }

.contact__list__text p {
  font-size: 18px;
  line-height: 2;
}

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

.contact__list__img img {
  max-width: 200px;
}

.contact__list__btn {
  margin: 18px auto ;
  max-width: 460px;
  text-align: center;
}

.contact__list__btn a {
  font-size: 24px;
}

.contact__list__btn a img.btn__icon {
  line-height: 1;
}

  .contact__list.line .contact__list__btn a img.btn__icon {
    width: calc(48px/ 1.85);
    margin-top: -5px;
  }

  .contact__list.form .contact__list__btn a img.btn__icon {
    width: calc(74px/ 2);
    margin-top: -5px;
  }

@media only screen and (max-width:767px) {
  .contact__detail__container {
    margin:calc(54px /1.5) auto auto;
    padding-bottom:0;
  }

  .contact__list {
    flex-basis: 100%;
    margin: 9px auto;
    padding: calc(72px /2) 18px calc(72px / 3) 
  }

  .contact__list__title span {
    font-size: calc(29.5px / 1.295);
  }

  .contact__list__icon {
    top:-45px;
    left: calc(18px /2)
  }

  .contact__list__icon img {
    width: calc(247px/ 3);
  }

  .contact__list__text {
    min-height: 1px;
  }

  .contact__list.line .contact__list__text,
  .contact__list.form .contact__list__text {
    padding: calc(27px / 1.5) 0
  }

  .contact__list__text p {
    font-size: calc(18px / 1.1);
    line-height: 1.6789;
  }

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

  .contact__list__img img {
    display: none;
  }

  .contact__list__btn {
    margin: auto ;
    max-width: 100%;
  }

  .contact__list__btn a {
    font-size:calc(24px / 1.24);
  }

  .contact__list.line .contact__list__btn a img.btn__icon {
    width: calc(48px/ 2.5);
    margin-top: -2.5px;
  }

  .contact__list.form .contact__list__btn a img.btn__icon {
    width: calc(74px/ 2.5);
    margin-top: -2.5px;
  }
}

/*contact__faq__list*/
.contact__faq__container {
  padding:36px 0 0;
}

.contact__faq__list dl {
  margin: 18px 0;
  position: relative;
}

.contact__faq__list dl dt ,
.contact__faq__list dl dd {
  position: relative;
  display: flex;
  flex-wrap:wrap;
  justify-content: flex-start;
  align-items: center;
}

  .contact__faq__list dl dt {
    background-color: #ebf6fc;
    padding: 20.25px 36px;
  }

  .contact__faq__list dl dd {
    background-color: #fff;
    padding: 30.5px 36px;
  }

.contact__faq__list dl dt span.en ,
.contact__faq__list dl dd span.en {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
  position: relative;
  padding: 5px ;
  color: #fff;
  text-align: center;
  line-height: 1.3456789;
  font-size:30.5px ;
}

  .contact__faq__list dl dt span.en {
    background-color: #245993;
  }

  .contact__faq__list dl dd span.en {
    background-color: #e75297;
  }

.contact__faq__list dl dt span.ja ,
.contact__faq__list dl dd span.ja {
  flex-basis: calc(100% - 80px);
  text-align: left;
  margin-left: 24px;
}

  .contact__faq__list dl dt span.ja {
    color:#245993 ;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.56789;
  }

  .contact__faq__list dl dd span.ja {
    font-size:17px;
  }

@media only screen and (max-width:767px) {
  .contact__faq__container {
    padding:calc(36px / 1.5) 0 0;
  }

  .contact__faq__list dl {
    margin: calc(18px / 1.5) 0;
  }

  .contact__faq__list dl dt ,
  .contact__faq__list dl dd {
    justify-content: flex-start;
    align-items: top;
  }

  .contact__faq__list dl dt {
    background-color: #ebf6fc;
    padding: calc(20.25px / 1.5) 18px;
  }

  .contact__faq__list dl dd {
    padding: calc(30.5px / 1.5) 18px;
  }

  .contact__faq__list dl dt span.en ,
  .contact__faq__list dl dd span.en {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    padding: 2.5px ;
    font-size:calc(30.5px / 1.35) ;
  }

  .contact__faq__list dl dt span.ja ,
  .contact__faq__list dl dd span.ja {
    flex-basis: calc(100% - 55px);
    margin-left: 15.5px;
  }

  .contact__faq__list dl dt span.ja {
    font-size: calc(27px / 1.5);
  }

  .contact__faq__list dl dd span.ja {
    font-size:calc(17px / 1.17);
  }

}


/*contact__form*/
.contact__form__container {
  padding: 45px 90px;
  margin:45px auto 18px;
}

@media only screen and (max-width:767px) {
  .contact__form__container {
    padding: calc(45px / 15) 18px;
    margin:calc(45px / 1.5)  auto calc(18px / 1.5) ;
  }

}


/*wpcf7*/
.wpcf7   {
  width: 100%;
  margin-top: 36px;
}

.form__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 27px auto;
}

.form__list dl dt {
  flex-basis: 30%;
  font-weight: 500;
}

.form__list dl dd {
  flex-basis: 70%;
}

.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:0.5px solid #035794;
  padding:27px 18px;
  box-sizing:border-box;
  width: 100%;
  max-width: 100%;
  font-size: 18px;
}

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

.wpcf7 .wpcf7-list-item  {
  display: inline-block;
  margin-right: 20px;
}

.wpcf7 select {
  appearance:none;
  outline:none;
  border:0.5px solid #035794;
  padding:27px 18px;
  box-sizing:border-box;
  width: 100%;
  max-width: 100%;
  font-size: 18px;}

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

.wpcf7 .req {
  margin: -3px 0 0 9px ;
  display: inline-block;
  vertical-align: middle;
  background: #245993;
  border-radius: 4.5px;
  padding:4.5px 9px ;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.2
}

.wpcf7 .form__accept {
  display: block;
  text-align: center;
  margin:auto;
  padding: 0;
}

.wpcf7 .form__submit {
  margin:auto auto ;
  text-align: center;
}

.wpcf7 .form__submit input[type=submit] {
  margin:27px auto ;
  width: 400px;
  font-size:20px;
  padding: 22.5px;
  text-align: center;
}

@media only screen and (max-width:767px) {
  .wpcf7   {
    margin-top: calc(36px / 1.5);
  }

  .form__list dl {
    margin: calc(27px /1.5) auto;
  }

  .form__list dl dt,
  .form__list dl dd {
    flex-basis: 100%;
  }

  .form__list dl dt {
    margin-bottom: 4.5px;
  }

  .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 {
    padding:calc(27px / 1.5) 18px;
    font-size: calc(18px / 1.18);
  }

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

  .wpcf7 .wpcf7-list-item  {
    margin-right: calc(20px / 1.5);
  }

  .wpcf7 select {
    padding:calc(27px / 1.5) 18px;
    font-size: calc(18px / 1.18);
  }

  .wpcf7 .req {
    margin: -3px 0 0 9px ;
    display: inline-block;
    vertical-align: middle;
    background: #245993;
    border-radius: 4.5px;
    padding:2.25px 9px ;
    text-align: center;
    color: #fff;
    font-size: 11px;
    line-height: 1.2
  }

  .wpcf7 .form__submit input[type=submit] {
    margin:calc(27px / 1.5) auto ;
    width: 100%;
    font-size:calc(20px / 1.2);
    padding: calc(22.5px / 1.5) ;
  }

}

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

Error404 Setting

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

@media only screen and (max-width:767px) {
  .section.error404 {
    padding-top: calc(90px / 1.5);
  }
}

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

Entry Btn Setting

---------------------------------------------------------- */
/*entry__btn*/
.entry__btn a {
  display: block;
  text-decoration: none;
  margin: 36px auto 18px;
  max-width: 256px;
}

@media only screen and (max-width:767px) {
  .entry__btn a {
    display: block;
    text-decoration: none;
    margin: calc(36px / 1) auto calc(18px / 1.5);
    max-width: 100%;
  }

}


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

Footer Setting

---------------------------------------------------------- */
/*footer__container*/
.footer__container {
  padding: 72px 0;
  background-image: url(../img/icon__logo.png);
  background-position:100% 0;
  background-size: calc(638px / 2);
  background-repeat: no-repeat;;
}

.footer__detail {
  padding: 0;
  margin-top:54px;
}

@media only screen and (max-width:767px) {
  .footer__container {
    padding: calc(72px / 1.5) 0 calc(72px / 2);
    background-image: url(../img/icon__logo.png);
    background-size: calc(638px / 4);
  }

  .footer__detail {
    margin-top:calc(54px / 1.5);
  }

}


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

.footer__menu {
  flex-basis: 49%;
}

.footer__menu__title {
  text-align: center;
  margin: auto;
  background-color: #e75297;
  padding:18px 9px;
}

.footer__menu__title span {
  display: inline;
  text-align: center;
  font-weight: 600;
  margin: 0 2.25px;
  font-size: 36px;
  line-height: 1.23456789;
  color: #fff;
}

.footer__menu__body {
  background-color: #fff;
  padding:30.5px;
}

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

  .footer__menu {
    flex-basis: 100%;
    margin: 9px auto;
  }

  .footer__menu__title {
    padding: 9px;
  }

  .footer__menu__title span {
    font-size: calc(36px / 1.45);
  }

  .footer__menu__body {
    padding:calc(30.5px / 1.5);
  }
}


/*footer__benefits*/
.footer__benefits__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 23;
}

.footer__benefits__left {
  flex-basis: 33.5%;
}

.footer__benefits__right {
  flex-basis: 62.5%;
}

.footer__benefits__title {
  margin-bottom: 18px;
}

.footer__benefits__title span {
  display: block;
  color: #e75297;
  text-align: center;
  font-weight: 900;
  font-size: 20.5px;
  line-height: 1.3456789;
  margin: auto ;
}

  .footer__benefits__title span strong {
    font-size: 37px;
  }

.footer__benefits__container img {
  pointer-events: none;
}

.footer__benefits__subtitle {
  background-color: #fff;
  border: 2px solid #245993;
  border-radius: 4.5px;
  text-align: center;
  margin: auto;
}

.footer__benefits__subtitle span {
  display: block;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.789;
  color: #245993;
}

.footer__benefits__list  {
  margin-top: 9px;
}

.footer__benefits__list li {
  font-size: 16px;
  line-height: 1.56789;
  color: #245993;
  font-weight: 600;
}

.footer__benefits__list.square li:before {
  font-size: 12px;
}

.footer__benefits__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  margin-top: -30.5px;
  z-index: 1;
}

.footer__benefits__btn {
  flex-basis:400px ;
  text-align: center;
  max-width: 400px;
}

.footer__benefits__btn a {
  font-size: 20px;
}

.footer__benefits__line {
  flex-basis:calc(100% - 410px) ;
  margin-right: 0;
  margin-bottom: -9px;
}

.footer__benefits__line__title {
  width: 108px;
  text-align: center;
  margin: auto;
}

.footer__benefits__line__qr {
  width: 90px;
  text-align: center;
  margin: auto;
}

.footer__benefits__btn a img.btn__icon {
  width: calc(48px/ 1.85);
  line-height: 1;
}

@media only screen and (max-width:767px) {
  .footer__benefits__left {
    flex-basis: 100%;
    order: 2;
    text-align: center;
    margin: auto;
  }

  .footer__benefits__right {
    flex-basis: 100%;
    order: 1;
  }

  .footer__benefits__title {
    margin-bottom: calc(18px / 1.5);
  }

  .footer__benefits__title span {
    font-size: calc(20.5px / 1.1);
  }

  .footer__benefits__title span strong {
    font-size: calc(37px / 1.05);;
  }

  .footer__benefits__subtitle {
    border-width: 1px;
  }

  .footer__benefits__subtitle span ,
  .footer__benefits__list li {
    font-size: calc(17px / 1);
  }

  .footer__benefits__list  {
    margin-top: calc(9px / 1.5);;
  }

  .footer__benefits__list.square li:before {
    font-size: 12px;
  }

  .footer__benefits__img {
    transform: rotate(5.5deg);
    margin:auto auto 9px;
    max-width: 75%;
    text-align: center;
  }

  .footer__benefits__contact {
    margin-top: -15.25px;
  }

  .footer__benefits__btn {
    max-width: 100% ;
    flex-basis:100% ;
    margin-top: 13.5px;
  }

  .footer__benefits__btn a {
    font-size:calc(20px / 1.20);
  }

  .footer__benefits__btn a img.btn__icon {
    width: calc(48px/ 2.5);
  }

  .footer__benefits__line,
  .footer__benefits__line__title,
  .footer__benefits__line__qr {
    display: none;
  }

}


/*footer__interview*/
.footer__interview__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding:15px 0;
  width: 100%;
}

.footer__interview__left {
  flex-basis: calc(100% - 200px);
}

.footer__interview__right {
  flex-basis: 180px;
}

.footer__interview__title span {
  display: block;
  color: #e75297;
  text-align: center;
  font-weight:900;
  font-size: 40px;
  line-height: 1.3456789;
  margin: auto ;
}

.footer__interview__img ,
.footer__interview__img img {
  border-radius: 100%;
  width: 150px;
  height: 150px;
}

  .footer__interview__img img {
    border:15px solid #ebf6fc;
    margin-top: -11.5px;
  }

.footer__interview__text {
  position: relative;
  display: inline-block;
  background: #ebf6fc;
  width: 100%;
  border-radius: 18px;
  padding: 22.5px 27px;
}

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

.footer__interview__text p {
  font-size: 17px;
  color: #245993;
  line-height: 1.9;
  font-weight:600;
}

  .footer__interview__text p strong {
    padding: 1px;
    background-color: #f8f448;
    font-weight: 700;
  }

.footer__interview__btn {
  margin: auto;
  text-align: center;
  max-width: 400px;
}

.footer__interview__btn a {
  font-size: 20px;
  margin: auto;
  text-align: center;
}

.footer__interview__btn a img.btn__icon {
  width: calc(48px/ 1.85);
  line-height: 1;
}

@media only screen and (max-width:767px) {
  .footer__interview__container {
    padding:calc(15px / 1.5) 0;
  }

  .footer__interview__left {
    flex-basis: 100%;
    order: 1;
  }

  .footer__interview__right {
    flex-basis: 100%;
    order: 2;
  }

  .footer__interview__title span {
    font-size: calc(40px / 1.315);
  }

  .footer__interview__img ,
  .footer__interview__img img {
    border-radius: 100%;
    width: 180px;
    text-align: center;
    box-sizing: border-box;
    margin: auto;
    height: 180px;
  }

    .footer__interview__img img {
      border:15px solid #ebf6fc;
      margin-top:27px;
    }

  .footer__interview__text {
    border-radius: 9px;
    padding:18px 27px;
  }

  .footer__interview__text:before {
    top: 100%;
    left: 50%;
    margin-left: -15px;
    margin-top: auto;
    border: 15px solid transparent;
    border-top: 15px solid #ebf6fc;
    border-left: none;
  }

  .footer__interview__text p {
    font-size: calc(18px / 1.1);
  }

  .footer__interview__btn {
    margin-top:36px;
    max-width: 100%;
  }

  .footer__interview__btn a {
    font-size: calc(20px / 1.20);
  }

  .footer__interview__btn a img.btn__icon {
    width: calc(48px/ 2.5);
  }
}

/*footer__flow*/
.footer__flow__container {
  padding: 40.5px 0 9px;
  margin: auto;
}

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

.footer__flow__title span {
  display:block;
  color: #fff;
  font-weight: 600;
  font-size: 27px;
  line-height: 1.23456789;
  letter-spacing: 0.095em;
  text-align: center;
  margin:9px auto;
}

  .footer__flow__title span strong {
    color: #fff000;
    font-size: 30.5px;
    font-weight: 700;
  }

.footer__flow__subtitle {
  text-align: center;
  margin: 18px auto;
  background-color: #e75297;
  padding: 9px;
}

.footer__flow__subtitle span {
  display:block;
  color: #fff;
  font-weight: 700;
  font-size: 22.54px;
  line-height: 1.012345678;
  text-align: center;
  margin: auto;
}

@media only screen and (max-width:767px) {
  .footer__flow__container {
    padding: calc(40.5px /2) 0 0;
  }

  .footer__flow__title span {
    font-size: calc(27px / 1.27);
    letter-spacing: 0.095em;
    margin:9px auto;
  }

  .footer__flow__title span strong {
    font-size: calc(30.5px / 1.25);
  }

  .footer__flow__subtitle {
    margin: calc(18px / 1.5) auto;
    padding: calc(9px / 1) ;
  }

  .footer__flow__subtitle span {
    font-size: calc(22.54px / 1.354);
  }
}

/*footer__sitemap*/
.footer__sitemap  {
  padding:45px 0 30.5px;
  margin: auto;
  text-align: center;
}

.footer__sitemap ul li {
  display: inline-block;
  text-align: center;
}

.footer__sitemap ul li a {
  display: block;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0 15.25px;
}

@media only screen and (max-width:767px) {
  .footer__sitemap  {
    padding:calc(45px / 1.5) 18px;
    margin: 0;
    text-align: left;
  }

  .footer__sitemap ul li  {
    display: inline-block;
    vertical-align: top;
    width: 49%;
    text-align: left;
  }

    .footer__sitemap ul li.long  {
      display:block;
      width: 100%;
    }

  .footer__sitemap ul li a {
    font-size: calc(15.5px / 1.2);
    text-align: left;
    padding: calc(9px / 1.5);
  }
}


.footer__copyright {
  display: block;
  position: relative;
  text-align: center;
  margin:auto;
  padding-bottom: 45px;
}

.footer__copyright address {
  font-style: normal;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: #aaa;
}

@media only screen and (max-width:767px) {
  .footer__copyright {
    padding-bottom: calc(90px + 9px);
  }

  .footer__copyright address {
    font-size: 11.5px;
  }
}

/*footer__nav__sp*/
.footer__nav__sp {
  display: none;
}

@media only screen and (max-width:767px) {
  .footer__nav__sp {
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    z-index:12345;
  }

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

  .footer__nav__sp ul li {
    flex-basis: 50%;
  }

  .footer__nav__sp ul li a.btn {
    display: block;
    border-radius: 0;
    border: none;
    text-decoration: none;
    text-align: center;
    font-size: calc(18px / 1.1);
    background-image: none;
  }

  .footer__nav__sp ul li a img.btn__icon {
    width: calc(50px / 2.75);
    margin-top: -2.5px;
    margin-right: 4.5px;
  }


}
