@charset "utf-8";

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

Common Setting

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

/*  基本スタイル */
:root {
  --color1: #fff;
  --color2: #e78c5e;/*main*/
  --color3: #f4dd0b;/*sub*/
  --color4: #5ac363;/*line*/
  --color5: #f7f0ed;
  --bg1: #fff;
  --bg2: #e78c5e;/*main*/
  --bg3: #f4dd0b;/*sub*/
  --bg4: #5ac363;/*line*/
  --bg5: #f7f0ed;
}

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: futura-pt-bold, sans-serif;
  font-style: normal;
  font-weight: 700;
}
*/

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

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

ol  {
  margin-left: 1em;
}


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

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 90%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}


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

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

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

a:hover {
  opacity: 0.7; 
}

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

Btn Setting

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

.btn__primary {
  background: var(--color2);
  border: 1px solid var(--color2);
  text-align: center;
  color: var(--color1);
  padding:13.5px 36px;
}

  .btn__primary:hover,
  .btn__primary:focus  {
    color: var(--color1);
  }

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

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

.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:520px) {
  .btn__primary {
    padding:calc(13.5px / 1.5) calc(36px / 2);
  }

  .btn__secondary {
    padding:calc(18px / 1.5) calc(36px / 2) calc(13.5px / 13.5px);
  }

  .btn__line {
    padding:calc(13.5px / 1.5) calc(36px / 2);
  }

  .btn__line {
    padding:calc(13.5px / 1.5) calc(36px / 2);
  }

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

}

/*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:520px) {

}

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

Form Setting

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

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

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

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


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

Table Setting

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

table.w30 th {
  width: 30%;
}

table.w35 th {
  width: 35%;
}

table.w40 th {
  width: 40%;
}

table.w50 th {
  width: 50%;
}

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

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

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

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

  table.table__bordered tr:nth-last-child(1) th ,
  table.table__bordered tr:nth-last-child(1) td  {
    border-bottom: none;
  }
*/
@media only screen and (max-width:520px) {
  table.table__bordered  {
    border: none;
  }

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

}

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


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

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

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

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

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

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

/*

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

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

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

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

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

}


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

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

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

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

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

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


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

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

.definition__list dl dd {
}

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

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

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

}

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

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  {
  width:1180px;
  max-width: 1980px;
  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:468px;
  margin:auto;
}

@media only screen and (max-width:520px) {
  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
  }

}

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

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

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

Header Setting

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

.header__container {
  z-index: 1234567;
  width: 100%;
  position: relative;
  position: fixed;
  background: #fff;
  height: 90px;
/*  overflow-y:hidden;*/
  top: 0;
}

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

.topbar .logo {
  flex-basis: calc(811px/ 2);
}

.topbar__contact {
  flex-basis: calc(100% - calc(811px/ 2));
  max-width: calc(345px + 345px);
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-items:top;
}

  .topbar__tel {
    flex-basis:59%;
  }

  .topbar__line {
    flex-basis: 41%;
  }

.topbar .logo img {
  padding: 9px 0;
}

.topbar__tel a {
  display: block;
  background-image: url(../img/icon__animals.png);
  background-position: 9px 150%;
  background-repeat: no-repeat;
  background-size: calc(165px / 1.9);
  background-color: var(--bg2);
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding:13.5px 9px;
  max-height: 100px;
}

.topbar__tel a span {
  display: block;
  line-height: 1.34567;
  text-indent: 72px;
}

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

.topbar__tel a span.tel {
  font-size: 33.5px;
  font-weight: bold;
}

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

.topbar__line a {
  display: block;
  text-decoration: none;
  text-align: center;
  margin: auto;
  color: #fff;
  font-weight: bold;
  padding:27px 9px;
  background-color: var(--bg4);
}

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


@media only screen and (max-width:520px) {
  .header__container {
    height: 60px;
    top: 0;
  }

  .topbar .logo {
    flex-basis: 100%;
    max-width: 256px;
    margin:0;
    text-align: left;
  }

  .topbar__contact,
  .topbar__tel,
  .topbar__line {
    display: none;
  }

  .topbar .logo img {
    margin:auto;
    text-align: center;
    padding: 9px 0;
  }

}


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

.gnav__pc {
  margin: 100px auto auto;
  padding:30.5px 18px ;  text-align: center;
}

.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: 600;
  padding: 0 18px;
}

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

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


/*gnav_pc*/
nav.gnav__sp {
  display: none
}
@media only screen and (max-width:520px) {
  .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:var(--color2);
    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:28px 0;
    text-decoration:none;
    transition-duration:0.2s;
    border-bottom:1px solid rgba(255,255,255,0.5);
    color: #fff;
  }

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

  .toggle__btn span {
    display:block;
    position:absolute;
    right:0;
    width:40px;
    height:2px;
    background-color:var(--color2);
    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:var(--color1);
  }

  .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:720px;
  background: #f8f4ef;
}

