@charset "utf-8";

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

Common Setting

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

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

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

/*font*/
.en {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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


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

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

ol  {
  margin-left: 1em;
}

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

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 90%;
}


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

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

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

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

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

  a.tel[href^="tel:"] {
      pointer-events: initial;
      cursor: pointer;
  }
}

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

Btn Setting

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

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

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

.btn:hover ,
.btn:focus  {
  transition: 0.2s all;
}

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

  .btn__primary:hover,
  .btn__primary:focus  {
    background-color: #043d1c;
    color: #fff!important;
  }

/*btn__secondary*
.btn__secondary {
  background-color: #fff;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow2.png);
  background-size: calc(30px / 4);
  background-repeat: no-repeat;
  text-align: center;
  color: #000!important;
  padding:13.5px 18px;
}

  .btn__secondary:hover,
  .btn__secondary:focus  {
    background-color: #fff;
    color: #000!important;
  }

*/

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

  .btn__white__border:hover,
  .btn__white__border:focus  {
    background-color:transparent;
    color: #fff!important;
  }



/*btn__large*/
.btn.btn__large {
  padding:22.5px 18px;
  background-size: calc(30px / 2);
  font-size: 20px;
}

.btn.btn__xlarge  {
  padding:27px 18px;
  background-size: calc(30px / 1.5);
  font-size: 22.5px;
}



@media only screen and (max-width:767px) {
  .btn__primary ,
  .btn__secondary,
  .btn__line,
  .btn__white__border  {
    font-size: initial;
  }

  .btn__primary ,
  .btn__white__border {
    padding:calc(18px /1.5) calc(18px /1.5);
  }

  .btn.btn__large {
    padding:calc(22.5px / 1.5) 1em;
    background-size: calc(30px / 2);
    font-size: calc(20px /1.2);
  }

  .btn.btn__xlarge  {
    padding:calc(27px / 1.5) 1em;
    font-size: calc(22.5px /1.225);
    background-size: calc(30px / 2);
  }

}

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

Table Setting

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

  table.w10 td {
    width: 80%;
  }

table.w15 th {
  width: 15%;
}

  table.w15 td {
    width: 80%;
  }

table.w20 th {
  width: 20%;
}

  table.w20 td {
    width: 80%;
  }

table.w25 th {
  width: 25%;
}

  table.w20 td {
    width: 75%;
  }


table.w30 th {
  width: 30%;
}

table.w40 th {
  width: 40%;
}

table.w50 th {
  width: 50%;
}


/*vertical-align*/
table.va__top th,
table.va__top td {
  vertical-align: top;
}

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

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

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

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

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


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

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

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

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

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

}

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


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

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

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: #f2f2f2;
  }

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

/*

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

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

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

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

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

}


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

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

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

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

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

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

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

Layout Setting

---------------------------------------------------------- */
body  {
  position: relative;
  font-feature-settings:"palt" 1;
  line-break:strict!important;
  overflow-wrap:break-word!important;
  word-wrap:break-word!important;
  box-sizing:border-box;
  width:100%;
  max-width: 1920px;/*
  min-width: 1280px;*/
  color: #000;
  /*
  font-weight:400;
  */
  font-weight:400;
  letter-spacing: 0.1em;
  font-size:16px;
  line-height:2;
  padding:0;
  margin:auto;
}

#wrapper {
  position: relative;
}

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

  .home main {
    overflow-x: hidden;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .container__wide,
  .container,
  .container__middle,
  .container__narrow,
  .container__xnarrow,
  .container__xxnarrow,
  .container__xxxnarrow,
  .container__xxxxnarrow,
  .container__xxxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box
  }

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

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

}

@media only screen and (max-width:767px) {
  body  {
    min-width:1px;
    max-width: 100%;
    font-size:calc(16px / 1.16);
    line-height: 1.89;
    -webkit-text-size-adjust:100%;
    -webkit-overflow-scrolling:touch;
  }

  .container__wide,
  .container,
  .container__middle,
  .container__narrow,
  .container__xnarrow,
  .container__xxnarrow,
  .container__xxxnarrow,
  .container__xxxxnarrow,
  .container__xxxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box
  }

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

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


}

/*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 ) {
  main  {
    overflow-x: hidden!important;
    min-width: 1024px;
  }
}

/* --- iPadの標準的な表示 (縦・横共通) --- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
  main  {
    overflow-x: hidden!important;
  }
}

/* --- iPad 縦向き (Portrait) --- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
  main  {
    overflow-x: hidden!important;
  }
}

/* --- iPad 横向き (Landscape) --- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
  main  {
    overflow-x: hidden!important;
  }
}

/* --- iPad Pro (12.9インチなど、より大きい画面用) --- */
@media only screen and (min-device-width : 1024px) and (max-device-width : 1366px) {
  main  {
    overflow-x: hidden!important;
  }
}


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

Header Setting

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

/*topbar*/
.topbar {
  width: 100%;
  position: relative;
  padding:24px 0;
}

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

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

.topbar__menu {
  flex-basis:calc(100% - 440px);
  z-index: 12;
}

.topbar__tel {
  flex-basis: 250px;
  position: relative;
  text-align: right;
}

.topbar__logo img {
  width: 100%;
  height: auto;
}

.topbar__tel span {
  text-align: center;
  margin: auto;
  line-height: 1.456789;
}

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

.topbar__tel span.en {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #8aba22;
  display: inline-block;
  vertical-align: middle;
}

.topbar__tel  img {
  display: inline-block;
  vertical-align: middle;
  width:20px;
}

.topbar__tel span.ja {
  display: block;
  font-size: 13px;
}


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

  .topbar__logo {
    flex-basis: calc(200px / 1.25);
  }

  .topbar__menu,
  .topbar__tel {
    display: none;
  }

  .topbar__logo img {
    width: 100%;
    height: auto;
  }

}

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

.gnav__pc__list li {
  margin: 0 12.5px;
  padding: 0 12.5px;
  position: relative;
  font-size: 16px;
  line-height: 1;
}

.gnav__pc__list li a ,
.topbar__link a {
  display: block;
  text-decoration: none;
}


@media only screen and (min-width:768px) and (max-width:1180px) {
  .topbar__logo {
    flex-basis:110px;
  }

  .gnav__pc__list li {
    margin: 0 7.25px;
    padding: 0 7.25px;
    position: relative;
    font-size: calc(16px / 1.16);
    line-height: 1;
  }

  .topbar__menu {
    flex-basis:calc(100% - 160px);
  }

  .topbar__tel {
    flex-basis:50px;
  }

  .topbar__tel span.ja,
  .topbar__tel span.en {
    display: none;
  }

  .topbar__tel span img {
    width:40px;
  }

}


