@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-style: normal;
}

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

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


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

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

ol  {
  margin-left: 1em;
}


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

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 90%;
}

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

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

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

a:hover {
  opacity: 0.7; 
}

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

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

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

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

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

@media only screen and (max-width: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;
  border: none;
  outline:none;
  appearance:none;
  font-weight: 600;
}

/*btn__round*/
.btn.btn__round {
  border-radius:200px;
}


/*btn__primary*/
.btn__primary {
  background: #2CA4FC;
  background: linear-gradient(90deg,rgba(44, 164, 252, 1) 0%, rgba(40, 214, 252, 1) 100%);
  text-align: center;
  color: #fff;
  position: relative;
  padding:18px ;
  border: none;
}

  .btn__primary:after {
    position: absolute;
    content: '';
    top: 2.25px;
    right: 36px;
    width: calc(15px / 1.75);
    height: 100%;
    background-position:100% 50% ;
    background-image: url(../img/icon__arrow1.png);
    background-size: calc(15px / 1.75);
    background-repeat: no-repeat;
  }

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

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

  .btn__primary:after {
    top: calc(2.25px / 2.25);
    right: calc(36px / 1.5);
    width: calc(15px / 1.75);
    background-position:100% 50% ;
    background-size: calc(15px / 2.5);
  }

}

/*btn__secondary*/
.btn__secondary {
  background: #fff;
  border: 1.25px solid #2ca4fc;
  text-align: center;
  color: #2ca4fc;
  padding:18px 36px;
  background-position:92.5% 50% ;
  background-image: url(../img/icon__arrow3.png);
  background-size: calc(22px / 3);
  background-repeat: no-repeat;
}

  .btn__secondary:hover,
  .btn__secondary:focus  {
    color: #2ca4fc;
  }


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

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

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 #999;
  padding:24px 18px;
  box-sizing:border-box;
  max-width: 100%;
  font-size: 18px;
}

select{
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:1px solid #999;
  padding:24px 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],
input[type=checkbox] {
  transform:scale(2.0)
}

/*select
.select select {
  box-sizing:border-box;
  width: 100%;
  outline: none;
  border:none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  color: #000;
  max-width: 100%;
  padding: 18px 36px 18px 18px;
  font-size: 18px;
}

.select select::-ms-expand {
  display: none;
}

.select {
  display: inline-block;
  position: relative;
  border-radius: 6px;
  border:1px solid #ccc;
  box-sizing:border-box;
  background: #fff;
}

.select::before {
  position: absolute;
  top: 45%;
  right:9px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #222;
  pointer-events: none;
}

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

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

Table Setting

---------------------------------------------------------- */
/*wide*/
table.w15 th {
  width: 15%;
}

table.w20 th {
  width: 20%;
}

table.w25 th {
  width: 25%;
}

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-collapse: collapse;
  padding: 0;
  margin: 0;
}

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

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


@media only screen and (max-width:767px) {
  table.table__bordered tr th ,
  table.table__bordered tr td {
    position: relative;
    width: 100%;
    display: block;
    box-sizing: border-box;
  }


  table.table__bordered tr th {
    border: none;
    padding:calc(18px /2) 18px;
    margin-top: -1px;
  }

  table.table__bordered tr td {
    border: none;
    padding:calc(18px /2) 18px;
  }


}

/*
.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 tr th ,
  table.table__striped tr td {
    width: 100%;
    display: block;
    position: relative;
    box-sizing: border-box;
  }

}

*/
/*table__responsive*
@media only screen and (max-width:767px) {
  .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: #222;
  font-weight: normal;
  font-size:18px;
  line-height:2;
  padding:0;
  margin:auto;
}

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

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

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

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

.container__middle {
  max-width:1080px;
  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:580px;
  margin:auto;
}

@media only screen and (max-width:767px) {
  body  {
    min-width:1px;
    font-size:calc(18px / 1.18);
    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__wide .container ,
  .container__wide .container__middle ,
  .container__wide .container__narrow ,
  .container__wide .container__xnarrow ,
  .container__wide .container__xxnarrow ,
  .container__wide .container__xxxnarrow ,
  .container__wide .container__xxxxnarrow ,
  .container__wide .container__xxxxxnarrow {
    padding-left: 0;
    padding-right: 0;
  }
}

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

/*main*/
.main {
  background: #fff;
}


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

Header Setting

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

/*topbar/*/
.topbar__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 2.5em;
}

.topbar__logo {
  flex-basis: calc(529px /2);
}

.topbar__logo img {
  width: 100%;
}

