@charset "utf-8";

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

Common Setting

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

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

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

/*font*/
.en.trajan {
  font-family: "trajan-pro-3", serif;
  font-style: normal;
}

.en.din {
  font-family: "din-2014", sans-serif;
  font-style: normal;
}

.mincho {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

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

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

ol  {
  margin-left: 1em;
}


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

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 90%;
}


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

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

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

a:hover {
  opacity: 0.7; 
}

a.blank {
  background-image: url(../img/icon__blank.png);
  background-repeat: no-repeat;
  background-position: right 22.5%;
  background-size: 30.5px;
  padding-right: 36px;
}


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

@media only screen and (max-width: 768px) {
  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:768px) {
  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:768px) {
  .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: 1234516789;
  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;
  appearance:none;
  font-weight: 600;
}

.btn__primary {
  background: #1C59C6;
  background: linear-gradient(90deg,rgba(28, 89, 198, 1) 0%, rgba(2, 64, 155, 1) 100%);
  text-align: center;
  color: #fff;
  padding:9px 45px;
  line-height: 1.6789;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.075em;
  position: relative;
}
/*
  .btn__primary:after {
    position: absolute;
    content: '';
    width:calc(10px / 1.25);
    height:calc(17px / 1.25);
    top:calc(50% - calc(17px / 1.5) /2);
    right: 13.5px;
    margin: 0;
    background-position:100% 50%;
    background-image: url(../img/icon__arrow1.png);
    background-size: calc(10px / 2);
    background-repeat: no-repeat;
  }
*/
  .btn__primary:hover,
  .btn__primary:focus  {
    color: #fff;
  }

.animation__btn .btn__primary {
  width: 100%;
  position: relative;
}

.animation__btn .btn__primary::before {
  background-image: url(../img/icon__arrow1.png);
  background-position: 100% 50%;
  background-size:calc(10px / 2);
  background-repeat: no-repeat;
  content: "";
  margin: auto;
  position: absolute;
  right: 27px;
  top: 0;
  bottom: 0;
  width:calc(42px / 2);
  height:calc(13px / 2);
  transition: right .5s;
}

.animation__btn .btn__primary:hover::before {
  right: 9px;
}

.animation__btn .btn__primary:hover {
  color:rgba(255, 255, 255, 0.75);
  opacity: 1;
  background: linear-gradient(90deg,rgba(28, 89, 198, 0.75) 0%, rgba(2, 64, 155, 0.75) 100%);
}



/*
.btn__secondary {
  background:var(--color2);
  border: 1px solid var(--color1);
  text-align: center;
  color: #fff;
  padding:13.5px 36px;
}

  .btn__secondary:hover,
  .btn__secondary:focus  {
    color: #dedede;
  }

*/

@media only screen and (max-width:768px) {
  /*
  .btn__primary {
    padding:calc(13.5px / 1.5) calc(36px / 2);
  }
  */
}


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

Form Setting

---------------------------------------------------------- */
/*form reset
input[type=submit],
button,
button[type=submit],
button[type=button] {
  appearance:none;
  cursor:pointer;
  outline:none;
  box-sizing:border-boxt;
  border:none;
  background: transparent;
  font-size: 18px;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=date],
input[type=url],
input[type=tel],
textarea {
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:1px solid #666;
  padding:9px 18px;
  box-sizing:border-box;
  max-width: 100%;
  font-size: 18px;
}
*/

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

/*radio checkbox
input[type=radio].scale2,
input[type=checkbox].scale2 {
  transform:scale(2.0)
}
*/
/*select*/


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

Table Setting

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

table.w30 th {
  width: 30%;
}

table.w35 th {
  width: 35%;
}

table.w40 th {
  width: 40%;
}

table.w50 th {
  width: 50%;
}

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

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

table.table__bordered tr th {
  text-align: left;
  font-weight: 400;
  border: 1px solid #ccc;
  background: #F8F4EF;
  padding: 18px;
  font-weight: bold;
}

table.table__bordered tr td {
  text-align: left;
  font-weight: 400;
  border: 1px solid #ccc;
  padding: 18px;
}/*

  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:768px) {
  table.table__bordered  {
    border: none;
  }

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

}

.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:768px) {
  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:768px) {
  /*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.w20,
  .table__responsive.w30,
  .table__responsive.w40,
  .table__responsive.w50 {
    width: 100%;
  }
}


/*definition__list*/
.definition__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items:top;
  padding:1.75px 0;
}

.definition__list dl dt {
  font-weight: 500;
}

.definition__list dl dd {
}

