@charset "utf-8";

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

Common Setting

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

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

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

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


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

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

ol  {
  margin-left: 1em;
}

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

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 90%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

Btn Setting

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

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

.btn.ja  {
}

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


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

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

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

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


/*icon__line*/
a.btn .icon__line {
  width: 27px;
  margin: -4.5px 4.5px 0 0;
}


/*btn__border__black
.btn__border__black {
  background:transparent ;
  border: 1.5px solid #5e4355;
  text-align: center;
  color: #5e4355!important;
  padding:27px 36px;
}

  .btn__border__white:hover,
  .btn__border__white:focus  {
    color: #5e4355!important;
  }

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

  .btn__border__white:hover,
  .btn__border__white:focus  {
    color: #5e4355!important;
  }


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

  .btn__secondary:hover,
  .btn__secondary: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;
  }

}

/*btn__arrow*/
.btn__primary.btn__arrow {
  display: block;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow2.png);
  background-size: calc(30px / 4);
  background-repeat: no-repeat;
}

.btn__secondary.btn__arrow  {
  display: block;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow1.png);
  background-size: calc(30px / 4);
  background-repeat: no-repeat;
}

@media only screen and (max-width:767px) {/*
  .btn__arrow  {
    background-position:95% 50% ;
    background-image: url(../img/icon__arrow2.png);
    background-size: calc(39px /  2.25);
    */
  }
}

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

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;
  font-weight: 300;
  padding:36px 18px;
}

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

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


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

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

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

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

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

}

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


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

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

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

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

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

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

/*

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

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

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

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

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

}


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

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

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

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

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

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

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

Layout Setting

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

#wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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


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


@media only screen and (min-width:768px) and (max-width:1200px) {
  .container__fluid,
  .container__wide,
  .container,
  .container__middle,
  .container__narrow,
  .container__xnarrow,
  .container__xxnarrow,
  .container__xxxnarrow,
  .container__xxxxnarrow,
  .container__xxxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:2em;
    padding-right:2em;
    box-sizing:border-box
  }

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

  .home main {
    overflow-x: auto;
  }

}

@media only screen and (max-width:767px) {
  body  {
    min-width:1px;
    font-size:calc(16px / 1.16);
    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;
  background-color: #f2ede7;
}

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

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

.topbar__gnav {
  flex-basis:calc(100% - 700px);
  text-align: right;
  position: relative;
  z-index: 678;
}

.topbar__contact {
  flex-basis:300px;
  position: relative;
}

.topbar__logo img {
  width: 340px;
}

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

.gnav__pc__list li  {
  margin:9px 14px;
}

.gnav__pc__list li a   {
  display: block;
  text-decoration: none;
  padding-top: 9px;
}

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

.gnav__pc__list li.sns  {
  margin-left: 18px;
}

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

  }

.topbar__contact__list li a img {
  width: 23px;

}

@media only screen and (min-width:1440px) {
  .gnav__pc__list li  {
    margin:9px 27px;
  }
}

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

  .topbar__logo img {
    width:100%;
  }

  .topbar__gnav {
    flex-basis:calc(100% - 470px);
  }

  .topbar__contact {
    flex-basis:200px;
    position: relative;
  }
   
  .gnav__pc__list li  {
    margin:4.5px 14px;
    text-align: center;
  }

  .gnav__pc__list li a  {
    font-size: 15px;
  }

  .topbar__contact__list li a span ,
  .topbar__contact__list li img  {
    display: block;
    margin-left:auto;
    margin-right: auto;
    text-align: center;
  }

}


@media only screen and (max-width:767px) {
  .topbar__logo img {
    width:256px;
    margin-top: 9px;
  }

  .topbar__contact {
    display: none;
  }


}



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

  #navArea  {
    display:block;
  }

  nav.gnav__sp  {
    display:block;
    position:fixed;
    top:0;
    right:-65%;
    bottom:0;
    width:-65%;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transition:all .5s;
    opacity:0;
    background: #313131;
    z-index: 1234567890123456789;
  }

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

  nav.gnav__sp .inner {
    padding: 18px
  }

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

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

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

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

  /*toggle__btn*/
  .toggle__btn {
    display:block;
    position:fixed;
    top:9px;
    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:#313131;
    border-radius:0;
    transition:all .5s;
  }

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

  .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: #313131;
    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 #313131;
    color: #313131!important;
  }

    .topbar__contact__list li.line a.btn:hover,
    .topbar__contact__list li.line a.btn:focus  {
      color: #313131!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);
  }
}


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