/*home__manvisual*/ 
.home__mainvisual__container {
  background: linear-gradient(to bottom, #fff 0% 60%, #f7faf0 60% 75%, #8aba22 75% 100%);
  height: 700px;
}

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

.home__mainvisual__text {
  flex-basis: 70%;
  z-index: 123;
  margin-right: -40%;
}

.home__mainvisual__title {
  position: relative;
}

.home__mainvisual__title span {
  display: block;
  font-size: 45px;
  line-height: 1.56789;
  letter-spacing: 0.25em;
  color: #043d1c;
}

.home__mainvisual__img {
  flex-basis: 105%;
  margin-left: -25%;
  margin-right: -10%;
}

.home__mainvisual__img img {
  pointer-events: none;
}

.home__mainvisual__btn {
  margin-top: 45px;
  width: 400px;
}

.home__mainvisual__btn a {
  display: block;
  font-size: 19px;
}

  @media only screen and (max-width:767px) {
  .home__mainvisual__container {
    background: linear-gradient(to bottom, #fff 0% 40%, #f7faf0 40% 100%);
    border-bottom: 10px solid #8aba22;
    height: auto;
  }

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

  .home__mainvisual__text {
    flex-basis: 100%;
    order: 2;
    margin-right: auto;
    margin-top:27px;
  }

  .home__mainvisual__title span {
    font-size: calc(45px / 1.7);
    letter-spacing:calc(0.25em / 3);
  }

  .home__mainvisual__img {
    order: 1;
    flex-basis: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .home__mainvisual__btn {
    margin-top: calc(45px / 1.5);;
    width: 100%;
    padding-bottom: 45px;
    box-sizing: border-box;
  }

  .home__mainvisual__btn a {
    font-size: calc(19px / 1.19);
  }
}


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

  #navArea  {
    display:block;
  }

  nav.gnav__sp  {
    display:block;
    position:fixed;
    top:0;
    right:-100%;
    bottom:0;
    width:100%;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transition:all .5s;
    opacity:0;
    background: #043d1c;/*
    background: linear-gradient(90deg,rgba(44, 52, 53, 1) 0%, rgba(33, 39, 48, 1) 100%);*/
    z-index: 1234567890123456789;
  }

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

  nav.gnav__sp .inner {
    padding: 18px
  }

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

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

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

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

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

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

    .toggle__btn.active span {
      background-color:#043d1c;
    }

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

  .toggle__btn span:nth-child(2) {
    top:12px;
    width:30px;
  }
/*
  .toggle__btn span:nth-child(3)  {
    bottom:8px
  }
*/
  .open .toggle__btn span {
    background-color:#fff
  }

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

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

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

  .toggle__btn__label {
    display: block;
    font-size:10px;
    color: #043d1c;
    font-weight: 600;
    text-align: center;
    margin:20.5px auto auto;
    margin-left: -7.25px;
    width:40px;
  }

  .open .toggle__btn__label {
    display: none;
  }

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

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

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

  /*gnav__sp__list*/
  .gnav__sp__list li  {
    margin-top: 9px;
    margin-left: 0;
  }

  .gnav__sp__list li a   {
    display: block;
    text-decoration: none;
    padding: 27px 0!important;
  }

  .gnav__sp__list li a span  {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    margin: auto; 
    line-height: 1.456789;
  }

  .gnav__sp__list li a span.en  {
    font-size: calc(20px / 1.2);
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  .gnav__sp__list li a span.ja  {
    font-size: calc(15px / 1.15);
    color:rgba(255,255,255,0.65);
    margin-left: 1em;
    font-weight: 400;
  }

  .gnav__sp__list li a span.ja:before  {
    content: '/';
    font-size: 12px;
    margin-right: 1em;
    color:rgba(255,255,255,0.65);
    font-weight: 400;
  }
}


@media only screen and (max-width:767px) {
  .gnav__sp__sns__list  {
    margin: 18px auto;
    text-align: center;
  }

  .gnav__sp__sns__list li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 calc(18px / 1.5)
  }

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

  .gnav__sp__sns__list li img {
    width: calc(55px/ 1.75);
    opacity: 0.65;
  }

}



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

Section Setting

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

.bg2 {
  background-color: #f7faf0;
}

.bg3 {
  background-color: #8aba22;
}


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


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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt9 {
  margin-top: 9px;
}

.mt18 {
  margin-top: 18px;
}

.mt27 {
  margin-top: 27px;
}

.mt36 {
  margin-top: 36px;
}

.mt45 {
  margin-top: 45px;
}

.mt54 {
  margin-top: 54px;
}

.mt63 {
  margin-top: 63px;
}

.mt72 {
  margin-top: 72px;
}

.mt81 {
  margin-top: 81px;
}

.mt90 {
  margin-top: 90px;
}

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

.mb9 {
  margin-bottom: 9px;
}

.mb18 {
  margin-bottom: 18px;
}

.mb27 {
  margin-bottom: 27px;
}

.mb36 {
  margin-bottom: 36px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb54 {
  margin-bottom: 54px;
}

.mb63 {
  margin-bottom: 63px;
}

.mb72 {
  margin-bottom: 72px;
}

.mb81 {
  margin-bottom: 81px;
}

.mb90 {
  margin-bottom: 90px;
}

.pt0 {
  padding-top: 0;
}

.pt9 {
  padding-top: 9px;
}

.pt18 {
  padding-top: 18px;
}

.pt27 {
  padding-top: 27px;
}

.pt36 {
  padding-top: 36px;
}

.pt45 {
  padding-top: 45px;
}

.pt54 {
  padding-top: 54px;
}

.pt63 {
  padding-top: 63px;
}

.pt72 {
  padding-top: 72px;
}

.pt81 {
  padding-top: 81px;
}

.pt90 {
  padding-top: 90px;
}

.pt120 {
  padding-top: 120px;
}

.pt150 {
  padding-top: 150px;
}

.pt180 {
  padding-top: 180px;
}

.pb0 {
  padding-bottom: 0;
}

.pb9 {
  padding-bottom: 9px;
}

.pb18 {
  padding-bottom: 18px;
}

.pb27{
  padding-bottom: 27px;
}

.pb36 {
  padding-bottom: 36px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb54 {
  padding-bottom: 54px;
}

.pb63 {
  padding-bottom: 63px;
}

.pb72 {
  padding-bottom: 72px;
}

.pb81 {
  padding-bottom: 81px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb180 {
  padding-bottom: 180px;
}

.pb210 {
  padding-bottom: 210px;
}

.pd9 {
  padding: 9px;
}

.pd18 {
  padding: 18px;
}

.pd27 {
  padding: 27px;
}

.pd36 {
  padding: 36px;
}

.pd45 {
  padding: 45px;
}

.pd54 {
  padding: 54px;
}

.pd63 {
  padding: 63px;

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

/*section__container*/
.section__container .leed {
  text-align: center;
  margin:auto;
}
/*

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

}*/

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

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


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

.section__title span {
  display: block;
  text-align: center;
  margin: auto;
  color: #043d1c;
  letter-spacing: 0.2em;/*
  letter-spacing: 0.125em;*/
  font-weight: 800;
  line-height: 1.789;
}

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

  .section__title span.ja,small {
    font-size:30.5px;
  }
/*
  .section__title span.ja.large {
    font-size:20px;
  }

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

  .section__title span.ja.xxlarge {
    font-size:36px;
    line-height: 1.456789;
  }

  .section__title span.ja.xxxlarge {
    font-size:45px;
    line-height: 1.3456789;
  }

  .section__title span.ja.xxxxlarge {
    font-size:54px;
    line-height: 1.23456789;
  }

  .section__title span.color1 {
    color: #fff;
  }

  .section__title span.bold {
    font-weight: bold;
  }
*/
.section__title.center span {
  text-align: center;
}

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

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

  .section__title span.ja,small {
    font-size:calc(30.5px / 1.35);
  }
}


/*section__subtitle*/
.section__subtitle__container {
  border-bottom: 1.5px solid #000;
  display: flex;
  flex-wrap: wrap;
  padding: 18px 0;
  justify-content: space-between;
  align-items: center;
}

.section__subtitle {
  position: relative;
}

.section__subtitle span.ja {
  font-size: 27px;
  color: #043d1c;
  font-weight: 600;
}

.section__subtitle__link {
  font-size: 16px;
  text-align: right;
  font-weight: 400;
}

.section__subtitle__link a {
  display: block;
  line-height: 1;
  margin-top: 9px;
  text-decoration: none;
  background-position:100% 50% ;
  padding-right: 18px;
  background-image: url(../img/icon__arrow2.png);
  background-size: calc(12px / 2);
  background-repeat: no-repeat;
}

@media only screen and (max-width:767px) {
  .section__subtitle__container {
    border-bottom: 1.5px solid #000;
    padding: calc(18px / 1.5) 0;
  }

  .section__subtitle span.ja {
    font-size: calc(27px / 1.3);
  }

  .section__subtitle__link {
    font-size: calc(16px / 1.16);
  }

  .section__subtitle__link a {
    margin-top: calc(9px / 1.5);
    padding-right: calc(18px / 1.5);
    background-image: url(../img/icon__arrow2.png);
    background-size: calc(12px / 2);
    background-repeat: no-repeat;
  }
}



/*breadnav*/
.breadnav {
  background-color: #fff;
  padding:36px 0 
}

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

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

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

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

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


/*cta*/
.cta {
  background-image: url(../img/cta__pc.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
}

.cta__container {
  display: flex;
  flex-wrap:wrap;
  justify-content: flex-start;
  align-items: center;
  padding-top: 13.5px;
  padding-bottom: 13.5px;
}

.cta__text {
  flex-basis: 100%;
}

.cta__title {
  margin-bottom: 27px;
  flex-basis: 100%;
}

.cta__title span {
  display: block;
  text-align: left;
  font-size: 36px;
  color: #fff;
  line-height: 1.789;
  font-weight: bold;
}

.cta__text p {
  color: #fff;
  margin-bottom: 36px;
  font-size: 18px;
}

.cta__btn {
  width: 420px;
  color: #fff;
}

.cta__btn a {
  border-width: 2px;
  padding: 27px 18px;
  font-weight: bold;
  font-size: 18px;
}

.cta__btn a img {
  width: 22.5px;
  margin-right:4.5px;
  margin-top: -2.25px;
}

@media only screen and (max-width:767px) {
  .cta {
    background-image: url(../img/cta__sp.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
  }

  .cta__container {
    padding-top: calc(13.5px / 1);
    padding-bottom: calc(13.5px / 1);
  }

  .cta__text {
    flex-basis: 100%;
  }

  .cta__title {
    margin-bottom: calc(27px / 1.5);
  }

  .cta__title span {
    font-size: calc(36px / 1.36);
  }

  .cta__text p {
    color: #fff;
    margin-bottom: calc(36px / 1.5);
    font-size: calc(18px / 1.2);
  }

  .cta__btn {
    width: 100%;
  }

  .cta__btn a {
    padding: calc(27px / 1.5) 18px;
    font-size:calc(18px / 1.2);
  }

  .cta__btn a img {
    width: 16px;
  }
}


/*page__header*/
.page__header {
  background-color: #8aba22;
  width: 100%;
  height: auto;
  padding: 90px 0;
  position: relative;
  background-size:cover;
  background-repeat:no-repeat;
  background-position: top center;
}

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

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

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

.page__header__title span {
  display: block;
  margin: 20.25px auto;
  line-height: 1.23456789;
}

  .page__header__title span.ja {
    font-size: 45px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.1em;
  }

  .page__header__title span.en {
    font-size: 24px;
    font-weight:300;
    letter-spacing: 0.05em;
    margin:auto;
    color: rgba(255, 255, 255, 0.8);
  }

@media only screen and (min-width:768px) and (max-width:1180px) {
  .page__header__title span.ja {
    font-size: calc(calc(45px / 1.55) * 1.25);
  }

  .page__header__title span.en {
    font-size: calc(calc(24px / 1.34) * 1.25);
  }

}


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

  .page__header__container {
    padding: calc(27px / 1.5) 0;
  }

  .page__header__title span {
    margin: calc(20.25px / 1.5) auto;
  }

  .page__header__title span.ja {
    font-size: calc(45px / 1.55);
    letter-spacing: 0.1em;
  }

  .page__header__title span.en {
    font-size: calc(24px / 1.34);
    letter-spacing: 0.05em;
    margin-left: auto;
  }

}



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

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

.common__subject__text {
  flex-basis: 50%;
}

.common__subject__img {
  position: absolute;
  flex-basis: 85%;
  right: 0;
  top: 72px;
  margin-left: -5%;
  margin-right: -10%;
}

.common__subject__img img {
  width: 600px;
  position: relative;
  z-index: 345;
}

.common__subject__img:after {
  position: absolute;
  content: '';
  width: 100%;
  height:  100%;
  margin: 0;
  top: 20px;
  left: 20px;
  background: #8aba22;
  z-index: 123;
}

.common__subject__list {
  text-align: center;
  padding: 90px 0 72px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.common__subject__list li {
  flex-basis: 50%;
  padding: 45px 18px;
  border-bottom: 0.5px solid; #aaa;
  border-right: 0.5px solid #aaa;
}

  .common__subject__list li:nth-child(1),
  .common__subject__list li:nth-child(2) {
    padding-top: 18px;
    padding-bottom:18px;
    min-height: 240px;
  }

  .common__subject__list li:nth-child(even) {
    border-right: none;
  }

  .common__subject__list li:nth-child(5),
  .common__subject__list li:nth-child(6) {
    border-bottom: none;
  }

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

.common__subject__list span.img img {
  max-width: calc(200px / 2);
  text-align: center;
  margin: auto auto 9px;
}

.common__subject__list span.text {
  display: block;
  font-size: 18px;
  line-height: 1.456789;
  font-weight: 600;
  text-align: center;
}

.common__subject__list a {
  text-decoration: none;
}

.common__subject__title {
  text-align: right;
  position: absolute;
  right: 0;
  bottom:-20.58px;
  margin-right: -15%;
}

.common__subject__title span {
  display: block;
  font-size:200px ;
  font-weight: 300;
  color: rgba(4, 61, 28, 0.1);
  line-height: 1;
}

@media only screen and (max-width:767px) {
  .common__subject  {
    padding-top: calc(90px + 9px);
  }

  .common__subject__container {
    padding:0 9px;
    margin-top: calc(54px / 3);
  }

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

  .common__subject__img {
    position: relative;
    order: 1;
    flex-basis: 100%;
    right: 0;
    top: 0;
    margin-left:auto;
    margin-right:auto;
  }

  .common__subject__img img {
    width: 100%;
    object-fit: cover;
    height: 250px;
  }

  .common__subject__img:after {
    position: absolute;
    content: '';
    width: 100%;
    height:  100%;
    margin: 0;
    top: calc(20px /1.5);
    left: calc(20px /1.5);
  }

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

  .common__subject__list li {
    flex-basis: 50%;
    padding: calc(45px /2) calc(18px / 1.5);
  }

  .common__subject__list li:nth-child(1),
  .common__subject__list li:nth-child(2) {
    padding-top: calc(18px / 1.5);
    padding-bottom:calc(18px / 1.5);
    min-height: 1px;
  }

  .common__subject__list span.img img {
    max-width: calc(200px / 3);
    margin: auto auto calc(9px / 1.5);
  }

  .common__subject__list span.text {
    font-size: calc(18px / 1.22);
  }

  .common__subject__list li:nth-child(1) span.text,
  .common__subject__list li:nth-child(2) span.text {
    min-height: 81px;
  }

  .common__subject__title {
    bottom: auto;
    top:-199px;
    z-index: 3458;
    margin-right:0%;
  }

  .common__subject__title span {
    font-size:calc(200px / 2.25);
  }

}

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

Calendar Setting

---------------------------------------------------------- */
/*calendar__table*/
.calendar__table table {
  width: 100%;
  border-collapse: collapse;
  border-left: 0;
  border-right: 0;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 300;
  font-size: 15px;
  font-style: normal;
}

  .schedule .calendar__table table {
    border-bottom: 2px solid #000;
    font-size: 17px;
  }

  .footer .calendar__table table {
    border-bottom: 1.5px solid #000;
  }

.calendar__table thead th {
  text-align: center;
  border: none;
  font-weight: 400;
  padding: 6.25px ;
  border-bottom: 1.5px solid #000;
}

  .schedule .calendar__table thead th {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    font-weight:600;
  }

  .footer .calendar__table thead th {
    border-top: 1px solid #000;
    background: #fff;
    font-size: 14px;
    color: #000;
  }

.calendar__table tbody th ,
.calendar__table tbody td   {
  text-align: center;
  padding:18px 6.25px ;
  font-weight: 400;
  border-bottom: 0.5px solid #000;
}


  .schedule .calendar__table tbody th   {
    font-weight: 600;
  }

  .footer .calendar__table tbody th   {
    padding: 9px 0;
    font-size: 12px;
  }

  .footer .calendar__table tbody td   {
    padding: 9px 0;
    font-size: 14px;
  }

  .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: 25%;
  line-height: normal;
  text-align: center;
}

.calendar__table tbody td  {
  width: 10%;
  line-height: normal;
  text-align: center;
}

  .calendar__table thead td:nth-child(8),
  .calendar__table tbody th:nth-child(8),
  .calendar__table tbody td:nth-child(8)  {
    width: 13%;
  }

  .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;
  text-align: center;
}

  .calendar__table tbody td span  {
    font-size: 30.5px;
    color: #8aba22;
    text-align: center;
  }

    .footer .calendar__table tbody td span  {
      font-size: 20.5px;
    }

  .calendar__table tbody td span.ja  {
    font-size: 18px;
  }

.calendar__caution   {
  display: block;
  margin-top: 13.5px;
  font-size: 14px;
  line-height: 1.56789;
}

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

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

@media only screen and (max-width:767px) {
  .calendar__table table {
    font-size: calc(15px / 1.15);
  }

  .schedule .calendar__table table {
    font-size: calc(17px / 1.17);
  }

  .footer .calendar__table table {
  }

  .calendar__table thead th {
    padding: calc(6.25px / 1.5)
  }

  .footer .calendar__table thead th {
    font-size: calc(14px / 1.14);
  }

  .footer .calendar__table tbody br.sp {
    display: none;
  }

  .calendar__table tbody th ,
  .calendar__table tbody td   {
    padding:calc(18px / 1.5) 6.25px ;
  }

  .footer .calendar__table tbody th   {
    padding:calc(9px / 1.5) 0;
    font-size: calc(12px / 1.12);
  }

  .calendar__table tbody th {
    width: 25%;
    font-size: calc(14px / 1.14);;
  }

  .calendar__table tbody td  {
    width: 10%;
  }

  .calendar__table thead td:nth-child(8),
  .calendar__table tbody th:nth-child(8),
  .calendar__table tbody td:nth-child(8)  {
    width: 13%;
  }

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

  .calendar__table tbody td span  {
    font-size: calc(30.5px / 1.35)
  }

  .footer .calendar__table tbody td span  {
    font-size: calc(20.5px / 1.25)
  }

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

  .calendar__caution   {
    margin-top:calc(13.5px / 1.5);
    font-size:calc(14px / 1.14);;
  }

}



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

HOME Setting

---------------------------------------------------------- */
/*home__info*/
.home__info {
  padding: 45px 0;
  position: relative;
}

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

.home__news {
  flex-basis: 47.5%;
}

.home__schedule {
  flex-basis: 47.5%;
}

.home__news__body {
  padding-top: 18px;
}

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

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

  .home__schedule {
    flex-basis: 100%;
    order: 1;
    margin-bottom: 45px;
  }

  .home__news__body {
    padding-top:calc(18px /1.5);
  }

}

/*home__shift*/
.shift {
  padding-top: 36px;
  padding-bottom:18px;
  text-align: center;
  margin: auto;
}

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

}


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

.home__service__head {
  margin-top: 36px;
  width: 85%;
  position: relative;
} 

.home__service__head img {
  position: relative;
  z-index: 345;
} 

.home__service__head:after {
  position: absolute;
  content: '';
  width: 100%;
  height:  100%;
  margin: 0;
  top: 30px;
  left: -30px;
  background: #8aba22;
  z-index: 123;
}

.home__service__title {
  text-align: left;
  top:-90px;
  left: 0;
  z-index: 678;
  margin-left: -2.5%;
}

.home__service__title span {
  display: block;
  font-size:200px ;
  font-weight: 300;
  color: rgba(4, 61, 28, 0.1);
  line-height: 1;
}

.home__service__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding:calc(90px + 90px + 90px + 90px) 72px 45px;
  margin-top: calc(-90px - 90px - 90px - 90px - 90px);
}

.home__service__list {
  flex-basis: 48%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 36px 0;
}

.home__service__img {
  flex-basis:35%;
}

.home__service__text {
  flex-basis: 60%;
}

.home__service__subtitle {
  position: relative
}

.home__service__subtitle span {
  display: block;
  color: #043d1c;
  font-size: 20.25px;
  font-weight:600;
  position: relative
}

.home__service__text p {
  font-size: 15px;
  font-weight: 400;
  text-align: justify;
}

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

  .home__service__head {
    margin-top: calc(36px /1.5);
    width: 100%;
  } 

  .home__service__head:after {
    width: 100%;
    height:  100%;
    margin: 0;
    top: calc(20px / 1.5);
    left: -5px;
    background: #8aba22;
    z-index: 123;
  }

  .home__service__title {
    position: relative;
    text-align: left;
    top:-54px;
    left: 0;
    z-index: 678;
    margin-left: -2.5%;
  }

  .home__service__title span {
    font-size:calc(200px / 2);
  }

  .home__service__container {
    padding:calc(90px + 90px) 18px calc(90px / 2);
    margin-top: calc(-90px - 90px - 45px);
  }

  .home__service__list {
    flex-basis: 100%;
    margin: calc(36px / 3) 0;
  }

  .home__service__img {
    flex-basis:22.5%;
  }

  .home__service__text {
    flex-basis: 70%;
  }

  .home__service__subtitle span {
    font-size: calc(20.25px / 1.3);
  }

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

}

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