.definition__list.w15 dl dt {
  flex-basis: 15%;
}

.definition__list.w20 dl dt {
  flex-basis: 20%;
}

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

}

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width:768px) {
  body  {
    min-width:1px;
    font-size:calc(18px / 1.18);
    line-height: 1.89;
    max-width:100%;
    -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
  }

}

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

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

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

Header Setting

---------------------------------------------------------- */
/*header*/
header {
  z-index: 12345;
  position: fixed;
  width: 100%;
  margin: auto;
}

/*topbar*/
.topbar {
  box-sizing: border-box;
  padding-left:1.25rem;
  padding-right:0;
  z-index: 3456;
  transition: color 0.4s ease-out;
}

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

.topbar__container .logo {
  flex-basis: calc(573px/ 2);
}

.topbar__container .logo a {
  display: block;
  text-indent: -9999px;
  background-image: url(../img/logo2.png);
  background-position: 0 50%;
  background-size:calc(573px/ 2);
  background-repeat: no-repeat;
  width:calc(573px/ 2);
}

.topbar__gnav {
  flex-basis: calc(100% - calc(573px/ 2));
  text-align: right;
}

@media only screen and (max-width:768px) {
  .topbar {
    padding: calc(13.5px / 13.5) 1em ;
    height:60px;
  }

  .topbar__container .logo  {
    margin-top: -13.5px;
  }

  .topbar__container .logo a {
    display: block;
    text-indent: -9999px;
    background-image: url(../img/logo2.png);
    background-position: 0 50%;
    background-size:calc(573px/ 2.5);
    background-repeat: no-repeat;
    width:calc(573px/ 2.5);
  }

}


/*gnav__pc*/
.gnav__pc ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.gnav__pc ul li  {
  margin-left:99px ;
}

.gnav__pc ul li span {
  display: block;
  text-align: center;
  margin:auto;
  line-height: 1.456789;
}

.gnav__pc ul li a {
  display: block;
  text-decoration: none;
}

.gnav__pc ul li span.en {
  font-size: 18px;
  font-weight: 600;
}

.gnav__pc ul li span.ja {
  font-size: 12.25px;
}


@media only screen and (max-width:768px) {
  .topbar .logo {
    flex-basis: calc(573px/ 3);
  }

  .gnav__pc  {
    display: none;
  }

}


/*is-show*/
.header.is-view {
  background:rgba(255, 255, 255, 0.8);
  top: 0;/*
  mix-blend-mode: multiply;*/
  animation: fadeIn .5s ease .25s 1 normal backwards;
  z-index: 1234567890;
  transition: 0.3s;
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header.is-view .topbar__container .logo a {
  display: block;
  text-indent: -9999px;
  background-image: url(../img/logo.png);
  background-position: 0 50%;
  background-size:calc(573px/ 2);
  background-repeat: no-repeat;
  width:calc(573px/ 2);
}

.topbar .gnav__pc ul li a  {
  color:#fff!important;
}

.header.is-view .topbar .gnav__pc ul li a  {
  color:initial!important;
}

@media only screen and (max-width:768px) {
  .header.is-view .topbar__container .logo a {
    display: block;
    text-indent: -9999px;
    background-image: url(../img/logo.png);
    background-position: 0 50%;
    background-size:calc(573px/ 2.5);
    background-repeat: no-repeat;
    width:calc(573px/ 2.5);
  }
}


/*gnav_pc*/
nav.gnav__sp {
  display: none
}

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

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

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

  nav.gnav__sp .inner {
    padding:0
  }

  nav.gnav__sp .inner ul  {
    list-style:none;
    margin-top: 36px;
    padding:18px;
  }

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

  nav.gnav__sp .inner ul li a     {
    display:block;
    color:#fff;
    box-sizing:border-box;
    padding:45px 0;
    text-decoration:none;
    transition-duration:0.2s;
    border-bottom:1px solid rgba(255,255,255,0.5);
    color: #fff;
  }

  /*toggle__btn*/
  .toggle__btn {
    display:block;
    position:fixed;
    top:18px;
    right:1em;
    width:30px;
    height:30px;
    transition:all .5s;
    cursor:pointer;
    z-index: 12345678
  }

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

    .header.is-view .toggle__btn span {
      background-color: #3a46a3;
    }

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

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

  .toggle__btn span:nth-child(3)  {
    bottom:13px;
    width: 80%;
  }

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

    .header.is-view .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);
    width: 100%;
  }

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

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

  /*gnav__sp ul*/
  .gnav__sp ul li span {
    display: block;
    text-align: center;
    margin:auto;
    line-height: 1.456789;
  }

  .gnav__sp ul li a {
    display: block;
    text-decoration: none;
  }

  .gnav__sp ul li span.en {
    font-size: 18px;
    font-weight: 600;
  }

  .gnav__sp ul li span.ja {
    font-size: 12.25px;
    font-weight: 300;
  }

}


