@charset "utf-8";

*[style*="background: #e00000b0;color: #fff;padding: 10px;position: fixed;left: 50%;transform: translateX(-50%);top:0;z-index:9999999;"] {
  display: none;
}

/*--------------------------------------
  # 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: #333;
  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;
  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.65rem;
  }

  #container {}
}

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

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

  body.scroll #header {
    top: 0;
  }

  #header .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 70px 0 15px;
  }

  #header .site-title {}

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

  #header .english-btn {}

  #header .english-btn a {
    display: flex;
    text-decoration: none;
    color: #4D4D4D;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0;
  }

  #header .english-btn a i {
    margin-right: 5px;
    font-size: 1.6rem;
  }

  #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 .inquiry-menu {
    clear: both;
    padding: 25px 20px;
    background: #1d6ebf;
  }

  #header .global-nav .inquiry-menu-title {
    margin: -2px 0 15px;
    color: #FFF;
    font-size: 118%;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
  }

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

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

  #header .global-nav .inquiry-menu ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    margin: 0 auto;
    color: #2854a5;
    font-size: 1.6rem;
    font-weight: 700;
    background: #f0eb36;
    border-radius: 100vw;
    text-decoration: none;
    line-height: 1.2;
  }

  #header .global-nav .inquiry-menu ul i {
    margin: 0.1em 0.3em 0 0;
    font-size: 130%;
  }

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

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

  #header .global-nav .inquiry-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%;
    background: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
  }

  #header .header-wrapper {
    display: grid;
    grid-template-columns: auto auto min(22%, 260px);
    grid-template-rows: auto auto;
    height: 80px;
  }

  #header .site-title {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    margin-left: 40px;
  }

  #header .site-title a {
    display: block;
    width: 153px;
    height: 0;
    margin-top: -8px;
    padding-top: 55px;
    background: url(../img/site-title.svg) no-repeat center;
    background-size: contain;
    overflow: hidden;
    text-decoration: none;
  }

  #header .english-btn {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    justify-content: right;
    align-items: center;
    padding-top: 5px;
  }

  #header .english-btn a {
    display: flex;
    text-decoration: none;
    color: #4D4D4D;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0;
    transition: 0.2s;
  }

  #header .english-btn a:hover {
    color: #306cbf;
  }

  #header .english-btn a i {
    margin-right: 5px;
    font-size: 1.7rem;
  }

  #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 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    grid-row: 1 / 3;
    display: flex;
    justify-content: right;
    align-items: center;
    margin-bottom: -8px;
  }

  #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: min(4.5vw, 50px);
    transition: 0.2s;
  }

  #header .global-nav .nav-item-name {
    position: relative;
    display: block;
    padding-bottom: 8px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transform: rotate(0.05deg);
    transition: 0.2s;
  }

  #header .global-nav .nav-item:hover a.nav-item-name,
  #header .global-nav .nav-item.current a.nav-item-name {
    color: #306cbf;
  }

  #header .global-nav .nav-item.current a.nav-item-name:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 5px;
    height: 5px;
    margin-left: -2.53px;
    background: #306cbf;
    border-radius: 100%;
  }

  #header .global-nav .child-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 100%;
    margin-top: -2px;
    padding: 15px 20px;
    color: #FFF;
    font-size: 88%;
    background: #306cbf;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
    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: 12px;
  }

  #header .inquiry-btn {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    padding-left: 40px;
  }

  #header .inquiry-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #FFF;
    font-weight: 500;
    background: #306cbf;
    text-decoration: none;
    transition: 0.2s;
  }

  #header .inquiry-btn a:hover {
    font-size: 108%;
    filter: brightness(1.2);
  }
}

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

#contents {}

#main {}

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

.top-title {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 12px;
}

.top-title a {
  display: block;
  width: 75px;
  height: 0;
  margin: 0 auto;
  padding-top: 46px;
  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 {}
}



/*--------------------------------------
  # contact
--------------------------------------*/

.contact {
  clear: both;
  position: relative;
  padding: 60px 0;
  color: #FFF;
  background: #1d6ebf;
  overflow: hidden;
}

