@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: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  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;
}*/

.en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


/*  基本スタイル */
:root {
  --color1: #fff;
  --color2: #50aaaf;
  --color3: #f09908;
  --color4: #fcfbe7;
  --color5: #f7f4ed;
  --color6: #e1d714;
}


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

@media only screen and (max-width:767px) {
  img.radius {
    border-radius:calc(30.5px / 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: 54px;
  appearance:none;
  font-weight: bold;
}

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

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

/*btn__primary*/
.btn__primary {
  background-color: var(--color3);
  background-image: url(../img/icon__arrow__w.png);
  background-size: calc(11px/ 2);
  background-repeat: no-repeat;
  background-position: 90.5% 50%;
  border: 1px solid var(--color3);
  text-align: center;
  font-size: 18px;
  line-height: 1.2345678;
  color: var(--color1)!important;
  padding:18px 36px;
}

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

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

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


/*btn__border*/
.btn__border {
  background-color: var(--color1);
  background-image: url(../img/icon__arrow.png);
  background-size: calc(11px/ 2);
  background-repeat: no-repeat;
  background-position: 90.5% 50%;
  border: 1px solid #000;
  text-align: center;
  font-size: 18px;
  line-height: 1.2345678;
  color:#000!important;
  padding:18px 36px;
}

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


/*btn__line*/
.btn__line {
  background: #5ac363;
  background-image: url(../img/icon__arrow__w.png);
  background-size: calc(11px/ 2);
  background-repeat: no-repeat;
  background-position: 90.5% 50%;
  border: 1px solid #5ac363;
  text-align: center;
  color: #fff!important;
  padding:18px 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:22.5px ;
}

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(22.5px / 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: #4b505a;
  font-weight:400;
  letter-spacing: 0.012345em;
  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;
  padding-top: 18px ;
  padding-bottom: 18px;
}

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

.topbar__logo img {
  width: 100%;
}

.topbar__tel {
  flex-basis: 300px
}

.topbar__tel span.ja {
  display: block;
  line-height: 1.1234567;
  font-size: 14.5px;
  font-weight: 500;
  margin: auto;
  text-align: center;
}

.topbar__tel a {
  display: block;
  text-decoration: none;
  font-weight: 800;
  margin: auto;
  line-height: 1.1234567;
  text-align: center;
}

.topbar__tel span.tel {
  display: inline-block;
  vertical-align: middle;
  color: var(--color2);
  font-weight: 800;
  font-size: 40.5px;
}

.topbar__tel img {
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  margin-top: 7.25px;
  margin-right: 2.25px;
}

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

  .topbar__logo {
    flex-basis:calc(340px / 1.75);
  }

  .topbar__tel ,
  .topbar__tel span.ja,
  .topbar__tel a ,
  .topbar__tel span.tel ,
  .topbar__tel img {
    display: none;
  }
}

/*topbar__contact*/
.topbar__contact {
  flex-basis:calc(100% - 380px);
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: top;
  position: relative;
}

.topbar__contact__list {
  flex-basis:420px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: top;
}

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

.topbar__contact__list li a.btn {
  padding: 20.25px 13.5px 15.25px;
  line-height: 1;
  font-size: 18px;
}

.topbar__contact__list li img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
  margin-top: -2.5px;
}

  .topbar__contact__list li.web img {
    width: 11px;
  }

  .topbar__contact__list li.line img {
    width: 22.5px;
  }

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

  .topbar__contact__list {
    display: none;
  }

  .topbar__contact__list li {
    display: none;
  }

  .topbar__contact__list li a.btn {
    display: none;
  }

  .topbar__contact__list li img {
    display: none;
  }

  .topbar__contact__list li.web img {
    display: none;
  }

  .topbar__contact__list li.line img {
    display: none;
  }
}



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

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

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

.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: var(--color2);
    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(18px / 1.1);
    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: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:var(--color1);
}

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

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

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

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

.bg6 {
  background-color:var(--color6);
}

/*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 / 1.5) 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.left {
  text-align: left;
}

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

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

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

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

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

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

  .section__title span.ja {
    font-size:calc(35.0px / 1.4);
    letter-spacing: calc(0.05em / 1.5);
  }

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

}


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

.section__subtitle span.ja {
  display: block;
  font-size: 27px;
  letter-spacing: 0.125em;
  font-weight:700;
}

  .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.125em / 1.5);
  }

  .section__subtitle span.ja {
    font-size: calc(27px / 1.27);
    letter-spacing: calc(0.125em / 1.5);
  }

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

}

/*section__inner*/
.section__inner {
  border-radius: 27px;
  padding: 36px 63px 54px;
  margin:27px auto;
}

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

  .section__inner.flex.align__center {
    align-items: center;
  }

.section__inner__block  {
  margin-bottom: 36px;
}

  .section__inner__block:nth-last-child(1)  ,
  .section__inner__block:last-of-type {
    margin-bottom: 0;
  }

.section__inner__title  {
  position: relative;
}

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

  .section__inner__title.center span {
    text-align: center;
    margin: 0 auto;
  }

  .section__inner__title span.small {
    font-size: 18px;
  }

  .section__inner__title strong.normal {
    font-weight: 400;
  }

.section__inner__title span:before {
  position: relative;
  content: '●';
  font-size: 20.25px;
  font-weight: bold;
  color: #50aaaf;
}

  .section__inner__title span.small:before {
    font-size: 18px;
  }

@media only screen and (max-width:767px) {
  .section__inner {
    border-radius: calc(27px / 2);
    padding: calc(45px / 2) 18px calc(54px / 2);
    margin:calc(27px / 2) auto;
  }

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

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

  .section__inner__title span:before {
    font-size:calc(20.25px / 1.2025);
  }

  .section__inner__title span.small,
  .section__inner__title span.small:before {
    font-size: calc(18px / 1.18);
  }

}

