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

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

@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;
  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__primary*/
.btn__primary {
  background-color: #000!important;
  border: 1px solid #000;
  text-align: center;
  color: #fff!important;
  padding:11.25px 36px;
}

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

/*btn__secondary*/
.btn__secondary {
  background: #fff!important;
  border: 1px solid #000;
  text-align: center;
  color: #000!important;
  padding:11.25px 36px;
}

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

/*btn__line*/
.btn__line {
  background: #4cb951;
  border: 1.5px solid #4cb951;
  text-align: center;
  color: #fff!important;
  padding:27px 36px;
}

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

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

}


/*common__arrow__btn*/
.common__arrow__btn {
  margin-top: 36px;
}

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

.common__arrowbtn_list li {
  margin-right:54px;
}

.common__arrow__btn .icon__animal,
.common__arrow__btn .icon__line {
  width: 20px;
  height: 20px;
}

  .common__arrow__btn .icon__animal {
    margin-right: 4.5px;
  }

@media only screen and (max-width:767px) {
  .common__arrow__btn {
    margin-top:0;
    margin-right: auto;
    max-width: 75%;
    margin-left: auto;
    padding-bottom: 72px;
  }


  .common__arrowbtn_list li {
    flex-basis: 100%;
    margin-right:0;
    margin: 36px 0 0;
    text-align: left;
  }

  .common__arrow__btn .icon__animal,
  .common__arrow__btn .icon__line {
    width: calc(20px /1);
    height: calc(20px /1);
  }

}


/*btn__arrow*/
.btn__arrow {
  display: inline-block;
  text-decoration: none!important;
  font-weight: 600;
}

.btn__arrow:after {
  position: absolute;
  content: '';
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  width:12px;
  height: 2px;
  margin: 0;
  bottom: 2.25px;
  right: -1px;
}

.btn__arrow span {
  display: inline;
  padding-right: 2em;
  padding-left: 2.25px;
  padding-bottom:4.5px;
  border-bottom: 2px solid #000;
}

@media only screen and (max-width:767px) {
  .btn__arrow ,
  .btn__arrow span {
    display: block;
    width: 100%;
  }

  .btn__arrow:after {
    position: absolute;
    content: '';
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    width:12px;
    height: 2px;
    margin: 0;
    bottom: 4.5px;
    right: -3px;
  }

  .btn__arrow span {
    padding-right: 0;
    padding-bottom:0x;
  }

}




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

Form Setting

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

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

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

textarea {
  line-height: 2;
}

@media only screen and (max-width:767px) {
  input[type=text],
  input[type=number],
  input[type=email],
  input[type=password],
  input[type=date],
  input[type=url],
  input[type=tel],
  textarea {
    border-radius: calc(9px / 1.5);
    padding: calc(22.5px / 1);
    width: 100%;
    max-width: 100%;
  }

  input[type=text].zip,
  input[type=text].date {
    width:auto;
  }

  select {
    border-radius:calc(9px / 1.5);
    padding: calc(22.5px / 1);
    width: 100%;
    max-width: 100%;
  }
}

/*radio checkbox
input[type=radio],
input[type=checkbox] {
  transform:scale(1.5);
  margin-right: 0.5rem;
}

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

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

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

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

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

@media only screen and (max-width:767px) {
  .select select {
    box-sizing:border-box;
    width: 100%;
    outline: none;
    border:none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    appearance: none;
    color: #000;
    max-width: 100%;
    padding: calc(22.5px / 2) calc(45px /2) calc(22.5px / 2) calc(22.5px / 2);
    font-size: calc(18px / 1.18);
  }

  .select {
    border-radius: calc(6px / 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%;
}

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

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

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

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

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

/*

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

@media only screen and (max-width:767px) {
  table.table__striped  {
    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: 1180px;*/
  color: #000;
  font-weight:400;
  letter-spacing: 0.05em;
  font-size:16px;
  line-height:2;
  padding:0;
  margin:auto;
}

#wrapper {
  position: relative;
}

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

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

.container__wide {
  width:100%;
  margin:auto;
  box-sizing: border-box;
  padding-left:2em;
  padding-right:2em;
  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;
}


@media only screen and (min-width:1201px) and (max-width:1440px) {
  .container__wide {
    padding-left:2em;
    padding-right:2em;
  }
}


@media only screen and (min-width:768px) and (max-width:1200px) {
  .container__fluid,
  .container__wide,
  .container,
  .container__middle,
  .container__narrow,
  .container__xnarrow,
  .container__xxnarrow,
  .container__xxxnarrow,
  .container__xxxxnarrow,
  .container__xxxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:2em;
    padding-right:2em;
    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 {
    padding-left:0;
    padding-right:0;
  }

  .home main {
    overflow-x: auto;
  }

}

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

  .container__fluid,
  .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 {
    padding-left:0;
    padding-right:0;
  }
/*
  .home main {
    overflow-x: auto;
  }
*/
}

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

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


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

Header Setting

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


/*topbar*/
.topbar {
  width: 100%;
  position: relative;
}

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

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

.topbar__contact {
  flex-basis:calc(100% - 320px);
  text-align: right;
  position: relative;
  z-index: 34;
  padding: 0 0 18px
}

.topbar__logo img {
  width: 100%;
}

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

.topbar__contact__list li {
  margin-left: 18px;
}

.topbar__contact__list li span  {
  display: block;
  text-align: center;
  line-height: 1.3456789;
}

  .topbar__contact__list li span.en  {
    font-weight:600;
    font-size: 30.5px;
    letter-spacing: 0;
  }

  .topbar__contact__list li span.ja  {
    font-weight:300;
    font-size: 14px;
    letter-spacing: 0;
  }

