@charset "utf-8";

/*--------------------------------------
  # font
--------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/*
// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

// <weight>: Use a value from 200 to 900
// <uniquifier>: Use a unique and descriptive class name

.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
 */

/*--------------------------------------
  # general
--------------------------------------*/

html {
  font-size: 62.5%;
  overflow-y: scroll !important;
  word-break: break-word;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0 !important;
  color: #666;
  font-size: 1.5rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #ECE6DC;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: left;
}

#container {}

@media (min-width: 950px) {
  html {
    scroll-padding-top: 140px;
  }

  body {
    font-size: 1.7rem;
  }

  #container {}
}

/*--------------------------------------
  # header
--------------------------------------*/

@media (max-width: 949px) {
  #header {
    position: fixed;
    z-index: 999;
    top: -60px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    transition: 0.2s;
  }

  body.scroll #header {
    top: 0;
  }

  #header .header-wrapper {}

  #header .site-title {
    display: flex;
    align-items: center;
  }

  #header .site-title a {
    display: block;
    width: 77px;
    height: 0;
    margin: 0 auto;
    padding-top: 60px;
    background: url(../img/site-title.svg) no-repeat center;
    background-size: contain;
    overflow: hidden;
  }

  #header .supplement-nav {
    padding: 20px;
  }

  #header .supplement-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  #header .supplement-nav .icon {
    margin: 7.5px;
  }

  #header .supplement-nav .icon a {
    display: block;
    font-size: 26px;
    text-decoration: none;
  }

  #header .supplement-nav .icon i {}

  #header .supplement-nav .btn {
    width: 100%;
    margin-bottom: 15px;
  }

  #header .supplement-nav .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    min-height: 50px;
    padding: 0 20px;
    color: var(--main-color-r);
    font-size: 1.6rem;
    font-weight: bold;
    background: var(--main-color);
    border-bottom: 3px solid rgb(0 0 0 / 20%);
    border-radius: 5px;
    text-decoration: none;
  }

  #header .supplement-nav .btn .btn-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #header .supplement-nav .btn i {
    margin: 0 10px -2px 0;
    font-size: 25px;
  }

  #header .supplement-nav .btn .btn-name {
    text-align: center;
  }

  #header .supplement-nav .btn .btn-name .tel-number {
    display: block;
    font-size: 125%;
  }

  #header .supplement-nav .btn .btn-name .tel-date {
    display: block;
    font-size: 1.0rem;
    font-weight: normal;
  }

  #header .global-nav-icon {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
  }

  #header .global-nav-icon a {
    align-items: center;
    color: #000;
    display: flex;
    flex-direction: column;
    font-size: 34px;
    height: 60px;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: .2s;
    width: 60px;
  }

  body.scroll #header .global-nav-icon a {
    opacity: .6;
  }

  #header .global-nav-icon a .i {
    border-bottom: 1px solid;
    display: block;
    margin: 4px 0;
    transition: .2s;
    width: 30px;
  }

  body.open #header .global-nav-icon a {
    color: #fff;
    opacity: 1;
    transform: rotate(135deg);
  }

  body.open #header .global-nav-icon a .i {
    margin: 0;
  }

  body.open #header .global-nav-icon a .i.t {
    transform: rotate(90deg);
  }

  body.open #header .global-nav-icon a .i.m {
    border: none;
    opacity: 0;
  }

  body.open #header .global-nav-icon a .i.b {
    transform: translateY(-1px);
  }

  #header .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    overflow: auto;
    transition: 0.15s background, 0s 0s left;
  }

  body:not(.open) #header .global-nav {
    left: -100%;
    background: none;
    transition: 0.15s background, 0s 0.15s left;
  }

  #header .global-nav .global-nav-wrapper {
    min-height: 100%;
    margin-right: 20%;
    background: #FFF;
    box-shadow: 1px 0 4px rgb(0, 0, 0, 0.25);
    transition: 0.3s transform;
  }

  body:not(.open) #header .global-nav .global-nav-wrapper {
    transform: translateX(-100%);
  }

  #header .global-nav .nav-item {
    border-bottom: 1px solid #CCC;
  }

  #header .global-nav .nav-item-name {
    position: relative;
    display: block;
    padding: 15px 20px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
  }

  #header .global-nav .nav-item-name:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-top: 1px solid;
    border-right: 1px solid;
    opacity: 0.6;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: 0.2s;
  }

  #header .global-nav .has-child .nav-item-name:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  #header .global-nav .has-child:not(.open) .nav-item-name:after {
    transform: translate(-50%, -50%) rotate(135deg);
  }

  #header .global-nav .sns-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
  }

  #header .global-nav .sns-link li {
    margin: 0 0.8em;
  }

  #header .global-nav .sns-link a {
    display: block;
    font-size: 140%;
  }

  #header .global-nav .inquiry-btn {
    margin: 20px;
  }

  #header .global-nav .inquiry-btn+.inquiry-btn {
    margin-top: -5px;
  }

  #header .global-nav .inquiry-btn a {
    display: block;
    color: #FFF;
    font-size: 115%;
    font-weight: bold;
    background: #000;
    text-decoration: none;
    text-align: center;
    padding: 0.8em;
  }

  #header .global-nav .child-nav {
    clear: both;
    padding: 10px 20px;
    background: rgb(0 0 0 / 8%);
    overflow: hidden;
    transition: 0.2s;
  }

  #header .global-nav .nav-item:not(.open) .child-nav {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0;
    opacity: 0;
  }

  #header .global-nav .child-nav a {
    position: relative;
    display: block;
    padding: 0.5em 0 0.5em 1.2em;
  }

  #header .global-nav .child-nav a:before {
    content: '';
    position: absolute;
    top: 1.05em;
    left: 0.3em;
    width: 5px;
    height: 5px;
    border: 1px solid;
    border-radius: 100%;
    transform: translateY(-50%);
    opacity: 0.6;
  }


  #header .global-nav .inqury-menu {
    clear: both;
    padding: 25px 20px;
    background: #ECE6DC;
  }

  #header .global-nav .inqury-menu ul {}

  #header .global-nav .inqury-menu ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  #header .global-nav .inqury-menu ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    color: #FFF;
    font-size: 108%;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  }

  #header .global-nav .inqury-menu ul i {
    margin-right: 0.4em;
    font-size: 1.4em;
  }

  #header .global-nav .inqury-menu ul .web a {
    color: #998500;
  }

  #header .global-nav .inqury-menu ul .line a {
    color: #588c46;
  }

  #header .global-nav .inqury-menu ul .line i {
    color: #00c400;
  }

  #header .global-nav .header-banner {
    padding: 20px;
    text-align: center;
  }

  #header .global-nav .header-banner a {
    display: block;
    margin-top: 10px;
  }

  #header .global-nav .header-banner a img {
    display: block;
    width: 100%;
  }

  #header .global-nav .mini-menu {
	  padding: 20px;
	  border-top: 1px solid #CCC;
  }

  #header .global-nav .mini-menu ul li {
	  margin: 0 0 10px;
	  font-size: 1.3rem;
  }
}