/*home__mainvisual*/
.home__mainvisual {
  width: 100%;
  height: 600px;
  background-image: url(../img/home__mainvisual.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.home__mainvisual:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 700px;
  background: #034677;
  mix-blend-mode: multiply;
  background: linear-gradient(0deg,rgba(3, 70, 119, 0) 90%, rgba(3, 70, 119, 0.2) 100%);
}

.home__mainvisual__container {
  flex-basis: 100%;
}

.home__mainvisual__title {
  text-align: center;
  padding-top: calc(90px + 45px);
  margin: auto;
}

.home__mainvisual__title span {
  display: block;
  color: #fff;
  text-align: center;
  margin: auto;
  font-size: 40.5px;
  font-weight: 600;
  letter-spacing: 0.12345em;
}

.home__mainvisual__message {
  text-align: center;
  margin: auto;
  color: #fff;
  display: block;
  opacity: 0.8;
  margin: 18px auto 9px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
}

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

.home__mainvisual__subtitle span.en {
  display: block;
  opacity: 0.9;
  color: #fff;
  text-align: center;
  margin: auto;
  font-size: 30.5px;
  font-weight: 400;
  letter-spacing: 0.35em;
}

.home__mainvisual__text {
  text-align: center;
  margin: 18px auto auto;
  padding-top: 45px;
  background-image: url(../img/home__mainvisual__bg.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: calc(306px /2);
  background-size: calc(302px /2);
}

.home__mainvisual__text span.en {
  display: block;
  opacity: 0.8;
  color: #fff;
  text-align: center;
  margin: auto;
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 0.5em;
  position: relative;
  -ms-filter: blur(0.6px);
  filter: blur(0.6px);
}

.home__mainvisual__text span.en:after {
  content: 'Innovating for Healthier Lives';
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  margin: 0;
  height: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: inherit;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);

}

@media only screen and (max-width:768px) {
  .home__mainvisual {
    width: 100%;
    height: 75vh;
    background-image: url(../img/home__mainvisual.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .home__mainvisual:before {
    width: 100%;
    height: 75vh;
  }

  .home__mainvisual__container {
    flex-basis: 100%;
  }

  .home__mainvisual__title {
    padding-top: calc(90px / 1)
  }

  .home__mainvisual__title span {
    font-size:calc(40.5px / 1.405);
    line-height: 1.56789;
    letter-spacing:calc(0.12345em / 2);
  }

  .home__mainvisual__message {
    margin: 27px auto 18px;
    font-size: 14px;
    letter-spacing: calc(0.15em / 2);
  }

  .home__mainvisual__subtitle span.en {
    font-size: calc(30.5px / 1.335);
    letter-spacing: calc(0.35em / 2);
  }

  .home__mainvisual__text {
    text-align: center;
    margin: 27px auto auto;
    padding-top: calc(45px /1.5);
    background-image: url(../img/home__mainvisual__bg.png);
    background-position: 50% 50%;
    min-height: calc(306px / 3);
    background-size: calc(302px / 3);
  }

  .home__mainvisual__text span.en {
    font-size: calc(24px / 1.34);
    letter-spacing: calc(0.5em / 3);
  } 

}


/*mainvisual*/
.mainvisual {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.mainvisual__container {
  flex-basis: 100%;
  height: 450px;
  padding: calc(90px + 45px) 0 ;
}

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

.mainvisual__title span {
  display: block;
  color: #fff;
  text-align: center;
  margin: auto;
  line-height: 1.234567789;
}

.mainvisual__title span.en {
  font-size: 72px;
  letter-spacing: 0.12345em;
  font-weight: 600;
}

.mainvisual__title span.ja {
  font-size: 24px;
  letter-spacing: 0.12345em;
}

@media only screen and (max-width:768px) {
  .mainvisual__container {
    height: 50%;
    padding: 10% 0;
  }

  .mainvisual__title {
    padding: 10% 0;
  }

  .mainvisual__title span.en {
    font-size: calc(72px / 1.82);
    letter-spacing: calc(0.12345em / 3);
  }

  .mainvisual__title span.ja {
    font-size: calc(24px / 1.24);
    letter-spacing: calc(0.12345em / 2);
  }

}

@media only screen and (min-width:1480px) {
  .mainvisual {
    background-size: cover!important;
  }
}

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

Section Setting

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

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

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

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

  p.leed {
    font-size: calc(18px / 1.18)
  }

}

/*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:768px) {
  .mt-4  {
    margin-top: calc(-4.5px / 2)
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

  .section__title.left {
    text-align: left;
    margin: 0;
  }

.section__title span {
  display: block;
  line-height: 1.5678;
}

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

  .section__title.left span.ja {
    margin-left: 2.25px;
  }

.section__title span.en {
  font-weight: 600;
}

.section__title span.en.trajan {
  font-size: 42.5px;
  letter-spacing: 0.09em;
}

  .section__title span.en.trajan.large {
    font-size: 54px;
  }
  .section__title span.en.trajan.xlarge {
    font-size: 63px;
  }

.section__title span.ja {
  font-weight: 600;
}

  .section__title span.ja.mincho {
    font-size: 18px;
    letter-spacing: 0.25em;
  }

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

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

@media only screen and (max-width:768px) {
  .section__title.left span.ja {
    margin-left: calc(2.25px / 2);
  }

  .section__title span.en.trajan {
    font-size: calc(42.5px / 1.425);
    letter-spacing: calc(0.09em / 1.5);
  }

  .section__title span.en.trajan.large {
    font-size: calc(54px / 1.54);
  }

  .section__title span.en.trajan.xlarge {
    font-size: calc(63px / 1.63);
  }

  .section__title span.ja.mincho {
    font-size: calc(18px / 1.1);
    letter-spacing: calc(0.25em / 1.5);
  }

  .section__title span.ja.mincho.large {
    font-size: calc(24px / 1.24);
  }

  .section__title span.ja.mincho.xlarge {
    font-size: calc(27px / 1.27);
  }

}


/*breadnav*/
.breadnav {
  padding:36px 0 ;
}

.breadnav p {
  font-size: 15.5px;
  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:768px) {
  .breadnav {
    padding:calc(36px / 1.5) 0;
  }

  .breadnav p {
    font-size: calc(18px / 1.18)
  }

}

/*error404*/
.error404 .section__btn {
  margin: 36px auto 0;
  text-align: center;
  width: 286px
}

@media only screen and (max-width:768px) {
  .error404 .section__btn {
    margin: calc(36px / 1.5) auto 0;
    text-align: center;
    width: 100%
  }

}

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

.gruop__logo__container {
  padding:54px 0 0;
  margin: auto;
  text-align: center;
}

  .home .gruop__logo__container {
    padding:36px 0;
    margin: auto;
    text-align: center;
  }

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

.gruop__logo__container ul li {
  margin: 0 18px;;
}

.gruop__logo__container ul li.starq img {
  width: calc(121px / 2);
}

.gruop__logo__container ul li.gaia img {
  width: calc(420px / 2);
}

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

  .home .gruop__logo__container {
    padding:calc(36px / 1) 0;
  }

  .gruop__logo__container ul li {
    margin: 0 calc(18px /2);
  }

  .gruop__logo__container ul li.starq img {
    width: calc(121px / 2.25);
  }

  .gruop__logo__container ul li.gaia img {
    width: calc(420px / 2.25);
  }
}


/*service__message gruop__logo*/
.service__message .gruop__logo__container ul li {
  margin: 0 36px;;
}

.service__message .gruop__logo a {
  text-decoration: none;
}

.service__message .gruop__logo a span.ja {
  display: inline-block;
  vertical-align: middle;
  font-size: 20.25px;
  margin-left: 18px;
}


@media only screen and (max-width:768px) {
  .service__message .gruop__logo__container ul li {
    margin:18px 0;;
    text-align: left;
  }

  .service__message .gruop__logo__container ul li.starq img {
    width: calc(121px / 4)!important;
  }

  .service__message .gruop__logo__container ul li.gaia img {
    width: calc(420px / 4)!important;
  }

  .service__message .gruop__logo a span.ja {
    font-size: calc(20.25px / 1.3);
    margin-left: calc(18px / 1);
  }


}

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

Block Setting

---------------------------------------------------------- 
.wp-block-column ul,
.wp-block-column ol  {
  margin-left: 1em;
}

.wp-block-column .has-text-align-right  {
  text-align: right;
}

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

Home Setting

---------------------------------------------------------- */
/*home__news*/
.home__news {
  background-image: url(../img/home__news__bg.jpg);
  background-position:50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: calc(90px + 27px) 0;
}

.home__news__container {
  flex-basis: 100%;
  padding: 90px 90px;
  background-color: rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.home__news__title {
  flex-basis:256px ;
}

.home__news__content {
  flex-basis:calc(100% - 256px);
}

.home__news__title span {
  display: block;
  text-align: left;
  line-height: 1.56789;
}

.home__news__title span.ja {
  font-size: 18px;
}

.news__list {
  text-align: left;
  margin-top: -27px;
}

.news__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: 36px 0;
  border-bottom: 1px solid #ccc;
}

  .home .news__list dl {
    border-bottom: 1px solid #000;
  }

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

.news__list dt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-right: 9px;
}

.news__list dt span {
  margin-right: 18px;
}

.news__list dt span.date {
  display: block;
  font-size: 15px;
}

.news__list dt span.cat {
  display: block;
  font-size: 14px;
  border: 1.25px solid #000;
  background-color: #fff;
  line-height: 1.23456;
  text-align: center;
  padding: 2.25px 27px;
}

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

.home__news__btn {
  margin: 45px 0 0 auto;
  text-align: right;
  display: block;
  width: 286px;
}

@media only screen and (max-width:768px) {
  .home__news {
    background-image: url(../img/home__news__bg.jpg);
    background-position:50% 50%;
    background-repeat: no-repeat;
    padding: calc(90px / 2) 0;
  }

  .home__news__container {
    padding: calc(90px / 3) 18px;
  }

  .home__news__title {
    flex-basis:100% ;
    order: 1;
    margin-bottom: 36px;
  }

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

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

  .news__list {
    text-align: left;
    margin-top: -12.5px;
  }

  .news__list dl {
    padding: calc(36px / 1.5) 0;
  }

  .news__list dl:nth-last-child(1) {
    padding-bottom: calc(18px / 1.5);
    border-bottom:none;
  }

  .news__list dt {
    flex-basis: 100%;
    margin-right: calc(9px / 2);
    justify-content: flex-start;
  }

  .news__list dt span {
    margin-right: calc(18px / 2);;
  }

  .news__list dt span.date {
    font-size: calc(16px / 1.1);
  }

  .news__list dt span.cat {
    font-size: calc(15px / 1.1);;
    border: 1.25px solid #000;
    padding: 1.25px 27px;
  }

  .news__list dd {
    flex-basis: 100%;
  }

  .home__news__btn {
    margin: calc(45px /2) 0 0 auto;
    width: 100%;
  }
}


/*home__service*/
.home__service {
  background-image: url(../img/home__service__pc.jpg);
  background-position:top center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: calc(90px + 54px);
}

.home__service__head {
  padding: 81px 0 54px ;
  width: 567px;
}

.home__service .home__service__head,
.home__service .home__service__head span ,
.home__service .home__service__head p {
  color: #fff;
}

.home__service__head p {
  margin-top: 63px;
  line-height: 2.123456;
  font-weight: 300;
  text-align: justify!important
}

@media only screen and (max-width:768px) {
  .home__service {
    background-color: #dde4ea;
    background-image: url(../img/home__service__sp.jpg);
    padding-bottom: calc(calc(90px + 54px) /2);
    padding-top: 90px;
    background-position:90% 0;
    background-repeat: no-repeat;
    background-size: 165%;
    text-align: center;
    position: relative;
  }

  .home__service__head {
    padding: calc(81px / 2) 0 calc(54px / 2) ;
    width: 100%;
  }

  .home__service__head p {
    margin-top: calc(63px / 2);
    line-height: 1.789;
  }

}


/*home__service__list*/
.home__service__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 45px auto;
}

  .home__service__list1 {
    background-image: url(../img/home__service1__pc.jpg);
    background-position:top center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
  }

  .home__service__list2 {
    background-image: url(../img/home__service2__pc.jpg);
    background-position:top center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
  }