.topbar__contact__list li a ,
.topbar__contact a.btn__line {
  display: block;
  text-decoration: none;
}

.topbar__contact a.btn {
  font-size: 17px;
  padding:22.5px 27px;

}

.topbar__contact .icon__tel ,
.topbar__contact .icon__line {
  width: 22.5px;
  height: 22.5px;
  display: inline-block;
  margin-top: -4.5px;
  margin-right: -4.5px;
  vertical-align: middle;
}

  .topbar__contact .icon__line {
    margin-right: 4.5px;
  }

@media only screen and (max-width:767px) {
  .topbar__logo {
    flex-basis:100%;
    position: relative;
    text-align: left;
    margin:0;
  }

  .topbar__contact ,
  .topbar__contact__list  {
    display: none;
  }

  .topbar__logo  {
    padding: 0 0 9px;
  }

  .topbar__logo img {
    width: 226px;
  }

}



/*gnav__pc*/
.gnav__pc__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding:40.5px 0;
}

.gnav__pc__list li  {
  margin:0 36px;
}

.gnav__pc__list li a   {
  display: block;
  font-size: 18px;
  letter-spacing: 0.12345em;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}

.gnav__pc__list li:after {
  content: '|';
  position: absolute;
  top: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.35);
  left:100%;
  line-height:1;
  padding: 0 36px;
}

.gnav__pc__list li:nth-last-child(1)::after {
  display: none;
}

.gnav__pc__list li a span  {
  display: block;
  font-size: 14px;
  margin: auto;
  line-height: 1.456789;
}
/*

.gnav__pc__list li.sns img {
  width: calc(72px / 2);
  margin-left: 18px;
}

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

.topbar__contact__list li  {
  flex-basis: 50%;
}

.topbar__contact__list li a  {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  padding: 27px 0;
  line-height: 1.3457;
}

.topbar__contact__list li a span {
  display: inline-block;
  vertical-align: middle;
}

  .topbar__contact__list li.tel a  {
    background: #ba9975;
  }

  .topbar__contact__list li.line a  {
    background: #000;

  }

.topbar__contact__list li a img {
  width: 23px;

}

*/

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

}

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

  nav.gnav__sp  {
    display:block;
    position:fixed;
    top:0;
    right:-80%;
    bottom:0;
    width:80%;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transition:all .5s;
    opacity:0;
    background: #000;
    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(16px / 1.17);
    font-weight: 500;
    padding:20.25px 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:18px;
    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:#000;
    border-radius:0;
    transition:all .5s;
  }

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

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

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

  .topbar__contact__list li {
    flex-basis: 100%;
    margin: 4.5px auto!important;
  }

  .topbar__contact__list li.line a.btn {
    background-color: #fff;
    border: 1px solid #000;
    color: #000!important;
  }

    .topbar__contact__list li.line a.btn:hover,
    .topbar__contact__list li.line a.btn:focus  {
      color: #000!important;
    }

}


@media only screen and (max-width:767px) {
  /*gnav__sp__menu__list*/
  .gnav__sp__list .gnav__sp__menu__list  {
    margin-top: -18px;
    padding: 0 0 9px 1em;
  }

  .gnav__sp__list .gnav__sp__menu__list a  {
    padding: 18px 0px!important;
    color:rgba(255,255,255,1)!important;
    font-size:calc(17px / 1.3)!important;
    transition-duration:0.2s;
    border-bottom:0.75px solid rgba(255,255,255,0.25);
  }

  .gnav__sp .inner ul li a.menu__list__link {
    border-bottom: none;
  }

  .gnav__sp__menu__child__list {
    margin-top: 0!important;
    padding: 0 0 0 1em!important;
  }

  .gnav__sp .inner ul ul.gnav__sp__menu__child__list li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
  }

  .gnav__sp .inner ul ul.gnav__sp__menu__child__list li a {
    display:block;
    color:rgba(255,255,255,1)!important;
    font-weight: 5400;
    padding:9px 0!important;
  }

  /*gnav__sp__sns__list*/
  .gnav__sp__sns__list  {
    margin: 18px auto;
    text-align: center;
  }

  .gnav__sp__sns__list li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    margin-right: 12px;
  }

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

  .gnav__sp__sns__list li img {
    height: calc(79px / 2);
  }
}


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

  .header__nav__sp ul li {
    display: block;
    width: 100%;
    margin: 9px auto!important
  }

  .header__nav__tel a,
  .header__nav__web a {
    display: block;
    text-decoration: none;
    text-align: center;
    padding:20px 9px ;
  }

    .header__nav__tel a {
      background-color: #fff;
      color: #000!important;
    }

    .header__nav__web a {
      background-color: #4cb951;
      color: #fff!important;
    }

  .header__nav__tel a span.ja,
  .header__nav__web a span.ja {
    display: block;
    line-height: 1;
    font-weight: 600;
    font-size: 16px;;
  }

    .header__nav__tel a span.ja {
      color: #000!important;
    }


  .header__nav__tel a img ,
  .header__nav__web a img {
    margin-right: 4.5px;
    vertical-align: middle;
  }

    .header__nav__tel a img {
      width: calc(50px / 2.5);
      margin-top: -4.5px;
    }

    .header__nav__web a img {
      width: calc(50px / 2.25);
      margin-top: -2.25px;
    }

}

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

Section Setting

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

.bg2 {
  background-color: #f8f8f8;
}

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


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

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

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

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

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

}

/*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__menu*/
.section__menu {
  padding:0;
  margin:18px auto ;
  position: relative;
  text-align: center;
}

.section__menu__list {
  display: flex;
  flex-wrap:wrap;
  justify-content:center ;
  align-items: top;
}

.section__menu__list li {
  margin: 0 9px;
}