Section Setting

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

.bg2 {
  background-color: #fbfaf8;
}

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


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

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

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

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

  p.leed {
    font-size: calc(16px / 1.16)
  }

}

/*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__title**/
.section__title {
  position: relative;
  font-style: normal;
}

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

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

@media only screen and (max-width:767px) {
  .section__title span.ja {
    font-size:calc(29px / 1.29);
    letter-spacing: calc(0.35em / 2);
  }

}


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

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

.section__subtitle span.ja.mincho {
  display: block;
  font-weight: 600;
}

  .section__subtitle.left span.ja.mincho {
    font-size: 22.5px;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
  }

  .section__subtitle.left span.ja.mincho.large {
    font-size: 24px;
  }
  
@media only screen and (max-width:767px) {
  .section__subtitle.left span.ja.mincho {
    font-size: calc(22.5px / 1.325);
    margin-bottom: calc(18px / 1.5);
    letter-spacing: calc(0.05em / 1.5);
  }

  .section__subtitle.left span.ja.mincho.large {
    font-size:calc(24px / 1.34);
  }
}


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

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

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

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

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

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


/*cta
.cta {
  background-image: url(../img/cta__bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size:cover;
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  align-items: center;
  padding: 90px 0;
}

.cta__container {
  flex-basis: 100%;
}

.cta .section__title  {
  padding-top: 9px;
}

.cta .section__title span {
  font-weight: 400;
  color: #fff;
}

  .beauty__cta.cta .section__title span {
    font-size: 36px;
    line-height: 2;
    margin-bottom: -18px;
    position: relative;
    letter-spacing: 0.15em;
    z-index: 234;
  }

.cta p.leed {
  text-align: center;
  font-weight: 400;
  color: #fff;
  margin: 65.5px auto auto;
  letter-spacing: 0.075em;
}

.cta__contact__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin:90px auto auto;
}

.cta__contact__list li  {
  flex-basis: 32%;
  margin: 0 1%;
  color: #fff;
}

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

  .cta__contact__list li:nth-child(3)  {
    margin-right: 0;
  }

.cta__contact__list li span.ja {
  font-size: 18px;
  font-weight:500;
  color: inherit;
  display: block;
  text-align: center;
  margin: auto auto 9px;
}

.cta__contact__list li.tel a {
  font-size: 30.5px;
  display: block;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff!important;
  line-height: 1;
  padding:27px 18px;
}

.cta__contact__list li.line a ,
.cta__contact__list li.mail a {
  font-size:20px;
  display: block;
  letter-spacing: 0.0115em;
  font-weight: 600;
  line-height: 1;
  padding:30.5px 18px 24.5px;
}

.cta__contact__list li.tel a img {
  width: calc(39px /2);
  display: inline-block;
  vertical-align: middle;
  margin-right: 4.5px;
  margin-top: -4.5px;
}

.cta__contact__list li.line a img {
  width: calc(72px /2);
  display: inline-block;
  vertical-align: middle;
  margin-right: 4.5px;
  margin-top: -4.5px;
}

.cta__contact__list li.mail a img {
  width: calc(44px /2);
  display: inline-block;
  vertical-align: middle;
  margin-right: 4.5px;
  margin-top: -4.5px;
}

@media only screen and (max-width:767px) {
  .cta {
    background-image: url(../img/cta__bg.jpg);
    padding: calc(90px / 1.5) 9px;
  }

  .cta .section__title span {
    font-size:calc(24px / 21.24);
  }

  .beauty__cta.cta .section__title span {
    font-size:calc(24px / 1.34);
    margin-bottom: -9px;
    letter-spacing:calc(0.15em / 1.5);
    text-align: justify;
  }

  .cta p.leed {
    margin: calc(65.5px / 1.5) auto auto;
    text-align: justify;
    letter-spacing:calc(0.075em / 2);
  }

  .cta__contact__list {
    margin:calc(90px / 2) auto auto;
  }

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

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

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

  .cta__contact__list li.tel a {
    font-size:calc(30.5px / 1.305);
    letter-spacing: calc(0.05em / 1.5);
    padding:calc(27px / 1.5) 18px;
  }

  .cta__contact__list li.line a ,
  .cta__contact__list li.mail a {
    font-size: calc(22.5px / 1.225);
    letter-spacing: calc(0.0115em /1.5);
    padding:calc(30.5px / 1.25) 18px calc(24.5px / 1.25)
  }

  .cta__contact__list li.tel a img {
    width: calc(39px / 2.25);
    margin-right: 4.5px;
    margin-top: -4.5px;
  }

  .cta__contact__list li.line a img {
    width: calc(76px / 2.25);
    margin-right: 4.5px;
    margin-top: -4.5px;
  }

  .cta__contact__list li.mail a img {
    width: calc(44px / 2.25);
    margin-right: 4.5px;
    margin-top: -4.5px;
  }

}


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

.page__header__title {
  text-align: center;
  margin: auto;
  padding: 90px 0 45px;
}

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

  .page__header__title span.ja {
    font-size: 36px;
    font-weight:300;
    letter-spacing: 0.05em;
  }

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


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

  .page__header__title span.ja {
    font-size: calc(36px / 1.25);
    letter-spacing: calc(0.05em /1.5);
  }

}



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

Common menu Setting

---------------------------------------------------------- */
/*common__menu*/
.common__menu {
  padding:72px 0;
}

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