.home__access__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 27px;
}

.home__access__text {
  flex-basis: 45%;
}

.home__access__list  {
  padding-top: 18px;
}

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

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

.home__access__list dt {
  flex-basis: 20%;
}

.home__access__list dd {
  flex-basis: 80%;
}

.home__access__title {
  position: absolute;
  text-align: right;
  top:calc(-90px - 1px);
  right: 0;
  z-index: 678;
  margin-left: -2.5%;
}

.home__access__title span {
  display: block;
  font-size:200px ;
  font-weight: 300;
  color: rgba(4, 61, 28, 0.1);
  line-height: 1;
}

.home__access__map {
  flex-basis: 65%;
  margin-right: -15%;
}

.home__access__map iframe {
  margin-top: 18px;
  width: 100%;
  height:500px;
}

@media only screen and (max-width:767px) {
  .home__access__container {
    padding-top: calc(27px / 1.5);
    overflow-x: hidden;
  }

  .home__access__text {
    flex-basis: 100%;
  }

  .home__access__list  {
    padding-top: calc(18px / 1.5);;
  }

  .home__access__list dl {
    padding: calc(20.25px / 1.5) 0;
  }

  .home__access__list dt {
    flex-basis: 100%;
  }

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

  .home__access__title {
    position: absolute;
    top:-54px;
    right: 0;
    z-index: 678;
    margin-left: -2.5%;
  }

  .home__access__title span {
    font-size:calc(200px / 2);
  }

  .home__access__map {
    flex-basis: 100%;
    margin-right:auto;
  }

  .home__access__map iframe {
    margin-top: calc(18px / 1.5);
    height:calc(500px / 1.5);
  }

}


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