.section__menu__list li a {
  display: block;
  text-decoration: none;
  text-align: center;
  border: 1.5px solid #313131;
  background-color: #fff;
  color: #313131;
  padding: 7.5px 63px;
  font-size: 15px;
  line-height: 1.789;
}
  .section__menu__list li.default a ,
  .section__menu__list li.active a ,
  .section__menu__list li a:hover,
  .section__menu__list li a:focus {
    border: 1px solid #313131;
    background-color: #313131;
    color: #fff;
  }

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

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

  .section__menu__list li {
    margin:-1px -1px;
    flex-basis: 50%;
    border-collapse: collapse;
  }

  .section__menu__list li a {
    padding: calc(7.5px / 1.5) ;
    font-size: calc(14px / 1.14);
  }

}


/*section__title**/
.section__title {
  position: relative;
  font-style: normal;
}

.section__title span {
  display: block;
  text-align: center;
  margin: auto;
  line-height: 1.567890;
}

  .section__title span.en {
    font-size: 13px;
    letter-spacing: 0.25em;
    color: #828282;
    font-weight: 500;
  }

  .section__title span.ja {
    font-size:30.5px;
    font-weight: 700;
    letter-spacing: 0.35em;
  }

@media only screen and (max-width:767px) {
  .section__title span.en {
    font-size: 13px;
    letter-spacing: calc(0.25em /1.5);
    line-height: 1.56789;
  }

  .section__title span.ja {
    font-size:calc(30.5px / 1.305);
    letter-spacing: calc(0.35em /1.5);
    line-height: 1.56789;
  }
}


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

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

  .section__subtitle.border {
    border-bottom: 2px solid #000;
    padding-bottom: 4.5px;
    margin-bottom: 9px;
  }

.section__subtitle span {
  display: block;
  margin: 0;
  line-height: 1.789;
}

.section__subtitle span.en {
  font-size: 12.5px;
  color: #828282;
  font-weight: 500;
  letter-spacing: 0.25em;
}

.section__subtitle span.ja {
  display: block;
  font-size: 26.5px;
  letter-spacing: 0.25em;
  font-weight:700;/*
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl; 
  text-orientation: upright;*/   
}

  .section__subtitle span.ja.small {
    font-size: 22.5px;
  }

@media only screen and (max-width:767px) {
  .section__subtitle.border {
    border-bottom: calc(2px / 1.5) solid #000;
    padding-bottom: calc(4.5px / 1.5);
    margin-bottom: calc(9px / 1.5);
  }

  .section__subtitle span.en {
    font-size: 12.5px;
    letter-spacing: calc(0.25em / 1.5);
    line-height: 1.56789;
  }

  .section__subtitle span.ja {
    font-size: calc(26.5px / 1.29);;
    letter-spacing: calc(0.25em / 1.5);
    line-height: 1.56789;
  }

  .section__subtitle span.ja.small {
    font-size: calc(22.5px / 1.25);;
    line-height: 1.56789;
  }

}


/*section__content*/
.section__content {
  padding-top:54px;
}

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


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

.breadnav p {
  font-size: 14px;
  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(36px / 2) 0;
  }

  .breadnav p {
    font-size: calc(14px / 1.1)
  }
}


/*page__header*/
.page__header {
  width: 100%;
  margin: auto;
  padding: 0;
  text-align: center;
  position: relative;
}

.page__header img {
  margin: auto;
  text-align: center;
  pointer-events: none;
}

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

Common menu Setting

---------------------------------------------------------- */
/*common__menu*/
.common__service {
  background-color: #f2f2f2;
  padding:72px 0;
}

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

.common__menu__left ,
.common__menu__right {
  background: #fff;
}

.common__menu__left {
  flex-basis: 48%;
  margin: 0;
  padding: 40.5px 54px ;
}