.home__mainvisual img {
  pointer-events: none;
}

@media only screen and (max-width:520px) {
  .home__mainvisual {
    max-height:calc(720px / 1.5);
    height:calc(720px / 1.5);
    margin-top: 60px;
  }
}

/*mainvisual*/
.mainvisual {
  width: 100%;
  height:400px;
  background-repeat: no-repeat!important;
  background-position: top center!important;
  background-size: 100%!important;
  z-index: 1;
}

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

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

@media only screen and (max-width:520px) {
  .mainvisual {
    height:calc(400px / 1.75);
    margin-top: 60px;
    z-index: -1!important;
    background-size: cover!important;
  }

  .mainvisual__container {
    width: 100%;
    height: 87.5%;
  }

  .mainvisual__title {
    font-size: calc(45px / 1.8);
  }

}

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


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

Section Setting

---------------------------------------------------------- */
/*bg*/
.bg1 {
  background-color:var(--bg1);
}

.bg2 {
  background-color:var(--bg2);
}

.bg3 {
  background-color:var(--bg3);
}

.bg4 {
  background-color:var(--bg4);
}

.bg5 {
  background-color:var(--bg5);
}

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

.section.border__bottom {
  border-bottom: 1px solid #ccc;
}

.mask {
  background-image: url(../img/bg__mask3.png);
  background-position:75% 0;
  background-repeat: no-repeat;
  background-size: 200%;
  position: relative;
  margin-top: -120px;
  z-index: 12;
  padding-top: 150px
}

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

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

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

  .mask {
    background-position:top left;
    margin-top:0;
    margin-top: -45px;
    position: relative;
    padding-top: calc(150px / 2);
    z-index: 1234;
    
  }

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt9 {
  margin-top: 9px;
}

.mt18 {
  margin-top: 18px;
}

.mt27 {
  margin-top: 27px;
}

.mt36 {
  margin-top: 36px;
}

.mt45 {
  margin-top: 45px;
}

.mt54 {
  margin-top: 54px;
}

.mt63 {
  margin-top: 63px;
}

.mt72 {
  margin-top: 72px;
}

.mt81 {
  margin-top: 81px;
}

.mt90 {
  margin-top: 90px;
}

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

.mb9 {
  margin-bottom: 9px;
}

.mb18 {
  margin-bottom: 18px;
}

.mb27 {
  margin-bottom: 27px;
}

.mb36 {
  margin-bottom: 36px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb54 {
  margin-bottom: 54px;
}

.mb63 {
  margin-bottom: 63px;
}

.mb72 {
  margin-bottom: 72px;
}

.mb81 {
  margin-bottom: 81px;
}

.mb90 {
  margin-bottom: 90px;
}

.pt0 {
  padding-top: 0;
}

.pt9 {
  padding-top: 9px;
}

.pt18 {
  padding-top: 18px;
}

.pt27 {
  padding-top: 27px;
}

.pt36 {
  padding-top: 36px;
}

.pt45 {
  padding-top: 45px;
}

.pt54 {
  padding-top: 54px;
}

.pt63 {
  padding-top: 63px;
}

.pt72 {
  padding-top: 72px;
}

.pt81 {
  padding-top: 81px;
}

.pt90 {
  padding-top: 90px;
}

.pt120 {
  padding-top: 120px;
}

.pt150 {
  padding-top: 150px;
}

.pt180 {
  padding-top: 180px;
}

.pb0 {
  padding-bottom: 0;
}

.pb9 {
  padding-bottom: 9px;
}

.pb18 {
  padding-bottom: 18px;
}

.pb27{
  padding-bottom: 27px;
}

.pb36 {
  padding-bottom: 36px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb54 {
  padding-bottom: 54px;
}

.pb63 {
  padding-bottom: 63px;
}

.pb72 {
  padding-bottom: 72px;
}

.pb81 {
  padding-bottom: 81px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb180 {
  padding-bottom: 180px;
}

.pb210 {
  padding-bottom: 210px;
}

.pd9 {
  padding: 9px;
}

.pd18 {
  padding: 18px;
}

.pd27 {
  padding: 27px;
}

.pd36 {
  padding: 36px;
}

.pd45 {
  padding: 45px;
}

.pd54 {
  padding: 54px;
}

.pd63 {
  padding: 63px;

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

/*section__title*/
.section__title.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;
  letter-spacing: 0.075em;
  font-weight: 600;
}

.section__title span.ja {
  font-size:36px;
  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 var(--color2);
}

  .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 var(--color2);
  }

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

@media only screen and (max-width:520px) {
  .section__title span.ja {
    font-size:calc(36px / 1.75);
    margin-bottom: calc(27px / 1.5);
  }

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

  .section__title span.ja:after {
    top:72.5%;
    left: calc(50% - calc(100px / 4));
    margin-top: calc(45px / 1.5);
    width: calc(100px / 2);
    height: calC(5px /1.5);
    border-top: calC(5px /1.5) solid #fcb46c;
  }

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

}


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

.section__subtitle span.ja {
  display: block;
  margin: auto;
  font-size:30.5px;
  text-align: center;
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
  line-height: 1.7;
  padding: 4.5px 0;
  font-weight: 600;
}

@media only screen and (max-width:520px) {
  .section__subtitle span.ja {
    font-size:calc(30.5px / 1.305);
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
    padding:calc(4.5px /1.5) 0;
  }

}


/*breadnav*/
.breadnav {
  padding:  0 0 36px;
  margin-top: -72px;
}

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

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

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

@media only screen and (max-width:520px) {
  .breadnav {
    padding:0 0 calc(36px / 1.5) ;
    margin-top: calc(-72px / 1.5);
  }

  .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: inherit;
  font-size: 18px;
  letter-spacing: 0.09em;
  font-weight: 600;
  border-radius: 60px;
  background: var(--color3);
}

.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -9px;
  border: 9px solid transparent;
  border-top: 9px solid var(--color3);
}

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

@media only screen and (max-width:520px) {
  .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 var(--color3);
  }

}