.home__service__text {
  background-color: #fff;
  color: inherit;
  padding:72px 90px;
  flex-basis: 55%;
  box-sizing: border-boxe;
}

  .home__service__list1 .home__service__img {
    order: 1;
  }

  .home__service__list .home__service__text {
    order: 2;
    max-width:calc(100% - calc(calc(100% - 1380px)/ 2));
    margin-left:calc(calc(100% - 1380px)/ 2);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  }

  .home__service__list2 .home__service__img {
    order: 2;
  }

  .home__service__list2 .home__service__text {
    order: 1;
    max-width:calc(100% - calc(calc(100% - 1380px)/ 2));
    margin-right:calc(calc(100% - 1380px)/ 2);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  }

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

.home__service__title span {
  display: block;
  margin:  auto;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}

.home__service__logo  {
  text-align: center;
  margin: 27px auto 9px;
}

  .home__service__list1 .home__service__logo img  {
    width: calc(121px / 1.25);
  }

  .home__service__list2 .home__service__logo img  {
    width: calc(420px / 1.75);
  }

.home__service__text p {
  margin: 36px auto auto;
  text-align: left;
  max-width: 380px;
}

.home__service__btn {
  margin: 36px auto auto;
  text-align: center;
  width: 286px
}

@media only screen and (max-width:768px) {
  .home__service__list {
    margin: calc(45px /2) auto;
    justify-content: space-between;
    align-items: top;
  }

  .home__service__list1 {
    background-image: none;
  }

  .home__service__list2 {
    background-image: none;
  }

  .home__service__text {
    padding:calc(72px / 4) calc(72px / 2) calc(72px / 1.5);
    box-sizing: border-box;
    flex-basis: 100%;
  }

  .home__service__list1 .home__service__img {
    order: 2;
    margin-top: -36px;
    z-index: 1;
  }

  .home__service__list .home__service__text {
    order: 1;
    max-width:100%;
    z-index: 23;
    margin-left:auto;
    padding-bottom: 72px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
  }

  .home__service__list2 .home__service__img {
    order: 2;
    margin-top: -36px;
    z-index: 1;
  }

  .home__service__list2 .home__service__text {
    order: 1;
    max-width:100%;
    z-index: 23;
    margin-right:auto;
    padding-bottom: 72px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
  }

  .home__service__title {
    margin: calc(18px / 1) auto ;
  }

  .home__service__title span {
    font-size: calc(36px / 1.46);
  }

  .home__service__logo  {
    text-align: center;
    margin: calc(27px / 1.5) auto calc(9px / 1.5);
  }

  .home__service__list1 .home__service__logo img  {
    width: calc(121px / 2);
  }

  .home__service__list2 .home__service__logo img  {
    width: calc(420px / 2);
  }

  .home__service__text p {
    margin: calc(36px / 1) auto ;
    max-width: 100%;
  }

  .home__service__btn {
    margin: calc(36px / 2) auto auto;
    width: 100%
  }
}