.common__menu__right {
  flex-basis: 48%;
  margin: auto;
  padding: 54px 54px 180px;
  background-position:center 110%;;
  background-image: url(../img/common__menu3.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

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

.common__menu__left .common__menu__list:nth-child(2) {
  background-image:none;
  padding: 27px 0 18px;
}

  .common__menu__left .common__menu__text {
    flex-basis:55%;
  }

  .common__menu__left .common__menu__img {
    flex-basis: 35%;
  }

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

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

.common__menu__title span {
  display: block;
  font-size: 20px;
  letter-spacing: 0.25em;
  font-weight: 700;
}

  .common__menu__right .common__menu__title span {
    letter-spacing: 0.345em;
  }

.common__menu__title span img {
  width: calc(76px/ 1.9);
  vertical-align: middle;
  display: inline-block;
  margin-right: 9px;
}

.common__menu__text p  {
  font-weight: 300;
  text-align: justify;
}

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

.common__menu__tel a {
  display: block;
  text-align: center;
  margin: auto;
  text-decoration: none;
}

.common__menu__tel a span.en {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.3456789;
  font-weight: 600;
  font-size: 49px;
}

.common__menu__tel span.ja {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
}

.common__menu__tel img {
  width: 31px;
  margin-top: -4.5px;
  margin-right: 4.5px;
}

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

.common__menu__line a.btn {
  width: 408px;
  text-align: center;
  padding:18px 27px;
  margin: auto; 
  font-size: 18px;
}

.common__menu__line .icon__line {
  width: 22.5px;
  height: 22.5px;
  margin: 0 9px 0 0; 
}

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

  .common__menu__left {
    flex-basis: 100%;
    padding: calc(40.5px / 4) 18px ;
    margin-bottom: 18px;
  }

  .common__menu__right {
    flex-basis: 100%;
    padding: calc(40.5px / 1.5) 18px calc(90px + 18px);
  }

  .common__menu__left .common__menu__list {
    padding: calc(27px / 1.5) 0 calc(36px / 1.5);
    background-image : linear-gradient(to right, #000 1px, transparent 1px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }

  .common__menu__left .common__menu__list:nth-child(2) {
    background-image:none;
    padding: calc(27px / 1.5) 0 calc(18px / 1.5);
  }

  .common__menu__title span {
    font-size: calc(20px / 1.2);
    letter-spacing:calc(0.25em / 1.5);
  }

    .common__menu__right .common__menu__title span {
      letter-spacing:calc( 0.345em / 1.5);
    }

  .common__menu__title span img {
    width: calc(76px/ 3.5);
    margin-right: calc(9px / 1.5);;
  }

  .common__menu__tel a span.en {
    font-size:calc(49px/ 1.5);
  }

  .common__menu__tel span.ja {
    font-size: 14px;
  }

  .common__menu__tel img {
    width: calc(31px / 1.5);
    margin-top: -2.25px;
    margin-right: 2.25px;
  }

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

  .common__menu__line a.btn {
    width: 100%;
    padding:calc(18px/ 1.5) 18px;
    font-size: calc(18px/ 1.18)
  }

  .common__menu__line .icon__line {
    width:calc(22.5px / 1.25);
    height:calc(22.5px / 1.25);
    margin: 0 calc(9px/ 1.5)  0 0; 
  }
}

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

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

.withmal p.center {
  font-size: 15px;
  text-align: center;
  margin: auto;
  font-weight: 600;
}

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

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

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

}

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

Clendar Setting

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

.calendar__table thead th {
  text-align: center;
  border: none;
  background: #000;
  color: #fff;
  padding: 6.25px ;
}

  .footer .calendar__table thead th {
    border-bottom: 1px solid #000;
    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 ;
  border-bottom: 1px solid #000;
}

  .footer .calendar__table tbody th,
  .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: 22.5px;
    color: #f9a319;
    text-align: center;
  }

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

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

  .calendar__table tbody th ,
  .calendar__table tbody td   {
    padding:calc(18px / 1.1) 6.25px ;
    font-size: calc(14px / 1.14);;
  }

    .footer .calendar__table tbody th,
    .footer .calendar__table tbody td   {
      padding: calc(9px / 1.1) 0;
      font-size: calc(14px / 1.14);;
    }

  .calendar__table tbody th {
    width: 30%;
  }

  .calendar__table tbody td  {
    width: 9%;
  }

  .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 span  {
    font-size: calc(22.5px / 1.225);;
  }

    .calendar__table tbody td span.ja  {
      font-size: calc(18px / 1.18);
    }
    
  .calendar__caution   {
    display: block;
    margin-top: calc(13.5px / 1.5);
    font-size: calc(14px / 1.1);;
  }
}

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

HOME Setting