@media (min-width: 950px) {
  #header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 1.2;
    transition: 0.2s background;
  }

  body.scroll #header {
    background: rgba(255, 255, 255, 0.9);
  }

  #header .header-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
  }

  #header .site-title {
    display: flex;
    align-items: center;
  }

  #header .site-title a {
    display: block;
    width: 118px;
    height: 0;
    padding-top: 72px;
    padding-top: 00;
    background: url(../img/site-title.svg) no-repeat center;
    background-size: 118px;
    overflow: hidden;
    text-decoration: none;
    opacity: 0;
    transition: 0.2s opacity, 0s 0.2s padding-top;
  }

  body.scroll #header .site-title a {
    padding-top: 72px;
    opacity: 1;
    transition: 0.2s opacity;
  }

  #header .supplement-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  #header .supplement-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin-top: 2px;
  }

  #header .supplement-nav .icon {
    margin-left: 10px;
  }

  #header .supplement-nav .icon a {
    display: block;
    font-size: 22px;
    text-decoration: none;
    transition: 0.2s;
  }

  #header .supplement-nav .icon a:hover {
    opacity: 0.6;
  }

  #header .supplement-nav .icon i {}

  #header .supplement-nav .btn {
    margin-left: 15px;
  }

  #header .supplement-nav .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    min-height: 46px;
    padding: 0 20px;
    color: var(--main-color-r);
    font-weight: bold;
    background: var(--main-color);
    border-bottom: 3px solid rgb(0 0 0 / 20%);
    border-radius: 5px;
    text-decoration: none;
    transition: 0.15s;
  }

  #header .supplement-nav .btn a:hover {
    /* opacity: 0.6; */
    min-height: 44px;
    margin-top: 2px;
    border-bottom: none;
    filter: brightness(0.85);
  }

  #header .supplement-nav .btn .btn-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #header .supplement-nav .btn i {
    margin: 0 10px -2px 0;
    font-size: 25px;
  }

  #header .supplement-nav .btn .btn-name {
    text-align: center;
  }

  #header .supplement-nav .btn .btn-name .tel-number {
    display: block;
    font-size: 125%;
  }

  #header .supplement-nav .btn .btn-name .tel-date {
    display: block;
    font-size: 1.0rem;
    font-weight: normal;
  }

  #header .global-nav-icon {
    display: none;
  }

  #header .global-nav {
    flex: 1;
    padding: 35px 0;
  }

  #header .global-nav ul.nav-wrapper {
    display: flex;
    justify-content: right;
  }

  #header .global-nav .nav-item {
    position: relative;
  }

  #header .global-nav .nav-item:not(:first-child) {
    margin-left: 15px;
    transition: 0.2s;
  }

  @media (min-width: 1050px) {

    #header .global-nav .nav-item:not(:first-child) {
      margin-left: 2.5vw;
    }
  }

  #header .global-nav .nav-item-name {
    display: block;
    color: #333;
    font-size: min(1.5vw, 1.7rem);
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    text-decoration: none;
    transform: rotate(0.05deg);
    transition: 0.2s;
  }

  #header .global-nav a.nav-item-name:hover {
    color: #588C46;
  }

  #header .global-nav .child-nav {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    padding: 15px;
    color: var(--main-color-r);
    font-size: 90%;
    background: var(--main-color);
    white-space: nowrap;
    /* box-shadow: 0 1px 4px rgb(0 0 0 / 25%); */
    overflow: hidden;
    transition: 0.2s;
  }

  #header .global-nav .nav-item:not(:hover) .child-nav {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0;
    opacity: 0;
  }

  #header .global-nav .child-nav li:not(:last-child) {
    margin-bottom: 0.8em;
  }
}