/*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:520px) {
  .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:520px) {
  .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 20%, var(--color5) 20%, var(--color5) 100%);
  }

}


/*common__menu*/
.common__menu {
  padding-top: calc(90px + 45px);
  position: relative;
  z-index: 12345;
}

.common__menu__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  width: 100%;
  margin-top: 45px;
}

.common__menu__left ,
.common__menu__right  {
  margin:auto 1.25%;
  flex-basis: 48%;
  background: #fff;
  border-radius: 36px;
  padding:18px 36px;
  min-height: 440px;
}

  .common__menu__left  {
    margin-left: 0;
    padding:18px 72px;
  }

  .common__menu__right  {
    background-image: url(../img/common__menu3.png);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 90%;
    text-align: center;
    padding-top: 0;
    margin-right: 0
  }

.common__menu .balloon__container {
  position: absolute;
  top: -54px;
  left: 0;
  z-index: 12;
  transform: rotate(-10deg);
}

.common__menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 27px 27px 27px 0;
  background-image : linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

  .common__menu__list:nth-last-child(1) {
    background-image :none;
  }

.common__menu__img {
  width: 30%;
  order: 2;
}

.common__menu__text {
  width: 60%;
  text-align: left;
  order: 1;
}

.common__menu__img img {
  max-width: 167px;
  border-radius: 24px;
}

.common__menu__title {
  font-size: 20px;
  font-weight: 600;
}

.common__menu__text p {
  font-size: 15.25px;
  text-align: justify;
}

.common__menu__text a.more {
  text-decoration: underline!important;
}

  .common__menu__text a.more:focus ,
  .common__menu__text a.more:hover {
    text-decoration: none!important;
  }

.common__menu__tel,
.common__menu__line {
  text-align: center;
  margin: auto;
  width: 85%;
}

  .common__menu__tel {
    padding:9px 0 0;
  }

  .common__menu__line {
    padding:18px 0 0;
  }

.common__menu__tel span ,
.common__menu__line span {
  display: block;
  text-align: center;
  line-height: 1.2345678;
}

.common__menu__tel span.text,
.common__menu__line span.text {
  font-size: 18px;
  font-weight: bold;
}

.common__menu__tel span.tel,
.common__menu__line span.line {
  font-weight: bold;
}

  .common__menu__tel span.tel  {
    font-size: 54px;
    color: var(--color2);
  }

  .common__menu__line span.line {
    font-size: 18.5px;
    color: var(--color1);
    margin: 9px auto;
  }

.common__menu__tel span.tel a ,
.common__menu__line span.line a {
  display: block;
  text-decoration: none;
}

  .common__menu__line span.line a {
    padding:18px 54px;
  }

.common__menu__tel img ,
.common__menu__line img {
  vertical-align: middle;
}

  .common__menu__tel img {
    width: calc(82px / 2);
    margin-top: -9px;
  }

  .common__menu__line img {
    width: calc(82px / 3);
    margin-top: -4.5px;
    margin-right: 4.5px;
  }