About Setting

---------------------------------------------------------- */
/*clinic*/
.section.clinic {
  padding-bottom: 63px;
}

.clinic__container {
  margin-top: 27px;
}

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

.clinic__list li {
  flex-basis: 48%;
  margin:1% 2% 2%;
}

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

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

.clinic__list li span {
  display: block;
}

.clinic__list li span.img {
  margin-bottom:9px;
}

.clinic__list li span.ja {
  text-align: left;
  font-size: 18px;
  font-weight:400;
}

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

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

  .clinic__list li {
    flex-basis: 48%;
    margin:1% 2% 2%;
  }

  .clinic__list li span.img {
    margin-bottom:2.25px;
  }

  .clinic__list li span.ja {
    font-size: calc(16px / 1.16);
  }

}


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

.clinic__info__container {
  margin-top: 45px;
}

.clinic__info__list  {
  border-top: 2px solid #000;
}

.clinic__info__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px dotted #aaa;
  padding:24px 72px;
}

.clinic__info__list dt {
  flex-basis: 20%;
  font-weight: bold;
}

.clinic__info__list dd {
  flex-basis: 80%;
}

.clinic__info__text {
  margin-top:36px;
  padding-left:72px;
}

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

  .clinic__info__list dl {
    padding:calc(24px /1.5) 18px;
  }

  .clinic__info__list dt {
    flex-basis: 100%;
  }

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

  .clinic__info__text {
    margin-top:calc(36px /1.5);
    padding-left:18px
  }

}


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

.access__list  {
  border-top: 2px solid #000;
}

.access__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding:24px 72px;
}

.access__list dt {
  flex-basis: 20%;
  font-weight: bold;
}

.access__list dd {
  flex-basis: 80%;
}

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

.access__map iframe {
  width: 100%;
  height: 400px;
}

.access__text {
  margin-top:36px;
  padding-left:72px;
}
 
@media only screen and (max-width:767px) {
  .access__container {
    margin-top: calc(45px / 2);
  }

  .access__list  {
    border-top: 2px solid #000;
  }

  .access__list dl {
    padding:calc(24px / 1.5) 18px;
  }

  .access__list dt {
    flex-basis: 100%;
  }

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

  .access__map {
    margin-top: calc(36px / 1.5);
  }

  .access__map iframe {
    height: calc(400px / 1.5);
  }

  .access__text {
    margin-top:calc(36px / 1.5);
    padding-left:18px;
  }
}


/*root*/
.section.root {
  position: relative;
}

.root__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 36px;
  padding-bottom: 18px;
}

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

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

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

.root__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding:27px 0;
}

.root__title span.en {
  flex-basis: 81px;
  line-height: 1;
  display: block;
  color: #043d1c;
  text-align: right;
  font-size: 72px;
  font-weight: 300;
}

.root__title span.ja {
  flex-basis:calc(100% - 108px);
  margin-left:18px;
  display: block;
  color: #043d1c;
  font-size: 16px;
  font-weight: 400;
}

.root__img {
  margin-left:99px;
}

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

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

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

  .root__title {
    padding:calc(27px / 1.5) 0;
  }

  .root__title span.en {
    text-align: center;
    flex-basis: calc(81px / 1.5);
    font-size:calc(72px / 1.8);;
  }

  .root__title span.ja {
    flex-basis:calc(100% - calc(100px / 1.5));
    margin-left:calc(18px / 1.5);
    font-size: calc(16px / 1.16);
  }

  .root__img {
    margin: auto;
    box-sizing: border-box;
    padding: 0 1em;
    text-align: center;
  }
}


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

Greeting Setting

---------------------------------------------------------- */
/*message*/
.section.message {
  position: relative;
  padding-bottom: 72px;
}

.message__page__title {
  position: absolute;
  text-align: left;
  top:-18px;
  right: 0;
  z-index: 678;
  margin-right: -5%;
}

.message__page__title span {
  display: block;
  font-size:200px ;
  font-weight: 300;
  color: rgba(4, 61, 28, 0.1);
  line-height: 1;
}

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

.message__img {
  flex-basis: 42.5%;
}

.message__text {
  flex-basis: 50%;
}

.message__title {
  text-align: left;
  margin: 0 0 9px
}

.message__title span {
  display: block;
  color: #043d1c;
  font-size: 27px;
  letter-spacing: 0.2em;/*
  letter-spacing: 0.125em;*/
  text-align: left;
  margin: 0;
  font-weight: bold;
}

.message__text span.micho {
  display:inline-block;
  color: #043d1c;
  font-size: 24px;
  letter-spacing: 0.2em;/*
  letter-spacing: 0.125em;*/
  text-align: left;
  margin: 0;
  font-weight: bold;
}

.message__text p {
  text-align: justify;
  line-height: 2.12345678;
}