.contact .contact-wrapper {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
}

.contact .contact-wrapper .contact-title {
  margin-bottom: 30px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
  transition: 0.6s 0s transform, 0.6s 0s opacity;
}

.contact:not(.scrollin) .contact-wrapper .contact-title {
  transform: translateY(100px);
  opacity: 0;
}

.contact .contact-wrapper p {
  transition: 0.6s 0.15s transform, 0.6s 0.15s opacity;
}

.contact:not(.scrollin) .contact-wrapper p {
  transform: translateY(100px);
  opacity: 0;
}

.contact .contact-wrapper .contact-btn {
  margin-top: 35px;
  transition: 0.6s 0.3s transform, 0.6s 0.3s opacity;
}

.contact:not(.scrollin) .contact-wrapper .contact-btn {
  transform: translateY(100px);
  opacity: 0;
}

.contact .contact-wrapper .contact-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 225px;
  height: 45px;
  margin: 0 auto;
  color: #2854a5;
  font-size: 1.7rem;
  font-weight: 700;
  background: #f0eb36;
  border-radius: 100vw;
  text-decoration: none;
  line-height: 1.2;
}

.contact .contact-wrapper .contact-btn a i {
  margin: 0.1em 0.3em 0 0;
  font-size: 130%;
}

.contact .contact-wrapper .contact-btn a:hover {}

.contact .contact-bg {}

.contact .contact-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

@media (min-width: 950px) {
  .contact {
    padding: 80px 0;
  }

  .contact .contact-wrapper {}

  .contact .contact-wrapper .contact-title {
    font-size: 3.6rem;
  }

  .contact .contact-wrapper p {}

  .contact .contact-wrapper .contact-btn {}

  .contact .contact-wrapper .contact-btn a {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 50%, rgba(240, 235, 54, 1) 50%);
    background-size: 205%;
    background-position: right;
    transition: 0.2s;
  }

  .contact .contact-wrapper .contact-btn a:hover {
    background-position: left;
    transform: scale(1.1);
  }

  .contact .contact-wrapper .contact-btn a i {}

  .contact .contact-bg {}

  .contact .contact-bg img {}
}







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

#footer {
  position: relative;
  padding: 45px 0;
  overflow: hidden;
}

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

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

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

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

#footer .information .site-title a {
  display: block;
  width: 171px;
  height: 0;
  margin: 0 auto;
  padding-top: 61px;
  background: url(../img/site-title.svg) no-repeat center;
  background-size: contain;
  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;
  text-align: center;
}

#footer .footer-sitemap ul {}

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

#footer .footer-sitemap ul li a {
  font-weight: 500;
  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 {
  color: #999;
  text-align: center;
  line-height: 1.2;
}

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

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

  #footer .footer-wrapper {}

  #footer .information {}

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

  #footer .information .site-title {}

  #footer .information .site-title a {
    width: 211px;
    padding-top: 75px;
  }

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

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

  #footer .information p {}

  #footer .business-hours table {}

  #footer .footer-sitemap {}

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

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

  #footer .footer-sitemap ul li a {
    font-size: 1.5rem;
  }

  #footer .footer-banner {}

  #footer .footer-banner a {}

  #footer .footer-banner a img {}

  #footer .copylight {}

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

/*--------------------------------------
  # 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: #1d6ebf;
  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: 0 auto 1.5em;
  text-align: center;
}

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

@media (min-width: 950px) {

  p.aligncenter-d {
    text-align: center;
  }

  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: 0.8em 0 1.6em;
  background: #FFF;
  border-top: 1px solid #9ca9bb;
  border-left: 1px solid #9ca9bb;
}

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

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

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

@media (max-width: 949px) {
  .js-scrollable {
    width: 100%;
    margin: 0.8em 0 1.6em;
    padding-bottom: 5px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  .js-scrollable>table {
    width: 200vw;
    margin: 0;
  }

  .js-scrollable::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .js-scrollable::-webkit-scrollbar-track {
    background: #EEE;
    border-radius: 5px;
  }

  .js-scrollable::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 5px;
  }

  .js-scrollable .scroll-hint-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

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

}