.common__menu__caution {
  margin: 18px auto auto;
  display: block;
  font-size: 14.5px;
  line-height: 1.56789;
  text-align: center;
}


@media only screen and (max-width:520px) {
  .common__menu {
    padding-top:56px;
  }

  .common__menu__container {
    margin-top: calc(45px / 1.5);
  }

  .common__menu__left ,
  .common__menu__right  {
    margin:auto auto 27px;
    flex-basis: 100%;
    border-radius: calc(36px /1.5);
    padding:calc(18px / 1.5) 18px;
    min-height: 1px;
  }

  .common__menu__right  {
    background-position: 50% 100%;
    background-size: 100%;
    padding-bottom: 120px;
    padding-left: 0;
    padding-right: 0;
    margin-top: -9px;
  }

  .common__menu .balloon__container {
    top:calc(-54px / 1.5);
    transform: rotate(-10deg);
  }

  .common__menu__list {
    padding:18px 0 ;
    justify-content: space-between;
  }

  .common__menu__img {
    width: 35%;
    text-align: right;
  }

  .common__menu__text {
    width: 60%;
    margin-right: 5%;
  }

  .common__menu__img img {
    max-width: 100%;
    text-align: right;
  }

  .common__menu__title {
    font-size: calc(20px / 1.21);
  }

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

  .common__menu__tel {
    padding:calc(9px / 1.5) 0 0;
  }

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

  .common__menu__tel span {
    text-indent: 0;
  }

  .common__menu__tel span.text,
  .common__menu__line span.text   {
    font-size: calc(18px / 1.2);
  }

  .common__menu__tel span.tel {
    font-size: calc(54px / 1.45);
  }

  .common__menu__line span.line {
    font-size: calc(20.5px / 1.205);
  }

  .common__menu__tel img {
    width: calc(82px / 2.75);
    margin-top: -9px;
  }

  .common__menu__line img {
    width: calc(82px / 5);
    margin-top: -2.25px;
    margin-right: 4.5px;
  }

  .common__menu__line a.btn__line {
    padding: 18px 0!important;
    width: 100%;
  }

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

}


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

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

.withmal p.center {
  font-size: 15px;
  font-weight: 600;
}

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

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

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


}


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

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 var(--color2);
  border-left: 0;
  border-right: 0;
}

.calendar__table thead th {
  text-align: center;
  border: none;
  border-bottom: 1.5px solid var(--color2);
  padding: 2.25px 2.25px ;
}

.calendar__table tbody th ,
.calendar__table tbody td   {
  background: #fff;
  text-align: center;
  border-bottom: 1.5px solid var(--color2);
  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: 11%;
  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: var(--color2);
    font-weight: 600;
    font-size: 22.5px;
    text-align: center;
  }

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

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

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

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

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

  .calendar__table tbody td  {
    width: 11.75%;
    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__times*/
.home__times  {
  position: absolute;
  top:45px;
  right: 0;
  width: 584px;
  z-index: 123;
  margin-right: 0;
  margin-left: auto;

}
.home__banner   {
  text-align: right;
  margin-bottom: 36px;
}

.home__banner img  {
  text-align: right;
  width: calc(881px / 2);
  border-radius:18px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.250);
}

.home__times__container {
  background-color: var(--bg1);
  width: 584px;
  padding: 36px;
  box-sizing: border-box;
  height: 360px;
  border-radius: 18px;
  z-index: 123;
  right: 0;
  position: relative;
}

.home__times__container {
 
  z-index: 1234;
}

.home__times__container .calendar__table {
  margin-top: 45px;
}

.home__times .footprints1,
.home__times .footprints2 {
  position: absolute;
  z-index: 12;
}

  .home__times .footprints1 {
    top:0px;
    right: -18px;
    max-width: 53px;
  }

  .home__times .footprints2 {
    left:-45px;
    top: 270px;
    max-width: 66px;
  }