---------------------------------------------------------- */
/*home__header*/
.home__header {
  width: 100%;
  height: 780px;
  position: relative;
  background-image: url(../img/home__header__pc.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.home__header__title {
  position: relative;
  padding: 90px 0;
}

.home__header__title {
  padding-top: calc(90px + 45px);
  margin-top: 90px;
  left: 18px;
}

.home__header__title .text {
  writing-mode: vertical-rl;
}

.home__header__title .text1 ,
.home__header__title .text2,
.home__header__title .text3 {
  position: absolute;
  width: 100%;
}

  .home__header__title .text1 {
    left: 6em;
    top: 0em;
    height:300%;
  }

  .home__header__title .text2 {
    left: 3.5em;
    top: 1em;
    height:400%;
  }

  .home__header__title .text3 {
    left: 1em;
    top: 2em;
    height:400%;
  }

.home__header__title .text span {
  font-size: 36px;
  font-weight: 700;
  padding-left: 0;
  line-height: 1.456789;
  letter-spacing: 0.15em;
  border-right: 2px solid #000;
  margin-bottom: 200px;
}

/*
.home__header__title .text span:nth-child(1)::after {
  position: absolute;
  content: '、';
}*/

.home__header__title .text span:nth-child(2) {
  margin-top: 18px;
}

.home__header__title .text span:nth-child(3) {
  margin-top: 36px;
}

@media only screen and (max-width:767px) {
  .home__header {
    width: 100%;
    height: 100svh;
    overflow-x: clip;
    position: relative;
    background-image: url(../img/home__header__pc.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .home__header__title {
    padding: calc(90px / 1.5) 0;
    margin-top: calc(90px /2);
    left: 36px;
  }

  .home__header__title .text1 {
    left: calc(6em / 1.5);
    height:600%;
  }

  .home__header__title .text2 {
    left: calc(3.5em / 1.5);
    top: calc(1em /1.5);
    height:600%;
  }

  .home__header__title .text3 {
    left: calc(1em / 1.5);
    top: calc(2em /1.5);
    height:600%;
  }

  .home__header__title .text {
    line-height: 2;
  }


  .home__header__title .text span {
    font-size: calc(36px / 1.5);
    letter-spacing: calc(0.15em /1.5);
    border-right: calc(2px/ 1.5) solid #000;
    margin-bottom: 250px;
  }



}


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

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

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

.home__case {
  flex-basis: 47.5%;
  order: 2;
}


@media only screen and (max-width:767px) {
  .section.home__info {
    padding-bottom: 0;
  }

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

  .home__news,
  .home__case {
    flex-basis: 100%;
  }
}


/*news__list*/
.news__list {
  padding: 9px 0;
}

.news__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;;
  padding: 24px 0;
  background-image : linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
    
  .news__list dl:nth-last-child(1) {
    background-image :none;
  }

.news__list dl dt {
  flex-basis: 15%;
  font-size: 13px;
  margin-top: 5px;
  font-weight: 300;
}

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

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

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

  .news__list dl.blank dt {
    display: none;
  }

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

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

  .news__list dl {
    padding: calc(24px / 1.5)  0;
    background-image : linear-gradient(to right, #000 1px, transparent 1px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }

  .news__list dl dd  ,
  .news__list dl dt,
  .home .news__list dl dt,
  .home .news__list dl dd {
    flex-basis: 100%; 
  }
  
  .news__list dl.blank dt {
    display: none;
  }

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


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

.home__about__img {
  width: 100%;
  max-width: 1180px;
  position: absolute;
  right:calc(-90px - 90px - 90px);
  top: 0;
  margin: 0;
  padding: 0;
}

.home__about__container {
  padding-top: 18x;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  position: relative;
  z-index: 234;
} 

.home__about__text {
  flex-basis: 60%;
  order: 1;
  margin-right: 0;
  background-color: #fff;
  padding:90px ;

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

.home__about__title {
  flex-basis: 12.5%;
}

.home__about__detail {
  flex-basis: 87.5%;
}

.home__about__title span {
  display: block;
  font-size: 30.5px;
  letter-spacing: 0.25em;
  font-weight: 800;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl; 
  text-orientation: upright;        
}

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

.home__about__subtitle span {
  font-size: 12.5px;
  letter-spacing: 0.25em;
  color: #828282;
  font-weight: 500;
}

.home__about__text p {
  margin-top: 2em;
  text-align: justify;
}


@media only screen and (max-width:767px) {
  .section.home__about {
    padding-top: 0;
    padding-bottom: 0;
  }

  .home__about__img {
    width: 100%;
    max-width: 100%;
    position: relative;
    right:0;
    top: 0;
    margin: 0;
    padding: 0;
  }

  .home__about__text {
    flex-basis: 100%;
    order: 1;
    margin-right: 0;
    background-color: #fff;
    padding:calc(90px/ 2) 18px ;
  } 

  .home__about__title {
    flex-basis: 20%;
  }

  .home__about__detail {
    flex-basis: 80%;
  }

  .home__about__title span {
    display: block;
    font-size: calc(30.5px / 1.305);
    letter-spacing: calc(0.25em /1.5);
  }

  .home__about__subtitle {
    margin: -9px 0 calc(18px /1.5);;
  }

  .home__about__subtitle span {
    letter-spacing:calc(0.25em /1.5);
  }

  .home__about__text p {
    margin-top: calc(2em /1.5);;
  }

}


/*home__about__bg*/
.home__about__bg  {
  background-color: #e1d4c5;
  width: 1180px;
  height:70%;
  z-index: -1;
  text-align: center;
  margin: auto;
  position: absolute;
  top: 5em;
  left:4em;

}

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

/*home__access*/
@media only screen and (max-width:768px) {
  .section.home__access {
    padding-top: 0;
    padding-bottom:27px;
  }
}



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

Access Setting

---------------------------------------------------------- */
/*access__info*/
.access__info__container {
  padding-top: 45px;
}

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

.access__info__container li {
  flex-basis: 48.5%;
  margin: 0;
}

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

.access__info__container li span.ja {
  display: block;
  text-align: center;
  margin: 18px auto auto;
  text-align: center;
}

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

  .access__info__container li {
    flex-basis: 100%;
    margin: 0 0 18px;
  }

  .access__info__container li span.ja {
    margin: calc(18px /2.5) auto auto;
  }
}


/*access__map*/
.access__map {
  text-align: center;
  margin: auto;
  width: 100%;
  margin: 27px auto;
}

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

@media only screen and (max-width:767px) {
  .access__map {
    margin: calc(27px / 1.5) auto;
  }

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


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

.access__list.list1 {
  flex-basis: 42.5%;
}

.access__list.list2 {
  flex-basis: 52.5%;
}

.access__list dl {
  position: relative;
}

  .access__list.list1  dl {
    padding-bottom: 54px;
  }

  .access__list.list2  dl {
    padding-bottom: 27px;
  }

.access__list dt {
  font-size: 13px;
  padding-bottom: 4.5px;
  margin-bottom: 8px;
  font-weight: 400;
  border-bottom: 1.5px solid #000;
}

.access__list dd {
  font-size: initial;
  text-align: justify;
}

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

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

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

  .access__list.list1  dl,
  .access__list.list2  dl {
    padding-bottom: calc(54px / 1.5);
  }

  .access__list dt {
    font-size: calc(13px / 1.1);
    padding-bottom:calc(4.5px / 1.5);
    margin-bottom:calc(8px / 1.5);
    border-bottom: calc(1.5px / 1.5) solid #000;
  }

}




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

About Setting

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

.about__message__text {
  flex-basis: 45%;
  order: 2;
}

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

.about__message__text p {
  text-align: justify;
}

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

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

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

}



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

.about__outline__text {
  flex-basis: 45%;
  order: 1;
}

.about__outline__img {
  flex-basis: 50%;
  order: 2;
}

.about__outline__text p {
  text-align: justify;
}

@media only screen and (max-width:520px) {
  .section.about__outline {
    padding-bottom: 0;
  }

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

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

  .about__outline__img {
    flex-basis: 100%;
    order: 1;
    margin: auto auto 36px ;
  }

}


/*about__outline__list*/
.access__container {
  padding: 36px 0 0;
}

.about__outline__list dl {
  position: relative;
  margin-bottom: 36px;
}

.about__outline__list dt {
  font-size: 13px;
  padding-bottom: 4.5px;
  margin-bottom: 8px;
  font-weight: 400;
  border-bottom: 1.5px solid #000;
}

.about__outline__list dd {
  font-size: initial;
  text-align: justify;
}

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

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

  .about__outline__list dt {
    font-size: calc(13px / 1.1);
    padding-bottom:calc(4.5px / 1.5);
    margin-bottom:calc(8px / 1.5);
    border-bottom: calc(1.5px / 1.5) solid #000;
  }

}

/*about__target*/
.about__target__container {
  padding: 54px 54px 72px;
}

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

.about__target__title p {
  font-size: 20.25px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.about__target__list  {
  text-align: center;
  margin:45px auto auto;
}

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

.about__target__list li img {
  width: calc(200px / 2);
  text-align: center;
  margin: auto;
}

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

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

  .about__target__title p {
    font-size: calc(20.25px / 1.225);
    letter-spacing:calc( 0.25em / 1.5);
  }

  .about__target__list  {
    margin:calc(45px / 2) auto auto;
  }

  .about__target__list li {
    margin:calc(9px / 2);
    flex-basis: 45%;
  }

  .about__target__list li img {
    width: calc(200px / 2);
    text-align: center;
    margin: auto;
  }

  .about__target .caution {
    text-align: center;
    margin: calc(18px / 2) auto auto;
  }
}


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

.facilities__container {
  padding-top:36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
}

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

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

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

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

.facilities__text  {
  background: #fff;
  padding:18px 0;
  box-sizing: bold;
  position: relative;
  z-index: 2;
}

.facilities__title  {
  display: block;
  font-size: 20.25px;
  text-align: left;
  font-weight: bold;
  margin:0;
}

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


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

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

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

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

  .facilities__text  {
    z-index: 2;
  }

  .facilities__title  {
    font-size: calc(20.25px / 1.2025);
    margin-top: -4.5px!important;
  }

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


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

Policy Setting

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

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

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

.treatment__policy__text p {
  text-align: justify;
}

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

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

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

}


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

.flow__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  padding:  27px 45px;
  margin: 27px 0;
}

.flow__list__title {
  flex-basis: 30%;
}

.flow__list__text {
  flex-basis: 70%;
}

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

.flow__list__title span.num {
  text-align: center;
  margin:auto;
  font-size: 27px;
  border-radius: 45px;
  font-weight: bold;
  color: #fff;
  background: #313131;
  width: 45px;
  height: 45px;
  line-height: 1.678;
  z-index: 12345;
}

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

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

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

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

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

  .flow__list__title {
    flex-basis: 100%;
  }

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

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

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

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

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

}


/*payment__container*/
.section.payment {
  padding-bottom:45px;
}

.payment__container {
  padding: 54px ;
  margin-top:54px;
}

.payment__container p  {
  text-align: center;
}

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

  .payment__container {
    padding: calc(54px / 1.5) 18px;
    margin-top:calc(54px / 1.5) 0;
  }

  .payment__container p  {
    text-align: justify;
  }

}


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