/*section__leed*/
.section__leed {
  text-align: center;
  margin: 27px auto auto;
}

@media only screen and (max-width:767px) {
  .section__leed {
    text-align: left;
    margin: calc(27px / 2) 0 auto;
  }

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


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

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

.section__nav__list li a {
  padding:18px 45px;
  font-size: 16px;
}

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

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

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

  .section__nav__list li a {
    padding:calc(18px /1.5) 18px;
    font-size: calc(16px / 1.16);
  }

}


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

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

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

}


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

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


/*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 {
  background-color: var(--color2);
  width: 100%;
  height: 375px;
  padding:120px 0;
  position: relative;
  background-size:cover;
  border-radius: 0 0 0 120px;
  background-repeat:no-repeat;
  background-position: top center;
}

  .page__header.noimg  {
    background-image: none;
  }

.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: auto;
  line-height: 1.23456789;
}

  .page__header__title span.ja {
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-shadow: 
      #fff 0 0 20px,#fff 0 0 20px,#fff 0 0 20px,#fff 0 0 20px;
  }

  .page__header.noimg .page__header__title span.ja {
    text-shadow: none;
    font-weight: 600;
    color: #fff;
  }

@media only screen and (max-width:767px) {
  .page__header {
    background-color:var(--color2);
    height: calc(375px / 1.5);
    padding:calc(120px / 1.5) 0;
    border-radius: 0 0 0 calc(120px / 1.5);
  }

    .schedule .page__header {
      background-position: top left;
    }

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

  .page__header__title span.ja {
    font-size: calc(45px / 1.6);
    letter-spacing:calc(0.1em /1.5);
    text-shadow: 
      #fff 0 0 20px,#fff 0 0 20px,#fff 0 0 20px,#fff 0 0 20px;
  }

}


/*common__menu*/
.common__menu {
  position: relative;
  z-index: 12345;
}

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

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

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

.common__menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 0 18px;
  padding: 27px 9px 9px;
}

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

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

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

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

  .common__menu__title.center {
    text-align: center;
    font-size: 22.5px;
    margin: auto;
  }

.common__menu__text p {
  font-size: 14.5px;
  letter-spacing: 0;
  text-align: justify;
}

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

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

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

  .common__menu__tel {
    width: 95%;
  }

  .common__menu__tel {
    padding:9px 0 0;
  }

  .common__menu__line {
    padding:18px 0 0;
  }

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

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

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

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

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

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

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

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

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

  .common__menu__line img {
    width: 29px;
    margin-top: -4.5px;
    margin-right: 9px;
  }

.common__menu__caution {
  margin: 18px 0 0 36px;
  display: block;
  font-size: 14.75px;
  text-align: left;
}

.common__menu__btn {
  width: 188px;
  text-align: center;
  margin: auto;
  margin-bottom: 9px;
}

.common__menu__btn a {
  font-size: 15.25px;
  text-align: center;
  margin: auto;
  padding:9px 11.25px;
}

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

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

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

  .common__menu__list {
    margin: 0 0 calc(18px / 1.5);
    padding: calc(27px / 1.5) 9px calc(9px / 1.5);
  }

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

  .common__menu__text {
    width: 60%;
    order: 1;
  }

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

  .common__menu__title {
    font-size:calc(20.25px / 1.2025);
  }

  .common__menu__title.center {
    font-size: calc(22.5px / 1.225);
  }

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

  .common__menu__tel,
  .common__menu__line {
    width: 100%;
  }

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

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

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

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

  .common__menu__line span.line {
    font-size: calc(18px / 1.18);
    margin: calc(9px / 1.5) auto;
  }

  .common__menu__line span.line a {
    padding:calc(18px / 1.25) 18px;
  }

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

  .common__menu__line img {
    width: calc(29px / 1.5);
    margin-top: -2.25px;
    margin-right: calc(9px / 1.5);
  }

  .common__menu__caution {
    margin: calc(18px / 1.5) 0 0 calc(36px / 1.5);
    font-size: calc(15px / 1.15);
  }

  .common__menu__btn {
    width: 100%;
    margin-bottom: calc(9px / 1.5);
  }

  .common__menu__btn a {
    font-size: calc(15px / 1.1);
    padding:calc(18px / 1.25) calc(18px / 1.25);
  }

}


.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 / 3) auto auto;
    padding: 0 
  }

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

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

}

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

Clendar Setting

---------------------------------------------------------- */
/*calendar__table*/
.calendar__table table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1.5px solid #000;
  border-left: 0;
  border-right: 0;
  font-size: 16px;
  font-style: normal;
}

.calendar__table thead th {
  text-align: center;
  border: none;
  padding: 6.25px ;
}

  .calendar__table thead th {
    border-bottom: 1.5px solid #000;
    padding:13.5px 6.25px ;
  }

  .calendar__table thead th {
    padding: 7.25px 0;
  }