@media only screen and (max-width:520px) {/*
  .home__times {
    background-image: url(../img/bg__mask4.png);
    background-position:50% 0;
    background-repeat: no-repeat;
    background-size:200%;
    min-width: 100%;
    min-height: 1px;
    margin-top: -50px;
    margin-bottom: 0;
    padding-top: 54px;
    padding-bottom: 0;
  }

  .home__times__container {
    position: relative;
    right:auto;
    top:auto;
  }

  .home__times__container .calendar__table {
    margin-top: calc(45px / 1.5);
  }

  .home__times .footprints1 {
    top:-27px;
    right:0px;
    max-width: calc(53px /1.5);
  }

  .home__times .footprints2 {
    left:0px;
    top: calc(270px / 1.3);
    max-width: calc(66px /1.5);
  }
  */

  .home__times  {
    top: calc(720px / 3);
    width: 100%;
  }

  .home__banner   {
    text-align: center;
    width: 100%;
    padding: 0 2em;
    box-sizing: border-box;
    margin:auto auto calc(36px /1.5);
  }

  .home__banner img  {
    text-align: center;
    width: 100%;
    border-radius: calc(18px /1.5);
  }

  .home__times__container {
    background-color: var(--bg1);
    height: 100%;
    width: 100%;
    padding: 18px;
    border-radius:calc(18px /1.5);
  }

  .home__times__container .calendar__table {
    margin-top: calc(45px / 1.5);
  }

  .home__times .footprints1 {
    top:0px;
    right:0px;
    max-width: calc(53px / 1.75);
  }

  .home__times .footprints2 {
    left:0px;
    top: calc(270px / 1.25);
    max-width:  calc(66px / 1.75);;
  }

}

/*home__news*/
.home__news {
  background-image: url(../img/bg__mask1.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  margin-top: calc(-90px - 45px);
  z-index: 12;
  position: relative;
  padding-top: 180px;
  padding-bottom:calc(90px + 90px);
}

.home__news .balloon__container {
  position: absolute;
  top: 63px;
  left: 0;
  z-index: 12;
  transform: rotate(-10deg);
}

.home__news__btn {
  clear: both;
  text-align: center;
  display: block;
  padding-bottom: 18px;
  margin: 36px auto 18px
}

.home__news__btn ul li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 0 9px;
}

.home__news__btn .btn__primary,
.home__news__btn .btn__line {
  padding: 13.5px 90px;
  font-size: 18px;
}

@media only screen and (max-width:520px) {
  .home__news {
    margin-top: 0;
    padding-top: 180px;
    padding-bottom: calc(calc(90px + 90px) / 2.5);
    background-position: 93.0% 0;
    background-size: cover;
    box-sizing: border-box;
  }

  .home__news .balloon__container {
    top:90px;
    left: 9px;
    transform: rotate(-10deg);
  }

  .home__news__btn {
    width: 100%;
    padding-bottom: calC(18px / 1.5);
    margin: calC(36px / 1.5) auto calC(18px / 1.5);
  }

  .home__news__btn ul li {
    width: 100%;
    padding: 0 calC(9px / 1.5);
    margin:9px auto ;
  }

  .home__news__btn .btn__primary,
  .home__news__btn .btn__line {
    display: block;
    width: 100%;
    font-size: calC(18px / 1.2);
    padding: 13.5px ;
  }

}


/*home__about*/
.home__about {
  padding-top:18px;
}

.home__about__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 72px 18px 18px;
}

.home__about__text {
  flex-basis: 50%;
}

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

.home__about__btn {
  margin-top: 45px;
  max-width: 336px;
}

.home__about .footprints3,
.home__about .footprints4 {
  position: absolute;
  z-index: 12;
}

  .home__about .footprints4 {
    right:-18px;
    top:310px;
    max-width: 82px;
  }

  .home__about .footprints3 {
    top:-27px;
    left:-18px;
    max-width: 67px;
  }

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

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

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

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

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

  .home__about__btn {
    margin-top: calc(45px / 1.5);
    max-width: 100%;
  }

  .home__about .footprints3,
  .home__about .footprints4 {
    position: absolute;
    z-index: 12;
  }

  .home__about .footprints4 {
    right:0;
    top: 270px;
    max-width: calc(82px /1.5);
  }

  .home__about .footprints3 {
    top:0;
    left: -18px;
    max-width:calc(67px /1.5);
  }


}

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

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: 52%;
  order: 2;
}

.about__img {
  flex-basis: 44%;
  order: 1;
}

.about__text p {
  text-align: justify;
}

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

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

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

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

}

/*facilities*/
.facilities__container {
  padding-top:36px;
  padding-bottom: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
}

.facilities__list {
  flex-basis: 47.5%;
  margin:18px 1.5%;
}

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

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

.facilities__img ,
.facilities__img img {
  border-radius: 18px;
  text-align: center;
  margin: auto;
  z-index: 1;
}

.facilities__text  {
  background: #fff;
  border-radius:36px 0 0 36px;
  padding:27px 36px;
  margin-top: -3em;
  box-sizing: bold;
  position: relative;
  z-index: 2;
  margin-left: 1em;
}

.facilities__title  {
  display: block;
  font-size: 22.5px;
  color: #e78c5e;
  text-align: center;
  font-weight: bold;
  margin:auto;
}

.facilities__text p {
  margin: 9px 0 0;
  text-align: justify;
}


