@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}
}

/*  基本スタイル */
:root {
  --color1: #fff;
  --color2: #3eab76;/*main*/
  --color3: #f09908;/*sub*/
  --color4: #fef6ea;
  --color5: #f7f4ed;
  --bg1: #fff;
  --bg2: #3eab76;/*main*/
  --bg3: #f09908;/*sub*/
  --bg4: #fef6ea;/*line*/
  --bg5: #f7f4ed;
}

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: "Zen Maru Gothic", 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: 767px) {
  a:hover {
    opacity: 1.0; 
  }
}

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

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

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

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

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

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

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

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

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

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


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

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

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

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

Btn Setting

---------------------------------------------------------- */
/*btn*/
.btn, 
button[type="button"], 
input[type="button"], 
input[type="submit"]  {
  display:block;
  text-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;
  border-radius:90px;
}

.btn__primary {
  background: #008bd1;
  border: 1px solid #008bd1;
  text-align: center;
  color: #fff;
  font-weight: 600;
  padding:13.5px 36px;
}

  .btn__primary:hover,
  .btn__primary:focus  {
    color: #ffff
  }

.btn__secondary {
  background:#008bd1;
  border: 1px solid #fff;
  text-align: center;
  font-weight: 600;
  color: #fff;
  padding:13.5px 36px;
}

  .btn__secondary:hover,
  .btn__secondary:focus  {
    color: #dedede;
  }
/*
.btn__line {
  background-color:var(--color4);
  border: 1px solid var(--color4);
  text-align: center;
  color: #fff;
  padding:13.5px 36px;
}

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

.btn__line img.icon__line {
  max-width: calc(72px/ 2);
  margin-right: 2.25px;
}
*/

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

  .btn__secondary {
    padding:13.5px 18px;
  }

}

/*btn__arrow*/
.btn__arrow  {
  display: block;
  background-position:93.5% 50% ;
  background-image: url(../img/icon__arrow2.png);
  background-size: calc(10px / 1.25);
  background-repeat: no-repeat;
}

  .btn__primary.btn__arrow {
    background-position:93.5% 50% ;
    background-image: url(../img/icon__arrow2.png);
    background-size: calc(10px / 1.25);
    background-repeat: no-repeat;
  }

  .btn__line.btn__arrow {
    background-position:93.5% 50% ;
    background-image: url(../img/icon__arrow2.png);
    background-size: calc(10px / 1.25);
    background-repeat: no-repeat;
  }


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

}

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

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

select{
  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
.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.w20 th {
  width: 20%;
}

table.w30 th {
  width: 30%;
}

table.w35 th {
  width: 35%;
}

table.w40 th {
  width: 40%;
}

table.w45 th {
  width: 45%;
}

table.w50 th {
  width: 50%;
}

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

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

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

table.table__bordered tr td {
  text-align: left;
  font-weight: 400;
  border-bottom: 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:767px) {
  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:27px 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: #f2f2f5;
  }

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

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

  .table__striped.table__responsive tr th,
  .table__striped.table__responsive tr td,
  .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__lis
.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:767px) {

}

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

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;
  color: #222;
  font-weight: normal;
  font-size:18px;
  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__large  {
  width:1280px;
  max-width: 1980px;
  margin:auto;
}
*/
.container  {
  width:1180px;
  max-width: 1980px;
  margin:auto;
}

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

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

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

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

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

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

.container__xxxxxnarrow {
  max-width:468px;
  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__large,
  .container,
  .container__middle,
  .container__narrow,
  .container__xnarrow,
  .container__xxnarrow,
  .container__xxxnarrow,
  .container__xxxxnarrow,
  .container__xxxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box
  }

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

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

}

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

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

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

Header Setting

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

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

.topbar__container .logo {
  flex-basis: 144px;
}

.topbar__right {
  flex-basis: calc(100% - 170px);
}

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

.topbar__tel {
  flex-basis:330px
}

.topbar__line {
  flex-basis:320px;
}

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

.topbar__tel a span {
  display: block;
  line-height: 1.1234567;
  color: #008bd1;
  text-align: center;
}

.topbar__tel a span.text {
  font-size: 13.5px;
}

.topbar__tel a span.tel {
  font-size: 45px;
  color: #008bd1;
  font-weight: bold;;
}

.topbar__tel a img {
  margin-right: 2.25px;
  width: calc(51px / 2);
  vertical-align: middle;
  margin-top: -4.5px;
  margin-right: -4.5px;
}

.topbar__line img {
  width: calc(49px /2);
  margin-right: 9px;
}

.topbar__line a {
  display: block;
  background-image: url(../img/icon__arrow1.png);
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: calc(12px / 1.5);
  background-color:#3fbc56;
  text-align: center;
  color: #fff;
  font-weight:bold;
  border-radius: 100px;
  text-decoration: none;
  padding:16.25px 9px;
}

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

  .topbar__container .logo {
    flex-basis: 78px;
    text-align: center;
    margin: auto;
  }

  .topbar__right {
    flex-basis:100%;
  }

  .topbar__contact {
    display: none;
  }
}


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

.gnav__pc {
  margin:auto;
  padding: 18px 0 0;
  text-align: right;
}

.gnav__pc ul.gnav__pc__list li {
  display: inline-block;
  text-align: center;
}

.gnav__pc ul.gnav__pc__list li a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 0 13.5px;
}

.gnav__pc ul.gnav__pc__list li a:after {
  content: '｜';
  margin-left: 27px;
  font-size: 14px;
  color: #999;
}

.gnav__pc ul.gnav__pc__list li:nth-last-child(1) a:after {
  content:'';
}

.gnav__pc ul.gnav__pc__list li:nth-last-child(1) a {
  padding-right: 0;
  margin-right: -18px;
}

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




