@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
  word-break: break-word;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  word-break: normal;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
/*html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}*/

body {
  color: #000;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.font-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

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

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

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

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-small {
  font-size: 95%;
}

.font-halyard {
  font-family: halyard-display, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.font-athelas {
  font-family: athelas, serif;
  font-weight: 400;
  font-style: normal;
}

.font-ryumin {
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  body {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }

  .container {
    min-width: 1100px;
  }

  .wrapper {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  html {
    font-size: calc(100vw / 7.50);
  }

  body {
    font-size: 0.24rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    width: 100%;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
header {
  width: auto;
  height: auto;
}
header > .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
header .header-intro {
  display: flex;
  align-items: flex-end;
}
header .header-logo-image {
  display: block;
}
header .header-text {
  color: #4d4d4d;
}
header .header-contact {
  text-align: right;
}
header .list-contact {
  display: flex;
  justify-content: flex-end;
}
header .contact-telephone,
header .contact-text {
  display: inline-block;
  font-weight: 500;
}
header .header-navigation {
  background: #ccc;
}
header .list-navigation ul {
  display: flex;
  justify-content: flex-end;
}
header .list-navigation li {
  position: relative;
}
header .list-navigation li:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
}
header .list-navigation li.is-first:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
}
header .list-navigation a {
  display: inline-block;
  font-weight: 500;
}

@media print, (min-width: 768px) {
  header .wrapper {
    width: 1000px;
  }
  header .header-intro {
    padding: 25px 0 15px;
  }
  header .header-logo-image {
    width: 150px;
  }
  header .header-text {
    font-size: 10px;
    margin-left: 16px;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  header .header-contact {
    padding-top: 20px;
  }
  header .list-contact {
    padding-right: 2px;
    margin-bottom:10px;
  }
  header .contact-telephone {
    margin: 0 5px 5px 0;
    letter-spacing: 0.1em;
    font-size: 21px;
    pointer-events: none;
  }
  header .contact-text {
    font-size: 12px;
    margin-left: 11px;
    letter-spacing: 0.1em;
  }
  header .list-navigation ul {
    padding-right: 5px;
  }
  header .list-navigation li:after {
    width: 1px;
    height: 15px;
  }
  header .list-navigation li.is-first:before {
    width: 1px;
    height: 15px;
  }
  header .list-navigation a {
    font-size: 13px;
    padding: 13px 20px 14px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header .header-text {
    transform: translateY(4px);
  }
  header .contact-text {
    padding-top: 4px;
  }
  header .list-navigation a {
    transform: translateY(6px);
    padding: 13px 13px 14px;
    margin: 0 5px;
  }
  header .contact-telephone {
    transform: translateY(6px);
  }
}
@media only screen and (max-width: 767px) {
  header {
    border-bottom: 0.4rem solid #ccc;
  }
  header.is-active .header-logo {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  header .header-logo {
    transition: all 0.3s;
  }
  header .wrapper {
    width: 100%;
    padding: 0.1rem 0.2rem;
  }
  header .button-menu {
    width: 0.35rem;
    height: 0.45rem;
    position: relative;
    margin: 0.16rem 0.25rem 0;
  }
  header .button-menu span {
    display: block;
    width: 100%;
    position: absolute;
    height: 0.03rem;
    background: #000;
    left: 0;
    transition: all 0.3s;
  }
  header .button-menu span:nth-child(1) {
    top: 0.1rem;
  }
  header .button-menu span:nth-child(2) {
    top: 0.24rem;
  }
  header .button-menu span:nth-child(3) {
    top: 0.37rem;
  }
  header .button-menu.is-active span:nth-child(1) {
    -webkit-transform: translateY(0.14rem) rotate(-45deg);
    transform: translateY(0.14rem) rotate(-45deg);
  }
  header .button-menu.is-active span:nth-child(2) {
    left: 50%;
    opacity: 0;
  }
  header .button-menu.is-active span:nth-child(3) {
    -webkit-transform: translateY(-0.14rem) rotate(45deg);
    transform: translateY(-0.14rem) rotate(45deg);
  }
  header .header-navigation {
    width: 100%;
    height: calc(100vh - .76rem);
    position: fixed;
    right: 0;
    top: 0.75rem;
    transform: translateX(100%);
    padding-bottom: 100px;
    z-index: 101;
    transition: all 0.3s;
    background: #fff;
    overflow: auto;
  }
  header .header-navigation.is-active {
    transform: translateX(0);
    transition: all 0.3s;
  }
  header .header-logo-image {
    width: 2.2rem;
  }
  header .header-logo-image img {
    width: 100%;
  }
  header .header-intro {
    padding: 0.15rem 0.06rem 0.13rem;
  }
  header .list-navigation {
    padding: 0.5rem 0.35rem 0;
  }
  header .list-navigation ul {
    display: block;
    border-top: 1px solid #808080;
  }
  header .list-navigation li {
    border-bottom: 1px solid #808080;
  }
  header .list-navigation a {
    display: block;
    font-size: 0.27rem;
    padding: 0.3rem 0;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
  header .list-links {
    text-align: center;
    margin-top: 0.54rem;
  }
  header .list-links a {
    display: flex;
    justify-content: center;
    width: 6.48rem;
    height: 1.64rem;
    margin: 0 auto 0.37rem;
    color: #fff;
    font-size: 0.31rem;
    font-weight: 500;
    border-radius: 0.1rem;
  }
  header .list-links .button-salon {
    align-items: center;
    background: #517761 url("../img/common/sp/ico_salon_contact_green.png") 13.8% 48%/0.54rem auto no-repeat;
  }
  header .list-links .button-salon span {
    letter-spacing: 0.05em;
    padding-left: 0.84rem;
  }
  header .list-links .button-contact {
    flex-wrap: wrap;
    padding-top: 0.2rem;
    align-items: flex-start;
    padding-left: 0.36rem;
    background: #517761 url("../img/common/sp/ico_telephone.png") 17% 52%/0.28rem auto no-repeat;
  }
  header .list-links .button-contact span {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  header .list-links .button-contact .contact-text {
    font-size: 0.24rem;
  }
  header .list-links .button-contact .contact-telephone {
    font-size: 0.46rem;
    font-weight: 400;
    line-height: 0.3;
    letter-spacing: 0.1em;
  }
  header .list-links .button-contact .contact-time {
    font-size: 0.2rem;
  }
}
@media only screen and (max-width: 374px) {
  header .list-links .button-contact .contact-time {
    font-size: 10px;
  }
}
footer {
  background: #eaecef;
  font-weight: 500;
}
footer .footer-logo {
  display: block;
}
footer .list-items {
  display: flex;
}
footer .link {
  display: inline-block;
}
footer .location-text a {
  display: inline-block;
  text-decoration: underline;
}
footer .footer-contact {
  text-align: center;
}
footer .item-address {
  display: inline-block;
}
footer .contact-telephone {
  display: inline-block;
}
footer .contact-time {
  white-space: pre;
}
footer .contact-link {
  display: inline-block;
  background: center/contain no-repeat;
}
footer .footer-copyright {
  display: block;
  width: 100%;
}

@media print, (min-width: 768px) {
  footer {
    padding: 80px 0 100px;
  }
  footer .footer-logo {
    width: 150px;
  }
  footer .list-items {
    margin-top: 40px;
  }
  footer .list-links {
    width: 215px;
  }
  footer .link {
    margin-bottom: 16px;
    font-size: 14px;
  }
  footer .list-location {
    width: 465px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    padding-left: 50px;
  }
  footer .item-location {
    margin-bottom: 15px;
  }
  footer .location-label {
    font-size: 14px;
  }
  footer .location-text {
    font-size: 12px;
    margin-top:10px;
  }
  footer .location-text a {
    margin-left: 12px;
  }
  footer .footer-contact {
    width: 320px;
    padding-left: 45px;
    padding-top: 20px;
  }
  footer .contact-text {
    font-size: 13px;
  }
  footer .contact-telephone {
    margin-top: 18px;
    font-size: 22px;
    letter-spacing: 0.09em;
    pointer-events: none;
  }
  footer .contact-time {
    font-size: 12px;
    margin: 15px 0 16px;
  }
  footer .contact-link {
    width: 40px;
    height: 40px;
    background: url("../img/common/ico_contact.svg") center/contain no-repeat;
  }
  footer .footer-copyright {
    margin-top: 28px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 0.96rem 0 1rem;
  }
  footer .wrapper {
    padding: 0 0.44rem;
  }
  footer .footer-logo {
    width: 2.8rem;
  }
  footer .footer-logo img {
    width: 100%;
  }
  footer .list-items {
    display: block;
    margin-top: 0.3rem;
  }
  footer .list-location {
    width: 100%;
    padding: 0 0 0.34rem;
    margin: 0.76rem 0 0;
    border: none;
    border-bottom: 1px solid #fff;
  }
  footer .item-location {
    letter-spacing: 0.05em;
    margin-bottom: 0.38rem;
  }
  footer .location-label {
    font-size: 0.25rem;
  }
  footer .location-text {
    font-size: 0.22rem;
    margin-top: 0.08rem;
  }
  footer .location-text a {
    letter-spacing: 0;
    display:block;
  }
  footer .footer-contact {
    width: 100%;
    padding: 0.74rem 0 0;
    margin: 0;
  }
  footer .contact-text {
    font-size: 0.24rem;
  }
  footer .contact-telephone {
    font-size: 0.48rem;
    margin-top: 0.09rem;
  }
  footer .contact-time {
    font-size: 0.2rem;
    margin: 0.1rem 0 0.52rem;
  }
  footer .contact-link {
    width: 0.8rem;
    height: 0.8rem;
    background-image: url("../img/common/ico_contact.svg");
    margin: 0 0.35rem;
  }
  footer .contact-link.is-salon {
    background-image: url("../img/common/ico_salon_contact.svg");
  }
  footer .footer-copyright {
    margin-top: 0.6rem;
    font-size: 0.2rem;
  }
  footer .list-contact {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 374px) {
  footer .location-label {
    font-size: 11px;
  }
  footer .item-address {
    font-size: 10px;
    margin-right: 0.2rem;
  }
  footer .location-text {
    font-size: 10px;
  }
  footer .location-text a {
    margin-left: 0;
  }
  footer .contact-time,
  footer .footer-copyright {
    font-size: 10px;
  }
}
/* MODULES
 * ----------------------------------------------- */
.section-common-keyvisual .keyvisual-inner {
  position: relative;
  margin: 0 auto;
}
.section-common-keyvisual .keyvisual-background {
  text-align: center;
}
.section-common-keyvisual .keyvisual-background img {
  width: 100%;
}

.block-banner img {
  width: 100%;
}

.aside-menu {
  position: fixed;
  right: 0;
  top: 191px;
  z-index: 100;
}
.aside-menu li:last-child a {
  /*padding-bottom: 41px;*/
}
.aside-menu a {
  display: block;
  width: 65px;
  padding: 30px 27px 36px;
  line-height: 1.1;
  margin-bottom: 23px;
  word-break: break-all;
  background: rgba(0,104,55,.85);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.common-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 28px;
  margin: 0 auto;
  border: 1px solid #000;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.07em;
}

.common-title {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.common-title.font-athelas {
  font-size: 24px;
  letter-spacing: 0.05em;
}
.common-title.font-athelas + .common-subtitle {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.common-subtitle {
  display: block;
  font-weight: bold;
  font-size: 10px;
  text-align: center;
  font-family: kozuka-gothic-pr6n, sans-serif;
  letter-spacing: 0;
}

.card-movie {
  width: 194px;
  margin-right: 7.5px;
  margin-bottom: 12px;
  background: #000;
  border: 1px solid #e6e6e6;
}
.card-movie:nth-child(5n + 5) {
  margin-right: 0;
}
.card-movie .link-movie {
  display: block;
  height: 100%;
}
.card-movie .item-image img {
  width: 100%;
  height: auto;
}
.card-movie .item-description {
  color: #fff;
  text-align: left;
  padding: 7px 10px 14px;
}
.card-movie .list-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -3px;
}
.card-movie .item-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  background: #517761;
  margin: 3px 3px;
  padding: 0 2px;
  border: 1px solid transparent;
  line-height: 1.6;
}
.card-movie .item-time {
  color: #00592C;
  font-size: 10px;
  font-weight: bold;
}
.card-movie .item-title {
  font-size: 11px;
  line-height: 1.6;
  margin: 5px 0;
  font-weight: 500;
}
.card-movie .item-text {
  margin-top: 5px;
  font-size: 10px;
  color: #000;
  text-decoration: underline;
}
.card-movie .item-detail {
  color: #999;
  font-size: 10px;
  font-weight: 500;
}
.card-movie.is-white {
  background: #fff;
}
.card-movie.is-white .item-label {
  border-color: #517761;
  background: #fff;
  color: #517761;
}
.card-movie.is-white .item-label a {
  color: #517761;
}

.button-back {
  text-align: right;
  margin-top: 19px;
}
.button-back a {
  display: inline-flex;
  width: 150px;
  height: 28px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: #b3b3b3;
  color: #fff;
}
.button-back span {
  line-height: 2;
  padding-left: 15px;
  padding-right: 3px;
  position: relative;
  background: url("../img/onlinesalon/ico_double_arrow.png") 0% center/9px auto no-repeat;
}

.button-contact {
  text-align: center;
}
.button-contact a {
  display: inline-flex;
  width: 300px;
  height: 48px;
  border-radius: 5px;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #006837;
  color: #fff;
}
.button-contact span {
  line-height: 2;
  padding-right: 15px;
  padding-left: 5px;
  background: url("../img/onlinesalon/ico_arrow.png") right center/7px auto no-repeat;
}

@media print, (min-width: 768px) {
  .common-title {
    font-size: 25px;
    line-height: 1.6;
  }

  .common-subtitle {
    font-size: 12px;
  }
}
.list-category {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.list-category .item-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  background: #517761;
  margin: 0 4px 4px;
  padding: 0 8px;
  line-height: 1.7;
}
.list-category .item-category.is-active {
  color: #517761;
  background: #fff;
  border: 1px solid #517761;
}

.wp-pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.wp-pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 28px;
  background: #f2f2f2;
  color: #000;
  font-size: 10px;
  border-radius: 4px;
  margin: 0 5px;
  transition: all 0.3s;
  margin-bottom: 10px;
}
.wp-pager .page-numbers.current, .wp-pager .page-numbers:hover {
  background: #b3b3b3;
  transition: all 0.3s;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .card-movie .item-label {
    line-height: 0.7;
    padding-top: 10px;
  }
  .card-movie .item-title,
  .card-movie .item-text {
    padding-top: 6px;
  }
  .card-movie .item-time {
    transform: translateY(5px);
  }

  .aside-menu a {
    padding-top: 36px;
    padding-bottom: 30px;
  }

  .contact-form .form-label span {
    display: block;
    padding-top: 5px;
  }
  .contact-form .wpcf7-list-item-label {
    display: block;
    padding-top: 6px;
  }
  .contact-form .form-submit .wpcf7-button {
    padding-top: 13px;
    border-radius: unset;
    -webkit-appearance: none;
  }
  .contact-form .wpcf7-text,
  .contact-form .wpcf7-textarea {
    font-family: Meiryo, serif;
  }

  .list-category .item-category {
    line-height: 1;
    padding-top: 12px;
  }

  .wp-pager .page-numbers {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .common-button {
    width: 2.9rem;
    height: 0.66rem;
    font-size: 0.283rem;
  }

  .card-movie {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 0.25rem;
  }
  .card-movie:nth-child(5n + 5) {
    margin-right: 4%;
  }
  .card-movie:nth-child(2n + 2) {
    margin-right: 0;
  }
  .card-movie .item-description {
    padding: 0.31rem 0 0.36rem 0.25rem;
  }
  .card-movie .list-label {
    margin: 0 0.05rem;
  }
  .card-movie .item-label {
    font-size: 0.2rem;
    line-height: 1.65;
    margin: 0 0.06rem 0.06rem 0;
    padding: 0 0.16rem;
  }
  .card-movie .item-title {
    font-size: 0.23rem;
    margin: 0.11rem 0 0.39rem;
    letter-spacing: 0.05em;
  }
  .card-movie .item-detail {
    font-size: 0.2rem;
    letter-spacing: 0.05em;
  }
  .card-movie .item-time {
    font-size: 0.23rem;
    letter-spacing: 0.05em;
  }
  .card-movie .item-text {
    font-size: 0.25rem;
    margin-top: 0.15rem;
    line-height: 1.55;
    letter-spacing: 0.05em;
  }
  .card-movie.is-white .list-label {
    display: none;
  }
  .card-movie.is-white .item-description {
    padding: 0.21rem 0.1rem 0.22rem 0.22rem;
  }

  .common-title {
    font-size: 0.4rem;
    line-height: 1.8;
  }
  .common-title.font-athelas {
    font-size: 0.39rem;
    line-height: 1.3;
  }
  .common-title.font-athelas + .common-subtitle {
    font-size: 0.22rem;
    font-weight: bold;
  }

  .common-subtitle {
    font-size: 0.22rem;
  }

  .button-back {
    text-align: center;
    margin-top: 0.69rem;
  }
  .button-back a {
    width: 3.14rem;
    height: 0.6rem;
    font-size: 0.28rem;
  }
  .button-back span {
    padding-left: 0.29rem;
    padding-right: 0;
    background-position: 1% 55%;
    background-size: 0.18rem auto;
  }

  .button-contact {
    margin-top: 1.15rem;
  }
  .button-contact a {
    width: 6rem;
    height: 1.95rem;
    font-size: 0.33rem;
    border-radius: 0.1rem;
    margin: 0;
  }
  .button-contact span {
    padding: 0 0 0.06rem;
    background: none;
    max-width: 55%;
    line-height: 1.7;
  }

  .wp-pager .page-numbers {
    width: 0.74rem;
    height: 0.91rem;
    font-size: 0.335rem;
    border-radius: 0.1rem;
    margin: 0 0.18rem 0.36rem;
  }

  .list-category {
    flex-wrap: wrap;
    padding: 0 0.5rem;
  }
  .list-category .item-category {
    display: inline-block;
    font-size: 0.28rem;
    line-height: 1.7;
    margin: 0 0.18rem 0.32rem;
    padding: 0.04rem 0.2rem;
  }
}
/* PAGE
 * ----------------------------------------------- */
.section-business-list {
  padding: 50px 0 0;
}
.section-business-list .items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 42px;
}
.section-business-list .item {
  width: 31.5%;
  margin-right: 2.75%;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
.section-business-list .item:nth-child(3n + 3) {
  margin-right: 0;
}
.section-business-list .item-title {
  font-size: 17px;
  font-weight: 500;
  margin:20px 0;
  text-align: center;
}
.section-business-list .item-description {
  text-align: center;
  line-height: 24px;
}
.section-business-list .item-description .is-long {
  font-size: 10.5px;
}

.section-business-fee {
  padding-top: 62px;
  padding-bottom: 98px;
  background: #f2f2f2;
}
.section-business-fee .list-fee {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.section-business-fee .item-fee {
  /*width: 48%;
  margin: 0 1%;*/
  width: 100%;
  background: #fff;
  /*padding: 30px 30px 45px;*/
  padding: 30px 30px 20px;
  text-align: center;
}
.section-business-fee .item-fee .is-green {
  color:#006837;
}
.section-business-fee .item-title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom:15px;
  color: #00592C;
  letter-spacing: 0.05rem;
  text-align: center;
}
.section-business-fee .item-note {
  text-align: left;
  line-height:1.7;
}
.section-business-fee .fee-detail {
  text-align: left;
  margin: 20px 0;
  letter-spacing: 0.075rem;
}
.section-business-fee .fee-detail li {
  margin: 2px 5px;
  display:inline-block;
}
.section-business-fee .fee-detail.is-long {
  letter-spacing: unset;
}
.section-business-fee .item-attention {
  text-align: left;
  margin-top: 30px;
}
.section-business-fee p {
    margin-bottom:30px;
}
.section-business-fee p.item-price {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.075rem;
    margin-bottom: 10px;
    /*margin: 20px 0;
    text-align: center;*/
}


.base-button-wrapper {
  padding: 67px 0;
  background: #fff;
}

.base-button {
  display: flex;
  flex-direction: column;
  width: 450px;
  height: 110px;
  color: #fff;
  background: #00592C;
  padding-top: 17px;
  letter-spacing: 0.05em;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.base-button:before {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  top: 4px;
  left: 4px;
  border: 1px solid #b3b3b3;
}
.base-button .label {
  font-size: 12px;
}
.base-button .text {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.base-button .sub-text {
  font-size: 12px;
  font-weight: bold;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-business-fee .item-title {
    padding-top: 15px;
    margin-bottom: 20px;
  }

  .base-button .text {
    padding: 6px 0 12px;
    line-height: 1;
  }
}
@media only screen and (max-width: 767px) {
  .section-business-list {
    padding: 0.5rem 0 0;
  }
  .section-business-list .common-title {
    line-height: 1.4;
  }
  .section-business-list .items {
    display: block;
    padding: 0 0.16rem;
    margin-top: 0.42rem;
  }
  .section-business-list .item {
    width: 100%;
    margin: 0 0 0.6rem;
  }
  .section-business-list .item img {
    width: 100%;
  }
  .section-business-list .item-title {
    font-size: 0.33rem;
    margin: 0.35rem 0 0.25rem;
  }
  .section-business-list .item-description {
    font-size: 0.24rem;
    line-height: 0.44rem;
  }
  .section-business-list .item-description .is-long {
    font-size: 0.22rem;
  }

  .section-business-fee {
    padding-top: 0.5rem;
    padding-bottom: 0.8rem;
  }
  .section-business-fee .list-fee {
    display: block;
    margin-top: 0.44rem;
    padding: 0 0.15rem;
  }
  .section-business-fee .item-fee {
    width: 100%;
    margin: 0 0 0.66rem;
    /*padding: 0.59rem 0.62rem 0.8rem;
    font-size: 0.25rem;*/
    padding: 0.59rem 0.62rem 0.39rem;
    font-size: 0.24rem;
  }
  .section-business-fee .item-title {
    font-size: 0.35rem;
    padding-bottom: 0.16rem;
    letter-spacing: 0.02rem;
  }
  .section-business-fee .item-note {
    font-size: 0.25rem;
  }
  .section-business-fee .fee-detail {
    font-size: 0.23rem;
    margin-top: 0.5rem;
    letter-spacing: 0.075em;
    margin-right: -0.1rem;
  }
  .section-business-fee .fee-detail li {
    margin-bottom: 0.12rem;
  }
  .section-business-fee .fee-detail li.is-long {
    letter-spacing: 0.01rem;
  }
  .section-business-fee .item-attention {
    margin-top: 0.1rem;
  }

  .base-button-wrapper {
    padding: 1.08rem 0;
  }

  .base-button {
    width: 5.6rem;
    height: 1.58rem;
    padding-top: 0.2rem;
  }
  .base-button:before {
    width: calc(100% - .1rem);
    height: calc(100% - .1rem);
    top: 0.05rem;
    left: 0.05rem;
  }
  .base-button .label {
    font-size: 0.24rem;
  }
  .base-button .text {
    font-size: 0.37rem;
    line-height: 1.2;
  }
  .base-button .sub-text {
    font-size: 0.22rem;
  }
  .section-business-fee p.item-price {
    font-size: 0.33rem;
    margin-top: 0.33rem;
    margin-bottom: 0.33rem;
    letter-spacing: 0.01rem;
	}
}

.section-common-lc {
	background: #83ccd2;
}
.section-common-lc .txt-box .area-link {
	color: #fff;
}
.section-common-lc .txt-box h4 {
	text-align:center;
	font-weight: 500;
}
.section-common-lc .txt-box .area-link {
	text-align:center;
}
.section-common-lc .txt-box .area-link a {
    display: block;
    background: #37b9bd;
    color: #fff;
    font-weight: 500;
}
@media print, (min-width: 768px) {
	.section-common-lc {
		padding: 60px 0;
		margin-top: 50px;
	}
	.section-common-lc .wrapper {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: space-between;
	}
	.section-common-lc .main-img {
		width: 20%;
		filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, .5));
	}
	.section-common-lc .txt-box {
		width: 70%;
	}
	.section-common-lc .txt-box h3 {
		width: 80%;
		margin: 0 auto 25px;
	}
	.section-common-lc .txt-box p {
		font-size: 15px;
		line-height: 1.9;
	}
	.section-common-lc .txt-box h4 {
		margin: 30px 0;
		font-size: 25px;
	}
	.section-common-lc .txt-box .area-link a {
		width: 90%;
		margin: auto;
		filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, .3));
		border-radius: 30px;
		font-size: 28px;
		padding: 25px 0;
	}
	.section-common-lc .txt-box .area-link p {
		margin-top: 40px;
	}
}
@media only screen and (max-width: 767px) {
	.section-common-lc {
		padding: 40px 0;
		margin-top: 20px;
	}
	.section-common-lc .wrapper {
		padding-left: 0.55rem;
		padding-right: 0.55rem;
	}
	.section-common-lc .flex {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 30px;
	}
	.section-common-lc .main-img {
		width: 35%;
		filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, .5));
	}
	.section-common-lc .flex h3 {
		width: 55%;
	}
	.section-common-lc .txt-box p {
		font-size: 14px;
		line-height: 1.7;
	}
	.section-common-lc .txt-box h4 {
		margin: 30px 0;
		font-size: 20px;
	}
	.section-common-lc .txt-box .area-link a {
		filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, .3));
        border-radius: 20px;
        font-size: 22px;
        padding: 20px 5px;
	}
	.section-common-lc .txt-box .area-link p {
		margin-top: 30px;
		font-size: 12px;
	}
}

.section-common-federal {
	background:#02914c;
}
.section-common-federal img {
	display:block;
}
.section-common-federal .area_btn {
	text-align: center;
}
.section-common-federal .area_btn a {
	display: block;
	background: #165e3b;
	font-weight: 500;
	color: #fff;
	filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, .3));
}
.section-common-federal .area_btn h4 {
	color: #fff;
	font-weight: 500;
}
@media print, (min-width: 768px) {
	.section-common-federal {
		/*height: 520px;*/
		height: auto;
		padding: 80px 10px 60px;
	}
	.section-common-federal .wrapper {
		height: 100%;
	}
	.section-common-federal .flex_box {
		display:flex;
		align-items:center;
		justify-content:space-between;
		flex-direction: row-reverse;
	}
	.section-common-federal .logo {
		width: 340px;
	}
	.section-common-federal .image {
		width: 560px;
	}
	.section-common-federal .area_btn {
	    margin-top: 50px;
	}
	.section-common-federal .area_btn a {
		width: 70%;
		padding: 25px 10px;
		margin: 0 auto 25px;
		border-radius: 10px;
		font-size: 24px;
	}
	.section-common-federal .area_btn h4 {
		font-size: 24px;
	}
}
@media only screen and (max-width: 767px) {
	.section-common-federal {
		height: auto;
		padding: 50px 0;
	}
	.section-common-federal .logo {
		width: 240px;
		display: block;
		margin: 0 auto;
	}
	.section-common-federal .image {
		width: 100%;
		margin-bottom: 30px;
	}
	.section-common-federal .area_btn {
	    margin-top: 30px;
	}
	.section-common-federal .area_btn a {
		font-size: 20px;
		padding: 15px 5px;
		border-radius: 10px;
		margin-bottom: 20px;
	}
	.section-common-federal .area_btn h4 {
		font-size: 18px;
	}
}

/*# sourceMappingURL=business.css.map */