.calendar__table tbody th ,
.calendar__table tbody td   {
  text-align: center;
  padding:16.25px 6.25px ;
  border-bottom: 1.5px solid #000;
}

  .footer .calendar__table tbody th,
  .footer .calendar__table tbody td   {
    padding: 7.25px 0;
  }

  .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: var(--color2);
    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__mv {
  width: 100%;
  height: 600px;
  border-radius: 0 0 0 180px;
  position: relative;
  background-image: url(../img/home__mv.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.home__mv__title {
  position: relative;
  padding: 90px 0;
  margin-left: calc(-90px - 45px);
}

.home__mv__title img {
  width:calc(1162px /2) ;
}

@media only screen and (max-width:767px) {
  .home__mv {
    width: 100%;
    height: calc(600px / 2);
    border-radius: 0 0 0 calc(180px / 1.5);
    background-image: url(../img/home__mv.jpg);
  }

  .home__mv__title {
    padding: calc(90px / 1.5) 0;
    margin-left: calc(calc(-90px - 45px) / 5);
  }

  .home__mv__title img {
    width:calc(1162px / 4) ;
  }

}



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

.home__schedule {
  flex-basis: 47.5%;
}

.home__news__btn {
  width: 220px;
}

.home__news__btn a.btn {
  letter-spacing: 0;
  font-weight: 500;
  width: 200px;
  padding: 13.5px;
  font-size: 16px;
}

.home__schedule__text  {
  margin-top: 18px;
}

.home__schedule__text p {
  font-size: 14px;
}


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

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

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

  .home__schedule {
    margin-top: 45px;
  }

  .home__news__btn {
    width: 100%;
  }

  .home__news__btn a.btn {
    width:100%;
    padding:calc(18px / 1.25);
    font-size:calc(16px / 1.16);
  }

  .home__schedule__text  {
    margin-top:calc(18px / 1.5);
  }

  .home__schedule__text p {
    font-size:calc(14px / 1.14);
  }

}


/*home__about*/
.home__about {
  background: url(../img/home__about__pc.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.home__about__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding:90px 0 0;
  position: relative;
} 

.home__about__text {
  min-width: 786px;
  flex-basis: 55%;
  margin-right: 0;
  background-color: #fff;
  padding:calc(90px + 27px) 90px calc(90px + 27px) calc(90px + 27px);
  border-radius: 0  54px 54px 0;
} 

.home__about__text p {
  margin-top:45px;
  text-align: justify;
}

.home__about__btn {
  width: 320px;
  margin-top:72px;
}

@media only screen and (max-width:767px) {
  .home__about {
    background: url(../img/home__about__sp.jpg);
    background-size:100%;
    background-repeat: no-repeat;
  }

  .home__about__container {
    padding:calc(90px * 3) 0 0;
  } 

  .home__about__text {
    min-width: 1px;
    flex-basis: 100%;
    padding:calc(90px / 2) 18px;
    border-radius: 0 calc(54px / 1.5) calc(54px / 1.5) 0;
  } 

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

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

}


/*home__policy*/
.home__policy {
  background: url(../img/home__policy__pc.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size:100%;
  position: relative;
  padding-bottom: calc(90px + 90px + 45px);
  z-index: 123;
}

.home__policy__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: top;
  position: relative;
} 

.home__policy__text {
  order: 2;
  flex-basis: 45%;
  margin-right: 0;
  background-color: #fff;
  padding:90px 90px 90px;
  border-radius: 0  54px 54px 0;
} 

.home__policy__text p {
  margin-top:36px;
  text-align: justify;
}

.home__policy__btn {
  width: 320px;
  margin-top:36px;
}

@media only screen and (max-width:767px) {
  .home__policy {
    background: url(../img/home__policy__sp.jpg);
    background-size:100%;
    background-repeat: no-repeat;
    padding:calc(90px * 3) 0 0;
    padding-bottom: calc(calc(90px + 90px + 45px) /2);
  }

  .home__policy__text {
    flex-basis: 100%;
    padding:calc(90px / 1.5) 18px;
    border-radius: calc(54px / 1.5) 0 calc(54px / 1.5) 0;
  } 

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

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



/*home__menu*/
.home__menu {
  border-radius: 180px 0 0 0;
  margin-top: calc(-90px - 18px);
  position: relative;
  z-index: 345;
  padding-bottom: calc(90px + 90px + 90px + 90px)
}

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

.home__menu__list {
  flex-basis: 47.5%;
}

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

.home__menu__img img {
  text-align: center;
  margin: auto;
  border-radius: 36px;
}

.home__menu__text {
  margin-top: 18px ;
}

.home__menu__title {
  position: relative;
  margin:18px 0;
}

.home__menu__title span {
  display: block;
  font-size: 30.5px;
  font-weight: bold;
}

.home__menu__btn {
  margin-top:45px;
  width: 200px;
}

.home__menu__btn a {
  font-size: 16px;
  padding: 11.25px;
}

@media only screen and (max-width:767px) {
   .home__menu {
    border-radius: calc(180px / 1.5) 0 0 0;
    margin-top: calc(-90px - 18px);
    padding-bottom: calc(calc(90px + 90px + 90px + 90px) /2)
  }

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

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

  .home__menu__img img {
    border-radius: calc(36px / 1.5) 
  }

  .home__menu__text {
    margin-top: calc(18px / 1.5) 
  }

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

  .home__menu__title span {
    font-size:calc(30.5px / 1.305)
  }

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

  .home__menu__btn a {
    font-size:calc(16px / 1.16);
    padding:calc(18px / 1.25)
  }
}


/*home__recruit*/
.home__recruit {
  background: url(../img/home__recruit__pc.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-top: calc(-90px - 90px - 72px);
  position: relative;
  z-index: 456;
  margin-bottom: 90px;
  border-radius: 45px;
}

.home__recruit__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  position: relative;
} 

.home__recruit__text {
  order: 1;
  flex-basis: 57.5%;
  margin-right: 0;
  padding:0 90px ;
  border-radius: 0  54px 54px 0;
} 

.home__recruit__text p {
  margin-top:36px;
  line-height: 2;
  max-width: 90%;
  text-align: justify;
}

.home__recruit__btn {
  margin-top: 36px;
  width: 200px;
}

.home__recruit__btn a {
  font-size: 16px;
  padding: 11.25px;
}

@media only screen and (max-width:767px) {
   .home__recruit {
    background: url(../img/home__recruit__sp.jpg);
    margin-top: calc(-90px - 45px);
    background-color: #f5f5f5;
    padding-bottom: calc(90px + 90px + 90px + 45px);
    padding-top: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    margin-bottom: calc(90px / 1.5);
    border-radius: calc(45px / 1.5);
  }

  .home__recruit__text {
    flex-basis:100%;
    padding:36px 18px 18px;
    border-radius: 0  calc(54px / 1.5) calc(54px / 1.5) 0;
  } 

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

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

  .home__recruit__btn a {
    font-size:calc(16px / 1.16);
    padding:calc(18px / 1.25)
  }
}

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

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


/*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,
  .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__nav*/
.about__nav {
  padding-top: 72px;
  position: relative;
}

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


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

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

.about__target__list li {
  display: inline-block;
  vertical-align: middle;
  margin: auto;
  padding: 0 18px;
}

.about__target__list li img {
  width: calc(202px / 2);
}

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

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

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

  .about__target__list li img {
    width: calc(202px / 3.5);
  }

}

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

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

}

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

.about__reserve__btn {
  margin-top: 9px;
  width: 256px;
}

.about__reserve__btn a {
  display: block;
  padding: 9px!important;
}

.about__reserve__detail {
  margin-top: 36px;
}

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

.about__reserve__title span {
  font-weight: bold;
  display: inline-block;
  font-size: 20.25px;
  background-color: #fcfbe7;
  padding: 0 27px;
  z-index: 234;
  position: relative;
  text-align: center;
  margin: auto;
}

.about__reserve__title:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  margin: auto;
  left: 0;
  top:18px;
  border-bottom: 1px solid #000;
}

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