/*gnav_pc*/
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:-55%;
    bottom:0;
    width:55%;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transition:all .5s;
    opacity:0;
    background:#008bd1;
    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: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:17px;
    font-weight: 500;
    padding:20.25px 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:22.5px;
    right:1em;
    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:#008bd1;
    border-radius:0;
    transition:all .5s;
  }

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

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

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

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

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

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

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



/*home__mainvisual*/
.home__mainvisual {
  width: 100%;
  height: 100%;
  max-height:700px;
  background: #f8f4ef;
  border-radius: 0 120px 0 0;
}

.home__mainvisual img {
  pointer-events: none;
  border-radius: 0 120px 0 0;
}

@media only screen and (max-width:767px) {
  .home__mainvisual {
    width: 100%;
    height: 100%;
    max-height:100%;
    background: #f8f4ef;
    border-radius: 0 calc(120px / 2) 0 0;
  }

  .home__mainvisual img {
    pointer-events: none;
    border-radius: 0 calc(120px / 2) 0 0;
  }
}

/*mainvisual*/
.mainvisual {
  width: 100%;
  height:500px;
  background-repeat: no-repeat!important;
  background-position: top center!important;
  background-size: 100%!important;
  z-index: 1;
  border-radius: 0 120px 0 0;
}
  
  .mainvisual.small {
    height: auto;
    padding: 90px 0 0;
    border-radius:0;
  }

.mainvisual:after  {
  content: '';
  position: absolute;
  top:0;
  left: 0;
  mix-blend-mode:screen;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mainvisual__container {
  width: 100%;
  height: 72.5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 0 120px 0 0;
}

.mainvisual__title {
  flex-basis: 100%;
  text-align: center;
  margin: auto;
  font-size: 49.5px;
  font-weight: 700;
  position: relative;
  z-index: 12345!important;
  letter-spacing: 0.175em;;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

  .mainvisual.small .mainvisual__title {
    font-size: 30.5px;
  }


.mainvisual__title:after {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  margin: auto;
  text-shadow: 0 0 20px rgba(255, 255, 255, 1);
}

@media only screen and (max-width:767px) {
  .mainvisual {
    height:calc(450px / 1.5);
    z-index: -1!important;
    background-size: cover!important;
    border-radius: 0 calc(120px / 2) 0 0;
  }

  .mainvisual__container {
    width: 100%;
    border-radius: 0 calc(120px / 2) 0 0;
    height: 75%;
  }

  .mainvisual__title {
    font-size: calc(49.5px / 1.75);
    letter-spacing: calc(0.175em / 1.6);;
  }

}

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


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

Section Setting

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

.color1 {
  color:#fff;
}

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

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

/*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 {
  text-align: cener;
  margin: auto;
}

.section__title span {
  display: block;
  text-align: center;
  margin: auto;
  letter-spacing: 0.075em;
  font-weight: 600;
}

.section__title span.ja {
  font-size:30.5px;
  margin-bottom: 27px;
  line-height: normal;
}

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

.section__title span.ja:after {
  content:'';
  position: absolute;
  top:27px;
  display: ;
  left: calc(50% - calc(100px / 2));
  margin-top: 45px;
  width: 100px;
  height: 5px;
  border-top: 5px solid #008bd1;
}

  .single .section__title span.ja:after {
    display: none;
  }

  .section__title span.ja.small:after {
    left: calc(50% - calc(60px / 2));
    top: 4.5px;
    width: 60px;
    height: 4px;
    border-top: 4px solid #008bd1;
  }
  
  .section__title.left,
  .section__title span {
    text-align: left;
  }

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

@media only screen and (max-width:767px) {
  .section__title span {
    letter-spacing: calc(0.075em / 1.5);
  }

  .section__title span.ja {
    font-size:calc(30.5px / 1.325);
    margin-bottom: calc(27px / 1.5);
  }

  .section__title span.ja.small {
    font-size: calc(27px / 1.3);
  }
/*
  .section__title span.ja:after {
    content:'';
    position: absolute;
    top:27px;
    display: ;
    left: calc(50% - calc(100px / 2));
    margin-top: 45px;
    width: 100px;
    height: 5px;
    border-top: 5px solid #008bd1;
  }

  .single .section__title span.ja:after {
    display: none;
  }

  .section__title span.ja.small:after {
    left: calc(50% - calc(60px / 2));
    top: 4.5px;
    width: 60px;
    height: 4px;
    border-top: 4px solid #008bd1;
  }
*/

}


/*section__subtitle*/
.section__subtitle {
  text-align: cener;
}

.section__subtitle span.ja {
  display: block;
  margin: auto;
  font-size:29.25px;
  text-align: center;
  background: #edf7fc;
  line-height: 1.7;
  padding: 13.25px 0;
  letter-spacing: 0.125em;
  font-weight: 600;
}

@media only screen and (max-width:767px) {
  .section__subtitle span.ja {
    font-size:calc(29.25px / 1.355);
    letter-spacing:calc(0.125em /2);
    padding:calc(13.25px /1.5) 0;
  }

}


/*mask*/
.main__container {
  border-radius: 0 0 18px 18px;
  position: relative;
  padding-bottom: 54px;
  background-color: #fff;
  z-index: 34;
}

  .home .main__container {
    padding: calc(90px + 90px + 45px) 0 90px;
    margin-top: calc(-90px - 45px);
    position: relative;
    z-index: 1;
  }

.maks1 {
  margin-top: calc(-90px - 90px - 45px);
  margin-bottom: -300px;
  z-index: 1;
  position: relative;
}

.maks1 img  {
  width: 100%;
  text-align: center;
  margin: auto;
  pointer-events: none;
}

.maks2 {
  margin-top: calc(-270px - 9px);
  z-index: -1;
  position: relative;
}

.maks2 img  {
  width: 100%;
  text-align: center;
  margin: auto;
  pointer-events: none;
}

@media only screen and (max-width:767px) {
  .main__container {
    position: relative;
    padding: 0 1em calc(90px / 3);
    width: calc(100% + 2em);
    margin-left: -1em;
    margin-right: -1em;
    margin-bottom: 2em;
  }

  .home .main__container {
    padding:calc(calc(90px + 90px + 45px) / 2) 0 calc(90px / 3);
    margin-top: calc(-45px - 22.5px);
    position: relative;
    z-index: 1;
  }

  .maks1 {
    margin-top: calc(-45px - 45px - 45px);
    margin-bottom: -100px
  }

  .home .maks1 {
    margin-bottom: -100px
  }

  .maks1 img  {
    width: 100%;
  }

  .maks2 {
    margin-top: calc(-99px - 9px);
  }

}


/*breadnav*/
.breadnav {
  padding: 36px 0 0;
  position: relative;
  margin-bottom: -45px;
  z-index: 234;
}

.breadnav p {
  font-size: 14.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:767px) {
  .breadnav {
    padding:alc(36px / 1.5) 0 0;
    margin-bottom: -18px;
    margin-top: 22.5px;
  }

  .breadnav p {
    font-size: calc(15.5px / 1.12)
  }

}


/*balloon
.balloon {
  position: relative;
  display: inline-block;
  margin: 1.25em 0;
  padding: 4.5px 27px;
  max-width: 100%;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.09em;
  font-weight: 600;
  border-radius: 60px;
  background: #008bd1;
}

.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -9px;
  border: 9px solid transparent;
  border-top: 9px solid #008bd1;
}

.balloon p,
.balloon h2,
.balloon h3 {
  font-size: inherit;
  font-weight: bold;
}

@media only screen and (max-width:767px) {
  .balloon {
    margin: calc(1.25em / 1.5) 0;
    padding:calc(4.5px / 1.5) calc(27px / 1.5);
    font-size:calc(18px / 1.25);
    border-radius: calc(60px / 1);
  }

  .balloon:before {
    top: 100%;
    left: 50%;
    margin-left: -9px;
    border: 9px solid transparent;
    border-top: 9px solid #008bd1;
  }

}


/*section__nav
.section__nav__list {
  margin: auto;
  text-align: center;
}

.section__nav__list li {
  display:inline-block;
  vertical-align: middle;
  margin: 0 4.5px;
  text-align: center;
}

.section__nav__list li a {
  padding:13.5px 72px;
}

.section__nav__list li a:hover,
.section__nav__list li a:focus  {
  color: #fff;
}

@media only screen and (max-width:767px) {
  .section__nav__list {
    margin: calc(54px / 1.5) auto calc(18px /1.5)
  }

  .section__nav__list li {
    margin: 4.5px auto;
    width: 100%;
  }

  .section__nav__list li a {
    padding:calc(13.5px /1.5) 18px;
  }

}


/*common__service
.common__service {
  background-image: url(../img/bg__mask1.png);
  background-position: 100% 0;
  background-repeat: no-repeat;
  text-align: center;
  z-index: 12;
  padding-top: 0;
  position: relative;
}

@media only screen and (max-width:767px) {
  .common__service {
    background-size: 200%;
  }

  .common__service__inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin:auto;
    z-index: 2;
    margin-bottom: -24px;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, var(--color5) 50%, var(--color5) 100%);
  }

}


/*payment*/
.payment__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

  .home .payment__container {
    padding:18px 54px;
  }

  .service .payment__container {
    padding: 45px 72px 0 45px;
  }

.payment__text {
  flex-basis: 100%/*;
  flex-basis: 62%;*/
}

  .home .payment__text {
    font-size: 18px;
  }

.payment__title {
  display: none;
}

  .home .payment__title {
    display: block;
    text-align: center;
    margin: auto;
    font-weight: 600;
    font-size: 20px;
  }
/*
.payment__img {
  flex-basis: 30%;
}*/

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

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

  .home .payment__text {
    text-align: center;
    font-size: calc(18px / 1.25);
  }
  
  .home .payment__title {
    font-size: calc(20px / 1.25);
  }
/*
  .payment__img {
    order: 2;
    margin-top: 18px;
    flex-basis: 100%;
    padding: 0 2em;
  }
*/
}