/*--------------------------------------
  # Contents
--------------------------------------*/

#contents {}

#main {
  padding-bottom: 40px;
}

/* top-title
--------------------*/

.top-title {
  padding: 18px 0;
}

.top-title a {
  display: block;
  width: 118px;
  height: 0;
  margin: 0 auto;
  padding-top: 72px;
  background: url(../img/site-title.svg) no-repeat center;
  background-size: contain;
  overflow: hidden;
}

.top-title a:hover {}

@media (min-width: 950px) {
  #contents {}

  #main {}

  /* top-title
--------------------*/

  .top-title {
    width: min(15vw, 220px);
    padding: 35px 0 0 40px;
  }

  .top-title a {
    position: relative;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding-top: 61.11%;
  }

  .top-title a:hover {}
}









/*--------------------------------------
  # Footer
--------------------------------------*/

#footer {
  position: relative;
  margin-top: -30px;
  padding: 50px 0 80px;
  color: #FFF;
  overflow: hidden;
}

#footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 300%;
  height: 100%;
  margin-left: -150%;
  background: url(../img/bg/green_pattern.jpg) repeat center;
  background-size: 375px;
  box-shadow: inset 2px 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 100% 100% 0 0;
}

#footer .footer-wrapper {
  position: relative;
  padding: 0 25px;
}

#footer .information {
  margin-bottom: 35px;
  font-style: normal;
  font-size: 1.4rem;
  text-align: center;
}

#footer .information>*:last-child {
  margin-bottom: 0;
}

#footer .information .site-title {
  margin-bottom: 20px;
}

#footer .information .site-title a {
  display: block;
  width: 118px;
  height: 0;
  margin: 0 auto;
  padding-top: 72px;
  background: url(../img/site-title.svg) no-repeat center;
  background-size: contain;
  filter: contrast(0) brightness(2);
  overflow: hidden;
}

#footer .information .site-title a:hover {}

#footer .information .site-title a img {
  display: block;
  width: 160px;
  object-fit: contain;
}

#footer .information p {
  font-size: 95%;
}

#footer .business-hours table {
  color: #666;
}