.about__reserve__left,
.about__reserve__right {
  flex-basis: 47.5%;
}

.about__reserve__list .section__inner__title span {
  font-size: 18px;
}

.about__reserve__list .section__inner__title span:before {
  color: #f09908;
  font-size: 18px;
}

@media only screen and (max-width:767px) {
  .about__reserve__btn {
    margin-top: calc(9px / 1.5);
    width: 100%;
  }

  .about__reserve__btn a {
    padding: calc(9px / 1.5)!important;
  }

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

  .about__reserve__title span {
    font-size: calc(20.25px / 1.2025);
    padding: 0 calc(27px / 1.5);
  }

  .about__reserve__title:after {
    width: 100%;
    height: 1px;
    margin: auto;
    left: 0;
    top:18px;
    border-bottom: 1px solid #000;
  }

  .about__reserve__list {
    margin-top: calc(18px / 1.5);
  }

  .about__reserve__left,
  .about__reserve__right {
    flex-basis: 100%;
  }

  .about__reserve__list .section__inner__title span {
    font-size: calc(18px / 1.18);
  }

  .about__reserve__list .section__inner__title span:before {
    font-size:calc(18px / 1.18);
  }

}

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

.staff__list {
  margin-top: 9px;
}

.staff__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  border-bottom: 0.5px solid #dedede;
  padding:7.25px 0;
}

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

.staff__list dt {
  flex-basis:27.5% ;
  font-weight: bold;
}

.staff__list dd {
  flex-basis:72.5% ;
}

.staff__comment {
  margin-top: 18px;
  text-align: justify;
}

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

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

  .staff__list dl {
    border-bottom: 0.5px solid #dedede;
    padding:xcalc(7.25p / 1.5) 0;
  }

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

  .staff__comment {
    margin-top: calc(18px / 1.5);
  }

}

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

.about__service__head {
  padding: 0;
  margin: auto;
}

.about__service__head img {
  border-radius: 0 120px 0 0;
}

.about__service__body {
  padding-top: 63px;
}

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

  .about__service__list.list1 {
    flex-basis: 45%;
  }

  .about__service__list.list2 {
    flex-basis: 20%;
    margin-left: 5%;
  }

  .about__service__list.list3 {
    flex-basis: 30%;
  }

.about__service__list__title {
  font-weight: bold;
}

.about__service__list p {
  margin-left: 0.5em;
}

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

  .about__service__head img {
    border-radius: 0 calc(120px / 1.5) 0 0;
  }

  .about__service__body {
    padding-top: calc(63px / 1.5);
  }

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

  .about__service__list.list2 {
    flex-basis: 100%;
    margin-left: auto;
  }

  .about__service__list.list3 {
    flex-basis: 100%;
  }

  .about__service__list p {
    margin-left: calc(0.5em / 1.5);
  }

}


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

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

.about__facility__list li {
  flex-basis: 30%;
  margin: 18px auto;
}

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

.about__facility__text {
  background-color: #f7f4ed;
  border-radius: 36px;
  text-align: center;
  padding:68px 72px;
  display: block;
  margin: auto;
}

.about__facility__text li {
  text-align: left;
}

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

  .about__facility__list li {
    flex-basis: 100%;
    padding-left: 1em;
    padding-right: 1em;
    box-sizing: border-box;
    margin: calc(18px / 1.5) auto;
  }

  .about__facility__list li span.ja {
    text-align: center;
    display: block;
    margin:calc(9px / 1.5) auto;
  }

  .about__facility__text {
    border-radius: calc(36px / 1.5);
    padding:calc(68px / 1.5) 18px;
  }

}


/*about__cat*/
.about__cat .section__inner__text {
  flex-basis: 53.50%;
}

.about__cat .section__inner__img {
  flex-basis: 42.5%;
}

@media only screen and (max-width:767px) {
  .about__cat .section__inner__text ,
  .about__cat .section__inner__img {
    flex-basis: 100%;
  }

  .about__cat .section__inner__img {
    margin: auto;
    text-align: center;
    margin-top: 18px;
  }
}


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