/*common__menu*/
.common__menu  {
  margin-top:auto;
  position: relative;
  z-index: 23;
}

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

.common__menu__list li {
  flex-basis: 49%;
  margin: 0 1% 2%;
  border: 1.5px solid #008bd1;
  border-radius: 9px;
  background: #fff;
  padding:11.25px 36px;
}

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

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

.common__menu__list li a {
  display: block;
  text-decoration: none;
  text-align: left;
  background-image: url(../img/icon__arrow2.png);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size:calc(12px/ 1.5) ;
}

.common__menu__list li a img {
  width: calc(71px / 2.25);
  display: inline-block;
  margin-right: 18px;
  vertical-align: middle;
}

.common__menu__list li a span {
  display: inline-block;
  vertical-align: middle;
  color: #008bd1;
  font-size: 19.5px;
  font-weight: 500;
}

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

  .common__menu__list li {
    flex-basis: 100%;
    margin: 1% auto ;
    border: 1.25px solid #008bd1;
    padding:11.25px 18px;
  }

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

  .common__menu__list li a {
    background-size:calc(12px/ 1.5) ;
  }

  .common__menu__list li a img {
    width: calc(71px / 3.75);
    margin-right:calc(18px / 1.5);
  }

  .common__menu__list li a span {
    font-size: calc(19.5px / 1.205);
  }
}


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

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

.withmal p.center {
  font-size: 14px;
  margin-top: 9px;
  font-weight: 600;
}

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

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

  .withmal p.center {
    font-size: calc(14px / 1.25);
    margin-top:calc(9px / 1.5);
  }

}

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

Block Setting

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

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


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

Clendar Setting

---------------------------------------------------------- */
/*calendar__table*/
.calendar__table table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1.5px solid #008bd1;
  border-left: 0;
  border-right: 0;
}

