@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=Outfit:wght@100..900&display=swap');

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

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

:root {
  --bg-color: #f0f5fa;
  --base-color: #FFF;
  --main-color: #2453b3;
  --main-dark-color: #293d66;
  --accent-color: #fc8a26;
}

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: #0d0d0d;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
  font-feature-settings: "palt";
}

#container {}

@media print,
screen and (min-width: 950px) {
  html {
    /* scroll-padding-top: 140px; */
  }

  body {
    font-size: 1.7rem;
  }

  #container {}
}

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

@media print,
screen and (max-width: 949px) {
  #header {
    /* position: fixed; */
    /* z-index: 999; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    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: 70px;
    padding: 0 70px 2px 15px;
  }

  #header .site-title {}

  #header .site-title a {
    display: block;
    width: 150px;
    height: 0;
    padding-top: 44px;
    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: 5px;
    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;
    -webkit-tap-highlight-color: transparent;
  }

  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 .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 ul.contact-menu {padding: 20px 0;background: var(--bg-color);}

#header .global-nav ul.contact-menu .tel-link {
  margin-bottom: 15px;
}

#header .global-nav ul.contact-menu .tel-link a {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: "Outfit", sans-serif;
  font-size: 2.9rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

#header .global-nav ul.contact-menu .tel-link a:hover {}

#header .global-nav ul.contact-menu .tel-link a i {
  font-size: 75%;
  margin-right: 0.2em;
  transform: translateY(-7%);
}

#header .global-nav ul.contact-menu .maik-btn {
  margin: 0 20px;
}

#header .global-nav ul.contact-menu .maik-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.6em;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--main-dark-color);
  border: 1px solid var(--main-dark-color);
  border-radius: 8px;
  text-decoration: none;
  line-height: 1.2;
}

  #header .global-nav ul.contact-menu .maik-btn a i {
    margin-right: 0.4em;
    font-size: 130%;
    transform: translateY(5.5%);
  }

  #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 print,
screen and (min-width: 950px) {
  #header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    background-size: cover;
    line-height: 1.2;
    transition: 0.4s transform;
  }

  body:not(.scroll) #header {
    /* transform: translateY(-100px); */
  }

  #header .header-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 40px 4px;
  }

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

  #header .site-title a {
    display: block;
    width: 192px;
    height: 0;
    padding-top: 56px;
    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: 8px 0;
    font-size: 1.6rem;
    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 a.nav-item-name.current {
    color: var(--main-color);
  }

  #header .global-nav .nav-item a.nav-item-name.current:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 7px;
    height: 7px;
    background: var(--main-color);
    border-radius: 100%;
    transform: translateX(-50%);
    filter: contrast(0.2) brightness(1.6);
  }

  #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: var(--main-color);
    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;
  }
}

/*--------------------------------------
  # 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 print,
screen and (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-section {
  padding: 60px 0;
  background: var(--bg-color);
}

.contact-section .contact-section-wrapper {
  padding: 0 20px;
}

.contact-section .contact-section-wrapper .contact-section-inner {
  font-weight: 500;
  text-align: center;
}

.contact-section .contact-section-wrapper .contact-section-inner h3 {
  margin-bottom: 40px;
  font-size: min(7.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.2;
}

.contact-section .contact-section-wrapper .contact-section-btn {
  margin-top: 35px;
}

.contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu {}

.contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .tel-link {
  margin-bottom: 20px;
}

.contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .tel-link a {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: "Outfit", sans-serif;
  font-size: min(10vw, 4.9rem);
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .tel-link a:hover {}

.contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .tel-link a i {
  font-size: 75%;
  margin-right: 0.2em;
  transform: translateY(-7%);
}

.contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .maik-btn {}

.contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .maik-btn a {
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.7em;
  color: #FFF;
  font-size: 2.0rem;
  font-weight: 600;
  background: var(--main-dark-color);
  border: 1px solid var(--main-dark-color);
  border-radius: 10px;
  text-decoration: none;
  line-height: 1.2;
  /* filter: drop-shadow(3px 3px 0px #FFF); */
}

.contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .maik-btn a:hover {}

.contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .maik-btn a i {
  margin-right: 0.4em;
  font-size: 130%;
  transform: translateY(5.5%);
}

@media print,
screen and (min-width: 950px) {
  .contact-section {
    padding: 120px 0;
  }

  .contact-section .contact-section-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .contact-section .contact-section-wrapper .contact-section-inner {
    flex: 1;
    text-align: left;
    font-size: 1.8rem;
  }

  .contact-section .contact-section-wrapper .contact-section-inner h3 {
    margin-bottom: 35px;
  }

  .contact-section .contact-section-wrapper .contact-section-inner *:last-child {
    margin-bottom: 0;
  }

  .contact-section .contact-section-wrapper .contact-section-btn {
    margin-top: 0;
  }

  .contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .tel-link {}

  .contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .tel-link a {
    margin: -0.1em 0;
  }

  .contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .tel-link a:hover {}

  .contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .tel-link a i {}

  .contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .maik-btn {}

  .contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .maik-btn a {
    font-size: 2.5rem;
    transition: 0.2s;
  }

  .contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .maik-btn a:hover {
    filter: brightness(1.6);
    /* opacity: 0; */
  }

  .contact-section .contact-section-wrapper .contact-section-btn ul.contact-menu .maik-btn a i {}
}







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

#footer {
  position: relative;
  padding: 0 10px 58px;
  background: var(--bg-color);
  overflow: hidden;
}