.topbar__content {
  flex-basis: calc(100% - calc(529px / 2 + 2.5em) );
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.topbar__nav {
  flex-basis: calc(100% - 260px);
}

.topbar__contact {
  flex-basis: 260px;
}

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

.topbar__nav ul li {
  margin-left: 70px;
}

  .topbar__nav ul li:nth-child(1) {
    margin-left: 0;
  }

.topbar__nav ul li a {
  font-weight: 600;
  display:block;
  text-decoration: none;
  text-align: center;
}

.topbar__contact a.btn__primary {
  padding: 27px ;
}

.topbar__contact a.btn__primary:after {
  background-position: 0;
  top: 1.125px;
  right: 1.5em;
  width: calc(15px /2);
  background-size: calc(15px /2);
}

@media only screen and (min-width:1181px) and (max-width:1380px) {
  .topbar__nav ul li {
    margin-left:45px;
  }

  .topbar__logo {
    flex-basis: calc(529px / 2.5);
  }

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

  .topbar__contact {
    flex-basis: 256px;
  }

  .topbar__contact a.btn__primary {
    padding: 27px 18px;
  }

  .topbar__contact a.btn__primary:after {
    display: none;
  }

}

@media only screen and (min-width:981px) and (max-width:1180px) {
  .topbar__container {
    padding-left: calc(2.5em / 1.5);
  }

  .topbar__nav ul li {
    margin-left: 22px;
  }

  .topbar__nav ul li:nth-last-child(1) {
    margin-right: -18px;
  }

  .topbar__nav ul li a {
    font-size: 17px;
  }

  .topbar__logo {
    flex-basis: calc(529px / 3);
  }

  .topbar__nav {
    flex-basis: calc(100% - calc(529px / 2.7));
  }

  .topbar__contact {
    flex-basis: 188px;
  }

  .topbar__contact a.btn__primary {
    padding: 27px 13.5px;
    font-size:17px;
  }

  .topbar__contact a.btn__primary:after {
    display: none;
  }

}

@media only screen and (min-width:768px) and (max-width:980px) {
  .topbar__container {
    padding-left: calc(2.5em / 1.5);
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .topbar__logo {
    flex-basis: calc(529px / 3);
  }

  .topbar__nav ,
  .topbar__content {
    display: none;
  }
}


@media only screen and (max-width:767px) {
  .topbar__container {
    padding-left: calc(2.5em / 1.5);
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .topbar__logo {
    flex-basis: calc(529px / 3);
  }

  .topbar__nav ,
  .topbar__content {
    display: none;
  }

}



nav.gnav__sp {
  display: none
}

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

  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: #2CA4FC;
    background: linear-gradient(90deg,rgba(44, 164, 252, 1) 0%, rgba(40, 214, 252, 1) 100%);
    z-index: 1234567890123456789;
  }

  .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:9px 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;
    font-size:calc(17px / 1.17);
    font-weight: 500;
    padding:18px 9px;
    text-decoration:none;
    transition-duration:0.2s;
    border-bottom:1px solid rgba(255,255,255,0.5);
  }

  /*toggle__btn*/
  .toggle__btn {
    display:block;
    position:fixed;
    top:20.5px;
    right:18px;
    width:30px;
    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:#15a6f4;
    border-radius:0;
    transition:all .5s;
  }

    .toggle__btn.invert span {
      background-color: #111e4b!important;
    }

  .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.invert span {
      background-color:#fff!important;
    }

  .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)
  }
}

/*gnav__sp__contact*
nav.gnav__sp .inner ul li.gnav__sp__contact {
  margin-top: 18px;
}

nav.gnav__sp .inner ul li.gnav__sp__contact a.btn {
  font-size: 15.5px;
  padding: 13.5px 2.5px;
  color: #fff;
}

nav.gnav__sp .inner ul li.gnav__sp__contact a.btn:after {
  display: none;
}




/*dropmenu*/
.menu__list {
  display: flex;
  justify-content: center;
}

.menu__item,
.menu-item-has-children {
  position: relative;
}

.menu__item:hover .dropmenu__list,
.menu-item-has-children:hover .sub-menu {
  visibility: visible;
}

.menu__item a,
.menu-item-has-children a {
  text-align: left!important;
  align-items: center;
  display: flex;
  height: auto;
  text-decoration: none;
  padding: 4.5px 0!important;
}

.drop__menu,
.menu-item-has-children {
  position: relative;
}

.drop__menu .dropmenu__list,
.menu-item-has-children .sub-menu {
  display: block;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 100%;
  visibility: hidden;
  width: max-content;
  min-width: 256px;
  padding:18px 45px 18px 0;
  text-align: left;
  z-index: 1234567;
}

.dropmenu__list li ,
.sub-menu li {
  display: block!important; 
  padding: 4.5px 0;
}

.dropmenu__list li a,
.sub-menu li a {
  display: block!important;
  transition-property: opacity;
  transition-duration:0;
  transition: 0;
}

.dropmenu__list .drop__menu__item,
.menu-item-has-children .sub-menu .menu-item {
  display: block!important;
  text-align: left;
}

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