.calendar__table thead th {
  text-align: center;
  border: none;
  border-bottom: 1.5px solid #008bd1;;
  padding: 2.25px 2.25px ;
}

.calendar__table tbody th ,
.calendar__table tbody td   {
  background: #fff;
  text-align: center;
  border-bottom: 1.5px solid #008bd1;;
  padding: 9px 2.25px ;
}

  .calendar__table tbody tr:nth-last-child(1) th ,
  .calendar__table tbody tr:nth-last-child(1) td   {
    border-bottom: none;
  }

.calendar__table tbody th {
  width: 26%;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.calendar__table tbody td  {
  width: 7%;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

  .calendar__table table.top thead th,
  .calendar__table table.top tbody td,
  .calendar__table table.top tbody td {
    vertical-align: top;
  }

  .calendar__table table.middle thead th,
  .calendar__table table.middle tbody td,
  .calendar__table table.middle tbody td {
    vertical-align: middle;
  }

.calendar__table tbody td   {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

  .calendar__table tbody td span  {
    color: #008bd1;;
    font-weight: 600;
    font-size: 22.5px;
    text-align: center;
  }

  .calendar__table tbody td span.triangle  {
    color:#008bd1;;
    font-weight: 600;
    font-size: 22.5px;
    text-align: center;
  }

.calendar__caution   {
  display: block;
  text-align: center;
  margin-top: 9px;
  font-size:15px;
}

  .calendar__caution.right   {
    text-align: right;
  }

@media only screen and (max-width:767px) {
  .calendar__table thead th {
    text-align: center;
    border: none;
    border-bottom: 1.5px solid #008bd1;;
    padding: calc(2.25px / 1.5) calc(2.25px / 4) ;
  }

  .calendar__table tbody th ,
  .calendar__table tbody td   {
    padding: calc(9px / 3) calc(2.25px / 4) ;
  }

  .calendar__table tbody th {
    width: 29%;
    font-size: calc(16px / 1.1);
  }

  .calendar__table tbody td  {
    width: 5%;
    font-size: calc(16px / 1.1);
  }

  .calendar__table tbody td   {
    font-size:calc(18px / 1.2);
  }

  .calendar__table tbody td span  {
    font-size:calc(22.5px / 1.29);
  }

  .calendar__caution   {
    margin-top: calc(9px / 1.5);
    font-size: calc(15px / 1.15);
  }

}


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

Home Setting

---------------------------------------------------------- */
/*home*/
.home .calendar__table  {
  padding-top: 13.5px;
}

.home .calendar__table br.footer {
  display: none;
}

.home .calendar__table thead th   {
  background: #edf7fc;
  text-align: center;
  padding: 9px 2.25px ;
}

.home .calendar__table tbody th ,
.home .alendar__table tbody td   {
  background: #fff;
  text-align: center;
  border-bottom: 1.5px solid #008bd1;;
  padding: 36px 2.25px ;
}

.home .calendar__table   {
  margin-bottom: 9px;
}

.home .calendar__caution {
  text-align: right;
}

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

  .home .calendar__table br.footer {
    display: none;
  }

  .home .calendar__table thead th   {
    padding: calc(9px / 1.5) 2.25px ;
  }

  .home .calendar__table tbody th ,
  .home .alendar__table tbody td   {
    border-bottom: 1.5px solid #008bd1;;
    padding: calc(36px / 3)  2.25px ;
  }

  .home .calendar__table   {
    margin-bottom: 9px;
  }

}


/*home__info*/
.home__info {
  position: relative;
  padding: 0 0 90px;
  z-index: 234;
}

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

.home__info__list {
  flex-basis: 45%;
}

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

.home__info__title span {
  display: block;
  text-align: left;
  margin: 0;
  font-size: 27px;
  font-weight: bold;
}

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

  .home__info__container {
    padding-top: 27px;
  }

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

  .home__info__title {
    margin-bottom: 9px;
  }

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

  .home__calendar {
    margin-bottom: -36px;
  }
}


/*home__about*/
.home__about {
  position: relative;
  z-index: 34;
  margin-top:63px;
  background-color: #008bd1; 
  border-radius: 120px 0 120px 0;
}

.home__about__title  {
  text-align: cener;
  margin: auto;
}

.home__about__title span {
  display: block;
  text-align: center;
  letter-spacing: 0.075em;
  font-weight: 600;
  font-size: 30.5px;
  line-height: normal;
}

.home__about__title span.ja:after {
  content:'';
  position: absolute;
  top:27px;
  display: ;
  left: calc(50% - calc(72px / 2));
  margin-top: 45px;
  width: 72px;
  height: 5px;
  border-top: 5px solid #fff;
}

.home__about__container {
  border-radius: 36px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin-top: 72px;
}

.home__about__img {
  flex-basis:47.5%;
  order: 1;
}

.home__about__text {
  flex-basis: 52.5%;
  padding: 54px 72px;
  order: 2
}

.home__about__text p {
  font-size: 18px;
  line-height: 1.9;
}

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

@media only screen and (max-width:767px) {
  .home__about {
    margin-top:calc(63px / 2);
    background-color: #008bd1; 
    border-radius: calc(120px / 2) 0 calc(120px / 2) 0;
  }

  .home__about__title span {
    letter-spacing: 0;
    font-size: calc(30.5px / 1.4);
  }

  .home__about__title span.ja:after {
    top:calc(27px / 1.5);
    left: calc(50% - calc(calc(72px /2) / 2));
    margin-top: calc(45px / 1.5);
    width: calc(72px /2);
    height: calc(5px /1.5);
    border-top: calc(5px /1.5) solid #fff;
  }

  .home__about__container {
    border-radius: calc(36px /1.5);
    margin-top: calc(72px /1.5);
  }

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

  .home__about__text {
    flex-basis:100%;
    order: 1;
    padding: calc(54px / 2) 22.5px;
  }

  .home__about__text p {
    font-size: calc(18px / 1.18);
    line-height: 2;
  }

  .home__about__img img {
    border-radius:  0 0 calc(36px/ 1.5) calc(36px/ 1.5);
    object-fit: cover;
    width: 100%;
    height: 360px;
  }
}

/*home__animals*/
.home__animals {
  position: relative;
  border-radius: 27px;
  border: 1.5px solid #008bd1;
  padding:18px 36px 27px;
  margin: 36px 0 0 9px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 122;
}

.home__animals:before {
  position: absolute;
  content: '';
  top: -9px;
  left: -9px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 27px;
  border: 1.5px solid #008bd1;
}

.home__animals__text {
  flex-basis: 20%;
}

.home__animals__img {
  flex-basis: 80%;
}

.home__animals__title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.home__animals__title span {
  display: block;
  color:#008bd1 ;
  font-size: 24px;
  font-weight: bold;
}

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

.home__animals__img ul li {
  flex-basis: 45%;
}

.home__animals__img li img ,
.home__animals__img li span {
  display: block;
  margin: auto;
  text-align: center;
}

.home__animals__img img {
  width: calc(237px /2);
}

.home__animals__img li span {
  font-size: 18px;
  font-weight: bold;
}

@media only screen and (max-width:767px) {
  .home__animals {
    border-radius: calc(27px /1.5);
    border: calc(1.5px / 1.5) solid #008bd1;
    padding:calc(18px / 2) 18px calc(27px / 1);
    margin: calc(36px /1.5) 0 0 calc(9px /1.5);
    z-index: 122;
  }

  .home__animals:before {
    top: -7.25px;
    left: -7.25px;
    border-radius: calc(27px /1.5);
    border: calc(1.5px / 1.5) solid #008bd1;
  }

  .home__animals__text {
    flex-basis: 100%;
    text-align: center;
    margin: auto;
  }

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

  .home__animals__title {
    -ms-writing-mode: initial;
    writing-mode: initial;
  }

  .home__animals__title span {
    font-size: calc(24px / 1.25);
  }

  .home__animals__img ul li {
    flex-basis: 45%;
  }

  .home__animals__img img {
    width: calc(237px /2);
  }

  .home__animals__img li span {
    font-size:calc(18px / 1.18)
  }

}

/*home__payment*/
.home__payment__container {
  border-radius: 24px;
  margin-top: 18px;
  background: #fff;
  padding: 9px 36px;
  margin: auto ;
  border: 3px dotted #aaa;
}

@media only screen and (max-width:767px) {
  .home__payment__container {
    border-radius: calc(24px / 1.5);
    margin: calc(18px / 18) 1em 18px;
    width: calc(100% - 2em);
    padding: calc(9px / 1.5) 0;
    border: 3px dotted #aaa;
  }

}

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

About Setting

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

.about__text {
  flex-basis: 100%;/*
  flex-basis: 50%;*/
  order: 1;
}

.about__img {/*
  flex-basis: 45%;*/
  display: none;
  order:2;
}

.about__text p {
  text-align: justify;
}

.about__img img {
  border-radius: 24px;
}

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

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

  .about__img {
    flex-basis: 100%;
    order: 2;
    padding: 0 2em;
    margin: 36px auto auto;
  }

}