First Setting

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

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

}


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

.bring .section__inner__text,
.bring .section__inner__img {
  flex-basis: 47.5%;
}

@media only screen and (max-width:767px) {
  .bring .section__inner__text,
  .bring .section__inner__img {
    flex-basis: 100%;
  }

  .bring .section__inner__img {
    margin-top: 18px;
  }

}


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

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

.flow__list__title {
  flex-basis: 22.5%;
}

.flow__list__text {
  flex-basis: 77.5%;
}

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

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

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

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

  .flow__list.list1 .flow__list__title:after ,
  .flow__list.list2 .flow__list__title:after {
    height: 200%;
  }

  .flow__list.list3 .flow__list__title:after {
    display: none;
    height: 0;
  }

.flow__list__btn {
  width: 200px;
  margin-top:9px;
}

.flow__list__btn a.btn {
  padding: 9px!important
}
 
.flow__caution {
  text-align: center;
  margin: 36px auto auto;
}

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

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

  .flow__list__title {
    flex-basis: 100%;
  }

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

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

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

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

  .flow__list.list1 .flow__list__title:after {
    min-height:300.0px;
  }

  .flow__list.list2 .flow__list__title:after {
    min-height:190px;
  }

  .flow__list.list3 .flow__list__title:after {
    display: none;
    height: 0;
    min-height: 0;
  }

  .flow__list__btn {
    width: 100%;
    margin:9px auto auto;
  }

}


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

Howto Setting

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

@media only screen and (max-width:767px) {
  .howto__nav__leed {
    margin: calc(18px / 1.5) 0;
    text-align: left;
  }
}

/*howto__about*/
.howto__about {
  background-image: url(../img/howto1.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size:cover;
  padding: 0;
  border-radius: 120px 0 120px 0 ;
  height: 100%;
}

.howto__about__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: calc(90px + 45px) 0 0;
  position: relative;
  height: 100%;
} 

.howto__about__text {
  min-width: 786px;
  flex-basis: 55%;
  margin-right: 0;
  background-color: #fff;
  padding:calc(90px + 27px) 90px 90px calc(90px + 27px);
  border-radius: 0 54px 0 0;
} 

.howto__about__text p {
  margin-top:45px;
  text-align: justify;
}

@media only screen and (max-width:767px) {
  .howto__about {
    background-image: url(../img/howto1.jpg);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size:150%;
    padding: 0 0 calc(90px + 90px) ;
    border-radius: calc(120px / 1.5) 0 calc(120px / 1.5) 0 ;
  }

  .howto__about__container {
    padding: 0 0 calc(90px + 45px) ;
    height: 100%;
  } 

  .howto__about__text {
    min-width: 1px;
    flex-basis: 100%;
    padding:calc(90px / 4) 18px;
    border-radius: 0 0 0;
  } 

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


/*howto__prevention*/
.howto__prevention {
  margin-top: 90px;
}

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

.howto__prevention__img {
  padding: 0;
  margin: auto;
}

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

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


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

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

.howto__life__list {
  flex-basis: 47.5%;
}

.howto__life__img,
.howto__life__img img {
  text-align: center;
  margin: auto;
}

.section__inner__title {
  margin-top: 18px;
}

.howto__life__list p {
  text-align: justify;
}

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

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

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

  .section__inner__title {
    margin-top: calc(18px / 1.5);
  }
}


/*howto__food*/
.howto__food {
  position: relative;
  padding-bottom:54px;
}

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

.howto__food .section__inner__text {
  flex-basis: 55%;
}

.howto__food .section__inner__img {
  flex-basis: 40%;
}

.howto__food .section__inner__img img {
  margin-top: 63px;
}

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

  .howto__food__leed {
    text-align: left;
    margin: calc(36px / 1.5) 0 auto;
  }

  .howto__food .section__inner__text ,
  .howto__food .section__inner__img {
    flex-basis: 100%;
  }

  .howto__food .section__inner__img img {
    margin-top: calc(63px / 1.5);
  }
}

/*flow*/
.howto__food__detail {
  margin-top: -81px;
}

.howto__flow__container {
  z-index: 0;
}

.howto__flow__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding: 20.5px 0 0;
  margin: 27px 0 0;
}

.howto__flow__list__text {
  flex-basis: calc(100% - 99px);
  text-align: left;
}

.howto__flow__list__num  {
  border-radius: 100%;
  position: relative;
  width: 72px;
  height: 72px;
  padding:18px 0;
  background: var(--color3);
  z-index: 12345
}

.howto__flow__list__num span.en {
  display: block;
  text-align: center;
  font-style: italic;
  margin: auto;
  color: #fff;
  position: relative;
  z-index: 3456;
  line-height: 1;
}

  .howto__flow__list__num span.en.label {
    font-size: 14px;
    font-weight: 500;
  }

  .howto__flow__list__num span.en.num {
    font-size: 29px;
    font-weight: 800;
  }

.howto__flow__list__title span.ja {
  font-size: 20.5px;
  font-weight: bold;
}

.howto__flow__list__text p {
  margin-top: 9px;
}

.howto__flow__list__num:after {
  content: '';
  position: absolute;
  top:18px;
  left:34.25px;
  width:3px;
  border-left: 2px solid var(--color3);
  padding: 36px;
  z-index: 1;
}

  .howto__flow__list.step1 .howto__flow__list__num:after {
    height:400%;
  }

  .howto__flow__list.step2 .howto__flow__list__num:after {
    height:300%;
  }

  .howto__flow__list.step3 .howto__flow__list__num:after {
    display: none;
  }