#footer .footer-sitemap {
  margin: 40px 0;
  font-size: 1.4rem;
  text-align: center;
}

#footer .footer-sitemap ul {}

#footer .footer-sitemap ul li {
  margin: 5px 0;
}

#footer .footer-sitemap ul li a {
  text-decoration: none;
}

#footer .footer-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

#footer .footer-banner a {
  display: block;
}

#footer .footer-banner a img {
  display: block;
}

#footer .copylight {
  text-align: center;
  line-height: 1.2;
}

#footer .copylight small {
  font-size: 1.1rem;
}

@media (min-width: 950px) {
  #footer {
    padding: 100px 0 80px;
  }

  #footer:before {}

  #footer .footer-wrapper {
    display: grid;
    grid-template-columns: auto auto max(30%, 400px);
    padding: 0 40px;
  }

  #footer .information {
    grid-column: 1 / 2;
    display: flex;
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: left;
  }

  #footer .information>*:last-child {}

  #footer .information .site-title {
    margin: -15px 30px 0 0;
  }

  #footer .information .site-title a {
    width: 168px;
    margin: 0;
    padding-top: 103px;
  }

  #footer .information .site-title a:hover {}

  #footer .information .site-title a img {}

  #footer .information p {}

  #footer .business-hours {
    grid-column: 3 / 4;
    grid-row: 1 / 4;
    margin: 0;
    font-size: 1.6rem;
  }

  #footer .business-hours table {
    font-size: 1.3rem;
  }

  #footer .business-hours table th,
  #footer .business-hours table td {
    padding: 10px;
  }

  #footer .footer-sitemap {
    grid-column: 1 / 2;
    margin: 0 0 25px;
    font-size: 1.4rem;
  }

  #footer .footer-sitemap ul {
    display: flex;
    flex-wrap: wrap;
  }

  #footer .footer-sitemap ul li {
    margin: 0;
  }

  #footer .footer-sitemap ul li:not(:last-child)::after {
    content: "／";
    margin: 0 0.6em;
    opacity: 0.6;
  }

  #footer .footer-sitemap ul li a {
    transition: 0.2s;
  }

  #footer .footer-sitemap ul li a:hover {
    opacity: 0.6;
  }

  #footer .footer-banner {
    grid-column: 1 / 2;
    justify-content: left;
    margin-bottom: 20px;
  }

  #footer .footer-banner a {
    width: 360px;
  }

  #footer .footer-banner a:hover {}

  #footer .copylight {
    grid-column: 1 / 2;
    text-align: left;
  }

  #footer .copylight small {}
}

/*--------------------------------------
  # fixed-nav
--------------------------------------*/

#fixed-nav {
  position: fixed;
  z-index: 990;
  right: 0;
  bottom: 0;
  width: 100%;
}

#fixed-nav .pagetop {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin: 0 15px 15px 0;
  transition: 0.2s 0.2s opacity, 0.2s transform;
}

body:not(.scroll) #fixed-nav .pagetop {
  transform: translateX(999%);
  opacity: 0;
  transition: 0.2s opacity, 0.2s 0.2s transform;
}

#fixed-nav .pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: #588C46;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  text-decoration: none;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
  /* opacity: 0.9; */
  transition: 0.2s;
}

#fixed-nav .pagetop a:hover {}

#fixed-nav ul.inquiry-btn {
  display: flex;
  border-radius: 10px 10px 0 0;
  color: var(--main-color-r);
  background: var(--main-color);
  line-height: 1.2;
}

#fixed-nav ul.bottom-menu {
  display: flex;
  height: 50px;
  border-radius: 15px 15px 0 0;
  background: #FFF;
}

#fixed-nav ul.bottom-menu li {
  position: relative;
  flex: 1;
}

#fixed-nav ul.bottom-menu li:first-child:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  height: 32px;
  border-right: 1px solid #CCC;
  transform: translateY(-50%);
}

#fixed-nav ul.bottom-menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
}

#fixed-nav ul.bottom-menu li.web a {
  color: #998500;
}

#fixed-nav ul.bottom-menu li.line a {
  color: #588c46;
}

#fixed-nav ul.bottom-menu i {
  margin-right: 0.4em;
  font-size: 1.4em;
}

#fixed-nav ul.bottom-menu li.web i {}