/*facilitie*/
.facilities__container {
  padding-top:36px;
}

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

.facilities__list li {
  flex-basis:47%;
  margin:18px 2.5%;
}

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

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

.facilities__list li img {
  border-radius: 36px;
  text-align: center;
  margin: auto;
  z-index: 1;
}

.facilities__list li p {
  padding:9px 0;
  box-sizing: bold;
  position: relative;
  z-index: 2;
  display: block;
  font-size: 22.5px;
  color: #008bd1;
  font-weight: 500;
  text-align: center;
  margin:auto;
}


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

  .facilities__list li {
    flex-basis: 100%;
    margin:calc(18px / 3) auto;
  }

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

  .facilities__list li img {
    border-radius: calc(36px /1.5);
    margin-bottom: -4.5px;
  }

  .facilities__list li p {
    padding:9px 0;
    z-index: 2;
    font-size: calc(22.5px / 1.3);
  }

}

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

Service Setting

---------------------------------------------------------- */
/*service__list*/
.service__list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: top;
  padding-top: 54px;
}

.service__list ul li {
  margin: 0 18px;
  flex-basis: 25%;
}

.service__list ul li img {
  display: block;
  text-align: center;
  margin: auto;
  width: calc(300px / 2);
  height: auto;
}

.service__list ul li span.ja {
  display: block;
  font-size: 22.5px;
  font-weight: bold;
  text-align: center;
  margin: auto;
}

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

  .service__list ul li {
    margin: 0 calc(18px / 1.5);
    flex-basis: 25%;
  }

  .service__list ul li img {
    width: calc(300px / 3);
  }

  .service__list ul li span.ja {
    font-size: calc(22.5px / 1.25);
  }
}


/*service__caution*/
.service__caution ul {
  padding-top: 45px;
}

.service__caution ul li  {
  padding: 18px 72px ;
  border-bottom: 1px dotted #aaa;
}

.service__caution ul li span {
  display: block;
  background-image: url(../img/icon__check1.png);
  background-position: 0 7.25px;
  background-repeat: no-repeat;
  line-height: 1.9;
  font-weight: 500;
  font-size:19px;
  padding-left: 54px;
  background-size: calc(69px / 2) calc(55px / 2);
}

.service__caution p.text {
  display: block;
  text-align: center;
  margin:18px auto auto;
}

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

  .service__caution ul li  {
    padding: calc(18px / 1.5) 18px ;
  }

  .service__caution ul li span {
    display: block;
    background-image: url(../img/icon__check1.png);
    background-position: 0 7.25px;
    font-size:calc(19px / 1.205);
    padding-left:calc(54px / 1.5);
    background-size: calc(69px / 3) calc(55px / 3);
  }

  .service__caution p.text {
    margin:calc(18px / 1.5) auto auto;
  }

}

