@charset "UTF-8";
/***************************
    全体共通指定
***************************/
/* bootstrap */
:root {
  --bs-green: #79a313;
  --bs-dark-green: #557707;
  --bs-brown: #704722;
  --bs-light-brown: #ede5db;
  --bs-orange: #f39806;
  --bs-dark-orange: #ba7609;
  --bs-light-orange: #ffc76d;
  --bs-blue: #2074b5;
  --bs-dark-blue: #0e3e62;
  --bs-light-blue: #6dbfff;
  --bs-dark: #525050;
  --bs-gray: #f1f1f1;
  --bs-white: #fff;
  --bs-white-trasparet: rgba(255, 255, 255, 0.84);
}

* {
  position: relative;
  margin: 0;
  padding: 0;
}

body.toppage {
  font-family: var(--bs-font-sans-serif);
  letter-spacing: 0.07rem;
  text-align: justify;
  word-break: break-all;
  background-image: url(../images/nami-img01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top 5% center;
}
body * {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: normal;
  font-weight: 400;
}

p,
a,
li,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6,
dt,
dd {
  color: var(--bs-brown);
  line-height: 2.5em;
}

a {
  text-decoration: none;
}

ul,
ol {
  padding: 0;
}

li {
  list-style-type: none;
}

main {
  min-height: calc(100vh - (8rem + 53px));
  position: relative;
  padding-bottom: 100px;
}

img {
  width: 100%;
  height: auto;
}

h2 {
  margin: 0;
}

h3 {
  padding: 2rem 0;
  margin: 0;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.text-only {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.klee-font {
  font-family: "Klee One", cursive;
}

/* font-size */
p,
li,
dd { /* min 14px max 18px |　Viewport min768px max1280px  */
  font-size: clamp(0.875rem, 0.5rem + 0.78vw, 1.125rem);
  font-weight: 500;
}

.fs-50 { /* min 26px max 50px |　Viewport min768px max1280px  */
  font-size: clamp(1.625rem, -0.625rem + 4.69vw, 3.125rem);
  font-weight: 600;
}

.fs-40 { /* min 24px max 40px |　Viewport min768px max1280px  */
  font-size: clamp(1.5rem, 3.13vw, 2.5rem);
  font-weight: 600;
}

.fs-30 { /* min 18px max 30px |　Viewport min768px max1280px  */
  font-size: clamp(1.125rem, 2.34vw, 1.875rem);
  font-weight: 600;
}

.fs-24 { /* min 16px max 24px |　Viewport min768px max1280px  */
  font-size: clamp(1rem, 0.25rem + 1.56vw, 1.5rem);
}

.fs-20 { /* min 16px max 20px |　Viewport min768px max1280px  */
  font-size: clamp(1rem, 0.625rem + 0.78vw, 1.25rem);
}

.fs-18 { /* min 16px max 18px |　Viewport min768px max1280px  */
  font-size: clamp(1rem, 0.813rem + 0.39vw, 1.125rem);
}

.fs-16 { /* min 14px max 16px |　Viewport min768px max1280px  */
  font-size: clamp(0.875rem, 0.688rem + 0.39vw, 1rem);
}

.fs-14 { /* min 14px max 16px |　Viewport min768px max1280px  */
  font-size: 14px;
}

/* background */
.bg-green {
  background-color: var(--bs-green);
}

.bg-brown {
  background-color: var(--bs-brown);
}

.bg-light-brown {
  background-color: var(--bs-light-brown);
}

.bg-light-blue {
  background-color: var(--bs-light-blue);
}

.bg-light-orange {
  background-color: var(--bs-light-orange);
}

.bg-white-trasparet {
  background-color: var(--bs-white-trasparet);
}

/* color */
.text-green {
  color: var(--bs-green);
}

.text-brown {
  color: var(--bs-brown);
}

.text-orange {
  color: var(--bs-orange);
}

.text-dark-blue {
  color: var(--bs-dark-blue);
}

/* border */
.border-radius30 {
  border-radius: 30px;
}

.border-brownleft {
  border-left: 4px solid #cec3b7;
}
@media screen and (max-width: 768px) {
  .border-brownleft {
    border-left: 1px solid #cec3b7;
  }
}

.border-brownbottom {
  border-bottom: 4px solid #cec3b7;
}
@media screen and (max-width: 768px) {
  .border-brownbottom {
    border-bottom: 1px solid #cec3b7;
  }
}

/* リンクボタン */
.link-btn {
  display: flex;
  align-items: center;
  gap: 3%;
}
.link-btn::after {
  content: "";
  background-image: url(../images/icon-more.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  display: block;
}

.link-green {
  color: var(--bs-dark-green);
  border-bottom: 1px solid var(--bs-dark-green);
}
.link-green:hover {
  border-bottom: none;
}

.greenmore-btn {
  display: block;
  border: 4px solid #499978;
  background-color: white;
  color: #499978;
  font-weight: 600;
  display: block;
  text-align: center;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
  max-width: 350px;
  transition: all 0.6s;
  margin-top: 5px;
}
.greenmore-btn:hover {
  background-color: #499978;
  color: white;
}
.greenmore-btn::after {
  content: "";
  background-image: url("../images/icon-arrow-right.png");
  background-size: 100%;
  display: block;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .greenmore-btn {
    margin: auto;
    max-width: 300px;
  }
}

/* 見出し */
.ob-title {
  background-color: var(--bs-light-brown);
  padding: 10px 15px;
  margin: 15px 0 5px;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.5em;
}
.ob-title span {
  font-weight: 600;
  margin-left: 20px;
}

.brownimg-title {
  display: flex;
  align-items: center;
}
.brownimg-title::before {
  content: "";
  display: block;
  background-image: url(../images/title-img01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  max-width: 118px;
  width: 5vw;
  height: 161px;
}
@media screen and (max-width: 1280px) {
  .brownimg-title::before {
    height: 100px;
  }
}

.title-left {
  border-left: 2px solid var(--bs-brown);
  padding: 10px;
  line-height: 1.5em;
  font-weight: 600;
}

/* title-leftbox */
.title-leftbox {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
.title-leftbox .brownimg-title {
  font-weight: 600;
  gap: 2%;
  line-height: 2.5rem;
}
.title-leftbox img, .title-leftbox > div {
  width: 50%;
}
.title-leftbox img {
  border-radius: 0 30px 30px 0;
}
.title-leftbox.title-leftbox__img-right {
  flex-direction: row-reverse;
}
.title-leftbox.title-leftbox__img-right img {
  border-radius: 30px 0 0 30px;
}
.title-leftbox > div {
  padding: 0 3%;
}
@media screen and (max-width: 768px) {
  .title-leftbox, .title-leftbox.title-leftbox__img-right {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .title-leftbox img, .title-leftbox > div, .title-leftbox.title-leftbox__img-right img, .title-leftbox.title-leftbox__img-right > div {
    width: 100%;
  }
  .title-leftbox img, .title-leftbox.title-leftbox__img-right img {
    border-radius: 0;
  }
}

/* telmenu */
.telmenu {
  display: flex;
  align-items: center;
  gap: 3%;
  padding: 0;
}
.telmenu li {
  border: 3px solid var(--bs-brown);
  border-radius: 50px;
  width: 50%;
  transition: all 0.6s;
}
.telmenu li a {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
  padding-bottom: 13px;
}
.telmenu li a::before {
  content: "";
  background-image: url("../images/icon-tel.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom 0 center;
  width: 32px;
  height: 51px;
  display: block;
}
.telmenu li a p {
  margin: 0;
  line-height: 0.8em;
  transition: all 0.6s;
}
.telmenu li a span {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.telmenu li:hover {
  background-color: var(--bs-light-brown);
}
@media screen and (max-width: 768px) {
  .telmenu {
    flex-direction: column;
  }
  .telmenu li {
    width: 80%;
    margin-bottom: 10px;
  }
  .telmenu li a {
    justify-content: flex-start;
    padding: 10px 30px;
  }
  .telmenu li a span {
    margin-bottom: 10px;
  }
}

/* table-d */
.table-d {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.table-d th,
.table-d td {
  padding: 10px;
  border-radius: 5px;
}
.table-d th {
  background-color: var(--bs-light-brown);
  border: 2px solid white;
  font-weight: 600;
}
.table-d td {
  border-bottom: 2px solid var(--bs-light-brown);
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .table-d tr,
  .table-d th,
  .table-d td {
    display: block;
    width: 100%;
    border: none;
  }
  .table-d th {
    padding: 5px 10px;
    line-height: 1.8em;
  }
  .table-d td {
    padding: 10px 0 15px;
  }
}

/* m-back-white */
.m-back-white {
  background-color: white;
  border-radius: 5px;
  padding: 5px 10px;
  max-width: 300px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .m-back-white {
    margin: auto;
  }
}

.m-back-lightbrown {
  background-color: var(--bs-light-brown);
  border-radius: 5px;
  padding: 5px 10px;
  max-width: 300px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .m-back-lightbrown {
    margin: auto;
  }
}

/***************************
    header
***************************/
.icon {
  height: 3rem;
  width: auto;
  transition: all 0.6s;
}
.icon:hover {
  opacity: 0.6;
}

.contact-img {
  transition: all 0.6s;
}
.contact-img:hover {
  opacity: 0.8;
}

.title {
  height: 4rem;
  line-height: 1.75rem;
}
.title-link {
  font-size: 1.25rem;
}

.nav-link {
  color: var(--bs-brown);
  text-decoration: none;
  font-weight: 600 !important;
}
.nav-link:hover {
  color: var(--bs-green) !important;
}

.navbar-nav {
  justify-content: space-between;
  align-items: center;
}
.navbar-nav li {
  width: 15%;
  transition: all 0.6s;
}
.navbar-nav li a {
  transition: all 0.6s;
  line-height: 1.3em;
}
.navbar-nav li.nav-item__net {
  background-color: var(--bs-green);
  border-radius: 10px;
  width: 20%;
}
.navbar-nav li.nav-item__net:hover {
  background-color: var(--bs-dark-green);
}
.navbar-nav li.nav-item__net:hover a {
  color: white !important;
}
.navbar-nav li.nav-item__net a {
  color: white;
  padding: 8px 2px;
  letter-spacing: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  font-size: 14px;
  font-weight: 600;
}
.navbar-nav li.nav-item__net a::before {
  content: "";
  display: block;
  width: 24px;
  height: 27px;
  background-image: url(../images/icon-calendar.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.navbar-nav {
  /* アコーディオン */
}
.navbar-nav .p-event-none {
  pointer-events: none;
}
.navbar-nav > li {
  position: relative;
}
.navbar-nav > li ul {
  list-style: none;
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
.navbar-nav > li ul li {
  overflow: hidden;
  width: 170%;
  height: 0;
  color: #fff;
  transition: 0.2s;
  background: var(--bs-dark-green);
  border-radius: 12px;
}
.navbar-nav > li ul li a {
  display: block;
  text-align: left;
  color: #FFF;
  font-weight: normal;
  line-height: 1;
  margin: 0;
  padding: 13px 15px;
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar-nav > li ul li:hover {
  background: var(--bs-green);
}
.navbar-nav > li ul li:hover > a {
  color: #FFF;
}
.navbar-nav > li:last-child ul {
  left: -100%;
  width: 100%;
}
.navbar-nav > li:hover ul li {
  overflow: visible;
  height: 56px;
  margin: 0 0 4px;
}
.navbar-nav > li:hover ul li:first-child {
  border-top: 0;
}
.navbar-nav > li:hover ul li:last-child {
  border-bottom: 0;
}
@media screen and (max-width: 768px) {
  .navbar-nav > li:hover ul li {
    height: auto;
  }
  .navbar-nav > li:hover ul li:first-child {
    border-top: 1px solid #fff;
  }
  .navbar-nav > li ul {
    position: relative;
    top: 0;
  }
  .navbar-nav > li ul li {
    overflow: auto;
    width: 100%;
    height: auto;
    margin: 0;
    border-top: 1px solid #fff;
    border-radius: 0;
    background: unset;
  }
  .navbar-nav > li ul li:last-child {
    border-radius: 0 0 10px 10px;
  }
  .navbar-nav > li ul li a {
    color: #7c5829;
    border-radius: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
  }
  .navbar-nav > li:last-child ul {
    left: 0;
    width: 100%;
  }
  .navbar-nav > li:hover ul li {
    margin: 0;
  }
}
.navbar-nav {
  /* アコーディオン end */
}

.gnavi {
  width: 80%;
}

nav > div {
  max-width: 1690px;
  width: 90% !important;
  margin: auto;
}

.nav-bg {
  pointer-events: none;
}

/***************************
    footer
***************************/
footer {
  position: relative;
  background-image: linear-gradient(34deg, rgba(103, 91, 70, 0.2901960784), rgba(233, 191, 151, 0.2901960784));
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  margin-top: -50px;
  padding-top: 80px;
}
footer p {
  font-weight: 600;
  line-height: 1.5em;
}
footer::after {
  content: "";
  background-image: url(../images/back-img01.jpg);
  background-size: 219px;
  background-position: top center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
footer .footer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
  max-width: 1200px;
  width: 95%;
  margin: auto;
}
footer .footer-box__logomap .footer-box__logo {
  max-width: 437px;
  margin: 10px 0;
}
footer .footer-box__logomap iframe {
  width: 100%;
  height: 300px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  footer .footer-box__logomap iframe {
    margin-bottom: 10px;
  }
}
footer .footer-box__table table {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
footer .footer-box__table table tr,
footer .footer-box__table table th,
footer .footer-box__table table td {
  text-align: center;
  color: var(--bs-brown);
  font-weight: 600;
}
footer .footer-box__table table th,
footer .footer-box__table table td {
  font-size: 14px;
  padding: 5px 8px;
  line-height: 1em;
}
footer .footer-box__table table th {
  background-color: #795842;
  border-bottom: none;
  color: white;
  font-size: 18px;
  padding: 18px 0;
}
footer .footer-box__table table td {
  background-color: white;
}
footer .footer-box__table table td:first-of-type {
  font-size: 18px;
  padding: 18px 0;
}
footer .footer-box__table table tr:last-of-type td {
  color: #99d431;
}
footer .footer-box__table table tr:last-of-type td:first-of-type,
footer .footer-box__table table tr:last-of-type td:last-of-type {
  color: var(--bs-brown);
}
footer .footer-box__table .clean-btn {
  max-width: 280px;
  display: block;
  transition: all 0.6s;
}
footer .footer-box__table .clean-btn:hover {
  opacity: 0.6;
}
footer .footer-box__menu {
  display: flex;
  align-items: center;
  gap: 3%;
  width: 90%;
  max-width: 1200px;
  margin: 30px auto 0;
}
footer .footer-box__menu li {
  width: 30%;
  max-width: 200px;
  transition: all 0.6s;
}
footer .footer-box__menu li a {
  font-weight: 600;
}
footer .footer-box__menu li:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  footer {
    padding: 40px 0 0;
  }
  footer .footer-box {
    flex-direction: column;
  }
  footer .footer-box__logomap {
    width: 100%;
  }
  footer .footer-box__logomap .footer-box__logo {
    width: 290px;
    display: block;
    margin: 0 auto 10px;
  }
  footer .footer-box__logomap p {
    text-align: center;
  }
  footer .footer-box__table table th,
  footer .footer-box__table table td,
  footer .footer-box__table table td:first-of-type {
    font-size: 12px;
    padding: 3px;
  }
  footer .footer-box__table .clean-btn {
    margin: auto;
  }
  footer .footer-box__menu {
    padding: 0;
    width: 90%;
    margin: 20px auto 0;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2%;
  }
  footer .footer-box__menu li {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 40px 0 160px;
  }
  footer .footer-box__table table td:first-of-type {
    width: 6% !important;
  }
}

/***************************
    smart
***************************/
@media screen and (max-width: 768px) {
  .contact {
    width: 100%;
  }
  .contact-img {
    max-height: 4rem;
  }
  .footer-bottom {
    padding-bottom: 8rem !important;
  }
  .navbar-nav {
    transition: all 0.6s;
    width: 300px;
    z-index: 1050;
    position: fixed;
    top: 0;
    right: -300px;
    background-color: white;
    justify-content: center;
    padding: 0 5%;
  }
  .navbar-nav li {
    width: 100%;
    background-color: #ede5db;
    border-radius: 10px;
  }
  .navbar-nav li a {
    font-size: 18px;
  }
  .navbar-nav li.nav-item__net {
    width: 100%;
  }
  .navbar-nav li.nav-item__net a {
    font-size: 18px;
  }
  .nav-bg {
    opacity: 0;
    transition: all 0.6s;
    z-index: 1040;
    background-color: var(--bs-dark);
    cursor: pointer;
    visibility: hidden;
    z-index: 1;
  }
  .nav-btn {
    width: 4rem;
    height: 4rem;
    z-index: 1060;
    border-radius: 5px;
    position: fixed;
    top: 5px;
    right: 5px;
    cursor: pointer;
    background-color: var(--bs-brown);
  }
  .nav-line {
    transition: all 0.6s;
    width: 2rem;
    height: 2px;
    left: calc(50% - 1rem);
    background-color: #fff;
    position: absolute;
  }
  .nav-line.one {
    top: calc(1.25rem - 1px);
  }
  .nav-line.two {
    top: calc(2rem - 1px);
  }
  .nav-line.three {
    top: calc(2.75rem - 1px);
  }
  .nav {
    /* btnopen */
  }
  .nav-open.nav-bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open.navbar-nav {
    right: 0;
  }
  .nav-open.nav-btn .one {
    transform: rotate(45deg);
    top: 2rem;
  }
  .nav-open.nav-btn .two {
    width: 0;
    left: 50%;
  }
  .nav-open.nav-btn .three {
    transform: rotate(-45deg);
    top: 2rem;
  }
  /* net-houmon__morebtn */
  #net-houmon__morebtn {
    bottom: 0;
    top: auto;
    transform: translateY(0);
    width: 100%;
    padding: 0;
    display: flex;
    margin: 0;
    align-items: stretch;
  }
  #net-houmon__morebtn li {
    writing-mode: horizontal-tb;
    border-radius: 0;
    width: 50%;
    margin: 0;
  }
  #net-houmon__morebtn li a {
    padding: 15px 5px;
    gap: 5%;
    justify-content: center;
  }
  /* page-top */
  .page-top {
    bottom: 80px;
  }
  .title-link {
    font-size: 1rem;
  }
}
/* fadeUpAnimation */
.fade-active {
  animation-name: fade-anime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-anime {
  from {
    opacity: 0;
    transform: translateY(8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=common.css.map */