.lang .dropmenu__list {
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: -120%!important;
  visibility: hidden;
  width: max-content;
  min-width: 100px;
  width:198px;
  padding:18px 0 18px 0;
  text-align: right;
  z-index: 1234567;
}
/*
  .gnav__pc li.menu__item ul li:after  {
    display: none;
  }
    
  .gnav__pc li.menu__item ul li a  {
    text-align: left!important;
    display: block;
    text-decoration: none;
    padding: 4.5px 0;
  }
*/


@media only screen and (max-width:767px) {
  nav.gnav__sp .inner .dropmenu__list {
    margin-top: 0;
  }

  nav.gnav__sp .inner ul .dropmenu__list a {
    margin-top: 0;
    margin-bottom: 0;
    padding-top:9px;
    padding-bottom:  18px;
    z-index: 12342;
  } 

}



/*mainvisual*/
.mainvisual {
  width: 100%;
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  margin: auto;
  z-index: 234;
}

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

.mainvisual__title {
  flex-basis: 100%;
  position: relative;
  z-index: 345;
}

.mainvisual__title span.ja {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 45px;
  line-height: 1.789;
  font-weight: 600;
  letter-spacing: 0.125em;
}

@media only screen and (max-width:767px) {
  .mainvisual {
    width: 100%;
    height: 250px;
  }

  .mainvisual__container {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: calc(108px / 1.1) 0
  }

    .station1 .mainvisual__container,
    .station2 .mainvisual__container,
    .station3 .mainvisual__container {
      padding: calc(108px / 1.5) 0
    }

  .mainvisual__title span.ja {
    font-size: calc(45px / 1.65);
    line-height: 1.456789;
    letter-spacing: calc(0.125em/ 4);
  }
}


/*:page__header*/
.page__header {
  width: 100%;
  height: 250px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  margin: auto;
  z-index: 234;
}

.page__header__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 90px 0
}

.page__header__title {
  flex-basis: 100%;
  position: relative;
  z-index: 345;
}

.page__header__title span.ja {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 40.5px;
  line-height: 1.789;
  font-weight: 600;
  letter-spacing: 0.0255em;
}

@media only screen and (max-width:767px) {
  .page__header {
    width: 100%;
    height:calc(250px / 1.5);
  }

  .page__header__container {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: calc(90px / 1.5) 0
  }

  .page__header__title span.ja {
    font-size: calc(40.5px / 1.65);
  }
}



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

Section Setting

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

.bg2 {
  background-color: #f0fafc;
}

.bg3 {
}

.bg4 {
}

.color1 {
  color: #fff;
}

.color2 {
}


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

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

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

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

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

}

/*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__title*/
.section__title.left,
.section__title.left span {
  text-align: left;
}

.section__title.cener,
.section__title.cener span {
  text-align: cener;
}

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

.section__title span.ja {
  font-size:40.5px;
  line-height: normal;
  font-weight:600;
}

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

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

@media only screen and (max-width:767px) {
  .section__title span.ja {
    font-size:calc(40.5px / 1.65);
  }

  .section__title span.ja.small {
    font-size:calc(36px / 1.56);
  }

  .section__title span.ja.xsmall {
    font-size:calc(31.5px / 1.511);
  }
}


/*wp-block-heading*/
.page .section h2.wp-block-heading {
  font-weight: bold;
  font-size: inherit;
}

.page .section .wp-block-list ,
.page .section .wp-block-list li {
  list-style-type: disc;
  margin-left: 0.5em;
}


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

.breadnav p {
  font-size: 15px;
  line-height: 2;
  margin-left: -0.5em;
}

.breadnav p span {
  margin-right: 0.25em;
  margin-left: 0.25em;
}

.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(36px / 1.5) 0 ;
  }

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

}

/*btn__menu
.btn__menu {
  background: #fff;
  border: 1.5px solid #11528a;
  text-align: center;
  color: #11528a;
  font-weight: 500;
  padding:13.5px 36px;
  background-position:92.5% 50% ;
  background-image: url(../img/icon__arrow2.png);
  background-size: calc(37px / 2);
  background-repeat: no-repeat;
}

  .btn__menu:hover,
  .btn__menu:focus  {
    color: #11528a;
  }

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

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

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

}


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

CTA Setting

---------------------------------------------------------- */
.cta {
  width: 100%;
  padding: 99px 0;
  background-image: url(../img/cta.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  margin: auto;
  z-index: 234;
}

.cta__container {
  padding-top:54px ;
  padding-bottom: 54px;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.90);
}

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

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

.cta__text p {
  text-align: justify;
}

.cta__btn {
  width: 400px;
  text-align: center;
  margin:45px auto 0;
}

.cta__btn  a {
  font-size: 20.5px;
}