/*service__info*/
.service__info__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 45px;
}

.service__info__list {
  flex-basis: 48%;
  margin: 0 1%;
}

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

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

.service__info__head {
  background-color: #edf7fc;
  border: 5px solid #edf7fc;
  border-radius: 18px 18px 0 0;
  padding: 36px 36px 18px;
}

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

.service__info__icon img {
  width: calc(197px / 2);
}

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

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

.service__info__body {
  background-color: #fff;
  border: 5px solid #edf7fc;
  border-radius: 0 0 18px 18px;
  padding: 22.5px 36px;
}

@media only screen and (max-width:767px) {
  .service__info {
    padding-bottom: 18px;
  }

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

  .service__info__list {
    flex-basis: 100%;
    margin:auto auto 45px;
  }

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

  .service__info__head {
    border: calc(5px / 1.5) solid #edf7fc;
    border-radius: calc(18px / 1.5) calc(18px / 1.5) 0 0;
    padding: calc(36px / 1.5) 18px ;
  }

  .service__info__icon {
    margin:-45px auto 9px;
  }

  .service__info__icon img {
    width: calc(197px / 3);
  }

  .service__info__ttile span {
    font-size: calc(24px / 1.3);
  }

  .service__info__body {
    border: calc(5px / 1.5) solid #edf7fc;
    border-radius: 0 0 calc(18px / 1.5) calc(18px / 1.5);
    padding: calc(22.5px / 1.5) 18px;
  }

}

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

Access Setting

---------------------------------------------------------- */
/*access__map*/
.access__map {
  width: 100%;
  border-radius: 36px;
  margin: 36px auto;
}

.access__map  {
  border-radius: 36px;
  width: 100%;
}

.access__map iframe {
  border-radius:18px;
  width: 100%;
  height: 400px;
}

@media only screen and (max-width:767px) {
  .access__map {
    width: 100%;
    border-radius: calc(36px / 1.5);
    margin: calc(36px / 1.5) auto;
  }

  .access__map iframe {
    border-radius: calc(36px / 1.5);
    height: calc(400px / 1.5);;
  }

}

/*access__root*/
.access__root__container {
  border-radius: 36px;
  background-color: #fff;
  padding:18px 0 ;
}

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

.access__root__text {
  flex-basis:50%;
}

.access__root__img {
  flex-basis: 49%;
}

.access__root__title   {
  font-size: 20.25px;
  font-weight: bold;
}

.access__root__title:before   {
  content: '●';
  color:#ca6273;
}

.access__root__list p {
  text-align: justify;
}

.access__root__img img {
  border-radius: 18px;
}

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

  .access__root__text ,
  .access__root__img {
    flex-basis:100%;
    margin-bottom: 18px;
  }

  .access__root__title   {
    font-size: calc(20.25px / 1.225);
  }

  .access__root__list p {
    font-size: calc(16px /1.1)
  }

  .access__root__img img {
    border-radius: calc(18px / 1.5);
    margin-top: calc(18px / 1.5);
  }

}

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

News Setting

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

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

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

.news__list dl dt {
  flex-basis: 15%;
  margin-top: 0.125em;
}

.news__list dl dd {
  flex-basis: 85%;
  text-align: left;
}

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

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

.news__list dl dt span.en {
  display: block;
  font-weight: 500;
}

.news__list dl dd a {
  display: block;
  color: #008bd1;
}

@media only screen and (max-width:767px) {
  .news__list {
    padding-bottom:9px;
  }

  .news__list dl {
    padding: calc(18px / 1.25) 0;
  }

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

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

}

/*single-news*/
.single__news {
  padding-top: calc(90px + 45px)
}

.single__date {
  display: block;;
  font-size: 16px;
  line-height: 1;
  color: #777;
  margin: 36px 0;
}

.entry__content  {
  padding: 36px 0;
}

.entry__content p {
  margin-bottom: 36px;
}

.entry__thumbnail {
  margin-bottom: 36px;
}

.entry__thumbnail img {
  width: 100%;
}

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

.entry__content .wp-element-caption {
  margin: 9px 0 0 ;
  color: #666;
  font-size: smaller;
}

.entry__btn a {
  display: block;
  text-decoration: none;
  border-radius: 90px!important;
  padding-bottom: 18px;
  margin: 45px auto 18px;
  max-width: 256px;
}

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

  .single__date {
    font-size: 16px;
    margin-top: calc(36px / 1.5);
    margin-bottom:calc(36px / 1.5);
  }

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

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

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

  .entry__content .wp-element-caption {
    margin:calc(9px / 1.5) 0 0 ;
  }

  .entry__btn a {
    display: block;
    text-decoration: none;
    border-radius: calc(90px / 1.5)!important;
    padding-bottom: calc(18px / 1.5);
    margin: calc(45px / 1.5) auto calc(18px / 1.5);
    max-width: 100%;
  }

}


/*wp-pagenavi*/
.recent__news {
  background: #edf7fc;
  border-radius: 27px;
  padding: 36px;
  margin-bottom: 72px;
}

.news__list__container {
  background: #fff;
  border-radius: 27px;
  padding: 36px;
}

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

@media only screen and (max-width:767px) {
  .recent__news {
    background: #edf7fc;
    border-radius: calc(27px /1.5);
    padding: calc(36px /2);
    margin:auto -1em calc(72px /2);
    box-sizing: border-box;
    width: calc(100% + 2em);
  }

  .news__list__container {
    border-radius:calc(27px /1.5);
    padding: calc(36px /2) 0;
  }

  .recent__news .news__list__container {
    padding: calc(36px /2) 18px;
  }

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


}





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

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

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