.howto__flow__list__detail {
  width: 100%;
  display: flex;
  margin:18px 0 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 18px;
  background: var(--color4);
}

.howto__flow__list__detail dt {
  flex-basis:55%;
  font-weight: bold;
}

  .howto__flow__list__detail.nodd dt {
    flex-basis: 100%;
  }

  .howto__flow__list__detail.nodd dd {
    display: none;
  }

.howto__flow__list__detail dd img {
  width: calc(717px / 1.9);
}

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

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

.howto__flow__list__left {
  flex-basis:75.5%;
}

.howto__flow__list__right {
  flex-basis: 20%;
}

@media only screen and (max-width:520px) {
  .howto__food__detail {
    margin-top: -40.5px;
  }


  .howto__flow__list {
    padding: calc(20.5px / 1.5) 0 0;
    margin: calc(27px / 1.5) 0 0;
  }

  .howto__flow__list__text {
    flex-basis: 100%
  }

  .howto__flow__list__num  {
    border-radius: 100%;
    width: 72px;
    text-align: center;
    margin: auto auto 18px;
    height: 72px;
    padding:18px 0;
    z-index: 12345
  }

  .howto__flow__list__num span.en.label {
    font-size: calc(14px / 1.14);
  }

  .howto__flow__list__num span.en.num {
    font-size: calc(29px / 1.29);
  }

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

  .howto__flow__list__text p {
    margin-top: calc(9px /1.5)
  }

    .howto__flow__list__num:after {
      display: none;
   }

    .howto__flow__list.step1 .howto__flow__list__num:after {
      display: none;
    }

    .howto__flow__list.step2 .howto__flow__list__num:after {
      display: none;
    }

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

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

    .howto__flow__list__detail.nodd dt {
      flex-basis: 100%;
    }

    .howto__flow__list__detail.nodd dd {
      display: none;
    }

  .howto__flow__list__detail dd img {
    width: 100%
  }

  .howto__flow__list__left {
    flex-basis:100%;
  }

  .howto__flow__list__right {
    flex-basis:75%;
    text-align: center;
    margin:18px auto auto;
  }
}


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

Access Setting

---------------------------------------------------------- */
/*section__access*/
.section__access {
  padding-bottom: 45px;
  padding-top: 9px;
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff 20%, #fcfbe7 20%, #fcfbe7 100%);
}

.section__train {
  padding-bottom: 45px;
}

.access__map  {
  width: 100%;
  margin-top: 45px;
  border-radius: 36px;
  border: 10px solid #fff;
}

.access__map iframe {
  width: 100%;
  margin-bottom: -9px;
  border-radius: 36px;
  height: 450px;
}

.access__car {
  padding: 36px 0;
}

  .section__access .section__inner.inner1 .section__inner__text {
    flex-basis: 45%;
  }

  .section__access .section__inner.inner1 .section__inner__img {
    flex-basis: 50%;
  }

  .section__access .section__inner.inner2 .section__inner__text {
    flex-basis: 32.5%;
  }

  .section__access .section__inner.inner2 .section__inner__img {
    flex-basis: 65%;
  }

@media only screen and (max-width:767px) {
  .section__access {
    padding-bottom: calc(45px / 1.5);
    padding-top: calc(9px / 1.5);
    background: linear-gradient(180deg, #fff 0%, #fff 20%, #fcfbe7 20%, #fcfbe7 100%);
  }

  .section__train {
    padding-bottom: calc(45px / 1.5);
  }

  .access__map  {
    width: 100%;
    margin-top: calc(45px / 1.5);
    border-radius: calc(36px / 1.5);
    border: calc(10px / 1.5) solid #fff;
  }

  .access__map iframe {
    margin-bottom: -4.5px;
    border-radius: calc(36px / 1.5);
    height: calc(450px / 1.125);
  }

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

  .section__access .section__inner.inner1 .section__inner__text ,
  .section__access .section__inner.inner1 .section__inner__img {
    flex-basis: 100%;
  }

  .section__access .section__inner.inner2 .section__inner__text,
  .section__access .section__inner.inner2 .section__inner__img {
    flex-basis: 100%;
  }

}


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

Salon Setting

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

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

.salon__service__list {
  flex-basis: 48%;
}

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

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

  .salon__service__list.list1 .salon__service__title span {
    color: #50aaaf;
  }

  .salon__service__list.list2 .salon__service__title span {
    color: #fd7e00;
  }

.salon__service__check li {
  background-position: 0 18px;
  background-repeat: no-repeat;
  background-size: 20.25px;
  letter-spacing: 0.0012345em;
  padding: 9px 0;
  border-bottom: 1px dotted #aaa;
  padding-left: 27px;
}

  .salon__service__list.list1 .salon__service__check li {
    background-image: url(../img/icon__check2.png);
  }

  .salon__service__list.list2 .salon__service__check li {
    background-image: url(../img/icon__check3.png);
  }

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

.salon__service__check li strong {
  padding: 1.25px;
}

  .salon__service__list.list1 .salon__service__check li strong {
    background-color: #edf6f7;
  }

  .salon__service__list.list2 .salon__service__check li strong {
    background-color: #fff2e5;
  }

.salon__service__feature {
  margin-top: 36px;
  margin-bottom: -18px;
}

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

.salon__service__feature__title span {
  display: block;
  font-size: 20.25px;
  font-weight: bold;
  text-align: center;
  margin: auto;
}

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

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

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

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

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

  .salon__service__check li {
    background-position: 0 18px;
    background-repeat: no-repeat;
    background-size: calc(20.25px / 1.5);
    letter-spacing: calc(0.0012345em / 1.5);
    padding: calc(9px / 1.5) 0;
    border-bottom: 1px dotted #aaa;
    padding-left: calc(27px / 1.5);
  }

  .salon__service__check li strong {
    padding: calc(1.25px / 1.5);
  }

  .salon__service__feature {
    margin-top: calc(36px / 4);
    margin-bottom: -9px;
  }

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

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

  .salon__service__message {
    text-align: left;
    margin: calc(36px / 1.5) 0 auto;
  }
}