@media only screen and (max-width:767px) {
  .cta {
    width: 100%;
    padding: calc(99px / 2) 0;
    background-size:cover;
    background-position: left center;
    z-index: 234;
  }

  .cta__container {
    padding:calc(54px / 1.5) 18px;
    border-radius: calc(27px / 1.5);
  }

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

  .cta__title span {
    font-size: calc(31.5px / 1.455);
    line-height: 1.456789;
  }

  .cta__btn {
    width: 100%;
    box-sizing: border-box;
    margin:calc(45px / 1.5) auto 0;
  }

  .cta__btn  a {
    font-size: calc(20.5px / 1.215);
  }

}


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

Home Setting

---------------------------------------------------------- */
/*home__mainvisual*/
.home__mainvisual {
  width: 100%;
  height:100%;
  position: relative;
  margin: auto;
  z-index: 234;
}

/*
.home__mainvisual__container {
  display:flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items:center;
  padding:90px 0;
}

.home__mainvisual__text {
  padding:90px 0;
  flex-basis: 100%;
}

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

.home__mainvisual__title img {
  width: calc(1083px / 2);
  margin: 0 0 0 -27px;
}

.home__mainvisual__btn {
  width: 418px;
  text-align: left;
  margin:72px 0 0;
}

.home__mainvisual__btn a.btn__primary {
  padding-top: 22.5px;
  padding-bottom: 22.5px;
  font-size: 24px;
}
*/

@media only screen and (max-width:767px) {
  .home__mainvisual {
    width: 100%;;
  }
/*
  .home__mainvisual__container {
    padding:calc(90px / 2.35) 18px;
  }

  .home__mainvisual__text {
    padding:calc(90px / 2.35) 0;
    flex-basis: 100%;
  }

  .home__mainvisual__title img {
    width: calc(1083px / 5);
    margin: 0 0 0 calc(-27px / 2);
  }

  .home__mainvisual__btn {
    width: calc(418px / 2);
    margin:calc(72px / 4) 0 0;
  }

  .home__mainvisual__btn a.btn__primary {
    padding-top: calc(22.5px / 2);
    padding-bottom: calc(22.5px / 2);
    font-size: calc(24px / 1.55);
  }

  .home__mainvisual__btn a.btn__primary:after {
    display: none;
  }
*/
}


/*home__message*/
.home__message {
  position: relative;
  padding-top: 72px;
}

.home__message__container {
  padding-top: 54px;
  padding-bottom: 54px;
}

.home__message__container p {
  text-align: center;
}

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

  .home__message__container {
    padding-top: calc(54px / 1.5);
    padding-bottom: calc(54px / 1.5);
  }

  .home__message__container p {
    text-align: left;
  }

}


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

.home__station__container {
  padding-top: 45px;
}

.home__station__list {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  margin-bottom: 45px;
}

.home__station__img  {
  flex-basis: 60%;
  z-index: 1;
}

.home__station__text {
  border-radius: 27px;
  padding: 72px ;
  box-sizing: border-box;
  flex-basis: 55%;
  margin-top: calc(90px + 45px);
  z-index: 34;
  background-color: rgba(255, 255, 255, 0.90);
}

  .home__station__list:nth-child(odd) .home__station__img {
    order: 1;
    margin-right: -10%;
  }

  .home__station__list:nth-child(odd) .home__station__text {
    order: 2;
    margin-left: -5%;
  }

  .home__station__list:nth-child(even) .home__station__img {
    order: 2;
    margin-left: -10%;
  }

  .home__station__list:nth-child(even) .home__station__text {
    order: 1;
    margin-right: -5%;
  }

.home__station__img , 
.home__station__img img {
  border-radius: 27px;
}

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

.home__station__title span.ja {
  display: block;
  text-align: center;
  margin:auto;
  line-height: 1.56789;
  font-weight: 600;
  font-size: 27px;
}

.home__station__text p {
  text-align: justify;
}

.home__station__btn {
  margin: 36px auto auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.home__station__btn li {
  flex-basis: 47.5%;
}

.home__station__btn li a.btn__primary {
  padding:13.5px 18px;
}

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

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

  .home__station__list {
    margin-bottom: calc(45px / 1.5);
  }

  .home__station__img  {
    flex-basis: 100%;
    z-index: 1;
  }

  .home__station__img , 
  .home__station__img img {
    border-radius: 27px 27px 0 0;
  }

  .home__station__text {
    border-radius: 0 0 27px 27px;
    padding: 9px 22.5px 18px;
    flex-basis: 100%;
    margin-top: 0
  }

  .home__station__list:nth-child(odd) .home__station__img ,
  .home__station__list:nth-child(even) .home__station__img {
    order: 1;
    margin-right: auto;
    margin-left:auto;
  }

  .home__station__list:nth-child(odd) .home__station__text ,
  .home__station__list:nth-child(even) .home__station__text {
    order: 2;
    margin-right:auto;
    margin-left:auto;
  }

  .home__station__title {
    margin: calc(27px / 2) auto ; 
  }

  .home__station__title span.ja {
    font-size: calc(30.5px / 1.315); 
  }

  .home__station__text p {
    text-align: justify;
  }

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

  .home__station__btn li {
    flex-basis: 48%;
  }

  .home__station__btn li a.btn__primary {
    padding:calc(13.5px / 1.5) calc(18px / 1.5);
    font-size: calc(18px/ 1.25);
  }

}