.wp-pagenavi a:hover  {
  background-color:#008bd1;
  border-color:#008bd1;
  border-radius: 4.5px;
  color:#fff
}

.wp-pagenavi span.current {
  background-color:#008bd1;
  border-color:#008bd1;
  border-radius: 4.5px;
  color:#fff;
  font-weight:bold
}

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

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

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

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

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


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

Recruit Setting

---------------------------------------------------------- */
/*recruit__nav*/
.recruit__nav__list {
  margin: 54px auto 18px;
  text-align: center;
}

.recruit__nav__list li {
  display:inline-block;
  vertical-align: middle;
  margin: 0 4.5px;
  text-align: center;
}

.recruit__nav__list li a {
  display: block;
  text-decoration: none;
  margin: auto;
  text-align: center;
  font-size: 18px;
  padding: 9px 27px;
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  line-break: 1.23456789;
  background: #008bd1;
  border: 1px solid #008bd1;
  text-align: center;
  color: #fff;
  padding:13.5px 36px;
}

.recruit__nav__list li a:hover,
.recruit__nav__list li a:focus  {
  color: #fff;
}

@media only screen and (max-width:767px) {
  .recruit__nav__list {
    margin: calc(54px / 1.5) auto calc(18px /1.5)
  }

  .recruit__nav__list li {
    margin: 4.5px auto;
    width: 100%;
  }

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

}


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

WPCF Setting

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

/*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:2px solid #ccc;
  padding:18px 18px;
  box-sizing:border-box;
  width: 75%;
  max-width: 100%;
  font-size: 18px;
}

.wpcf7 input[type=radio],
.wpcf7 input[type=checkbox] {
  transform:scale(2.0)
}

.wpcf7 select {
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:2px solid #ccc;
  padding:18px 18px;
  box-sizing:border-box;
  font-size: 18px;
}

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

.wpcf7 .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;
}

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

.wpcf7 .select {
  display: inline-block;
  position: relative;
  border-radius: 9px;
  border:2px solid #ccc;
  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 #222;
  pointer-events: none;
}
*/
::-webkit-input-placeholder {
  color:#aaa;
}
:-ms-input-placeholder {
  color:#aaa;
}
::placeholder{
  color:#aaa
}

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

.wpcf7 .form__accept {
  display: block;
  text-align: center;
  font-weight: 600;
  margin:auto;
  padding: 36px 0 0;
}

.wpcf7 .form__accept input {
  margin-right: 9px;
}

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

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

@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 {
    padding:calc(18px / 1.15);
    width: 100%;
    max-width: 100%;
    font-size: calc(18px / 1.15);;
  }

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

/*
  .wpcf7 input[name=entry_birth1],
  .wpcf7 input[name=entry_birth2],
  .wpcf7 input[name=entry_birth3] {
    width: 25%;
    max-width: 25%;
  }
*/
  .wpcf7 select {
    padding:calc(18px / 1.15);
    font-size: calc(18px / 1.15);;
  }

  .wpcf7 .req {
    padding:4.5px 9px;
    font-size: calc(12px / 1.15);
  }

  .wpcf7 .form__accept {
    padding: calc(18px / 1.5) 0 0;
    margin: auto;
  }

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

}

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

Thanks Setting

---------------------------------------------------------- */
.thanks .section__btn a {
  display: block;
  text-decoration: none;
  border-radius: 90px!important;
  padding-bottom: 18px;
  margin: 36px auto 18px;
  max-width: 256px;
}

@media only screen and (max-width:767px) {
  .thanks .section__btn a {
    border-radius: 90px!important;
    padding-bottom: 18px;
    margin: 36px auto 18px;
    max-width: 100%;
  }

}

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

Error404 Setting

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

.error404 .section__btn a {
  display: block;
  text-decoration: none;
  border-radius: 90px!important;
  padding-bottom: 18px;
  margin: 36px auto 18px;
  max-width: 256px;
}

@media only screen and (max-width:767px) {
  .error404 .section__btn a {
    border-radius: 90px!important;
    padding-bottom: 18px;
    margin: 36px auto 18px;
    max-width: 100%;
  }

}

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

Footer Setting

---------------------------------------------------------- */
.footer {
  position: relative;
  z-index: 12345;
  padding-bottom: 45px;
  background: #fff;
}

@media only screen and (max-width:767px) {
  .footer {
    padding-bottom: 90px;
  }
}

/*footer__sitemap*/
.footer__sitemap  {
  padding:18px 0 36px;
  margin: auto;
  text-align: center;
}

.footer__sitemap ul li {
  display: inline-block;
  text-align: center;
}

.footer__sitemap ul li a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0 22.5px;
}

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

  .footer__sitemap ul {
    text-align: left;
  }

  .footer__sitemap ul li  {
    display: inline-block;
    width: 49%;
    text-align: left;
    font-size: calc(15.5px / 1.1);
    padding: 0 
  }

  .footer__sitemap ul li a {
    font-size: calc(15.5px / 1.1);
    padding: calc(9px / 1.5);
  }

}

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

.footer__text {
  flex-basis: 45%;
  text-align: center;
}

.footer__access {
  flex-basis: 50%;
  text-align: right;
  border-radius: 36px;
}

.footer__logo {
  max-width: 138px;
  text-align: center;
  margin:13.25px auto ;
}

.footer__address {
  font-size: 16px;
  text-align: center;
  margin:18px auto auto;
}

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

.footer__tel span {
  display: block;
  text-align: left;
  line-height: 1.2345678;
  text-indent: 0;
  margin-left: 0;
}

.footer__tel span img {
  width: 36px;
  display: inline-block;
  vertical-align: middle;
  margin: -6.25px -9px 0 0;
}

.footer__tel span.tel {
  display: inline-block;
  vertical-align: middle;
  font-size:63px;;
  color: #008bd1;
  letter-spacing: -0.015em;
  font-weight: bold;;
  text-align: center;
  margin:auto ;
}