.common__menu__list {
  flex-basis: 49%;
  margin: auto;
  height: 380px;
  padding: 54px 50.25px;
}

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

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

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

.common__menu__tile span {
  display: block;
  font-size: 24px;
  font-weight: 400;
}

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

.common__menu__text   {
  padding-top: 45px;
}

.common__menu__text h3  {
  font-weight: 400;
  font-size: 16px;
}

.common__menu__text p  {
  font-weight: 300;
  font-size: 15px;
}

.common__menu__tel {
  padding-top: 45px;
  text-align: center;
  margin: auto;
}

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

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

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

.common__menu__tel img {
  width: 31px;
}

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

.common__menu__btn a {
  width: 408px;
  text-align: center;
  margin: auto; 
}

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

  .common__menu__list {
    flex-basis: 100%;
    margin:9px auto;
    height: auto;
    padding:calc(54px / 1.5) 18px;
  }

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

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

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

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

  .common__menu__text h3  {
    font-size: calc(16px / 1.1);
  }

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

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

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

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

  .common__menu__tel img {
    width:calc(31px / 1.5);
  }

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

  .common__menu__btn a {
    width: 100%;
  }
}


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

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

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

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

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

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

}

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

Clendar Setting

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

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

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

.calendar__table tbody th ,
.calendar__table tbody td   {
  text-align: center;
  padding:18px 6.25px ;
  border-bottom: 1px solid #313131;
}

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

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

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

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

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

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

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

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

  .calendar__table tbody td span  {
    color: #313131;
    font-size: 22.5px;
    text-align: center;
  }

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

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

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

  .calendar__table tbody th {
    width: 30%;
  }

  .calendar__table tbody td  {
    width: 9%;
  }

    .footer .calendar__table tbody th {
      width: 25%;
    }

    .footer .calendar__table tbody td  {
      width: 10%;
    }

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

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

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

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

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

HOME Setting