/*home__feature*/
.home__feature {
  position: relative;
  padding-top: 99px;
}

.home__feature__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding-top: 90px;
  padding-bottom: 45px;
}

.home__feature__list {
  flex-basis: 31.5%;
  margin:0 1.25%;
}

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

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

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

.home__feature__img img {
  text-align: center;
  margin: auto;
  width: calc(275px/ 2);
}

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

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

.home__feature__text p {
  text-align: justify;
  font-size: 16.789px;
  line-height: 2;
}

@media only screen and (max-width:767px) {
  .home__feature {
    padding-top: calc(99px /2);
    padding-bottom: 18px;
  }

  .home__feature__container {
    padding-top: calc(90px /1.5);
    padding-bottom:calc(45px / 45);
  }

  .home__feature__list {
    flex-basis: 100%;
    padding-left: 9px;
    padding-right: 9px;
    margin:1.25% auto 36px;
  }

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

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

  .home__feature__img img {
    width: calc(275px/ 4);
  }

  .home__feature__title {
    margin: calc(18px / 1.5) auto;
  }

  .home__feature__title span {
    font-size: calc(27px  /1.27);
  }

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

}


/*home__news*/
.home__news__container {
  padding:36px 72px;
  background: #fff;
  border-radius: 36px;
}

.home__news__btn {
  margin: 27px auto ;
  text-align: center;
  width: 300px;
}

.home__news__btn a {
  margin:  auto;
  text-align: center;
  font-size: 18px;
  padding: 13.5px 18px;
}

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

  .home__news__btn {
    margin: calc(27px / 1.5) auto ;
    width: 100%;
  }

  .home__news__btn a {
    font-size: calc(18px / 1.18);
    padding: calc(13.5px / 1.5) 18px;
  }

}


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

Station Setting

---------------------------------------------------------- */
/*station__menu*/
.station__menu {
  padding: 45px 0 0;
  text-align: center;
  margin: auto;
  border-bottom: 5px solid #2CA4FC;
}

.station__menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.station__menu__list li  {
  flex-basis: 31.75%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 0 1.15%;
}

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

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

.station__menu__list li a {
  text-align: center;
  flex-basis: 100%;
  border-radius: 13.5px 13.5px 0 0;
  display:block;
  text-decoration: none;
  font-size: 20.5px;
  line-height: 1.34567;
  background: #fff;
  font-weight: 600;
  transition: 0.5s all;
}
/*
  .station__menu__list li.station1 a {
    padding: 19px 18px 17px;
  }
*/

  .station__menu__list li.station1 a ,
  .station__menu__list li.station2 a ,
  .station__menu__list li.station3 a {
    background: #fff;
    padding:32.5px 18px 30.5px;
  }

.station__menu__list li a:focus,
.station__menu__list li a:hover,
.station__menu__list li.active a {
  opacity: 1;
  color: #fff;
  background: #2CA4FC;
  background: linear-gradient(0deg,rgba(44, 164, 252, 1) 0%, rgba(40, 214, 252, 1) 100%);
}

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

/*station__content*/
.station__content {
  position: relative;
  padding-top: 63px;
  padding-bottom: 0;
}

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

.station__nav {
  flex-basis: 200px;
  position: sticky;
  height: 100%;
  padding-bottom: 45px;
  top: 0;
}

.station__detail {
  flex-basis: calc(100% - 272px);
}


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

  .station__nav {
    order: 1;
    position: relative;
    flex-basis: 100%;
    padding-bottom: calc(45px /1.5);
  }

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

}

/*station__detail*/
.station__detail__head {
  margin: 0 auto;
  padding: 0;
  text-align: center; 
  position: relative;
  z-index: 12;
}

.station__detail__head img {
  border-radius: 27px;
  object-fit: cover;
  width: 100%;
  height: 540px;
}

.station__detail__container {
  position: relative;
  margin-top: calc(-90px - 54px);
  z-index: 34;
  margin-right: 2.5em;
  background: #fff;
  border-radius: 0 27px 0 0;
  padding: 45px 45px 90px 0;
}

.station__detail__block {
  margin-bottom: 72px;
}