.footer__tel span.tel a {
  display: block;
  text-decoration: none;
}

.footer__tel img {
  width: calc(82px / 2);
  vertical-align: middle;
  margin-top: -9px;
}

.footer__btn  {
  margin: 18px auto 27px;
  max-width: 345px;
}

.footer__btn img {
  width: calc(49px /2);
  margin-right: 9px;
}

.footer__btn a {
  display: block;
  background-image: url(../img/icon__arrow1.png);
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: calc(12px / 1.5);
  background-color:#3fbc56;
  text-align: center;
  color: #fff;
  font-weight:bold;
  border-radius: 100px;
  text-decoration: none;
  padding:16.25px 9px;
}

.footer__map iframe {
  border-radius: 36px;
  width: 100%;
  height: 370px;
}

.footer__access__list {
  border-radius: 24px;
  margin-top: 18px;
  background: #fff;
  padding: 9px 36px;
  border: 2px dotted #aaa;
}

.footer__access__list dl {
  text-align: left;
  padding: 7.25px 0 
}

.footer__access__list dl dt {
  text-align: left;
  font-size:16px ;
  font-weight: bold;
}

.footer__access__list dl dt:before {
  padding: relative;
  content: '●';
  font-size:16px ;
  color: #ca6273;
}

.footer__access__list dl dd {
  font-size:16px ;
  line-height: 1.6789;
}

.footer__copyright {
  text-align: center;
  font-style: normal;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}

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

  .footer__text {
    flex-basis: 100%;
  }

  .footer__access {
    flex-basis: 100%;
    margin-top: 27px;
    border-radius: calc(36px / 1.5);
  }

  .footer__logo {
    max-width: 98px;
    margin:calc(13.25px / 1.5) auto ;
  }

  .footer__address {
    font-size: calc(16px / 1.1);
    margin:calc(18px / 1.5) auto auto;
  }

  .footer__tel  {
    margin:auto auto calc(9px / 1.5)
  }

  .footer__tel span img {
    width: calc(36px / 1.5);
    margin: -3.125px -4.5px 0 0;
  }

  .footer__tel span.tel {
    font-size:calc(63px / 1.43);
  }

  .footer__tel img {
    width: calc(82px / 4);
    margin-top: -4.5px;
  }

  .footer__btn  {
    margin: calc(18px / 1.5) auto calc(27px / 1.5);
    max-width: 100%;
  }

  .footer__btn img {
    width: calc(49px / 2.25);
    margin-right: calc(9px / 1.5);
  }

  .footer__btn a {
    display: block;
    background-image: url(../img/icon__arrow1.png);
    background-position: 95% 50%;
    background-repeat: no-repeat;
    font-size: calc(20.25px / 1.2025);
    background-size: calc(12px / 2);
    padding:calc(16.25px / 1.5) 9px;
  }

  .footer__map iframe {
    border-radius: calc(36px / 1.5);
    height: calc(370px / 1.5);
  }

  .footer__access__list {
    border-radius: calc(24px / 1.5);
    margin-top: calc(18px / 1.5);
    padding: calc(9px / 1.5) 18px;
  }

  .footer__access__list dl {
    padding: calc(7.25px /1.5) 0 
  }

  .footer__access__list dl dt {
    font-size:calc(16px / 1.1) ;
  }

  .footer__access__list dl dt:before {
    font-size:calc(16px / 1.1) ;
  }

  .footer__access__list dl dd {
    font-size:calc(16px / 1.1) ;
    line-height: 1.6789;
  }

  .footer__copyright {
    font-size: 13.5px;
  }
}

/*footer__times*/
.footer__times {
  margin-bottom: 18px;
}

.footer__times .calendar__table thead th {
  padding: alc(4.5px / 1) ;
}

.footer__times .calendar__table tbody th,
.footer__times .calendar__table tbody td {
  padding: calc(13.5px / 1) calc(4.5px / 4) ;
}

.footer__times .calendar__table tbody td {
  width: 7%;
}

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

  .footer__times .calendar__table thead th {
    padding: calc(4.5px /2) calc(4.5px / 4) ;
    font-size: calc(15px / 1.1);
  }

  .footer__times .calendar__table tbody th,
  .footer__times .calendar__table tbody td {
    padding: calc(13.5px /2) calc(4.5px / 4) ;
    font-size: calc(15px / 1.1);
  }

  .footer__times .calendar__table tbody td {
    width: 5%;
  }

}

.calendar__table br.footer {
  display: none;
}


/*footer__nav__sp*/
.footer__nav__sp {
  display: none;
}

@media only screen and (max-width:767px) {
  .footer__nav__sp {
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    z-index:12;
    overflow-y: hidden;
    height: 60px;
  }

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

  .footer__nav__sp ul li {
    flex-basis: 50%;
  }

  .footer__nav__sp ul li a {
    display: block;
    text-decoration: none;
    text-align: center;
  }

  .footer__nav__tel a {
    background-color: #008bd1;
    color: #fff;
    padding:18px 9px ;
  }

  .footer__nav__tel a span.en {
    display: block;
    line-height: 1.34567;
    font-size:calc(27px / 1.3);
    font-weight: bold;;
  }

  .footer__nav__tel a img {
    margin-right: 4.5px;
    width: calc(50px / 4);
    vertical-align: middle;
    margin-top: -4.5px;
  }

  .footer__nav__line a {
    background-color: #3fbc56;
    color: #fff;
    padding:20.25px 9px ;
  }

  .footer__nav__line a span.en {
    display: block;
    line-height: 1.34567;
    font-size:calc(20.25px / 1.202);
    font-weight: bold;;
  }

  .footer__nav__line a img {
    margin-right: 9px;
    width: calc(50px / 2.75);
    vertical-align: middle;
    margin-top: -2.25px;
  }

}