#fixed-nav ul.bottom-menu li.line i {
  color: #00c400;
}

@media (max-width: 949px) {
  #fixed-nav .banner {
    display: none !important;
  }
}

@media (min-width: 950px) {
  #fixed-nav {
    width: auto;
  }

  #fixed-nav .pagetop {}

  body:not(.scroll) #fixed-nav .pagetop {}

  #fixed-nav .pagetop a {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  #fixed-nav .pagetop a:hover {
    opacity: 0.4;
  }

  #fixed-nav .pagetop a i {}

  #fixed-nav .banner {
    position: relative;
    display: none;
    width: 460px;
    margin-left: auto;
    padding: 0 10px 10px;
  }

  #fixed-nav .banner a {
    display: block;
  }

  #fixed-nav .banner a:hover {}

  #fixed-nav .banner a img {
    display: block;
    width: 100%;
  }

  #fixed-nav .banner .close {
    position: absolute;
    top: 0;
    /* left: 0; */
    margin-top: -12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    color: #FFF;
    background: #999;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
  }

  #fixed-nav .banner .close i {}

  #fixed-nav ul.bottom-menu {
    position: fixed;
    top: 50%;
    right: 0;
    display: block;
    height: auto;
    margin-top: -40px;
    border-radius: 15px 0 0 15px;
    transform: translateY(-50%);
  }

  #fixed-nav ul.bottom-menu li {}

  #fixed-nav ul.bottom-menu li:first-child:after {
    top: 100%;
    left: 50%;
    height: 0;
    width: 70%;
    border-right: none;
    border-bottom: 1px solid #CCC;
    transform: translate(-50%, -50%);
  }

  #fixed-nav ul.bottom-menu li a {
    writing-mode: vertical-rl;
    width: 54px;
    height: auto;
    padding: 25px 0 25px 5px;
    transition: 0.2s;
  }

  #fixed-nav ul.bottom-menu li a:hover {
    opacity: 0.6;
  }

  #fixed-nav ul.bottom-menu li.web a {}

  #fixed-nav ul.bottom-menu li.line a {}

  #fixed-nav ul.bottom-menu i {
    margin: 0 0.1em 0.35em 0;
  }

  #fixed-nav ul.bottom-menu li.web i {}

  #fixed-nav ul.bottom-menu li.line i {}


}






























/*--------------------------------------
  # Common
--------------------------------------*/

/* basic
--------------------*/

@media (max-width: 949px) {
  .hide-m {
    display: none !important;
  }
}

@media (min-width: 950px) {
  .hide-d {
    display: none !important;
  }
}