.station__recruit__block {
  position: relative;
  margin-top: -9px;
  margin-bottom: 45px;
}

.station__detail__title ,
.station__detail__subtitle {
  text-align: left;
  margin: 0;
}

  .station__detail__title.border__bottom {
    border-bottom: 1px solid #ccc;
    padding-bottom: 18px;
    margin-bottom: 27px;
  }

.station__detail__title span {
  display: block;
  text-align: left;
  margin: 0;
  font-weight: 600;
  font-size: 30.5px;
}

.station__detail__subtitle span {
  display: block;
  text-align: left;
  margin: 0;
  font-weight: 600;
  font-size: 24.5px;
  padding-left: 27px;
}

  .station__detail__subtitle span:before {
    position: absolute;
    content: '●';
    left: 0;
    color: #2ec0fd;
    display: block;
    font-size: 24.5px;
  }

.station__detail__block p {
  text-align: justify;
}

.station__detail__table {
  margin-top: 13.5px;
}

.station__detail__map {
  margin-top: 9px;
  width: 100%;
}

.station__detail__map iframe {
  width: 100%;
  height: 300px;
}

.station__feature__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 9px;
  border: 1.5px solid #2ec0fd;
  padding: 13.5px 27px;
  margin: 18px 0;
}
      
.station__feature__list dt {
  flex-basis: 72px;
}
      
.station__feature__list dd {
  flex-basis: calc(100% - 72px);
  line-height: 1.56789;
}
        
.station__feature__list dt span.en.num {
  font-size: 54px;
  line-height: 1.2345678;
  font-style: italic;
  font-weight:bold;
  color: #2ec0fd;
} 

@media only screen and (max-width:767px) {
  .station__detail__head  {
    border-radius:27px 27px 0 0;
  }

  .station__detail__head img {
    border-radius:27px 27px 0 0;
    height: calc(540px / 2);
  }

  .station__detail__container {
    margin-top: 0;
    width: 100%;
    margin-right:auto;
    border-radius: 0 0 27px;
    padding: calc(45px / 1.5) 0
  }

  .station__detail__block {
    margin-bottom: calc(72px /1.5);
  }

  .station__recruit__block {
    margin-top: -4.5px;
    margin-bottom: calc(45px /1.5);;
  }

  .station__detail__title.border__bottom {
    padding-bottom: calc(18px /1.5);
    margin-bottom: calc(27px /1.5);
  }

  .station__detail__title span {
    font-size: calc(30.5px /1.455);
    line-height: 1.56789;
  }

  .station__detail__subtitle span {
    font-size: calc(24.5px / 1.255);
    padding-left: calc(27px / 1.5);
  }

  .station__detail__subtitle span:before {
    font-size:calc(24.5px / 1.255);
  }

  .station__detail__table {
    margin-top:calc(13.5px / 1.5);
  }

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

  .station__detail__map iframe {
    height: calc(300px / 1.25);
  }

  .station__feature__list dl {
    padding: calc(13.5px / 1.5) 18px;
    margin: calc(18px / 1.5) 0;
  }
        
  .station__feature__list dt {
    flex-basis: calc(72px / 1.5);
  }
        
  .station__feature__list dd {
    flex-basis: calc(100% - calc(72px / 1.5));
  }
          
  .station__feature__list dt span.en.num {
    font-size: calc(54px /1.6);
  } 

}

/*station__nav*/
.station__nav__list li {
  margin-bottom: 36px;
}

.station__nav__list li a {
  position: relative;
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 100px;
  padding:13.5px 18px ;
  text-align: center;
  color: inherit;
  font-size: 17px;
  font-weight: bold;
}

  .station__nav__list li a:hover ,
  .station__nav__list li a:focus  {
    opacity: 1;
    background: #2CA4FC;
    background: linear-gradient(90deg,rgba(44, 164, 252, 1) 0%, rgba(40, 214, 252, 1) 100%);
    color: #fff;
  }

.station__nav__list li a:after   {
  position: absolute;
  content: '';
  top: 1.125px;
  right: 18px;
  width: calc(15px / 2.25);
  height: 100%;
  background-position:100% 50% ;
  background-image: url(../img/icon__arrow2.png);
  background-size:calc(15px / 2.25);
  background-repeat: no-repeat;
}

  .station__nav__list li a:hover::after ,
  .station__nav__list li a:focus::after ,
  .station__nav__list a.active:after  {
    background-image: url(../img/icon__arrow1.png);
  }