@media only screen and (max-width:767px) {
  .section.message {
    padding-bottom: calc(72px /2);
    overflow-x: hidden;
  }

  .message__page__title {
    top:-9px;
    right: 0;
  }

  .message__page__title span {
    font-size:calc(200px / 2.5);
  }

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

  .message__img img {
    text-align: center!important;
    width: 100%!important;
    margin: 0 0 0 -2em;
  }

  .message__text {
    flex-basis: 100%;
    margin-top: 18px;
  }

  .message__title {
    margin: 0 0 calc(9px / 9)
  }

  .message__title span {
    font-size: calc(27px / 1.3);
    letter-spacing:calc(0.2em /1.5);
  }

  .message__text span.micho {
    font-size:calc(24px / 1);
    letter-spacing:calc(0.2em /1.5);
  }

}


/*mission*/
.section.mission {
  position: relative;
  padding-top: calc(90px + 54px);
}

.mission__page__title {
  position: absolute;
  text-align: left;
  top:-54px;
  left: 0;
  z-index: 678;
  margin-left: -2.5%;
}

.mission__page__title span {
  display: block;
  font-size:200px ;
  font-weight: 300;
  color: rgba(4, 61, 28, 0.1);
  line-height: 1;
}

.mission__container {
  margin: 27px auto auto;
  padding-bottom: 18px;
}

.message__list li {
  font-size: 19px;
  color: #043d1c;
  margin:13.5px 0;
}

@media only screen and (max-width:767px) {
  .section.mission {
    padding-top: calc(90px / 1);
    padding-bottom: 63px;
    overflow-x: hidden;
  }

  .mission__page__title {
    position: absolute;
    text-align: left;
    top:-9px;
    left: 0;
    z-index: 678;
    margin-left: -2.5%;
  }

  .mission__page__title span {
    font-size:calc(200px / 2);
  }

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

  .message__list  {
    width: calc(100% - 2em);
    margin-left: 2em;
  }

  .message__list li {
    font-size: calc(19px / 1.1);;
    margin:calc(13.5px / 1.5) 0;
  }

}


/*whats*/
.section.whats.whats1 {
  position: relative;
  padding-top: calc(90px + 54px);
}

.whats__page__title {
  position: absolute;
  text-align: left;
  top:-72px;
  right: 0;
  z-index: 678;
  margin-right: -2.5%;
}

.whats__page__title span {
  display: block;
  font-size:200px ;
  font-weight: 300;
  color: rgba(4, 61, 28, 0.1);
  line-height: 1;
}

.whats__container {
  padding-top:36px;
}

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

.whats__text {
  flex-basis: 55%;
}

.whats__img {
  flex-basis: 52.5%;
  margin-right: -15%;
}

.whats__title {
  text-align: left;
}

.whats__title span {
  display: block;
  text-align: left;
  font-weight: bold;
  font-size: 22.5px;
  color: #043d1c;
  line-height: 1.789;
}

.whats__text p {
  text-align: justify;
  line-height: 2.123456;
}

@media only screen and (max-width:767px) {
  .section.whats.whats1 {
    position: relative;
    padding-top: calc(90px / 2);
  }

  .whats__page__title {
    top:-54px;
    margin-right:0;
  }

  .whats__page__title span {
    font-size:calc(200px / 2.25);
  }

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

  .whats__text {
    flex-basis: 100%;
    margin-bottom: 36px;
  }

  .whats__img {
    flex-basis: 100%;
    margin-right:auto;
  }

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


/*whats2*/
.section.whats.whats2 {
  padding-top: 0;
  padding-bottom:36px;
}

.whats2 .whats__text {
  flex-basis: 55%;
  order: 2;
}

.whats2 .whats__img {
  margin-left: -15%;
  order: 1;
}

@media only screen and (max-width:767px) {
  .section.whats.whats2 {
    padding-bottom:calc(36px / 1.5);
  }

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

  .whats2 .whats__img {
    flex-basis: 100%;
    margin:auto;
    order: 2;
  }
}


/*whats3*/
.section.whats.whats3 {
  padding-top: 0;
}

.whats3 .whats__container {
  padding-bottom:45px;
}

.whats3 .whats__img {
  margin-top: 72px;
}

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

  .whats3 .whats__img {
    margin-top: calc(72px /72);;
  }
}

/*whats__function*/
.section.whats__function {
  padding-top: 0;
  padding-bottom:36px;
}

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

.whats__function__title span {
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  color: #043d1c;
  text-align: center;
  padding:2.25px 18px;
  position: relative;
  margin: auto;
  background-color: #f7faf0;
  z-index: 123;
}

.whats__function__title:after {
  position: absolute;
  content:'' ;
  width: 100%;
  z-index:0;
  height: 1.5px;
  top: 46.5%;
  left: 0;
  border-bottom: 1.5px solid #043d1c;
  text-align: center;
  margin: auto;
}

.whats__function__container {
  margin-top:27px;
}

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

.whats__function__list li {
  flex-basis: 49.25%;
  margin:0.75%;
  padding: 18px 27px;
  background: #fff
}

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

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

.whats__function__list li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.whats__function__list li span.img {
  flex-basis: 100px;
}

.whats__function__list li span.text {
  flex-basis: calc(100% - 118px);
  margin-left: 18px;
  font-size:20.25px;
  color:#043d1c;
  font-weight: bold;
}


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

  .whats__function__title span {
    font-size: calc(24px / 1.3);
    padding:2.25px calc(18px / 1.5);
    z-index: 123;
  }

  .whats__function__title:after {
    position: absolute;
    content:'' ;
    width: 100%;
    z-index:0;
    height: 1.5px;
    top: 46.5%;
    left: 0;
    border-bottom: 1.5px solid #043d1c;
    text-align: center;
    margin: auto;
  }

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

  .whats__function__list li {
    flex-basis: 100%;
    margin:0.75%;
    padding: calc(18px / 1.5) 18px;
  }

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

  .whats__function__list li span.img {
    flex-basis: calc(100px /1.5);
  }

  .whats__function__list li span.text {
    flex-basis: calc(100% - calc(118px / 1.25));
    margin-left: calc(18px / 1);
    font-size:calc(20.25px / 1.2025);
  }

}


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

Medical Setting

---------------------------------------------------------- */
/*schedule*/
.section.schedule {
  position: relative;
  padding-bottom: 72px;
}

.schedule__container {
  margin-top: 72px;
}

.schedule__caution  {
  margin-top:36px;
  margin-bottom: 36px;
}

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

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

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

/*firsttime*/
.section.firsttime {
  position: relative;
  padding-bottom: 72px;
}

.firsttime__caution {
  margin-top: 36px;
  padding:54px calc(90px + 90px + 45px);
}

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

.firsttime__caution ul li {
  color: #043d1c;
  font-size: 18px;
  font-weight: 500;
  background-image: url(../img/icon__check2.png);
  background-position: 0 50%;
  background-repeat:no-repeat;
  background-size: calc(41px / 2);
  padding-left:27px ;
}

  .firsttime__caution ul li:nth-child(odd) {
    flex-basis: 25%;
  }

  .firsttime__caution ul li:nth-child(even) {
    flex-basis: 75%;
  }


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

  .firsttime__caution {
    margin-top: calc(36px / 1.5);;
    padding:calc(54px / 2) 18px;
  }

  .firsttime__caution ul {
    display: block;
  }

  .firsttime__caution ul li {
    font-size: calc(18px / 1.15);
    background-image: url(../img/icon__check2.png);
    background-position: 0 9px;
    background-repeat:no-repeat;
    background-size: calc(41px / 3);
    padding-left:calc(27px / 1.5); ;
  }

  .firsttime__caution ul li:nth-child(odd),
  .firsttime__caution ul li:nth-child(even) {
    flex-basis: 100%;
  }

}


/*subject*/
.section.subject {
  position: relative;
}

.main__subject__container {
  margin-top: 45px;
}

.main__subject__list ,
.sub__subject__list {
  padding: 45px 72px 63px;
  background-color: #fff;
  margin:27px auto;
}

  .sub__subject__list {
    flex-basis: 49%;
    margin:1% ;
    background-color: #fff;
  }

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

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

.main__subject__title ,
.sub__subject__title {
  position: relative;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 7.25px;
  margin-bottom:22.5px;
  border-bottom: 1.5px solid #043d1c;
}

.main__subject__title span ,
.sub__subject__title span {
  display: inline-block;
  vertical-align: middle;
}

.main__subject__title span.icon img ,
.sub__subject__title span.icon img {
  margin-right: 18px;
  width: 72px
}

.main__subject__title span.ja ,
.sub__subject__title span.ja {
  position: relative;
  color: #043d1c;
  text-align: left;
  font-size: 27px;
  font-weight: bold;
}

.main__subject__title span ,
.sub__subject__title span {
  display: block;
  position: relative;
  text-align: left;
  font-size: 27px;
  font-weight: bold;
}