@media only screen and (max-width:520px) {
  .facilities__container {
    padding-top:calc(36px / 1.5);
    padding-bottom: calc(72px / 1.5);
  }

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

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

  .facilities__img ,
  .facilities__img img {
    border-radius: calc(18px / 1.5);
  }

  .facilities__text  {
    background: #fff;
    border-radius:calc(36px / 1.5) 0 0 calc(36px / 1.5);
    padding:calc(27px / 1.5) 18px;
    margin-top: -3em;
    z-index: 2;
    margin-left: 1em;
  }

  .facilities__title  {
    font-size: calc(22.5px / 1.225)
  }

  .facilities__text p {
    margin: calc(9px / 1.5) 0 0;
  }
}


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

Guide Setting

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

.guide__about__text {
  flex-basis: 50%;
  order: 1;
}

.guide__about__img {
  flex-basis: 45%;
  text-align: right;
  order: 2;
}

.guide__about__btn {
  margin-top: 45px;
  max-width: 336px;
}

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

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

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

}


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

PolicySetting

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

.treatment__policy__text {
  flex-basis: 52%;
  order: 1;
}

.treatment__policy__img {
  flex-basis: 44%;
  order: 2;
}

.treatment__policy__text p {
  text-align: justify;
}

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

@media only screen and (max-width:520px) {
  .treatment__policy__container {
    padding: calc(54px / 1.5) 0;
  }

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

  .treatment__policy__img {
    flex-basis: 100%;
    order: 2;
    margin: 36px auto auto;
  }

}


/*flow*/
.flow__container {
  padding-top:27px;
}

.flow__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  background: var(--color5);
  padding:  20.5px 54px;
  border-radius: 18px;
  margin: 27px 0;
}

.flow__list__title {
  flex-basis: 27.5%;
}

.flow__list__text {
  flex-basis: 72.5%;
}

.flow__list__title span {
  display: inline-block;
  vertical-align:middle;
  z-index: 123;
  position: relative;
}

.flow__list__title span.num {
  text-align: center;
  margin:auto;
  font-size: 30px;
  border-radius: 45px;
  font-weight: bold;
  color: #fff;
  background: var(--color2);
  width: 45px;
  height: 45px;
  line-height: 1.345678;
  z-index: 12345;
}

.flow__list__title span.title {
  font-size: 20.5px;
  margin-left: 9px;
  font-weight: bold;
}

.flow__list__title:after {
  content: '';
  position: absolute;
  top:18px;
  left:20.5px;
  width:3px;
  height: 100%;
  border-left: 3px solid var(--color2);
  padding: 36px;
  z-index: 1245;
}

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

@media only screen and (max-width:520px) {
  .flow__container {
    padding-top:calc(27px /2);
  }

  .flow__list {
    padding: calc(20.25px /2) calc(54px /2) 18px;
    border-radius: calc(18px / 1.5);
    margin: calc(27px /2)  0;
  }

  .flow__list__title {
    flex-basis: 100%;
  }

  .flow__list__text {
    flex-basis: 100%;
    padding-left: 42px;
  }

  .flow__list__title span.num {
    font-size:calc(30px / 1.5);
    border-radius: calc(45px / 1.5);
    width: calc(45px / 1.5);
    height: calc(45px / 1.5);
  }

  .flow__list__title span.title {
    font-size: calc(20.5px /1.225);
    margin-left: calc(9px / 1.5);
    margin-top: -4.5px;
  }

  .flow__list__title:after {
    top:18px;
    left:calc(20.5px / 1.5);
    width:3px;
    padding: calc(36px / 1.5);
    min-height:123.0px;
  }

  .flow__list:nth-last-child(1) .flow__list__title:after {
    display: none;
    height: 0;
    min-height: 0;
  }


}


/*payment__container*/
.payment__container {
  background: var(--color5);
  border-radius: 36px;
  padding: 54px 0;
  margin-top:54px;
  margin-bottom: 36px;
}

.payment__container p  {
  text-align: center;
}

@media only screen and (max-width:520px) {
  .payment__container {
    border-radius:calc(36px / 1.5);
    padding: calc(54px / 1.5) 0;
    margin-top:calc(54px / 1.5) 0;
    margin-bottom: calc(36px / 1.5);
  }

  .payment__container p  {
    text-align: justify;
  }

}



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

Access Setting