@media only screen and (max-width:767px) {
  .station__nav__list li {
    margin-bottom: 0;
    text-align: left;
    border-bottom: 1px solid #ccc;
  }

    .station__nav__list li:nth-last-child(1) {
      border-bottom: none;
    }

  .station__nav__list li a {
    border-radius: 100px;
    padding:calc(13.5px / 1) 18px ;
    font-size: calc(17px / 1.17);
    border-radius: 0;
    text-align: left;
  }

  .station__nav__list li a:after   {
    position: absolute;
    content: '';
    top: 1.125px;
    right: 18px;
    width: calc(15px / 2.25);
    height: 100%;
    background-position:100% 50% ;
    background-image: url(../img/icon__arrow2.png);
    background-size:calc(15px / 2.25);
    background-repeat: no-repeat;
  }

}

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

つるみ在宅ケアネットワークについて

---------------------------------------------------------- */
.zaitaku {
  width: 100%;
  padding: 99px 0;
  margin-bottom: -1px;
  position: relative;
  z-index: 234;
}

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

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

.zaitaku__text {
  text-align: center;
}

.zaitaku__btn {
  width: 400px;
  text-align: center;
  margin:45px auto 0;
}

.zaitaku__btn  a {
  font-size: 20.5px;
}

@media only screen and (max-width:767px) {
  .zaitaku {
    width: 100%;
    padding: calc(99px / 2) 0;
    background-size:cover;
    background-position: left center;
    z-index: 234;
  }

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

  .zaitaku__title span {
    font-size: calc(31.5px / 1.455);
    line-height: 1.456789;
  }

  .zaitaku__text {
    text-align: justify;
  }

  .zaitaku__btn {
    width: 100%;
    box-sizing: border-box;
    margin:calc(45px / 1.5) auto 0;
  }

  .zaitaku__btn  a {
    font-size: calc(20.5px / 1.215);
  }

}

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

News Setting

---------------------------------------------------------- */
/*news__list*/
.news__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  border-bottom: 1px solid #ccc;
  padding: 27px 0;
}

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

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

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

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

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

}



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

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

.single__news__title span.ja {
  display: block;
  text-align: center;
  margin: auto;
  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 {
  border-radius: 200px;
  background: #0b4902;
  color: #fff;
  text-align: center;
  font-size: 15px;
  padding: 4.5px 22.5px;
}

.single__news span.cat a {
  display: block;
  text-decoration: none;
}

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

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

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

  .single__news__title span.ja {
    font-size:calc( 30.5px / 1.355);
  }

  .single__news__meta {
    padding: calc(45px / 1.5) 0 0;
  }

  .single__news__meta ul li  {
    margin-right: calc(18px / 1.5);
  }

  .single__news__meta ul li span.single__news__date  {
    font-size: calc(17px / 1.18);
  }

  .single__news span.cat {
    font-size: calc(15px / 1.15);
    padding: calc(4.5px / 1.5) 18px;
  }

  .single__news__entry  {
    padding: calc(54px / 1.5) 0;
  }

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

}


/*recent__news*/
.recent__news__container {
  padding:36px 72px;
  background: #fff;
  margin-top: 36px;
  border-radius: 36px;
}

.recent__news__btn {
  margin: 27px auto ;
  text-align: center;
  width: 300px;
}

.recent__news__btn a {
  margin:  auto;
  text-align: center;
  font-size: 18px;
  padding: 13.5px 18px;
}

@media only screen and (max-width:767px) {
  .recent__news__container {
    padding:calc(36px / 1.5) 18px;
    margin-top: calc(36px / 1.5);
    border-radius: calc(36px / 1.5);;
  }

  .recent__news__btn {
    margin: calc(27px / 1.5) auto ;
    width: 100%;
  }

  .recent__news__btn a {
    font-size: calc(18px / 1.18);
    padding: calc(13.5px / 1.18) 18px;
  }
}

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

Blog Setting

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

.blog__list {
  flex-basis: 31.32%;
  margin:0 1.5% 4.5%;
}

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

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

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

.news__list__image,
.news__list__image img {
  border-radius: 9px;
}

.news__list__text {
  margin-top: 9px;
}

@media only screen and (max-width:767px) {
  .blog__list {
    flex-basis: 100%;
    margin:0 auto 4.5%;
  }
,
  .blog__list:nth-child(3n),
  .blog__list:nth-child(3n) {
    margin-left: auto;
    margin-right: auto;
  }

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

}

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

Contact Setting

---------------------------------------------------------- */
/*contact__container*/
.contact__container {
  margin-top: 45px;
}

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

/*form__list*/
.form__list {
  margin-top: 18px;
  border-top: 1px solid #ccc;
}

.form__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid #ccc;
}

  .form__list dl:nth-last-child(1) ,
  .form__list dl:last-of-type {
    border-bottom:none;
  }

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

.form__list dd {
  flex-basis: 70%;

}

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

  .form__list dt {
    margin-bottom: 4.5px
  }

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

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

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