.main__subject__text p ,
.sub__subject__title p {
  text-align: justify;
  line-height: 2;
}

.main__subject__btn {
  margin-top: 36px;
  width: 300px;
}

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

.sub__subject__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  margin-top: -18px
}

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

  .main__subject__list ,
  .sub__subject__list {
    padding: calc(45px / 2) 18px ;
    margin:calc(27px / 1.5) auto;
  }

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

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

  .main__subject__title ,
  .sub__subject__title {
    padding-bottom: calc(7.25px /1);
    margin-bottom:calc(22.5px /1.5);
  }

  .main__subject__title span.icon img ,
  .sub__subject__title span.icon img {
    margin-right: calc(18px /1);
    width: calc(72px / 1.5)
  }

  .main__subject__title span.ja ,
  .sub__subject__title span.ja {
    font-size: calc(27px /1.5);;
    line-height: 1.456789;
  }

  .main__subject__title span ,
  .sub__subject__title span {
    font-size: calc(27px /1.5);;
  }

  .main__subject__btn {
    margin-top: calc(36px /1.5);
    width: 100%;
  }

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

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


/*treatment*/
.section.treatment {
  position: relative;
  padding-bottom: 72px;
}

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

.treatment__list {
  flex-basis:calc(100% / 3);
  padding: 18px 45px 36px;
  border-right: 1px dotted #aaa;
}

  .treatment__list:nth-child(3) {
    border-right:none
  }

.treatment__title {
  position: relative;
  margin-bottom: 27px;
}

.treatment__title span {
  display: block;
  font-size: 24px;
  color: #043d1c;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin: auto;
}

.treatment__title:after {
  position: absolute;
  content: '';
  width: 63px;
  height:  2px;
  margin: 9px auto auto;
  top: 100%;
  left: calc(50% - calc(63px /2));
  border-top:2px solid #043d1c;
  z-index: 123;
}

.treatment__detail {
  margin-top: 36px;
  padding:9px 24px;
}

.treatment__detail p {
  font-weight: bold;
  font-size: 15px;
}

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

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

  .treatment__list {
    flex-basis:100%;
    border-right:none;
    border-bottom:1px dotted #aaa;
    padding: calc(36px / 1) 18px ;
  }

  .treatment__list:nth-child(3) {
    border-border-botttm:none
  }

  .treatment__title {
    position: relative;
    margin-bottom: 27px;
  }

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

  .treatment__title:after {
    position: absolute;
    content: '';
    width: calc(63px / 1.5);
    height:  2px;
    margin: 9px auto auto;
    top: 100%;
    left: calc(50% - calc(calc(63px / 1.5) /2));
    border-top:2px solid #043d1c;
    z-index: 123;
  }

  .treatment__detail {
    margin-top: calc(36px / 1.5);
    padding:calc(9px / 1.5) 18px;
  }

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

/*antiaging*/
.section.antiaging {
  position: relative;
  padding: 0;
}

.antiaging__head {
  position: relative;
}

.antiaging__body {
  position: relative;
  z-index: 234;
  padding: 72px 0 45px;
  background-color: #fff;
  margin-top: calc(-90px - 90px);
}

.antiaging__leed {
  font-size: 18px;
  text-align: center;
  line-height: 2.3456789;
  margin:54px auto;
}

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

.antiaging__title span {
  display: block;
  font-size: 30.5px;
  font-weight: bold;
  color: #043d1c;
  letter-spacing: 0.125em;
  text-align: center;
  margin: auto;
}

.antiaging__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding:18px 0;
}

.antiaging__list {
  flex-basis: 49%;
  margin:1% ;
  padding: 45px;
}

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

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

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

.antiaging__subtitle span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #043d1c;
  text-align: center;
  margin: auto;
  padding-bottom:9px;
  border-bottom: 1.5px solid #000;
}

.antiaging__price {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding:9px 18px;
  margin-top: 27px;
}

.antiaging__price dt {
  font-size: 17px;
  text-align: left;
  font-weight: 500;
}

.antiaging__price dd {
  font-size: 17px;
  text-align: right;
  font-weight: 500;
}

.antiaging__price dd strong.en {
  font-size: 22px;
  font-weight: 600;
}

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

  .antiaging__leed {
    font-size: calc(18px /1.18);
    text-align: left;
    margin:calc(54px / 2) 0;
  }

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

  .antiaging__title span {
    font-size: calc(30.5px / 1.35);
    letter-spacing: 0.125em;
  }

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

  .antiaging__list {
    flex-basis: 100%;
    margin:2% auto;
    padding: calc(45px / 2);
  }

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

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

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

  .antiaging__price {
    padding:calc(9px / 1.5) calc(18px / 1.5);
    margin-top: calc(27px / 1.5);
  }

  .antiaging__price dt {
    font-size: calc(17px / 1.17);
  }

  .antiaging__price dd {
    font-size: calc(17px / 1.17);
  }

  .antiaging__price dd strong.en {
    font-size: calc(27px / 1.3);;
  }
}

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

.beauty__price__container {
  padding: 0 0 45px;
  margin: auto;
}

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

.beauty__title span {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #043d1c;
  text-align: center;
  margin: auto;
  padding-bottom:9px;
  line-height: 1.6789;
  border-bottom: 1.5px solid #000;
}

.beauty__price__list {
  padding:18px 0 27px;
}

.beauty__price__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding:27px 45px;
  border-bottom: 2px dotted #aaa;
}

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

.beauty__price__list dt {
  font-size: 17px;
  text-align: left;
  font-weight: 500;
}

.beauty__price__list dt span.small {
  display: block;
  font-size: 16px;
  line-height: 1.567890;
  font-weight:300;
}

.beauty__price__list dd {
  font-size: 17px;
  text-align: right;
  font-weight: 500;
}

.beauty__price__list dd strong.en {
  font-size: 22px;
  font-weight: 600;
}

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

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

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

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

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

  .beauty__price__list dl {
    padding:calc(27px / 1.5) 0;
  }

  .beauty__price__list dt {
    flex-basis: 70%;
    font-size: calc(17px / 1.17);
  }

  .beauty__price__list dt span.small {
    font-size: calc(16px / 1.16);
  }

  .beauty__price__list dd {
    flex-basis:30%;
    font-size: calc(17px / 1.17);
  }

  .beauty__price__list dd strong.en {
    font-size: calc(22px / 1.22);
  }

}


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

Service Setting

---------------------------------------------------------- */
/*service__introduction*/
.service__introduction {
  padding-top: 45px;
  position: relative;
}

.service__introduction__leed {
  text-align: center;
}

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

  .service__introduction__leed {
    text-align: left;
  }
}

/*service*/
.section.service  {
  position: relative;
}

.service__page__title {
  position: absolute;
  text-align: left;
  top:-36px;
  right: 0;
  z-index: 678;
  margin-right: -2.5%;
}

.service__page__title span {
  display: block;
  font-size:200px ;
  font-weight: 300;
  color: rgba(4, 61, 28, 0.1);
  line-height: 1;
}

.service__list {
  padding:54px 0 90px;
}

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