Access Setting

---------------------------------------------------------- */
/*access__root*/
.access__root__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin-top: 45px;
}

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

.access__root__train {
  order: 2;
  flex-basis:47.5%;
}

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

.access__root__title span.ja  {
  font-size: 20.25px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

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

  .access__root__car ,
  .access__root__train {
    background: #fbfaf8;
    padding: 27px;
    margin: 9px auto;
    flex-basis: 100%;
  }

  .access__root__title  {
    text-align: left;
    margin: 0 0 calc(9px / 1.5);
  }

  .access__root__title span.ja  {
    font-size: calc(20.25px / 1.2025);
    letter-spacing: calc(0.05em / 1.5);
  }
}


/*access__root__img*/
.access__root__img {
  padding: 0;
  margin: auto;
  max-width: 1440px;
  text-align: center;
}


@media only screen and (max-width:767px) {
  .access__root__img {
    max-width: 100%;
    margin-top: -45px;
    position: relative;
  }

}


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

.access__map__list li {
  flex-basis: 48%;
  margin: auto;
}

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

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

.access__map__list li span.ja {
  display: block;
  text-align: center;
  margin-top: 7.25px;
  font-size: 15px;
}


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

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

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

  .access__map__list li span.ja {
    margin-top: calc(7.25px /1.25);
    font-size: calc(15px / 1.1);
  }

}



/*access__map*/
.access__map p.leed {
  text-align: center;
}

.access__map__wrapper,
.access__map__wrapper iframe {
  width: 100%;
  margin: auto;
  text-align: center;
}

  .access__map__wrapper {
    margin-top: 36px;
  }

  .access__map__wrapper iframe {
    height: 400px;
  }

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

  .access__map__wrapper iframe {
    height: calc(400px /1.25);;
  }

}


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

Staff Setting

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

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

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

.staff__message__img {
  flex-basis: 45%;
  order: 2;
}

.staff__message__text p {
  text-align: justify;
}

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

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

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

  .staff__message__img {
    flex-basis: 100%;
    order: 1;
    margin: auto auto 36px;
  }

}


/*staff__history*/
.staff__history {
  padding-top: 0;
}

.staff__history__container {
  margin-top: 18px;
  padding:36px 54px;
}

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

}


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

FAQ Setting

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

