@charset "utf-8";
/* --------------------------------------------------
    loading
-------------------------------------------------- */
#loading {
  background: #fff;
  font-size: 36px;
  font-weight: bold;
  place-content: center;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 10% 0;
}
#loading .loading-wrap {
  display: grid;
  place-items: center;
}
#loading p {
  text-align: right;
  line-height: 1.6;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  letter-spacing: .1em;
  visibility: hidden;
}
#loading.active p {
  visibility: visible;
}
#loading p span {
  display: inline-block;
  translate: 0 -5px;
  opacity: 0;
}
#loading.active p span {
  animation: fadeIn .8s ease-in-out forwards;
}
#loading .logo {
  width: 5em;
  translate: 0 5px;
  opacity: 0;
  margin-top: 1.25em;
}
#loading.active .logo {
  animation: fadeIn .8s 2s ease-in-out forwards;
}
@keyframes fadeIn {
  to { opacity: 1; translate: 0; }
}
@media screen and (max-width: 1024px) {
  #loading {
    font-size: min(7.467vw, 32px);
  }
}
/* --------------------------------------------------
    header
-------------------------------------------------- */
#header {
  height: 120px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
#header.is-fixed {
  height: 80px;
  box-shadow: 0 0 10px rgb(0 0 0 / .08);
  position: fixed;
  opacity: 0;
  animation: header-fixed .4s .2s cubic-bezier(.46, .03, .52, .96) both;
}
.hdrLogo {
  padding-top: 1.75em;
  position: relative;
}
#header.is-fixed .hdrLogo {
  padding-top: 0;
}
.hdrLogo h1, .hdrLogo p {
  width: calc(100vw - 580px);
  font-size: 12px;
  line-height: 1.2;
  position: absolute;
  top: 0;
  left: 0;
}
#header.is-fixed .hdrLogo h1, #header.is-fixed .hdrLogo p {
  opacity: 0;
  pointer-events: none;
}
#header.is-fixed .hdrLogo img {
  width: auto;
  height: 40px;
}
.hdrContact {
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: .75em;
}
#header.is-fixed .hdrContact {
  display: none;
}
.hdrContact .tel {
  font-size: 24px;
  line-height: 1.2;
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid #ccc;
}
.hdrContact .tel a {
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
}
.hdrContact .tel a::before {
  width: .75em;
  height: .833em;
  content: "";
  background: url("../images/icon_phone.svg") no-repeat center / contain;
  display: block;
}
.hdrSns {
  display: none;
}
@media screen and (max-width: 1440px) {
  #header {
    padding: 0 30px;
  }
  .hdrLogo h1, .hdrLogo p {
    width: calc(100vw - 560px);
    font-size: 11px;
  }
  .hdrLogo .logo img {
    width: auto;
    height: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .hdrNav_in {
    max-width: 640px;
    display: grid;
    margin-inline: auto;
  }
  .hdrContact {
    font-size: 12px;
    display: block;
    text-align: center;
    margin: 1.5em 0 0;
    order: 2;
  }
  .hdrContact .tel {
    font-size: 28px;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  .hdrSns {
    display: flex;
    justify-content: center;
    column-gap: .5em;
    margin: .75em 0;
    order: 3;
  }
  .hdrSns li {
    border: 1px solid #ccc;
    border-radius: 50%;
  }
}
@media screen and (max-width: 1024px) {
  #header {
    height: 70px;
    padding-inline: 15px;
    position: fixed;
    animation: none;
  }
  #header.is-fixed {
    height: 70px;
    visibility: visible;
    opacity: 1;
    animation: none;
  }
  .hdrLogo {
    padding-top: 0;
  }
  .hdrLogo h1, .hdrLogo p {
    width: auto;
    font-size: 10px;
    margin-bottom: 1.2em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
  }
  .hdrLogo .logo img {
    height: 36px !important;
  }
}
/* --------------------------------------------------
    nav
-------------------------------------------------- */
nav {
  display: flex;
  justify-content: flex-end;
  column-gap: 1.875em;
}
#gNav {
  display: flex;
  column-gap: 1.875em;
}
#gNav > li {
  display: flex;
  align-items: center;
  position: relative;
}
#gNav > li > a {
  font-weight: 600;
  display: block;
  padding: .25em 0;
}
#gNav > li:hover > a {
  opacity: .6;
}
nav .btns {
  display: flex;
  align-items: center;
  column-gap: 1.25em;
}
/* プルダウンメニュー */
#gNav .subMenu {
  width: 180px;
  font-size: .875em;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: all 0.2s;
}
#gNav .subMenu.active {
  visibility: visible;
  opacity: 1;
}
#gNav .subMenu ul {
  background: #147a4a;
  border-radius: .5em;
  overflow: hidden;
}
#gNav .subMenu li:not(:last-child) {
  border-bottom: 2px dotted #fff;
}
#gNav .subMenu a {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1em;
  padding: .75em 1.25em;
}
#gNav .subMenu a:hover {
  background: rgb(255 255 255 / .08);
}
#gNav .subMenu a::after {
  width: 7px;
  height: 12px;
  content: "";
  background: url("../images/icon_btn_arrow.svg") no-repeat center / cover;
  display: block;
}
/* toggleメニュー */
#navToggle {
  width: 60px;
  height: 60px;
  background: #147a4a;
  display: none;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 999;
  cursor: pointer;
}
.openNav #navToggle {
  position: fixed;
  animation: header-fixed .2s cubic-bezier(.46, .03, .52, .96) both;
}
#header.is-fixed #navToggle {
  top: 10px;
}
#navToggle .toggle-in {
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#navToggle .toggle-in::before, #navToggle .toggle-in::after, #navToggle span {
  width: 100%;
  height: 2px;
  content: "";
  background: #fff;
  display: block;
  transition: all .3s;
}
/* トグルボタン クリック時 */
.openNav #navToggle .toggle-in {
  justify-content: center;
}
.openNav #navToggle .toggle-in::before {
  transform: translateY(1px) rotate(-135deg);
}
.openNav #navToggle .toggle-in::after {
  transform: translateY(-1px) rotate(135deg);
}
.openNav #navToggle span {
  display: none;
}
@media screen and (max-width: 1440px) {
  nav, #gNav, nav .btns {
    column-gap: 1.5em;
  }
  nav .btns {
    column-gap: 1em;
  }
}
@media screen and (max-width: 1200px) {
  .hdrNav {
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    padding: 40px 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: auto;
  }
  nav {
    display: contents;
  }
  #gNav {
    display: block;
    order: 1;
  }
  #gNav > li {
    display: block;
    border-bottom: 1px dashed#d9d9d9;
  }
  #gNav > li > a {
    line-height: 1.5;
    padding: .75em 1em;
  }
  #gNav > li > a.none {
    padding-bottom: .25em;
  }
  #gNav .subMenu {
    width: auto;
    font-size: .9375em;
    visibility: visible;
    opacity: 1;
    position: static;
    transform: translateX(0);
    transition: none;
  }
  #gNav .subMenu ul {
    background: none;
    border-radius: 0;
  }
  #gNav .subMenu li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
  }
  #gNav .subMenu a {
    color: #222;
    line-height: 1.5;
    padding: .5em 1em .5em 2em;
  }
  #gNav .subMenu a::after {
    background-image: url("../images/icon_btn_arrow_green.svg");
  }
  #gNav .subMenu_toggle {
    width: 40px;
    height: 40px;
    border-left: 1px dashed#aaa;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
  #gNav .subMenu_toggle span::before, #gNav .subMenu_toggle span::after {
    content: '';
    background: #aaa;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.35s;
  }
  #gNav .subMenu_toggle span::before {
    width: 10px;
    height: 1px;
  }
  #gNav .subMenu_toggle span::after {
    width: 1px;
    height: 10px;
  }
  #gNav .subMenu_toggle.open {
    background: rgba(242,242,242,0.4);
  }
  #gNav .subMenu_toggle.open span::before {
    -wbkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  #gNav .subMenu_toggle.open span::after {
    -wbkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  nav .btns {
    justify-content: center;
    order: 4;
  }
  /* toggleメニュー */
  #navToggle {
    display: grid;
    place-content: center;
  }
}
@media screen and (max-width: 1024px) {
  nav .btns {
    justify-content: center;
  }
  #navToggle {
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 560px) {
  nav .btns {
    flex-direction: column;
    row-gap: .75em;
    margin-top: 1em;
  }
  nav .btns a {
    min-width: 260px;
    font-size: 18px;
  }
  nav .r-btn a {
    display: inline-grid;
    grid-template-columns: 1fr auto .5fr;
  }
}
/* --------------------------------------------------
    footer
-------------------------------------------------- */
#cta {
  background: #edf5f1;
  padding: 96px 0 64px;
}
#cta .cta_box {
  width: fit-content;
  background: #fff;
  padding: 64px 80px;
  margin: 0 auto;
  border-radius: 2em;
  position: relative;
}
#cta .cta_box::before {
  width: 200px;
  height: 240px;
  content: "";
  background: url("../images/cta_img.png") no-repeat center top / 100% auto;
  display: block;
  position: absolute;
  top: -64px;
  right: 80px;
  z-index: 1;
}
#cta .ttl {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1em;
}
#cta .btns {
  display: grid;
  grid-template-columns: repeat(2, 360px);
  text-align: center;
  column-gap: 3em;
  margin-top: 2em;
}
#cta .btns p {
  color: #147a4a;
  font-weight: bold;
}
#cta .btns .r-btn p {
  color: #f59300;
}
#cta .btns a {
  height: 3.6em;
  font-size: 20px;
  display: grid;
  grid-template-columns: 1fr auto .75fr;
  padding: 4px;
}
#cta .btns a::before {
  width: 3.2em;
  height: 3.2em;
  background-color: #fff;
  background-size: 2.7em;
  border-radius: 50%;
}
.ftrContents {
  background: #147a4a;
  color: #fff;
  padding: 96px 0;
}
.ftrContents .inner {
  max-width: 2160px;
  padding: 0 10%;
}
.ftrInfo {
  display: flex;
  justify-content: space-between;
  column-gap: 3em;
}
.ftrInfo .logo-menu {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4em;
}
.ftrLogo {
  font-size: 14px;
  text-align: center;
}
.ftrLogo .tel a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
}
.ftrLogo .logo + p {
  margin: 2em 0 1em;
}
.ftrLogo .tel a::before {
  width: 14px;
  height: 16px;
  content: "";
  background: url("../images/icon_phone_white.svg") no-repeat center / cover;
  display: block;
}
.ftrLogo .sns {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  margin-top: 2em;
}
.copyright {
  width: 100%;
  font-size: 12px;
  margin-top: auto;
}
.ftrMenu {
  display: flex;
  column-gap: 3em;
  margin-top: 2.5em;
}
.ftrMenu ul:not(.child) > li + li {
  margin-top: .5em;
}
.ftrMenu ul:not(.child) > li.has-child + li {
  margin-top: 1em;
}
.ftrMenu ul:not(.child) > li > a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}
.ftrMenu ul:not(.child) > li > a::before {
  width: 1em;
  height: 1em;
  content: "";
  background: #43956e;
  border-radius: .5em 2px 2px .5em;
}
.ftrMenu .child {
  font-size: 14px;
  padding-left: 1rem;
  margin: .5rem 0 0 1.5rem;
  border-left: 1px solid #0d5232;
}
.ftrMenu a:not(.none):hover {
  text-decoration: underline;
}
.ftrMenu a.none {
  pointer-events: none;
}
.ftrInfo .gmap {
  width: min(100%, 640px);
}
.ftrInfo .gmap iframe {
  width: 100%;
  height: 360px;
  border-radius: .5em;
}
@media screen and (max-width: 1560px) {
  .ftrContents .inner {
    padding: 0 5%;
  }
}
@media screen and (max-width: 1366px) {
  .ftrMenu {
    flex-direction: column;
    row-gap: 1em;
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  #cta {
    padding: 64px 0 48px;
  }
  #cta .cta_box {
    max-width: 380px;
    font-size: min(4vw, 16px);
    padding: 1.5em 1.25em;
    border-radius: 1em;
  }
  #cta .cta_box::before {
    width: 10em;
    height: 11.5em;
    top: -2.5em;
    right: -.5em;
  }
  #cta .ttl {
    font-size: 1.2em;
  }
  #cta .btns {
    max-width: 280px;
    grid-template-columns: auto;
    row-gap: 1em;
    margin: 1em auto 0;
  }
  #cta .btns a {
    height: 3.2em;
    font-size: 1.2em;
  }
  #cta .btns a::before {
    width: 2.8em;
    height: 2.8em;
    background-size: 2.4em;
  }
  .ftrContents {
    padding: 48px 0 80px;
  }
  .ftrContents .inner {
    max-width: 90%;
    padding: 0;
  }
  .ftrInfo, .ftrInfo .logo-menu {
    display: block;
  }
  .ftrLogo {
    font-size: 12px;
  }
  .ftrLogo .logo img {
    width: auto;
    height: 40px;
  }
  .ftrLogo .logo + p {
    margin: 1em 0 .5em;
  }
  .ftrLogo .sns {
    margin-top: 1em;
  }
  .copyright {
    font-size: 11px;
    text-align: center;
    margin-top: 3em;
  }
}
/* --------------------------------------------------
    pagetop
-------------------------------------------------- */
#pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 99;
  cursor: pointer;
}
.openNav #pagetop {
  display: none !important;
}
#pagetop:hover {
  opacity: .7;
}
/* 追従 */
#follow {
  position: fixed;
  display: none;
  bottom: 30px;
  right: 120px;
  z-index: 99;
}
.openNav #follow {
  display: none !important;
}
#follow .btns {
  display: flex;
  column-gap: 1em;
}
#follow .btns a {
  height: 4em;
  font-size: 1.125em;
  padding-left: 1.5em;
  padding-right: 2em;
  border: 4px solid #fff;
  box-shadow: 2px 4px 4px rgb(0 0 0 / .1);
}
#follow .r-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  /* pagetop */
  #pagetop {
    width: 48px;
    bottom: 10px;
    right: 10px;
  }
  /* 追従 */
  #follow {
    bottom: 10px;
    left: 10px;
    right: auto;
  }
  #follow .btns {
    display: inline-flex;
    column-gap: 5px;
  }
  #follow .btns a {
    height: 3.25em;
    font-size: min(4vw, 16px);
    padding: .25em 1.25em .25em .25em;
    border-width: 2px;
  }
  #follow .r-btn {
    display: inline-flex;
  }
}
/* --------------------------------------------------
    サイドバー
-------------------------------------------------- */
#sidebar {
  position: relative;
}
#sidebar .category-list {
  position: sticky;
  top: 120px;
}
#sidebar .cat-ttl {
  font-size: 20px;
  font-weight: bold;
  padding: .5em 0 .5em 1em;
  margin-bottom: 1em;
  border-top: 4px solid #147a4a;
  border-bottom: 1px solid;
}
#sidebar .cat-list li {
  border-bottom: 1px solid #d9d9d9;
}
#sidebar .cat-list a {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1em;
  padding: 1em;
}
#sidebar .cat-list a:hover {
  opacity: .5;
}
#sidebar .cat-list a::after {
  width: 7px;
  height: 12px;
  content: "";
  background: url("../images/icon_btn_arrow_green.svg") no-repeat center / cover;
  display: block;
}
@media screen and (max-width: 1024px) {
  
}
/* --------------------------------------------------
    汎用
-------------------------------------------------- */
.fcRed {color: #cc213d;}
.fcGreen {color: #147a4a;}
.fcRed {color: #f59300;}

.marker_red {background: linear-gradient(transparent 60%, rgba(255,0,64,0.6) 60%);}
.marker_yellow {background: linear-gradient(transparent 60%, rgba(255,234,0,0.6) 60%);}

.en {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  line-height: 1;
}