.service__title .num {
  display: block;
  color: #043d1c;
  font-size: 99px;
  flex-basis:140px ;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.service__title__text {
  flex-basis:calc(100% - 165px);
  margin-left: 25px;
}

.service__title__text span {
  display: block;
  color: #043d1c;
  text-align: left;
  line-height: 1.56789;
}

.service__title__text span.ja {
  font-weight: 600;
  font-size: 36px;
}

.service__title__text span.en {
  font-weight: 300;
  font-size: 16px;
}

.service__text {
  margin: 0 0 18px;
  text-align: justify;
  font-size: 16px;
}

.service__text strong {
  font-size: 20px;
  color: #043d1c;
}

.service__detail {
  display: flex;
  padding: 36px 0 0;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.service__detail__text {
  flex-basis: 48%;
}

.service__detail__img {
  flex-basis: 48%;
}

  .service__list1 .service__detail__text,
  .service__list3 .service__detail__text,
  .service__list5 .service__detail__text ,
  .service__list7 .service__detail__text {
    order: 1;
  }

  .service__list1 .service__detail__img,
  .service__list3 .service__detail__img,
  .service__list5 .service__detail__img ,
  .service__list7 .service__detail__img {
    order:2;
  }

  .service__list2 .service__detail__text,
  .service__list4 .service__detail__text,
  .service__list6 .service__detail__text ,
  .service__list8 .service__detail__text {
    order: 2;
  }
  
  .service__list2 .service__detail__img,
  .service__list4 .service__detail__img,
  .service__list6 .service__detail__img ,
  .service__list8 .service__detail__img {
    order:1;
  }
  
.service__detail__list {
  background: #fff;
  padding:54px 54px 45px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
/*
  .service__list2 .service__detail__list,
  .service__list4 .service__detail__list,
  .service__list6 .service__detail__list ,
  .service__list8 .service__detail__list {
    border: 1px solid rgba(0, 0, 0, 0.25);
  }
  */
  .service__list1 .service__detail__list ,
  .service__list2 .service__detail__list {
    min-height:435px;
  }
  
  .service__list3 .service__detail__list {
    min-height:480px;
  }

  .service__list5 .service__detail__list {
    min-height:360px;
  }

  .service__list6 .service__detail__list {
    min-height:390px;
  }

.service__detail__title {
  text-align: left;
  padding-bottom: 9px;
  border-bottom: 1px solid #043d1c;
  margin-bottom: 18px;
}

.service__detail__title span {
  display: block;
  margin: 0;
  font-weight: bold;
  color: #043d1c;
  font-size: 20.25px;
  text-align: left;
}

.service__detail__list ul  {
  margin-top: 9px;
}

.service__detail__list ul li {
  color: #043d1c;
  font-size: 16px;
  margin: 9px 0;
  font-weight: 400;
  background-image: url(../img/icon__check2.png);
  background-position: 0 11.25px;
  background-repeat:no-repeat;
  background-size: calc(41px / 2);
  padding-left:27px ;
}

.service__cta {
  margin-top: 36px;
}

.service__cta__container {
  padding: 36px;
}

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

.service__cta__btn {
  text-align: center;
  margin: 18px auto auto;
  width: 360px;
}

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

@media only screen and (max-width:767px) {
  .service__page__title {
    position: absolute;
    text-align: left;
    top:-18px;
    right: 0;
    margin-right: -1.25%;
  }

  .service__page__title span {
    font-size:calc(200px /2) ;
    color: rgba(4, 61, 28, 0.1);
    line-height: 1;
  }

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

  .service__title .num {
    font-size:calc(99px / 1.45);
    text-align: center;
    line-height: 1.345678;
    margin:auto;
    flex-basis:100%;
  }

  .service__title__text {
    flex-basis:100%;
    margin-left:0;
  }

  .service__title__text span.ja {
    font-size: calc(36px / 1.5);
    text-align: center;
    margin: auto;
    line-height: 1.45679;
    margin-bottom: 9px;
  }

  .service__title__text span.en {
    font-size: calc(16px / 1.16);
    text-align: center;
    margin: auto;
    margin-bottom: 27.00008px;
  }

  .service__text {
    margin: 0 0 calc(18px / 1.5);
    font-size: calc(16px / 1.16);
  }

  .service__text strong {
    font-size: calc(20px / 1.2);
  }

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

  .service__detail__text {
    flex-basis: 100%;
  }

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

  .service__list1 .service__detail__text,
  .service__list2 .service__detail__text,
  .service__list3 .service__detail__text,
  .service__list4 .service__detail__text,
  .service__list5 .service__detail__text,
  .service__list6 .service__detail__text ,
  .service__list7 .service__detail__text ,
  .service__list8 .service__detail__text {
    order: 2
  }

  .service__list1 .service__detail__img,
  .service__list2 .service__detail__img,
  .service__list3 .service__detail__img ,
  .service__list4 .service__detail__img,
  .service__list5 .service__detail__img,
  .service__list6 .service__detail__img ,
  .service__list7 .service__detail__img,
  .service__list8 .service__detail__img {
    order:1;
  }
/*
  .service__list2 .service__detail__text,
  .service__list4 .service__detail__text,
  .service__list6 .service__detail__text ,
  .service__list8 .service__detail__text {
    order: 2;
  }
  
  .service__list2 .service__detail__img,
  .service__list4 .service__detail__img,
  .service__list6 .service__detail__img ,
  .service__list8 .service__detail__img {
    order:1;
  }
  */
  .service__detail__list {
    padding:calc(54px / 3) 27px ;
    border: 1px solid rgba(0, 0, 0, 0.25);
  }

  .service__list1 .service__detail__list ,
  .service__list2 .service__detail__list ,
  .service__list3 .service__detail__list ,
  .service__list5 .service__detail__list  ,
  .service__list6 .service__detail__list  ,
  .service__list7 .service__detail__list  ,
  .service__list8 .service__detail__list {
    min-height:1px;
  }

  .service__detail__title {
    padding-bottom: calc(9px /1.5);
    margin-bottom: calc(18px /1.5);
  }

  .service__detail__title span {
    font-size:calc(20.25px /1.2025)
  }

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

  .service__detail__list ul li {
    font-size: calc(16px /1.16);
    margin: calc(9px /1.5) 0;
    background-image: url(../img/icon__check2.png);
    background-position: 0 calc(11.25px /1.25);
    background-size: calc(41px / 3);
    padding-left:calc(27px /1.5) ;
  }

  .service__cta {
    margin-top: calc(36px /1.5) ;
  }

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

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

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

}

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

News Setting

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

.news__body {
  padding-bottom:45px;
}

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

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

}

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

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

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

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

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

.news__list dt span.en {
  font-size: 14px;
}

.news__list dd span.cat ,
.news__list dd span.text {
  display: inline-block;
  vertical-align: middle;
}

.news__list dd span.cat {
  color: #fff;
  background-color: #89ba22;
  line-height: 1.1;
  font-size: 13px;
  text-align: center;
  margin:auto;
  margin-right: 9px;
  text-align: center;
  padding: 4.5px 9px;
}
/*
  .news__list dd span.cat.cat1 {
    background-color: #89ba22;
  }

  .news__list dd span.cat.cat2 {
    background-color: #043d1c;
  }

  .news__list dd span.cat.cat3 {
    background-color: #a99000;
  }
*/
@media only screen and (max-width:767px) {
  .news__list dl {
    padding: calc(20.25px / 1.5) 0;
  }

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

  .news__list dt span.en {
    font-size: 14px;
  }

  .news__list dd span.cat {
    color: #fff;
    font-size: 13px;
    margin-right: calc(9px / 1.5);
    text-align: center;
    padding: 4.5px calc(9px / 1.5);
  }

}


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

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

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

.wp-pagenavi a {
  color:#043d1c;
}

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

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

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

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

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

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

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

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




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

.c-postTitle__date.u-thin {
  width:100px;
  font-family: "LINE Seed JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.c-shareBtns,
.l-articleBottom__section.-author,
.l-articleBottom__section.-comment,
.l-articleBottom__section.-related,
.p-articleFoot  {
  display: none!important
}

.single__column .c-taxList__link {
  background-color: #043d1c!important;
  color: #fff!important;
}

.single__news .c-categoryList__link  {
  background-color: #79b01b!important;
  color: #fff!important;
}


/*
.single__news .c-categoryList {
  color: #000!important;
}*/

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

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

.single__news .entry__content {
  padding-top: 54px;
}

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

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

}

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

Column Setting

---------------------------------------------------------- */
/*column*/
.section.column {
  padding-top: 0;
  position: relative;
}

  .home .section.column {
    padding-top: 72px;
  }

.column__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: 45px 0 calc(45px - 5%);
}

.column__list {
  flex-basis: 30%;
  margin: 0 2.5% 5%;
}

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

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

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

.column__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  position: relative;
  z-index: 34;
}

.column__meta span.date {
  font-size: 14px;
  margin-right: 18px;
}

.column__meta span.cat {
  display: block;
  background-color: #043d1c;
  color: #fff;
  line-height: 1;
  font-size: 13px;
  text-align: center;
  margin-right: 9px;
  margin-bottom: 4.5px;
  padding: 4.5px 9px ;
}

.column__title {
  display: block;
  position: relative;
  z-index: 12;
}

.column__title a {
  text-decoration: underline;
}

.column__title a:hover,
.column__title a:focus {
  text-decoration: none!important
}

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

  .column__container {
    padding: calc(45px / 2) 0 calc(calc(45px - 5%) /2);
  }

  .column__list {
    flex-basis: 48.5%;
    margin: 0 1.5% 36px;
  }

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

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

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

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

  .column__meta span.date {
    font-size: calc(14px / 1.14);
    display: block;
    margin-right: calc(18px / 1.5);
  }

  .column__meta span.cat {
    font-size: calc(13px / 1.13);
    text-align: center;
    margin-right: 9px;
    display: block;
    margin-bottom: 4.5px;
    text-align: center;
  }

}

/*recent__entry*/
.section.recent__entry {
  padding: 72px 0 45px;
  margin-top: 72px;
  margin-bottom: 72px;
}

.recent__entry .news__body {
  padding-top: 45px;
}

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

  .recent__entry .news__body {
    padding-top: calc(45px / 2);
  }

}


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

Contact Setting

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

.contact__info__container {
  padding-top:81px;
  padding-bottom: 18px;
}

.contact__info__btn {
  margin:auto auto 54px;
  text-align: center;
  width: 100%;
}

.contact__info__btn a.btn {
  padding:36px;
}