---------------------------------------------------------- */
/*access*/
.access__inner {
  background: linear-gradient(180deg, #fff 0%, #fff 20%, #f7f0ed 20%, #f7f0ed 80%, #fff 80%, #fff 100%);
}

@media only screen and (max-width:520px) {
  .access__inner {
    background: linear-gradient(180deg, #fff 0%, #fff 15%, #f7f0ed 15%, #f7f0ed 85%, #fff 85%, #fff 100%);
  }

}

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

.access__map  {
  border-radius: 36px;
  border: 20px solid #fff;
  width: 100%;
}

.access__map iframe {
  border-radius: 36px;
  border: 20px solid #fff;
  width: 100%;
  height: 400px;
}

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

  .access__map  {
    border-radius: calc(36px / 1.5);
    border: 10px solid #fff;
  }

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

}

/*access__detail*/
.access__detail {
  border-radius: 36px;
  box-sizing: border-box;
  padding: 54px 72px;
  background: #fff;
}

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

.access__detail__list:nth-child(1) {
  flex-basis: 52.5%;
}

.access__detail__list:nth-child(2) {
  flex-basis: 42.5%;
  padding: 22.5px;
  border: 1px dotted #aaa;
}

.access__detail__text  {
  margin-bottom: 27px;
}

.access__detail__text p {
  font-size: 17px;
  text-align: justify;
  line-height: 1.789;
}

@media only screen and (max-width:520px) {
  .access__detail {
    border-radius: calc(36px / 1.5);
    padding: calc(54px / 2) 18px;
  }

  .access__detail__container {
    padding: calc(54px / 1)  0;
  }

  .access__detail__list:nth-child(1) {
    flex-basis: 100%;
  }

  .access__detail__list:nth-child(2) {
    flex-basis: 100%;
    margin-top: 36px;
    margin-bottom: -18px;
    padding: calc(22.5px /1.5);
  }

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

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


/*access__root*/
.access__root__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 54px;
}

.access__root__list {
  flex-basis: 47.5%;
}

  .access__root__list:nth-child(1) {
    margin-left: 0;
  }

  .access__root___list:nth-child(2) {
    margin-right: 0;
  }

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

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

.access__root__list p {
  font-size: 17px;
  text-align: justify;
  line-height: 1.789;
}

@media only screen and (max-width:520px) {
  .access__root__container {
    padding: 0 0 calc(54px /1);
  }

  .access__root__list {
    flex-basis: 100%;
  }

  .access__root__list:nth-child(1) ,
  .access__root___list:nth-child(2) {
    margin-left: auto;
    margin-right: auto;
  }

  .access__root__list:nth-child(1) {
    margin-bottom: 2em;
  }

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

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

}

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

News Setting

---------------------------------------------------------- */
/*news__list__container*/
.news__list__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  width: 100%;
  background: #fff;
  padding: 18px 54px;
  border-radius: 36px;
}
  
  .home .news__list__container {
    margin-top: 72px;
  }

.news__list  {
  flex-basis: 48%;
  margin:auto 1.25%;
}

.news__list a {
  display: block;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 36px 0;
  background-image : linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

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

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

.news__list__img {
  flex-basis: 35%;
}

.news__list__text {
  flex-basis: 60%;
  text-align: left;
  min-height:166px;
}

.news__list__img img {
  max-width: 120px;
  border-radius: 18px;
}

.news__list__title {
  font-size: 19px;
  font-weight: 600;
}

.news__list__text span {
  display: block;
}

.news__list__text span.date {
  display:inline;
  letter-spacing: 0.015em;
  font-size: 14px;
  color: #7F7F7F;
}

.news__list p {
  font-size: 15.25px;
  text-align: justify;
}

@media only screen and (max-width:520px) {
  .news__list__container {
    padding: calc(18px / 2) 0;
    border-radius: calc(36px / 1.5);
    margin: 36px auto;
  }
    
    .home .news__list__container {
      margin-top: auto;
      margin-top:calc(72px / 1.5) ;
      padding-left: 18px;
      padding-right: 18px;
      box-sizing: border-box;
    }

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

  .news__list a {
    padding: 9px 9px 27px;
    box-sizing: border-box;
  }

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

  .news__list__img {
    flex-basis: 30%;
  }

  .news__list__text {
    flex-basis: 65%;
    margin-left: 5%;
    text-align: left;
    min-height: 1px;
  }

  .news__list__img img {
    max-width: 100%;
    border-radius: calc(18px / 1.5);
  }

  .news__list__title {
    font-size: calc(19px / 1.21);
  }

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

  .news__list p {
    font-size: calc(15.25px / 1.1);
  }

}

/*single-news*/
.single__date {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #939292;
  margin-top: 36px;
  margin-bottom: 36px;
}

.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: 36px auto 18px;
  max-width: 256px;
}

@media only screen and (max-width:520px) {
  .single__date {
    font-size: 16px;
    margin-top: calc(36px / 1.5);
    margin-bottom:calc(36px / 1.5);
  }

  .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(36px / 1.5) auto calc(18px / 1.5);
    max-width: 100%;
  }

}

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

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

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