---------------------------------------------------------- */
/*home__header*/
.home__header {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.home__header__container {
  width:100%;
  height: 780px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.home__header__swiper {
  top: 0;
  margin-top:36px;
  width: 100%;
  z-index: -1;
  position: absolute;
}

.swiper-container {
  width: 100%;
  height: 100vh;
  max-height: 780px;
  margin: 0 auto;
  position: relative;
}

.swiper-wrapper{
  width: 100%;
  height: 100%;
}

.swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%; 
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-img {
  width: 100%;
  height: 100%;
  background-size: cover; 
  background-position: center center; 
}

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

.home__header__title span {
  display: inline-block;
  font-size: 45px;
  padding: 12px 27px;
  font-weight: 300;
  text-indent: 36px;
  line-height: 1.3456789;
  margin: 9px 0;
  background-color: #f2ede7;
  letter-spacing: 0.345em;
}

@media only screen and (max-width:767px) {
  .home__header {
    width:100%;
    box-sizing: border-box;
  }

  .home__header__container {
    width:100%;
    height: 82.5svh;
    align-items: center;
    justify-content: flex-start;
    align-items: flex-start;

    background-size: cover;
  }

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

  .swiper-container {
    max-height: 450px;
  }

  .home__header__title {
    padding: 90px 0 0;
    margin-left: 0;
  }

  .home__header__title span {
    font-size: calc(45px / 2);
    padding: calc(12px / 2) ;
    text-indent: calc(36px / 2);
    margin: calc(9px / 2) 0;
    letter-spacing: calc(0.345em /2);
  }

  .slide-img {
    width: 100%;
    height: 100%;
    background-size: 768px; 
    background-repeat: no-repeat;
    background-position: center center; 
  }
}


/*home__times*/
.home__times .container {
  position: relative;
}

.home__times {
  margin-top: -180px;
  z-index: 123;
  position: relative;
}

.home__times__container {
  position: absolute;
  background-color: #f2ede7;
  padding:2.5em 4em ;
  right: 0;
  top:0;
  z-index: 1234;
}

@media only screen and (max-width:767px) {
  .home__times .container {
    position: relative;
  }

  .home__times {
    margin-top: auto;
  }

  .home__times__container {
    position: relative;
    background-color: #f2ede7;
    padding:1em;
  }

}


/*home__news*/
.home__news {
  z-index: 456;
  position: relative;
  padding-top: calc(180px + 180px);
  padding-bottom:45px;
}

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

.home__news__btn ul  {
  padding-top: 27px;
}

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

.home__news__btn a {
  text-align: center;
  margin: auto;
  width: 320px;
}

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

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

  .home__news__btn ul  {
    padding-top:calc(36px / 36);
  }

  .home__news__btn ul li {
    display: block;
    width: 100%;
    padding: 0 9px;
    margin: 9px auto;
  }

  .home__news__btn a {
    width: 100%;
  }
}

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

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

.home__address__text ,
.home__address__map {
  flex-basis: 48%;
  margin: 0;
}

.home__address__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  flex-basis: 48%;
  padding: 36px 0;
  background-image : linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

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

.home__address__list dl dt {
  flex-basis: 30%;
}

.home__address__list dl dd {
  flex-basis: 70%;
}

.access__map__container ,
.access__map__container iframe {
  width: 100%;
}

  .home .access__map__container iframe {
    height: 350px!important;
  }

.home .access__map__link  {
  text-align: right;
  margin-top: 0;
}

.home .access__map__link a {
  font-size: 15px;
}

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

  .home__address__text ,
  .home__address__map {
    flex-basis: 100%;
    margin: 18px auto;
  }


  .home__address__list dl {
    flex-basis: 100%;
    padding: calc(36px  /2) 9px;
    background-image : linear-gradient(to right, #000 1px, transparent 1px);
    background-size: 5px 1px;
  }

  .home__address__list dl dt ,
  .home__address__list dl dd {
    flex-basis: 100%;
  }

  .access__map__container ,
  .access__map__container iframe {
    width: 100%;
  }

  .home .access__map__container iframe {
    height: calc(540px / 1.5)!important;
  }

  .home .access__map__link a {
    font-size: calc(15px / 1.1)
  }

}


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

.home__access__list li {
  flex-basis: 48.5%;
  margin: auto;
}

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

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

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


@media only screen and (min-width:768px) and (max-width:1200px) {
  .home__access__list li span.ja {
    font-size: 13px;
  }
}
*/

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

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

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

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

}


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

.home__about__img {
  width: 100%;
  max-width: 1180px;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
}

.home__about__container {
  padding-top: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: top;
  position: relative;
  z-index: 234;
} 

.home__about__text {
  flex-basis: 55%;
  margin-right: 0;
  background-color: #fbfaf8;
  padding:90px;
} 

.home__about__text ,
.home__about .section__title ,
.home__about .section__title span {
  text-align: left;
}

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

.home__about__btn {
  margin-top: 54px;
}

.home__about__btn a {
  width: 320px; 
}

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

  .home__about__container {
    padding-top: 0;
    z-index: 234;
  } 

  .home__about__text {
    flex-basis: 100%;
    padding:calc(90px / 2.75) 27px calc(90px / 1.75);
  } 

  .home__about__text p {
    margin-top: 1em;
  }

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

  .home__about__btn a {
    width: 100%; 
  }

}


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

}

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



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