/*home__service__footer*/
.home__service__footer {
  position: absolute;
  top: 100%;
  right: 0;
}

.home__service__footer span {
  display: block;
  font-weight: 900;
  margin-top: 18px;
  margin-right:0;
  line-height: 1;
  font-size: calc(90px + 63px);
  letter-spacing: 0.06789em;
  background: #E5EBF0;
  background: linear-gradient(90deg,rgba(229, 235, 240, 1) 0%, rgba(242, 245, 247, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width:768px) {
  .home__service__footer {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200%;
    text-align: right;
    float: right;
    overflow-x: hidden;
  }

  .home__service__footer span {
    margin-top: calc(18px / 1.25);
    font-size: calc(calc(90px + 63px) / 2.25);
    letter-spacing: calc(0.06789em /2);
  }

}


/*home__company*/
.home__company {
  padding-top: 90px;
  padding-bottom: calc(90px + 45px);
  background-color: #fff;
  background-image: url(../img/home__company__bg.jpg);
  background-position:0 90px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 23;
}

.home__company__container {
  padding:calc(90px + 27px) 90px 90px ;
  max-width:calc(100% - calc(calc(100% - 1180px)/ 2));
  background-color: #fff;
}

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

.home__company__text {
  flex-basis:calc(100% - 630px);
}

.home__company__img {
  flex-basis: 510px;
}

.home__company__container p {
  margin-top: 54px;
  text-align: justify;
  font-weight: 400;
}

.home__company__btn {
  margin: 36px 0 0;
  text-align: left;
  width: 286px
}

@media only screen and (max-width:768px) {
  .home__company {
    padding-top: calc(90px / 45);
    padding-bottom: calc(calc(90px + 45px) / 1);
    background-position:0 90px;
    z-index: 23;
  }

  .home__company__container {
    padding:calc(90px /2) 18px calc(90px / 1.5);
    max-width:100%;
  }

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

  .home__company__img {
    flex-basis:100%;
    margin-bottom: 18px;
    order: 1;
  }

  .home__company__container p {
    margin-top: calc(54px / 2);
  }

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



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

Copmany Setting

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

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

}


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

.company__detail__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding-top:72px;
}

.company__list  {
  flex-basis:calc(100% - 620px)
}

.company__map  {
  flex-basis: 580px
}

.company__list dl  {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: 27px 0;
  border-bottom: 1px dotted #aaa;
}

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

.company__list dl dt  {
  flex-basis: 30%;
}

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

.company__map iframe {
  width: 100%;
  height: 610px;
}

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

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

  .company__list ,
  .company__map  {
    flex-basis:100%
  }

  .company__map  {
    margin-top: 18px;
  }

  .company__list dl  {
    padding: calc(27px /2) 0;
  }

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

  .company__list dl dt  {
    font-weight: bold;
  }

  .company__map iframe {
    width: 100%;
    height:calc(670px / 2);
  }

}


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