.wp-pagenavi a:hover  {
  background-color:#343434;
  border-color:#343434;
  color:#fff
}

.wp-pagenavi span.current {
  background-color:#343434;
  border-color:#343434;
  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:520px) {
  .wp-pagenavi  {
    clear:both;
    margin:calc(27px / 1.5) auto calc(45px / 1.5)
  }

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


/*entry__content*/
.entry__content a {
  color: #0066c0;
}

.entry__content .wp-block-list {
  list-style: none;
  line-height: 1.8;
  margin-left: 1em;
}

.entry__content .wp-block-list > li { 
  position: relative;
}

.entry__content .wp-block-list > li:before {
  content: '';
  background-color: #df784c; 
  position: absolute; 
  top: 0.65em; 
  left: -1em; 
  width: 10px; 
  height: 10px;
  border-radius: 80%;
}


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

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: var(--color2);
  border: 1px solid var(--color2);
  text-align: center;
  color: var(--color1);
  padding:13.5px 36px;
}

.recruit__nav__list li a:hover,
.recruit__nav__list li a:focus  {
  color: var(--color1);
}

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

.recruit__entry__form {
  background: #fff;
  padding-top: 45px;
  padding-bottom: 45px;
}

/*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: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__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:520px) {
  .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)
  }

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

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

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

}



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

Error404 Setting

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

.error404 .entry__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:520px) {
  .error404 .entry__btn a {
    border-radius: 90px!important;
    padding-bottom: 18px;
    margin: 36px auto 18px;
    max-width: 100%;
  }

}


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

Footer Setting

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

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

/*footer__sitemap*/
.footer__sitemap  {
  padding:31.5px 27px ;
  margin: auto;
  text-align: center;
  background-image : linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

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

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

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

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

@media only screen and (max-width:520px) {
  .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__sitemap ul li a:after {
    display: none;
  }

}

/*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__map {
  flex-basis: 45%;
  text-align: right;
  border-radius: 36px;
}

.footer__logo {
  max-width: 468px;
  text-align: center;
  margin:18px auto;
}

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

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

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

.footer__tel span.text {
  font-size: 15.5px;
  font-weight: bold;
  text-align: center;
  margin:18px auto auto;
}

.footer__tel span.tel {
  font-size: 54px;
  color: var(--color2);
  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__tel__caution {
  margin: 9px auto auto;
  display: block;
  font-size: 14px;
  line-height: 1.89;
  text-align: center;
}

.footer__btn {
  margin-top: 27px;
}

.footer__map iframe {
  border-radius: 36px;
  margin-top: 27px;
  height: 500px;
}

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

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

  .footer__text {
    flex-basis: 100%;
  }

  .footer__map {
    flex-basis: 100%;
    text-align: center;
    border-radius: calc(36px / 2);
  }

  .footer__logo {
    max-width: calc(468px / 1.5);
    text-align: center;
    margin:auto;
    margin-bottom: calc(18px * 2);
  }

  .footer__address {
    text-align: center;
    font-size: calc(16px / 1.1);
    margin-bottom:calc(18px / 1.5);
  }

  .footer__tel  {
    text-align: center;
    margin:auto;
    margin-bottom: calc(18px / 1.5);
  }

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

  .footer__tel span.text {
    font-size: calc(15.5px / 1);
  }

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

  .footer__tel img {
    width: calc(82px / 2.75);
  }

  .footer__tel__caution {
    font-size: calc(14px / 1.1);
  }

  .footer__map  {
    margin-top: 27px;
    margin-bottom: -27px;
  }

  .footer__map iframe {
    width: 100%;
    border-radius: calc(36px /1.5);
    height: calc(580px / 2);
  }

  .footer__copyright {
    font-size: calc(13.5px / 1.1);
    padding-bottom: 90px;
  }

}

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

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

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

.footer__times .calendar__caution {
  display: none;
}

@media only screen and (max-width:520px) {
  .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__nav__sp*/
.footer__nav__sp {
  display: none;
}

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

  .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: var(--color2);
    color: #fff;
    padding:18px 9px 17px;
  }

  .footer__nav__tel a span.en {
    display: block;
    line-height: 1.34567;
    font-size: 22.5px;
    font-weight: bold;
  }

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

  .footer__nav__line a {
    background-color: var(--color4);
    color: #fff;
    padding:22px 9px 20px;
  }

  .footer__nav__line a span.ja {
    display: block;
    line-height: 1.34567;
    font-size: 17.15px;
    font-weight: bold;
  }

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

}