/*salon__target*/
.salon__target {
  padding-bottom: calc(90px + 27px);
}

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

/*salon__price*/
.salon__price {
  padding-bottom: 0;
}

.salon__price__container {
  margin-top: 45px;
}

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

/*salon__price__table*/
.salon__price__table {
  width: 100%;
  border-collapse:collapse;
}

.salon__price__table th {
  background-color: #50aaaf;
  padding: 18px 45px;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-align: center;
}

.salon__price__table td small {
  display: block;
  line-height: 1.2345678;
}

.salon__price__table td {
  padding: 18px 45px;
  text-align: center;
  background-color: #fff;
}

.salon__price__table tr:nth-child(1) td {
  background-color:#e9eaeb ;
}

.salon__price__table td:nth-child(2),
.salon__price__table td:nth-child(3) {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.salon__price__table td:nth-child(4) {
  border-bottom: 1px solid #000;
}

.salon__price__caution {
  margin-top: 36px;
  font-size: 14px;
}

@media only screen and (max-width:767px) {
  .salon__price__table th {
    padding: calc(18px / 2) ;
    text-align: left;
  }

  .salon__price__table td {
    padding: calc(18px / 2) ;
  }

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

}



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

.salon__option__img {
  position: absolute;
  right: 45px;
  top: 27px;
}

.salon__option__img img {
  width:148.0px;
}

.salon__option__container {
  padding-top:72px;
}

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

  .salon__option__img {
    position: relative;
    right: auto;
    top:auto;
    text-align: center;
    margin: auto;
  }

  .salon__option__img img {
    width:200px;
    text-align: center;
    margin: auto;
  }

  .salon__option__container {
    padding-top:calc(72px  / 4);
  }
}


/*salon__option__table*/
.salon__option__table {
  width: 100%;
  border-collapse: collapse;
}

.salon__option__table th {
  background-color: #50aaaf;
  padding: 18px 45px;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-align: left;
}

.salon__option__table td {
  padding: 18px 45px;
}

.salon__option__table tr:nth-child(1) td {
  border-top: 1px solid #000;
}

.salon__option__table td:nth-child(2) {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.salon__option__table td:nth-child(3) {
  border-bottom: 1px solid #000;
}

.salon__option__table span.circle:before {
  position: relative;
  content: '●';
  font-size: 17px;
  font-weight: bold;
  color: var(--color6);
}

.salon__price__caution {
  margin-top: 36px;
  font-size: 14px;
}

@media only screen and (max-width:767px) {
  .salon__option__table th {
    background-color: #50aaaf;
    padding: calc(18px /1.5) 18px;
    text-align: left;
  }

  .salon__option__table td {
    padding: calc(18px /1.5) 18px
  }

  .salon__option__table span.circle:before {
    font-size: calc(17px /1.17);
  }

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

}

/*salon__staff*/
.salon__staff {
  padding-bottom: 0;
}

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

.salon__cta .section__inner {
  padding-left: 90px;
  padding-right: 90px;
}

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

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

.salon__cta .section__inner__text {
  flex-basis: 47.5%;
}

.salon__cta .section__inner__img {
  flex-basis: 50%;
}

.salon__cta__tel {
  margin: 9px auto 18px ;
}

.salon__cta__tel span.tel {
  font-size: 63px;
  line-height: 1.123456789;
  color: var(--color2);
  font-weight: 800;
  text-align: left;
  margin:0 0 ;
}

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

.salon__cta__tel img {
  width: 33px;
  vertical-align: middle;
  margin-top: -11.25px;
  margin-right: -4.5px;
}

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

  .salon__cta .section__inner {
    padding-left: 18px;
    padding-right:18px;
  }

  .salon__cta__title {
    margin:auto;
  }

  .salon__cta__title span {
    font-size: calc(20px / 1.2);
    text-align: center;
  }

  .salon__cta .section__inner__text ,
  .salon__cta .section__inner__img {
    flex-basis: 100%;
  }

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

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

  .salon__cta__tel span.tel {
    text-align: center;
    font-size: calc(63px / 1.63);
  }

  .salon__cta__tel img {
    width: calc(33px / 1.5);
    margin-top: -5.25px;
    margin-right: -2.25px;
  }
}


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

Schedule Setting

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

.schedule__table table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.schedule__table tbody tr:nth-child(1) th,
.schedule__table tbody tr:nth-child(1) td {
  background: #87be5a;
  padding: 9px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin: auto;
  font-weight: bold;
  border-bottom: none;
}

.schedule__table tbody tr th,
.schedule__table tbody tr td {
  background: #fff;
  border-bottom: 1px solid #000;
  padding: 9px;
  font-size: 18px;
  text-align: center;
  margin: auto;
}

.schedule__table tbody tr th {
  font-weight: 500;
}

.schedule__table tbody tr td {
  font-weight: bold;
}

.schedule__table tbody th span {
  position: relative;
}

  .schedule__table tbody th span:nth-child(1)::after {
    content: '/';
  }

  .schedule__table tbody th span:nth-child(2) {
    margin-right: 9px;
  }

.schedule__table tbody tr td {
  font-weight: bold;
}

.schedule__caution {
  padding-top: 45px;
}