Service Setting

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

.service__message .service__message__text {
  text-align: center;
}

@media only screen and (max-width:768px) {
  .section.service__message {
    padding: calc(90px / 2) 0 ;
  } 
  
  .service__message .service__message__text {
    text-align: left;
    margin-bottom: 18px;
  }
}

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

  .service.service1  {
    background-image: url(../img/service1__pc.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #d9e3eb;
  }

  .service.service2  {
    background-image: url(../img/service2__pc.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #d9e3eb;
  }

.service__title {
  text-align: right;
}

.service__title div.en {
  display: block;
  color: rgba(255, 255, 255, 0.25);
  font-size: calc(90px + 72px);
  font-weight: 900;
  line-height: 1;
}

  .service.service1 .service__title div.en {
    right: -18px;
    text-align: right;
  }

  .service.service2 .service__title div.en {
    left: -18px;
    text-align: left;
  }

.service__title span.ja {
  display: block;
  font-size: 54px;
  color: #fff;
  margin-top: 0px;
  line-height: 1;
}

  .service.service1 .service__title span.ja {
    text-align: right;
  }

  .service.service2 .service__title span.ja {
    text-align: left;
  }

@media only screen and (max-width:768px) {
  .section.service   {
    padding-bottom: calc(90px / 1.5);
    overflow-x:hidden;
  }

  .service.service1  {
    background-image: url(../img/service1__sp.jpg);
    background-position: 0% 0;
    background-repeat: no-repeat;
    background-size: 150%;
    background-color: #d9e3eb;
  }

  .service.service2  {
    background-image: url(../img/service2__sp.jpg);
    background-position: 80% 0;
    background-repeat: no-repeat;
    background-size: 150%;
    background-color: #d9e3eb;
  }


  .service__title  {
    padding: 50px 0 0;
  }

  .service.service1 .service__title div.en {
    font-size: calc(calc(90px + 72px) / 2);
    width: 200%;
    float: right;
    text-align: right;
    word-break: none;
    right: -9px;
  }

  .service.service2 .service__title div.en {
    font-size: calc(calc(90px + 72px) / 2);
    width: 200%;
    float: left;
    text-align: left;
    word-break: none;
    left: -18px;
  }

  .service__title span.ja {
    font-size:calc(54px / 2);
  }

}


/*service__content*/
.service__content {
  margin-top:calc(90px + 45px);
  background-color: #fff;
  padding: 99px 81px 27px;
}

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

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

  .service.service1 .service__logo img {
    width: 112px;
  }

  .service.service2 .service__logo img {
    width: 256px;
  }

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

  .service.service1 .service__logo img {
    width: calc(112px / 1.5);
  }

  .service.service2 .service__logo img {
    width: calc(256px / 1.5);
  }

}

/*service__list*/
.service__list {
  padding-bottom: 45px;
}

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

.service__list__subtitle span {
  display: block;
  font-size: 32.5px;
  font-weight: 600;
  text-align: center;
  margin: auto;
}

.service__icon {
  text-align: center;
  margin:63px -81px;
}

.service__icon img {
  width: 100%;
}

.service__img {
  margin: 72px -81px;
}
/*
.service__img__list  {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:top;
}

.service__img__list li {
  flex-basis: 60%;
}

  .service__img__list li:nth-child(1) {
    margin-right: -10%;
    z-index: 12;
    margin-top: 72px;
  }

  .service__img__list li:nth-child(2) {
    margin-left: -10%;
    z-index: 23;
  }
*/

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

  .service__list__subtitle {
    margin:calc(90px / 3) auto calc(36px / 1.5);
    line-height: 1.56789;
  }

  .service__list__subtitle span {
    font-size: calc(32.5px / 1.325);
  }

  .service__icon {
    margin:calc(63px / 2) -18px;
  }
/*
  .service__img {
    margin: calc(72px / 2) auto;
  }
*/
}