.faq__container {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.faq__menu {
  position: relative;
  flex-basis: 20%;
  margin-right: 5%;
  padding-top: 27px;
}

.faq__content {
  flex-basis: 75%;
}

.faq__menu__list  {
  position: sticky;
  top: 0;
}

.faq__menu__list li a {
  display: block;
  text-decoration: none;
  padding: 13.5px 0;

  background-image: url(../img/icon__arrow1.png);
  background-position: 100% 55%;
  background-repeat: no-repeat;
  background-size: 4.5px;
}

@media only screen and (max-width:520px) {
  .section.faq {
    padding-top: 0;
  }

  .faq__menu {
    flex-basis: 100%!important;
    margin-right:auto;
    padding-top: 0;
    margin-top: -9px;
    margin-bottom:27px;
    order: 1;
  }

  .faq__content {
    order: 2;
    flex-basis: 100%!important;
  }

  .faq__menu__list  {
    position: relative!important;
    margin-top: 27px;
    border-top: 0.65px solid #313131;
    padding-top:0;
  }

  .faq__menu__list li a {
    display: block;
    text-decoration: none;
    border-bottom: 0.65px solid #313131;
    padding:  9px;
    font-size: calc(16px /1.16);

    background-image: url(../img/icon__arrow1.png);
    background-position: calc(100% - 9px) 55%;
    background-repeat: no-repeat;
    background-size: 4.5px;
  }


}


/*faq__list*/
.faq__list__container {
  padding:36px 0 0;
}

.faq__list dl {
  margin: 18px 0;
  position: relative;
}

.faq__list dl dt ,
.faq__list dl dd {
  position: relative;
  display: flex;
  flex-wrap:wrap;
  justify-content: flex-start;
  align-items: center;
}

  .faq__list dl dt {
    background-color: #f2f2f2;
    padding:18px 36px;
  }

  .faq__list dl dd {
    background-color: #fff;
    padding:24px 0 24px 36px;
  }

.faq__list dl dt span.en ,
.faq__list dl dd span.en {
  flex-basis: 40px;
  width: 30px;
  height: 30px;
  position: relative;
  padding: 5px 0;
  text-align: center;
  line-height: 1.3456789;
  font-size:22.5px ;
  font-weight: 600;
}

  .faq__list dl dt span.en {
    color: #fff;
    background-color: #373635;
  }

  .faq__list dl dd span.en {
    color: #373635;
    background-color: transparent;
  }

.faq__list dl dt span.ja ,
.faq__list dl dd span.ja {
  flex-basis: calc(100% - 80px);
  text-align: left;
  margin-left: 24px;
}

  .faq__list dl dt span.ja {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.56789;
  }


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

  .faq__list dl {
    margin: calc(18px / 1.5) 0;
  }

  .faq__list dl dt ,
  .faq__list dl dd {
    justify-content: flex-start;
    align-items: top;
  }

  .faq__list dl dt {
    background-color: #f2f2f2;
    padding: calc(18px / 1.5) 18px;
  }

  .faq__list dl dd {
    padding:calc(24px / 1.5) 0 calc(24px / 1.5) calc(36px / 1.5);
  }

  .faq__list dl dt span.en ,
  .faq__list dl dd span.en {
    flex-basis: 30px;
    width:30px;
    height: 30px;
    padding: 2.5px 1px;
    line-height: 1.456789;
    font-size:calc(30.5px / 1.5) ;
  }

  .faq__list dl dd span.en {
    flex-basis:20.25px;
    padding: 2.5px;
  }

  .faq__list dl dt span.ja ,
  .faq__list dl dd span.ja {
    flex-basis: calc(100% - 60px);
    margin-left: 15.5px;
  }


  .faq__list dl dt span.ja {
    font-size: calc(18px / 1.18);
  }

}


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

Column Setting

---------------------------------------------------------- */
/*archive__column*/
.section.archive__column {
  padding-bottom: 0;
}

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

.column__list {
  flex-basis: 32%;
  margin: 0 1% 45px;
  position: relative;
}

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

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

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

.column__list span.date  {
  display: block;
  color: #6e6c6d;
  font-size: 13px;
  line-height: 1.345678;
}

.column__list .column__img {
  margin-bottom:13.5px;
}

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

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

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

  .column__list span.date  {
    font-size: 13px;
  }

  .column__list .column__img {
    margin-bottom:calc(13.5px / 1.25);
  }
}



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

Case Setting

---------------------------------------------------------- */
/*archive__case*/
.section.archive__case {
  padding-bottom: 0;
}

/*case__list*/
.case__list__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding-top: 45px;
}

.case__list {
  flex-basis: 32%;
  margin: 0 1% 45px;
  position: relative;
}

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

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

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

.case__list span.date  {
  display: block;
  color: #6e6c6d;
  font-size: 13px;
  line-height: 1.345678;
}

.case__list .case__img {
  margin-bottom:13.5px;
}


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

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

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

  .case__list span.date  {
    font-size: 13px;
  }

  .case__list .case__img {
    margin-bottom:calc(13.5px / 2.5);
  }
}




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

News Setting

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

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

.wp-pagenavi a, .wp-pagenavi span {
  border:1px solid #131313;
  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:#131313;
}

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

.wp-pagenavi span.current {
  background-color:#131313;
  border-color:#131313;
  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);
  } 
} 





/*recent__news*/
.recent__news .news__list__container {
  padding: 45px ;
}

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

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

Blog Single Setting

---------------------------------------------------------- */
/*.section.blog*/
.entry__meta  {
  text-align: center;
  margin: 18px auto ;
}

.entry__meta .date ,
.entry__meta .cat  {
  display: inline-block;
  vertical-align: top;
  margin-right: 13.5px;
  font-size: 15px;
  text-align: center;
}

.entry__meta .date  {
  color: #999;
}

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

.entry__meta a:focus ,
.entry__meta a:hover {
  text-decoration: underline;
}

.entry__title  {
  position: relative;
}

.entry__content  {
  padding-top: 27px;
  padding-bottom: 45px;
}

.entry__eyecatch {
  margin:auto ;
  padding: 0;
  text-align: center;
}

.entry__eyecatch img {
  max-width: 100%;
  height: auto;
}

.entry__content p {
  line-height: 2.2345678;
}

  .entry__content h2 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: bold;
  }