@media only screen and (max-width:767px) {
  .schedule__table tbody tr:nth-child(1) th,
  .schedule__table tbody tr:nth-child(1) td {
    padding: calc(9px / 1.5);
    font-size: calc(18px / 1.18);
  }

  .schedule__table tbody tr th,
  .schedule__table tbody tr td {
    padding: calc(9px / 1.5);
    font-size: calc(18px / 1.18);
  }

  .schedule__table tbody th span:nth-child(2) {
    margin-right: calc(9px / 1.5);
  }

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

}


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

News Setting

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

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


/*news__menu*/
.news__menu {
  padding: 0;
  margin:auto ;
  position: relative;
  text-align: center;
}

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

.news__menu__list li a {
  padding:18px 72px;
  font-weight: 600;
  display: block;
  text-decoration: none;
  line-height: 1;
  border-radius: 72px;
  font-size: 16px;
  color:var(--color3);
  border: 1px solid var(--color3);
}

  .news__menu__list li.default a ,
  .news__menu__list li.active a ,
  .news__menu__list li a:hover,
  .news__menu__list li a:focus {
    border: 1px solid var(--color3)!important;
    background-color: var(--color3)!important;
    color: #fff!important;
  }

@media only screen and (max-width:767px) {
  .news__menu {
    padding: 0 1em;
    box-sizing: border-box;
    margin:auto auto calc(18px/ 1.5);
  }

  .news__menu__list {
    margin: calc(54px / 9) auto calc(18px / 2)
  }

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

  .news__menu__list li a {
    padding:calc(18px /1.5) 18px;
    font-size: calc(16px / 1.16);
  }
/*


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

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

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

/*section.news*/
.section.news {
  padding-top:36px;
}

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

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

.news__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding: 18px 0;
  background-image : linear-gradient(to right, #000 3px, transparent 3px);
  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: 12.5%;
  font-size: 13px;
  margin-top: 5px;
  font-weight:400;
}

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

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

.news__list dl dd a {
  font-weight: 500;
}

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

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

  .news__list dl dt {
    flex-basis: 100%;
    margin-top:calc(5px / 1.5);
  }

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

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

}

/*cat*/
.news__list a  {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin: auto;
}

.news__list span.cat  {
  display: block;
  margin-right:27px;
  color: #333;
  background-color: var(--color6);
  line-height: 1;
  font-size: 14px;
  min-width: 81px;
  padding: 4.5px 18px;
}

@media only screen and (max-width:767px) {
  .news__list a  {
    display: block;
    text-align: left;
  }

  .news__list span.cat  {
    display: inline-block;
    margin-right:calc(27px / 1.5);
    min-width: 81px;
    text-align: center;
    padding:calc(4.5px / 1.5) calc(18px / 1.5);;
  }
}


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

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

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

.wp-pagenavi a {
  color:var(--color2);
  opacity: 1;
}

.wp-pagenavi a:focus ,
.wp-pagenavi a:hover  {
  opacity: 1;
  background-color:var(--color2);
  border-color:var(--color2);
  color:#fff!important
}

.wp-pagenavi span.current {
  background-color:var(--color2);
  border-color:var(--color2);
  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(72px / 2) auto 
  }

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

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


/*single*/
.entry__meta {
  margin-bottom: 45px;
}

@media only screen and (max-width:767px) {
  .entry__meta {
    margin-bottom: calc(45px / 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 / 1.5) 18px ;
  }
} 




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

Schedule Setting

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

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


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

Recruit Setting

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

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

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

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

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

  .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: 123456789;
  padding-bottom: 45px;
  background: #fff;
}

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

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

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

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

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

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

}

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

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

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

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

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

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

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

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

.footer__tel span.tel {
  font-size: 63px;
  color: var(--color2);
  font-weight: 800;
  text-align: center;
  margin:auto ;
}

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

.footer__tel img {
  width: 33px;
  vertical-align: middle;
  margin-top: -9px;
  margin-right: -4.5px;
}

.footer__tel__caution {
  margin: 9px auto auto;
  display: block;
  font-size: 14px;
  line-height: 1.89;
  text-align: center;
}

.footer__btn {
  margin-top: 27px;
}

.footer__btn img {
  width: 29px;
  margin-right: 4.5px;
}

.footer__btn a.btn {
  font-size: 20px;
  padding: 11.25px;
  font-weight: bold;
}

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

.footer__copyright {
  text-align: center;
  padding-bottom: 36px;
  font-style: normal;
  font-size: 13.5px;
  color: #aaa;
  letter-spacing: 0.01em;
}

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

  .footer__text {
    flex-basis: 100%;
  }

  .footer__map {
    width: 100%;
    flex-basis:100%;
    border-radius: calc(36px / 1.5);
  }

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

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

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

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

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

  .footer__tel img {
    width: calc(33px / 1.5);
    margin-top: -4.5px;
    margin-right: -2.25px;
  }

  .footer__tel__caution {
    margin: calc(9px / 1.5) auto auto;
    font-size: calc(14px / 1.14);
  }

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

  .footer__btn img {
    width: calc(29px / 1.5);
    margin-right: calc(4.5px / 1.5);
  }

  .footer__btn a.btn {
    font-size: calc(20px / 1.2);
    padding: calc(18px / 1.25);
  }

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

  .footer__copyright {
    padding-bottom: calc(36px / 1.5);;
    font-size: calc(13.5px / 1.135);;
    letter-spacing: calc(0.01em /2);
    margin-bottom: 45px;
  }
}


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

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

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

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

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

  .footer__nav__tel a {
    background-color: var(--color3);
    color: #fff;
    padding:20.25px 9px 17px;
  }

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

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

  .footer__nav__line a {
    background-color:#5ac363;
    color: #fff;
    padding:18px 9px 20px;
  }

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

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

}