.contact__info__container p {
  text-align: center;
}

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

  .contact__info__container {
    padding-top:calc(81px / 2);
    padding-bottom: calc(18px / 2);
  }

  .contact__info__btn {
    margin:auto auto calc(54px / 2);
  }

  .contact__info__btn a span {
    width: 90%;
    display: block;
    font-size: calc(22px / 1.22);
  }

  .contact__info__btn a.btn {
    padding:calc(36px / 2);
  }

  .contact__info__container p {
    text-align: left;
  }

}


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


.wpcf7 input[type=text],
.wpcf7 input[type=number],
.wpcf7 input[type=email],
.wpcf7 input[type=password],
.wpcf7 input[type=date],
.wpcf7 input[type=url],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  appearance:none;
  outline:none;
  border:0.5px solid #035794;
  padding:27px 18px;
  box-sizing:border-box;
  width: 100%;
  max-width: 100%;
  font-size: 18px;
}

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

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

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

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

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

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

.wpcf7 .form__accept p {
  margin:30.5px auto;
}

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

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

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

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

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

  .wpcf7 input[type=text],
  .wpcf7 input[type=number],
  .wpcf7 input[type=email],
  .wpcf7 input[type=password],
  .wpcf7 input[type=date],
  .wpcf7 input[type=url],
  .wpcf7 input[type=tel],
  .wpcf7 textarea {
    padding:calc(27px / 1.5) 18px;
    font-size: calc(18px / 1.18);
  }

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

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

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

  .wpcf7 .req {
    padding:2.25px 9px ;
    font-size: 11px;
    line-height: 1.2
  }

  .wpcf7 .form__accept p {
    margin:calc(30.5px /2) auto;
    text-align: left;
  }

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

}

*/

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

Elderlycare Setting

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

.elderlycare__text  {
  flex-basis: calc(100% - 545px);
}

.elderlycare__img  {
  flex-basis: 500px;
  margin-bottom: 45px;
}

@media only screen and (max-width:767px) {
  .elderlycare__text  {
    order: 2;
    flex-basis:100% 
  }

  .elderlycare__img  {
    flex-basis: 100% ;
    order: 1;
    margin-bottom: calc(45px /2);
  }
}

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

Privacy Setting

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

.privacy .section__content p strong {
  font-weight:600;
}

.privacy .section__content ul.wp-block-list,
.privacy .section__content ol.wp-block-list  {
  margin-left: 1.75em;
}

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

  .privacy .section__content ul.wp-block-list,
  .privacy .section__content ol.wp-block-list  {
    margin-left: 1.75em;
  }

}


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

Sitemap Setting

---------------------------------------------------------- */
/*sitemap*/
.section.sitemap {
  position:relative;
  padding-top:45px;
}

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

.sitemap__list {
  text-align: left;
  flex-basis: 45%;
  margin-bottom: 36px;
  padding-top: 9px;
}

.sitemap__list li {
  margin: 7.25px 0;
  margin-left: 2em;
}

.sitemap__title {
  margin-bottom:13.5px;
  padding-bottom: 9px;
  border-bottom: 1px solid #000;
}

.sitemap__title span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4.5px;
}

.sitemap__list li a {
  display: block;
  font-size: 14px;
}

.sitemap__list li:before {
  content: '・';
  position: absolute;
  margin-left: -1em;
}

.sitemap__list li a:focus,
.sitemap__list li a:hover {
  text-decoration: none;
}

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

  .sitemap__list {
    flex-basis: 100%;
    margin-bottom: calc(36px / 1.5);
    padding-top: calc(9px / 1.5);;
  }

  .sitemap__list li {
    margin-left: 1.5em;
  }

  .sitemap__title {
    margin-bottom:13.5px;
    padding-bottom: 9px;
    border-bottom: 1px solid #000;
  }

  .sitemap__title span {
    font-size: calc(15px / 1);
    margin-bottom: 4.5px;
  }

  .sitemap__list li a {
    font-size: 14px;
  }

  .sitemap__list li:before {
    margin-left: -1em;
  }


}


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

Error404 Setting

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

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

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

  .error404 .entry__btn a {
    display: block;
    text-decoration: none;
    margin: calc(36px / 1) auto;
    max-width: 100%;
  }

}


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

Footer Setting

---------------------------------------------------------- */
/*footer*/
.footer {
  padding-bottom:45px
}

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

}

/*footer__container*/
.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding-top:72px;
  padding-bottom: 9px
}

.footer__text {
  flex-basis: 40%;
}

.footer__sitemap {
  flex-basis: 50%;
}

.footer__logo {
  text-align: left;
  position: relative;
}

.footer__logo img {
  width: 315px;
}

.footer__text {
  margin-top:22.5px;
}

.footer__text p　{
  font-size: 16px;
}

.footer__tel  {
  margin-top: 27px;
}

.footer__tel span {
  display: block;
  margin: 0;
}

.footer__tel span.en {
  display: block;
  font-size:36px;
  font-weight: 700;
  line-height: 1;
  color: #8aba22;
}

.footer__tel span.ja {
  display: block;
  margin-top:9px;
  font-size: 15px;
}

.footer__tel span.en img {
  width:29px;
  margin-top: -7.2px;
  margin-right: -7.2px;
}

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

.footer__schedle {
  margin-top: 27px;
}

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

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

  .footer__sitemap {
    flex-basis: 100%;
    order: 1;
    box-sizing: border-box;
    margin-bottom: 36px;
  }

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

  .footer__logo img {
    width: calc(315px / 1.25);
    text-align: center;
    margin: auto;
  }

  .footer__text {
    margin-top:calc(22.5px / 1.5);
  }

  .footer__text p　{
    font-size: calc(16px / 1.16);
  }

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

  .footer__tel span.en {
    font-size:calc(36px / 1.16);
  }

  .footer__tel span.ja {
    margin-top: calc(9px / 1);
    font-size: calc(15px / 1.15);
  }

  .footer__tel span.en img {
    width:calc(29px / 1.5);
    margin-top: -7.2px;
    margin-right: -7.2px;
  }

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

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

}

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

.footer__sitemap__list {
  text-align: left;
  flex-basis: 45%;
  margin-bottom: 36px;
  padding-top: 9px;
}

.footer__sitemap__list li {
  margin: 7.25px 0;
  margin-left: 2em;
}

.footer__sitemap__title {
  margin-bottom:13.5px;
  padding-bottom: 9px;
  border-bottom: 1px solid #000;
}

.footer__sitemap__title span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4.5px;
}

.footer__sitemap__title a {
  text-decoration: none;
}

.footer__sitemap__list li a {
  display: block;
  font-size: 14px;
}

.footer__sitemap__list li:before {
  content: '・';
  position: absolute;
  margin-left: -1em;
}

.footer__sitemap__list li a:focus,
.footer__sitemap__list li a:hover {
  text-decoration: none;
}


@media only screen and (min-width:768px) and (max-width:1180px) {
  .footer__sitemap__list li {
    margin-left:1em;
  }

  .footer__sitemap__title span {
    font-size: calc(calc(15px / 1.15) * 1.25);
  }
}

@media only screen and (max-width:767px) {
  .footer__sitemap__list {
    text-align: left;
    flex-basis: 47%;
    margin-bottom: calc(36px / 2);
    padding-top: calc(9px / 2);
  }

  .footer__sitemap__list li {
    margin: calc(7.25px / 1) 0;
    margin-left:1em;
  }

  .footer__sitemap__title {
    margin-bottom:calc(13.5px / 1.5);
    padding-bottom: calc(9px / 1.5);
    border-bottom: 1px solid #000;
  }

  .footer__sitemap__title span {
    font-size: calc(15px / 1.15);
    margin-bottom: calc(4.5px / 1.5);
  }

  .footer__sitemap__list li a {
    font-size: calc(14px / 1.15);
  }

  .footer__sitemap__list li:before {
    margin-left: -1em;
  }

}


/*footer__address*/
.footer__address address {
  font-size: 12px;
  font-style: normal;
  text-align: center;
  margin:auto;
  font-weight: 300;
}

@media only screen and (max-width:767px) {
  .footer__address {
    margin-top: 18px;

  }

}

/*fixed__menu
.fixed__menu {
  display: none;
}

.fixed__menu {
  display: block;
  position: fixed;
  z-index: 12345;
  bottom:2em;
  right: 2em;
  width:calc(86px/ 2);
  height:calc(86px/ 2);
}

.fixed__menu .pagetop a {
  display: block;
  text-align: center;
  text-decoration: none;
  width:calc(86px/ 2);
  height: calc(86px/ 2);
  margin: auto;
}

.fixed__menu .pagetop img {
  width:calc(86px/ 2);
}

@media only screen and (max-width:767px) {
  .fixed__menu {
    bottom:calc(2em / 1);
    right: calc(2em / 1);
    width:calc(86px/ 3);
    height:calc(86px/3);
  }

  .fixed__menu .pagetop a {
    width:calc(86px/2);
    height: calc(86px/2);
  }

  .fixed__menu .pagetop img {
    width:calc(86px/2);
  }

}