.entry__btn a {
  display: block;
  text-decoration: none;
  margin: 18px auto ;
  max-width: 256px;
}

@media only screen and (max-width:767px) {
  .entry__btn a {
    padding: 9px ;
    max-width: 100%;
  }
}


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

Recruit Setting

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

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

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

.recruit__nav__list li a {
  display: block;
  text-decoration: none;
  margin: auto;
  text-align: center;
  font-size: 18px;
  padding: 9px 27px;
  color: #fff;
  line-height: 1.23456789;
  background:transparent;
  border: 1.5px solid #000;
  text-align: center;
  color:#000;
  padding:13.5px 72px;
  background-color: #fff;
  background-position:95% 55% ;
  background-image: url(../img/icon__arrow1.png);
  background-size: calc(30px / 5);
  background-repeat: no-repeat;
}


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

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

  .recruit__nav__list li a {
    font-size: calc(18px / 1.17);
    padding: calc(13.5px /1.125) 18px;
    border: 1.25px solid #000
  }

}


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

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

}


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

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

}


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

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

.wpcf7 .wpcf7-list-item  {
  display: inline-block;
  margin-right: 20px;
}

.wpcf7 select {
  appearance:none;
  outline:none;
  border:0.5px solid #000;
  padding:9px 18px;
  box-sizing:border-box;
  max-width: 100%;
  font-size: 18px;
}

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

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

.wpcf7 .select {
  display: inline-block;
  position: relative;
  border:0.5px solid #000;
  box-sizing:border-box;
  background: #fff;
}

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

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


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

.wpcf7 .form__accept {
  display: block;
  text-align: center;
  margin:auto;
  padding:  0 0;
}

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

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

@media only screen and (max-width:767px) {
  .wpcf7 input[type=text],
  .wpcf7 input[type=number],
  .wpcf7 input[type=email],
  .wpcf7 input[type=password],
  .wpcf7 input[type=date],
  .wpcf7 input[type=url],
  .wpcf7 input[type=tel],
  .wpcf7 textarea {
    padding:calc(18px / 1.15);
    width: 100%;
    max-width: 100%;
    font-size: calc(18px / 1.15);
  }

  .wpcf7 select {
    border:0.5px solid #000;
    padding:calc(18px / 1.15);
    font-size: calc(18px / 1.15);
  }

  .wpcf7 .select {
    margin-right:9px;
  }

  .wpcf7 .select select {
    padding:calc(18px / 1.15) 24px calc(18px / 1.15) calc(18px / 1.15);
    font-size: calc(18px / 1.15);
    margin-right: 18px;
  }

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

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

  .wpcf7 .form__accept {
    padding:0;
  }

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

}


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

Error404 Setting

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

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

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

  .error404 .entry__btn a {
    display: block;
    text-decoration: none;
    margin: calc(36px / 1) auto calc(18px / 1.5);
    max-width: 100%;
  }

}


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

Footer Setting

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

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

}

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

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

.footer__sitemap ul li a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  font-weight:400;
  padding: 0 18px;
}

@media only screen and (min-width:768px) and (max-width:1200px) {
  .footer__sitemap ul li a:after {
    margin-left: 14px;
  }

}

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

  .footer__sitemap ul {
    text-align: left;
  }

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

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

  .footer__sitemap ul li a:after {
    display: none;
  }

}

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

.footer__text {
  flex-basis: 37.5%;
  text-align: left;
}

.footer__map {
  flex-basis: 40%;
  text-align: right;
}

.footer__logo {
  max-width: 378px;
  text-align: center;
  margin: auto auto 27px;
}

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

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

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

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

.footer__tel span.en {
  text-align: center;
  font-size: 45px;
  font-weight: 600;
}

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

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

.footer__tel__caution {
  font-size: 14px;
}

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

.footer__btn a {
  text-align: center;
  margin: auto;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  padding: 18px;
}

.footer__btn a .icon__line {
  width: 22.5px;
  height: 22.5px;
  margin-top: -2.25px;
  margin-right: 4.5px;
}

.footer__map iframe {
  height: 520px;
}

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

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

  .footer__text {
    flex-basis: 100%;
  }

  .footer__map {
    flex-basis: 100%;
    text-align: center;
  }

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

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

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

  .footer__tel span.text {
    font-size: calc(15.5px / 1.155);
    margin:calc(18px /1.5) auto;
  }

  .footer__tel span.en {
    font-size: calc(45px /1.5);
  }

  .footer__tel img {
    width: calc(62px / 3);
    margin-top: -9px;
    margin-right: -9px;
  }

  .footer__tel__caution {
    font-size: 14px;
  }

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

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

  .footer__btn a .icon__line {
    width:calc(22.5px / 1.25);
    height:calc(22.5px / 1.25);
    margin-top: -2.25px;
    margin-right:2.25px;
  }

  .footer__map  {
    width: 100%;
  }

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

  .footer__copyright {
    font-size: 13.5px;
  }

}


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

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

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

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

  .footer__nav__tel a,
  .footer__nav__web a {
    display: block;
    text-decoration: none;
    text-align: center;
    color: #fff;
  }

    .footer__nav__tel a {
      background-color: #000;
      padding:20px 9px ;
    }

    .footer__nav__web a {
      background-color: #4cb951;
      padding:19px 9px ;
    }

  .footer__nav__tel a span.ja,
  .footer__nav__web a span.ja {
    display: block;
    line-height: 1;
    font-size: 16px;;
    font-weight: bold;;
  }

  .footer__nav__tel a img ,
  .footer__nav__web a img {
    margin-right: 4.5px;
    vertical-align: middle;
  }

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

    .footer__nav__web a img {
      width: calc(50px / 2.25);
      margin-top: -2.25px;
    }

}