/*service__base*/
.service__base__cotainer {
  background-color: #f3f5f7;
  padding:54px 72px;
  margin: 45px auto ;
  box-sizing: border-box;
}

.service__base__list {
  display: inline-block;
  vertical-align: top;
  width: 49.5%;
}

.service__base__list li {
  font-size: 20.25px;
}

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

  .service__base__list {
    width: 100%;
  }

  .service__base__list li {
    font-size: calc(18px / 1.1);
  }

}


/*service__company__list*/
.service__company__cotainer   {
  margin: 45px auto auto;
}

.service__company__list dl  {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: 27px 0;
  border-bottom: 1px dotted #aaa;
}

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

.service__company__list dl dt  {
  flex-basis: 22.5%;
}

.service__company__list dl dd  {
  flex-basis: 77.5%;
}

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

.service__company__map iframe {
  width: 100%;
  height: 370px;
}

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

  .service__company__list dl  {
    padding: calc(27px / 2) 0;
  }

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

  .service__company__list dl dt  {
    font-weight: bold;
  }

  .service__company__map  {
    margin-top: 36px;
  }

  .service__company__map iframe {
    height: calc(370px / 1.5);
  }

}

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

News Setting

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

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


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

.single__news__title {
  position: relative;
  margin: auto;
  text-align: center;
}