.wpcf7 select{/*
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:1px solid #ccc;
  padding: 22.5px;
  box-sizing:border-box;
  max-width: 100%;
  font-size: inherit;
}

.select select {*/
  box-sizing:border-box;
  width: 100%;
  outline: none;
  border:none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  color: #000;
  max-width: 100%;
  padding: 22.5px 45px 22.5px 22.5px;
  font-size: 18px;
}

.wpcf7 .select select::-ms-expand {
  display: none;
}

.wpcf7 .select {
  display: inline-block;
  position: relative;
  border-radius: 9px;
  border:1px solid #999;
  box-sizing:border-box;
  background: #fff;
}

.wpcf7 .select::before {
  position: absolute;
  top: 45%;
  right:9px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #999;
  pointer-events: none;
}

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

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

.wpcf7 .req ,
.wpcf7 .any {
  margin: -3px 9px 0 6px;
  display: inline-block;
  vertical-align: middle;
  padding: 4.5px 13.5px;
  text-align: center;
  font-size: 12px;
  font-weight: inherit;
  line-height: 1;/*
  border-radius: 4.5px;*/
}

  .wpcf7 .req {
    background: #b20000;
    color:#fff;
    border: 1px solid #b20000;
  }

  .wpcf7 .any {
    background: #fff;
    color:#403832;
    border: 1px solid #403832;
  }

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

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

@media only screen and (max-width:767px) {
  .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 {
    width: 100%;
  }

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

  .wpcf7 .form__approve {
    margin: calc(18px / 1.5) auto ;
  }

}


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

@media only screen and (max-width:767px) {
  .form__submit input[type=submit] {
    margin:calc(27px /1.5) auto ;
    width: 100%;
    padding: calc(18px /1) ;
  }

}


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

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

}


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

Footer Setting

---------------------------------------------------------- */
/*footer*/
.footer {
  border-top: 1px solid #dedede;
}

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

.footer__text {
  flex-basis: 30%;
}

.footer__sitemap {
  flex-basis: 60%;
}

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

.footer__logo img {
  width: 256px;
}

.footer__text p {
  text-align: justify;
  font-size: 17.123456px;
}

.footer__copyright {
  margin-top: 18px;
}

.footer__copyright address {
  display: block;
  font-size: 13px;
  color: #999;
  font-weight: 400;
  font-style: normal;
}

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

  .footer__text {
    flex-basis: 100%;
    order: 2;
    padding-top: 18px;
    padding-bottom: 63px;
  }

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

  .footer__logo  {
    margin: 18px 0 ;
    text-align: center;
  }

  .footer__logo img {
    width: 256px;
  }

  .footer__text p {
    text-align: center;
    font-size:calc(18px /1.18)
  }

  .footer__copyright {
    text-align: center;
    margin-top: calc(18px / 1.5);
  }

  .footer__copyright address {
    font-size:calc(13px /1.1)
  }

}


/*footer__sitemap*/
.footer__sitemap ul {
  columns: 2;
}

.footer__sitemap ul li {
  margin-bottom: 4.5px;
}

.footer__sitemap ul li a {
  display: block;
  font-size: 15.5px;
}

.footer__sitemap ul li a.blank img {
  pointer-events: none;
  margin-left: 9px;
  width: calc(30px/ 2.5);
}

@media only screen and (max-width:767px) {
  .footer__sitemap ul {
    columns: 1;
  }

  .footer__sitemap ul li {
    margin-bottom: auto;
    line-height: 3;
  }

  .footer__sitemap ul li a {
    font-size: calc(15.5px /1.165);
  }

}


.footer__nav__sp {
  display: none;
}

@media only screen and (max-width:767px) {
  .footer__nav__sp {
    display: block;
    position: fixed;
    z-index: 12345;
    bottom: 0;
    width: 100%;
    margin: auto;
  }

  .footer__nav__sp__container {
    padding: 0 ;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer__nav__sp__contact {
    flex-basis: 100%;
    height: 70px;
  }

  .footer__nav__sp__contact a {
    display: block;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    min-height: 70px;
    padding: 18px 0 0;
  }

  /*footer__nav__sp__list*/
  .footer__nav__sp__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height:80px;
  }

  .footer__nav__sp__list li {
    position: relative;
  }

    .footer__nav__sp__list li:nth-child(1) ,
    .footer__nav__sp__list li:nth-child(2) ,
    .footer__nav__sp__list li:nth-child(3) {
      flex-basis: calc(100% / 3);
    }

  .footer__nav__sp__list li a {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    background: #fff;
    text-decoration: none;
    margin: auto;
    line-height: 1.345678;
    min-height: 80px;
    padding:18px 0 36px;
  }

  .footer__nav__sp__list li.active a {
    color: #fff;
    background: #2CA4FC;
    background: linear-gradient(90deg,rgba(44, 164, 252, 1) 0%, rgba(40, 214, 252, 1) 100%);
  }

}