@media (max-width: 949px) {

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

/* Font size */
.mini {
  font-size: 80%;
}

.small {
  font-size: 87.5%;
}

.big {
  font-size: 118%;
}

.large {
  font-size: 138%;
}

/* Color */
.fc-red {
  color: #F00;
}

/* Space */
.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

/* link */
a {
  color: inherit;
  text-decoration: underline;
}

@media (min-width: 950px) {

  a[href^="tel:"],
  a:hover {
    text-decoration: none;
  }
}

/* text */
p {
  margin-bottom: 1.6em;
}

p.aligncenter {
  text-align: center;
}

p.alignleft {
  text-align: left;
}

p.alignright {
  text-align: right;
}

/* align */
img.aligncenter,
img.alignleft,
img.alignright,
div.aligncenter,
div.alignleft,
div.alignright {
  display: block;
  margin: 1.5em auto;
  text-align: center;
}

div.aligncenter img,
div.alignleft img,
div.alignright img {
  display: block;
  margin-bottom: 0.2em;
}

@media (min-width: 950px) {

  img.aligncenter,
  img.alignleft,
  div.alignleft {
    float: left;
    clear: left;
    max-width: 35%;
    margin: 0 60px 60px 0;
  }

  img.alignright,
  div.alignright {
    float: right;
    clear: right;
    max-width: 35%;
    margin: 0 0 60px 60px;
  }
}

/* indent */

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.indent-icon {
  padding-left: 1.4em;
  text-indent: -1.4em;
}

.indent-icon i {
  display: inline;
  margin-right: 0.4em;
}

/* List */
ul.reset,
ol.reset {
  list-style: none;
}

ul:not(.reset) {
  list-style: disc;
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

ol:not(.reset) {
  list-style: decimal;
  margin-bottom: 1.5em;
  padding-left: 1.5em;
  overflow: hidden;
}

ul:not(.reset)>li,
ol:not(.reset)>li {
  margin: 0.1em 0;
}

ul:not(.reset) ul:not(.reset),
ol:not(.reset) ul:not(.reset) {
  list-style: circle;
  margin-bottom: 0;
}

/* Table */
table {
  width: 100%;
  margin: 2em 0;
  background: #FFF;
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
}

table caption {
  margin-bottom: 0.25em;
  font-weight: bold;
  text-align: left;
}

table th,
table td {
  padding: 5px 10px;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}

table th {
  font-weight: bold;
  background: #EEE;
}

@media (max-width: 949px) {
  .table-slider {
    margin: 2em 0;
    overflow: auto;
  }

  .table-slider>table {
    margin: 0;
    min-width: 200vw;
  }
}

.clear {
  clear: both;
}

.anchor {
  display: block;
  transform: translateY(-30px);
}

a.link-mark {
  position: relative;
  display: inline-flex;
  justify-content: left;
  align-items: center;
  text-decoration: none;
  line-height: 1.2;
}

a.link-mark::before {
  content: '\f054';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  color: #FFF;
  font-size: 11px;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  background: #61991e;
  border-radius: 100%;
}

a.link-mark span {
  display: block;
  text-decoration: underline;
}

a.link-mark:hover span {
  text-decoration: none;
}



/* faq */

.faq-block {
  margin-top: -10px;
}

.faq-block .faq-item {}

.faq-block .faq-item .faq-item-question {
  border-bottom: 1px solid #BBB;
}

.faq-block .faq-item .faq-item-question a {
  position: relative;
  display: block;
  padding: 13px 1.5em 13px 0;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
}

.faq-block .faq-item .faq-item-question a:before {
  content: "\f056";
  position: absolute;
  right: 0;
  top: 50%;
  color: #8c7038;
  font-family: "Font Awesome 6 Free";
  transform: translateY(-50%);
  transition: 0.2s;
}

.faq-block .faq-item:not(.open) .faq-item-question a:before {
  content: "\f055";
  color: #999;
}

.faq-block .faq-item .faq-item-answer {
  padding: 10px 0 30px;
  font-size: 1.4rem;
  border-bottom: 1px solid #BBB;
  overflow: hidden;
  transition: 0.2s;
}

.faq-block .faq-item:not(.open) .faq-item-answer {
  height: 0;
  padding: 0;
  border-bottom: 0;
  line-height: 0;
}

.faq-block .faq-item .faq-item-answer>*:last-child {
  margin-bottom: 0;
}

@media (min-width: 950px) {
  .faq-block {}

  .faq-block .faq-item {}

  .faq-block .faq-item .faq-item-question {}

  .faq-block .faq-item .faq-item-question a {
    padding: 16px 2em 16px 0;
    font-size: 1.8rem;
  }

  .faq-block .faq-item .faq-item-question a:before {
    font-size: 1.1em;
  }

  .faq-block .faq-item:not(.open) .faq-item-question a:before {}

  .faq-block .faq-item .faq-item-answer {
    padding: 15px 0 40px;
    font-size: 1.6rem;
  }

  .faq-block .faq-item:not(.open) .faq-item-answer {}

  .faq-block .faq-item .faq-item-answer>*:last-child {}
}

/* business-hours */

.business-hours {
  margin: 25px 0;
}

.business-hours table {
  margin: 0 0 8px;
  font-size: 1.2rem;
  text-align: center;
  background: #FFF;
  border: none;
  border-radius: 15px;
}

.business-hours table th,
.business-hours table td {
  padding: 8px;
  background: none;
  border: none;
  vertical-align: middle;
  line-height: 1.3;
}

.business-hours table thead {
  border-bottom: 1px solid #CCC;
}

.business-hours table tbody td:not(:first-child) {
  color: #588c46;
}

@media (min-width: 950px) {
  .business-hours {
    margin-top: 40px;
  }

  .business-hours>*:last-child {
    margin-bottom: 0;
  }

  .business-hours table {
    font-size: 1.7rem;
  }

  .business-hours table th,
  .business-hours table td {
    padding: 15px;
  }

  .business-hours table thead {}

  .business-hours table tbody td:not(:first-child) {}

}