.single__news__title span.ja {
  display: block;
  text-align: left;
  margin: 0;
  font-size: 30.5px;
  line-height: 1.456789;
}

.single__news__meta {
  padding: 45px 0 0;
  text-align: left;
}

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

.single__news__meta ul li  {
  margin-right: 18px;
}

.single__news__meta ul li span  {
  display: block;
}

.single__news__meta ul li span.single__news__date  {
  font-size: 17px;
  color:#909090;
}

.single-news span.cat {
  display: block;
  font-size: 14px;
  border: 1.25px solid #000;
  background-color: #fff;
  line-height: 1.23456;
  text-align: center;
  padding: 2.25px 27px;
}

.single-news span.cat a {
  text-decoration: none;
}

.single__news__entry  {
  padding: 54px 0;
  margin: auto;
}

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

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

}



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

Footer Setting

---------------------------------------------------------- */
/*footer*/
.footer {
  position: relative;
  border-top: 1px solid #ccc;
}

  .home .footer {
    border-top: none;
  }

.footer__container {
  position: relative;
  padding: 72px 0 45px;
  margin: auto;
  text-align: center;
}

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

.footer__logo img {
  width: 225px;
  margin: auto;
  text-align: center;
}

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

  .footer__logo  {
    margin-bottom: -18px;
    position: relative;
  }

  .footer__logo img {
    width: calc(225px / 1.15);
  }

}


/*out-link*/
.out-link {
  margin: 20px auto auto;
  text-align: center;
  display: -webkit-flex;
  display: flex;
}

.group-link{
  margin: 20px auto auto;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.group-link .banner{  
  display: flex;
  align-items: center;
  margin: 10px auto auto;
}

.group-link .banner img{
  width: auto;
  height: 30px;
  display: block;
  margin-right: 10px;
}

.group-link .banner p{
  font-size: 10px;
  margin: 0;
  padding: 0; 
}

.group-link .banner a img:hover {
  -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
}

/*copy*/
.footer__copy .copy {
  font-size: .7rem;
  text-align: center;
  letter-spacing: 0;
  color: #fff;
  padding: .5rem;
  background: #3a46a3;
}


/*pagetop*/
.pagetop {
  width: 100%;
  display: block;
  position: fixed;
  z-index: 123;
  max-width:calc(100% - calc(calc(100% - 1180px / 1)));
  bottom:18px;
}

.pagetop a  {
  display: block;
  width: calc(200px/ 3);
  margin: 0 0 0 auto;
}

.pagetop img  {
  width: calc(200px/ 3);
  text-align: center;
  text-align: right;
  display: block;
}

@media only screen and (max-width:768px) {
  .pagetop {
    right: 9px;
    bottom:18px;
    max-width: 100%;
  }

  .pagetop a  {
    width: calc(200px/ 4);
  }

  .pagetop img  {
    width: calc(200px/ 4);
  }

}



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

inview

---------------------------------------------------------- */
/*fadeIn_up
.fadeIn_up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

.fadeIn_up.is-show {
  opacity: 1; 
  transform: translateY(0); 
  transition-delay: 1s;
}
*/
.fadeIn_up {
  transition: 2.0s;
  opacity: .1;
  transform: translate(0, 60px);
}

.fadeIn_up.is-show {
  transition: 2.0s;
  opacity: 1.0;
  transform: translate(0, 0px);
}