About Setting

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

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

.about__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 #313131;
  text-align: center;
  color:#313131;
  padding:13.5px 72px;
  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) {
  .about__nav__list {
    margin: calc(54px / 1.5) auto calc(18px /1.5)
  }

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

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

}



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

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

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

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

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

  .about__message__img {
    order: 1;
    margin-bottom: 18px;
    flex-basis: 100%;
  }
}


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

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

.about__profile__left {
  flex-basis:  42.5%;
}

.about__profile__right {
  flex-basis: 51%;
}

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

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

.about__profile__list {
  margin-top: 18px;
}

.about__profile__list li {
  line-height: 2.234567;
  margin-left: 1em;
  margin-bottom: 9px;
}

.about__profile__list li:before {
  content: '・';
  margin-left: -18px;
}

.about__career__list dl  {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding: 18px 0;
  background-image : linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

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

.about__career__list dl dt  {
  flex-basis:  17.5%;
}

.about__career__list dl dd  {
  flex-basis:  82.50%;
}

@media only screen and (max-width:767px) {
  .about__profile  {
    margin-top: 18px;
  }

  .about__profile__container,
  .about__profile__container.bg2 {
    padding:0;
    background-color: transparent!important;
  }

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

  .about__profile__title span.ja  {
    letter-spacing: 0.025em;
  }

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

  .about__profile__list li {
    line-height: 1.9;
    margin-left: calc(1em / 1.5);
    margin-bottom: calc(9px / 1.5);
  }

  .about__profile__list li:before {
    content: '・';
    margin-left: -9px;
  }

  .about__career__list dl  {
    padding: calc(18px / 1.5) 0;
    background-image : linear-gradient(to right, #000 1px, transparent 1px);
    background-size: 5px 2px;
  }

  .about__career__list dl dt  ,
  .about__career__list dl dd  {
    flex-basis:  100%;
  }

}


/*about__facility*/
.about__facility__container {
  padding-top: 36px;
}

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

.about__facility__list li {
  flex-basis: 46.95%;
  margin: 18px 3% 36px;
}

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

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

.about__facility__list li img {
  text-align: center;
  margin: auto auto 18px;
}

.about__facility__list li span {
  display: block;
  text-align: left;
  margin: 0;
}

  .about__facility__list li span.title {
    font-size: 20.25px;
    margin-bottom: 4.5px;
    font-weight: 400;
  }

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

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

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

  .about__facility__list li img {
    margin: auto auto calc(18px / 1.5);
  }

  .about__facility__list li span.title {
    font-size: calc(20.25px / 1.205);
    margin-bottom: calc(4.5px / 1.25);
  }

}


/*about__calendar*/
.about__calendar__container {
  padding-top: 36px;
}

@media only screen and (max-width:767px) {
  .about__calendar__container {
    padding-top: calc(36px / 1.5);
    margin-left: -1em;
    margin-right: -1em;
    width: calc(100% + 2em);
  }

}

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

Access Setting

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

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

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

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

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

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

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

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

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


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


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

}


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

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

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

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

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


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

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

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

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

}



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

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

  .access__map__wrapper {
    margin-top: 36px;
  }

  .access__map__wrapper iframe {
    height: 400px;
  }

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

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

}


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

Booking Setting

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

.booking__about__list {
  margin-top: 36px;
}

.booking__about__list li {
  font-weight: 300;
  margin-left: 1em;
  margin-bottom: 9px;
}

.booking__about__list li:before {
  content: '・';
  margin-left: -18px;
}

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

.booking__about__btn a {
  width: 408px;
  text-align: center;
  margin: auto; 
}

@media only screen and (max-width:767px) {
  .booking__about__list li {
    margin-left: calc(1em / 1.5);
    margin-bottom: calc(9px / 1.5);
  }

  .booking__about__list li:before {
    content: '・';
    margin-left: -9px;
  }

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

  .booking__about__btn a {
    width: 100%;
  }
}




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

News Setting

---------------------------------------------------------- */
/*news__list__container*/
.news__list__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
  
  .home .news__list__container,
  .recent__news .news__list__container {
    margin-top: 36px;
  }

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

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

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

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