#footer .footer-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #FFF;
}

#footer .information {
  display: contents;
  font-style: normal;
}

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

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

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

#footer .information p strong {
  font-size: 113%;
  font-weight: 600;
}

#footer .information .srp-mark {}

#footer .information .srp-mark img {
  display: block;
  width: 100px;
  margin: 0 auto;
}

#footer .footer-sitemap {
  margin: 30px 0;
}

#footer .footer-sitemap ul {}

#footer .footer-sitemap .nav-item {
  margin-bottom: 10px;
}

#footer .footer-sitemap a.nav-item-name {
  font-weight: 500;
  text-decoration: none;
}

#footer .footer-sitemap .nav-item.has-child {}

#footer .footer-sitemap .nav-item.has-child .child-nav {
  color: #777;
}

#footer .footer-sitemap .nav-item.has-child .child-nav li {
  position: relative;
  padding-left: 1.5em;
}

#footer .footer-sitemap .nav-item.has-child .child-nav li:before {
  content: '└';
  position: absolute;
  left: 0;
}

#footer .footer-sitemap .nav-item.has-child .child-nav li a {
  text-decoration: none;
}

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

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

@media print,
screen and (min-width: 950px) {
  #footer {
    padding: 0 40px 40px;
  }

  #footer .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    padding: 40px;
  }

  #footer .information {
    display: block;
    font-size: 1.5rem;
  }

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

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

  #footer .information .site-title a {
    margin: 0;
  }

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

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

  #footer .information p {
    text-align: left;
  }

  #footer .information .srp-mark {
    margin-bottom: 50px;
  }

  #footer .information .srp-mark img {
    margin: 0;
  }

  #footer .footer-sitemap {
    display: flex;
    margin: 0;
    font-size: 1.5rem;
  }

  #footer .footer-sitemap ul {
    /* white-space: nowrap; */
    margin: 0 25px;
  }

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

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

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

  #footer .copylight {
    text-align: left;
  }

  #footer .copylight small {}
}

/*--------------------------------------
  # fixed-nav
--------------------------------------*/
#fixed-nav {
  position: fixed;
  z-index: 997;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #FFF;
  background: var(--main-dark-color);
  border-radius: 8px 8px 0 0;
  line-height: 1.2;
}

#fixed-nav ul.contact-menu {
  display: flex;
}

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

#fixed-nav ul.contact-menu li:first-child:before {
  content: '';
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  border-left: 1px solid;
  opacity: 0.4;
}

#fixed-nav ul.contact-menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  font-weight: 600;
  text-decoration: none;
}

#fixed-nav ul.contact-menu li a i {
  margin: 0 0.4em -0.2em 0;
  font-size: 120%;
}

#fixed-nav ul.contact-menu .tel-link {}

#fixed-nav ul.contact-menu .tel-link a {
  padding-top: 0.15em;
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
}

#fixed-nav ul.contact-menu .tel-link a:hover {}

#fixed-nav ul.contact-menu .tel-link a i {
  font-size: 80%;
}

#fixed-nav ul.contact-menu .maik-btn {}

#fixed-nav ul.contact-menu .maik-btn a {}

#fixed-nav ul.contact-menu .maik-btn a:hover {}

#fixed-nav ul.contact-menu .maik-btn a i {}

@media print,
screen and (min-width: 950px) {
  #fixed-nav {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
    background: none;
    border-radius: 0;
    transform: translate(0, -45%);
    transition: 0.4s 0.4s;
  }

  body:not(.scroll) #fixed-nav {
    transform: translate(100%, -45%);
    transition: 0.4s;
  }

  #fixed-nav ul.contact-menu {}

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

  #fixed-nav ul.contact-menu li a {
    writing-mode: vertical-rl;
    width: 60px;
    height: 260px;
    font-size: 2.2rem;
    transition: 0.2s;
    background: var(--main-dark-color);
    border-radius: 10px 0 0 10px;
  }

  #fixed-nav ul.contact-menu li a:hover {
    filter: brightness(1.6);
  }

  #fixed-nav ul.contact-menu li a i {
    margin: 0 0 10px;
  }
}

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

#pagetop {
  position: fixed;
  z-index: 999;
  right: 10px;
  bottom: 60px;
  transition: 0.4s;
}

body:not(.scroll) #pagetop {
  transform: translateX(150%);
  opacity: 0;
}

#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  text-decoration: none;
  /* filter: drop-shadow(1px 3px 3px rgba(13,13,13,0.25)); */
  box-shadow: 1px 3px 6px rgba(13, 13, 13, 0.25);
}

#pagetop a:hover {}

#pagetop a i {
  font-size: 22px;
}

@media print,
screen and (min-width: 950px) {
  #pagetop {
    right: 20px;
    bottom: 20px;
  }

  #pagetop a {
    width: 60px;
    height: 60px;
    transition: 0.2s;
  }

  #pagetop a:hover {
    opacity: 0.6;
  }

  #pagetop a i {
    font-size: 25px;
  }
}

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

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

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

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

@media print,
screen and (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;
}

.fc-blue {
  color: var(--main-color);
}

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

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

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

@media print,
screen and (min-width: 950px) {

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

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

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 print,
screen and (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 print,
screen and (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);
  }

  .js-scrollable .scroll-hint-text {
    margin: 7px -5px -1px;
    font-size: 11px;
    line-height: 1.3;
  }
}

@media print,
screen and (min-width: 950px) {
  .js-scrollable.scroll-hint {
    overflow: visible !important;
  }
}

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