.news__list__img {
  flex-basis: 30%;
}

.news__list__text {
  flex-basis: 65%;
  text-align: left;
}

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

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

.news__list__text span.date {
  display: inline-block;
  letter-spacing: 0.015em;
  font-size: 13px;
  color: #5e5e5e;
  opacity: 0.65;
}

.news__list__text p {
  font-weight: 300;
  font-size: 15px;
  text-align: justify;
}

@media only screen and (max-width:767px) {
  .news__list__container {
    padding: 0 0 18px;
    border-radius: calc(36px / 1.5);
    margin: auto auto;
  }
    /*
    .home .news__list__container {
      margin-top: auto;
      margin-top:calc(72px / 1.5) ;
      padding-left: 18px;
      padding-right: 18px;
      box-sizing: border-box;
    }
*/
  .news__list  {
    flex-basis: 100%;
    margin: auto auto;
  }

  .news__list a {
    padding: 24px 9px ;
    box-sizing: border-box;
    background-image : linear-gradient(to right, #000 1px, transparent 1px);
    background-size: 5px 1px;
  }

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

  .news__list__img {
    flex-basis: 30%;
  }

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

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

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

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

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

}


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

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

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

.wp-pagenavi a {
  color:#313131;
}

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

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

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

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



/*single*/
.single-news .section__title ,
.single-news .section__title span {
  text-align: left;
  margin: 0;
}


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


.single-news .entry__content {
  padding-top: 54px;
}

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

.single-news .entry__btn a {
  display: block;
  text-decoration: none;
  margin: 36px auto auto ;
  max-width: 256px;
}
 
@media only screen and (max-width:767px) {
  .single-news .entry__btn a {
    margin: calc(36px / 1.5) auto auto ;
    max-width: 100%;
  }
} 





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

Blog Single Setting

---------------------------------------------------------- */
/*.section.blog
.entry__meta  {
  text-align: left;
  margin: auto;
  padding-bottom: 9px;
  margin-bottom: 18px;
  margin-top: 9px;
}

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

.entry__meta .date  {
  color: #999;
}

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

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

.entry__title  {
  position: relative;
}

  .entry__title span.ja {
    display: block;
    font-weight: 500;
    text-align: left;
    font-size: 30.5px;
  }

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

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

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

.entry__content p {
  line-height: 2;
}

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

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

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

  .entry__meta .date ,
  .entry__meta .cat  {
    margin-right: calc(13.5px / 1.5);
    font-size: calc(16px / 1.16);
  }

  .entry__title span.ja {
    font-size: calc(30.5px / 1.355);
  }

  .entry__content  {
    padding-top: calc(27px / 1.5);
    padding-bottom: calc(45px / 1.5);;
  }

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

  .entry__btn a {
    padding-bottom: calc(18px / 1.5);
    margin: calc(18px / 1.5) auto;
    max-width: 100%;
  }

}



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

Recruit Setting

---------------------------------------------------------- */
/*recruit__nav*/
.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 #313131;
  text-align: center;
  color:#313131;
  padding:13.5px 72px;
  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 #313131
  }

}


/*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 #313131;
  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 #313131;
  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 #313131;
  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: #313131;
  border-radius: 2.25px;
  padding:2.25px 9px ;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.2
}

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

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

.wpcf7 .form__submit input[type=submit] {
  margin:27px auto ;
  width: 400px;
  font-size: 18px;
  padding: 18px 90px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@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 #313131;
    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:2.25px 9px;
    font-size: calc(12px / 1.2);
  }

  .wpcf7 .form__accept {
    padding: calc(36px / 5) 0 0;
  }

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

}


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

Error404 Setting

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

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

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

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

}

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

Thanks Setting

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

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

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

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

}

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

Footer Setting

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

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

}

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

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

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

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

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


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

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

  .footer__sitemap ul {
    text-align: left;
  }

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

.footer__btn a {
  text-align: center;
  margin: auto;
  width: 100%;
}

.footer__map iframe {
  height: 580px;
}

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

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

  .footer__text {
    flex-basis: 100%;
    padding:1em 0;
  }

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

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

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

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

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

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

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

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

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

  .footer__copyright {
    font-size: 13.5px;
  }

}


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

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

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

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

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

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

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

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

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

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

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

}
