@charset "UTF-8";
/* CSS Document */

html {
	font-size: 62.5%;
  height: -webkit-fill-available;
}
body {
	color: #5F5E5E;
	width: 100%;
  min-height: 100vh;
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
	line-height: 2.0em;
	-webkit-text-size-adjust: 100%;
	/* font-feature-settings: "palt" 1; */
}

/* RESET */
input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
button, input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + label {
  background: #ff0000;
}
* {
	margin: 0;
	padding :0;
  box-sizing: border-box;
	position: relative;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
}
img, figure, figcaption {
	border: 0;
	vertical-align: top;
}
img {
  max-width: 100%;
  height: auto;
}
a {
	color: #5F5E5E;
  text-decoration: none;
	display: inline-block;
}
p {
}
ul, ol, li, dl, dt, dd {
	margin: 0;
	padding: 0;
	list-style: none;
}
table {
	width: 100%;
	border: none;
}
tbody {
	border-top: 0px;
}
th, tbody th {
	padding-right: 0em;
	border-bottom: none;
}
input {
  -webkit-appearance: none;
}
.pc {
	display: inline;
}
.sp {
	display: none;
}

/*　#Header */
#Header .Logo a, #Header .Logo a img, #Footer .Logo a, #Footer .Logo a img {
  display: block;
}
#Header {
  background: #FFFFFF;
}
#Header .Logo a {
  max-width: 50vw;
}
#Header .Logo {
  padding: 8px 5.33%;
}
#NavWrap .Nav ul {
}
#NavWrap a {
  font-weight: 700;
}
#NavWrap a.current:not(.nocurrent) {
  color: #90BD81;
}
.btnContact a {
  background: #90BD81;
  border: #90BD81 1px solid;
  color: #FFFFFF;
  font-weight: 700;
}

/* FOOTER */
#Footer {
  border-top: #DBDBDB 1px solid;
}
#Footer .fWrap {
  overflow: hidden;
}
#Footer .fWrap > .inner {
}
#Footer .logoWrap > *:not(:last-child) {
  margin-bottom: 32px;
}
#Footer .Logo a {
  max-width: 50vw;
}
#Footer .fAddress {
  justify-content: space-between;
}
#Footer .fMenu ul a {
  font-weight: 700;
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
#Footer .fMenu ul a::before {
  content: '⚫︎';
  color: #90BD81;
  font-size: 10px;
  display: block;
  border-radius: 50%;
}
#Footer .Copy {
  color: #5F5E5E;
  width: 100%;
  font-size: clamp(1.0rem, 1.2vw, 1.2rem);
  line-height: 1.5em;
  text-align: center;
}

/* CONTENT */
.inner {
  padding: 0 5.33%;
}
main section:not(.Head):not(.full) {
  padding: 56px 0;
}
main section:not(.Head):not(.full).bottom {
  padding-bottom: 24px;
}


/*SP
-------------------------------------------------------*/
@media screen and (max-width: 767px) {
	
	.pc {
		display: none;
	}
	.sp {
		display: inline;
	}
  
  /* FOOTER */
  #Footer .fWrap > .flex > *:not(:last-child) {
    margin-bottom: 40px;
  }
  #Footer .fAddress {
  }
  #Footer .fMenu {
    border: #C8C8C8 1px solid;
    border-left: none;
    border-right: none;
    padding: 32px 0;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  #Footer .fMenu ul > li:not(:last-child) {
    margin-bottom: 16px;
  }

}


/*PC
-------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  
  a, a:hover, a *, a:hover *, a::before, a:hover::before, a::after, a:hover::after, .slick-arrow {
    transition: border 0.3s ease-out, background 0.3s ease-out, color 0.3s ease-out, opacity 0.3s ease-out;
  }
  a:hover {
    color: #90BD81;
  }
  a:hover img {
    opacity: 0.6;
  }

	/*　HEADER　*/
  .btnContact a:hover {
    background: #FFF;
    border: #5F5E5E 1px solid;
    color: #5F5E5E;
  }
  
  /* FOOTER */
  #Footer .fWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }
  #Footer .fWrap > .inner {
    grid-gap: 80px;
  }
  #Footer .Logo a {
    max-width: 370px;
    display: block;
  }
  #Footer .fMenu {
    /* padding-left: 80px; */
  }
  #Footer .fMenu ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-gap: 1.0em 3.0em;
  }
  #Footer .Copy {
    text-align: left;
    margin-top: 75px;
  }
  #Footer .fAddress {
    gap: 10px;
  }

  /* CONTENT */
  main section:not(.Head):not(.full) {
    padding: 100px 0;
  }
  main section:not(.Head):not(.full).bottom {
    padding-bottom: 40px;
  }
  .inner {
    padding-left: 5.426%;
    padding-right: 10.81%;
    overflow-x: hidden;
  }.contactWrap  .inner {
    max-width: 757px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    border: #DBDBDB 1px solid;
    border-radius: 20px;
  }
	#Footer .inner {
    padding-right: 8.54%;
    padding-left: 16.67%;
  }
	
}


/*NAV
-------------------------------------------------------*/
@media screen and (max-width: 1069px) {

	/*　HEADER　*/
  #Header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
  }
  #Header .Logo {
    z-index: 100;
  }
  #Header .Logo a {
    height: 44px;
    display: flex;
    align-items: center;
  }
  #Header .Logo a img {
    width: auto;
    max-height: 100%;
  }
	#NavWrap nav {
		background: #ffffff;
		width: 100%;
		height: 100%;
    padding: 32px 5.33%;
    padding-top: 80px;
    pointer-events: none;
		display: block;
		position: fixed;
    left: 0;
		top: 0;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transition: all 0.5s;
		z-index: -99;
		opacity: 0;
	}
	#NavWrap.open nav {
    pointer-events: all;
		/*transition: all 0s;*/
		z-index: 99;
		opacity: 1;
	}
	#NavWrap nav > *:not(:last-child) {
    margin-bottom: 20px;
  }
	#NavWrap .Nav ul {
		flex-direction: column;
  }
	#NavWrap .Nav ul > *:not(:last-child) {
    margin-bottom: 8px;
  }
	#NavWrap .Nav a, #NavWrap .btnContact a {
    min-height: 32px;
    padding: 16px 8px;
    font-size: 1.6rem;
    text-align: center;
    display: block;
  }
  #NavWrap .btnContact a {
    border-radius: 40px;
  }
	.Toggle {
		width: 50px;
		height: 50px;
		display: block;
		position: fixed;
		top: 5px;
		right: 5px;
		border-radius: 5px;
		box-sizing: border-box;
		transition: all 0.5s;
		cursor: pointer;
		z-index: 100;
	}
	.Toggle span {
		background: #90BD81;
		width: 30px;
		height: 2px;
		display: block;
		position: absolute;
		left: 10px;
		border-radius: 4px;
		transition: all 0.5s;
	}
	.Toggle span:nth-child(1) {
		top: 14px;
	}
	.Toggle span:nth-child(2) {
		top: 24px;
	}
	.Toggle span:nth-child(3) {
		bottom: 14px;
	}
	.open .Toggle span:nth-child(1) {
		-webkit-transform: translateY(10px) rotate(-315deg);
		transform: translateY(10px) rotate(-315deg);
	}
	.open .Toggle span:nth-child(2) {
		opacity: 0;
	}
	.open .Toggle span:nth-child(3) {
		-webkit-transform: translateY(-10px) rotate(315deg);
		transform: translateY(-10px) rotate(315deg);
	}


}

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

	/*　HEADER　*/
  #Header {
    align-items: stretch;
  }
  #Header .Logo {
    padding: 0;
  }
  #Header .Logo a {
    max-width: 80px;
  }
  #NavWrap {
  }
  #NavWrap a.current:not(.nocurrent)::after {
    content: '';
    background: #0067CE;
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
  }
  #NavWrap nav {
    height: 100%;
    align-items: center;
  }
  #NavWrap .Nav ul > li {
    /* margin-right: 3.0em; */
  }
  #NavWrap .Nav a, #NavWrap .btnContact a {
    line-height: 24px;
    padding: 10px 0;
  }
  #NavWrap .Nav a {
    display: flex;
    align-items: center;
    grid-gap: 8px;
}
  #NavWrap .Nav a::before {
    content: '⚫︎';
    color: #90BD81;
    font-size: 10px;
    display: block;
    border-radius: 50%;
}

  #NavWrap .btnContact a {
    min-width: 216px;
    text-align: center;
    width: 100%;
    height: 51px;
    padding: 0 16px;
    line-height: 51px;
    font-weight: 700;
    text-align: center;
    border-radius: 40px;
    display: block;
  }
	
}
@media print, screen and (min-width: 1100px) {
  
  #NavWrap {
  }
  
}

/* header customize */
@media print, screen and (min-width: 1070px) {
#Header {
  min-width: 325px;
  width: 325px;
  padding: 15px 15px;
  border-right: #DBDBDB 1px solid;
}
.header_inner {
  position: sticky;
  top: 20px;
  max-width: 216px;
  margin: 0 auto;
}
#NavWrap .Nav {
  max-width: 216px;
  width: 100%;
  padding: 20px 0;
  margin: auto;
}
#NavWrap .Nav ul {
}
}
@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    z-index: 98;
  }

  .header .inner {
    display: flex;
    align-items: center;
    min-height: 75px;
    padding: 5px 5.33%;
  }

  .header-logo {
    max-width: 90px;
    margin: 0;
  }

  .menu {
    display: block;
    position: fixed;
    top: 13px;
    right: 11px;
    height: 50px;
    width: 50px;
    z-index: 99;
    cursor: pointer;
  }

  .gnav {
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    padding: 75px 8% 45px;
    background: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    z-index: 98;
    transition: all .5s;
    overflow-y: scroll;
  }

  .gnav.open {
    display: flex;
    opacity: 1;
  }
}

.header .inner {
  position: sticky;
  top: 40px;
}

.header a {
  color: #5F5E5E;
  /* color: #fff; */
}

.header-logo {
  position: relative;
  display: block;
  max-width: 178px;
  margin: auto;
  margin-bottom: 90px;
  z-index: 99;
}

.menu {
  display: none;
}

.menu__line {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 24px;
  height: 1px;
  background: #fff;
  transition: transform .3s;
}

.menu__line.menu__line--top {
  top: 16px;
}

.menu__line.menu__line--top.active {
  top: 24px;
  transform: rotate(45deg);
}

.menu__line.menu__line--center {
  top: 25px;
}

.menu__line.menu__line--center.active {
  display: none;
}

.menu__line.menu__line--bottom {
  bottom: 16px;
}

.menu__line.menu__line--bottom.active {
  bottom: 24px;
  transform: rotate(135deg);
}

.header-nav {
  max-width: 160px;
  width: 100%;
  margin: auto;
}

.header-nav > li {
  font-size: 16px;
  font-weight: 500;
}

.header-nav > li:not(:last-child) {
  margin-bottom: 30px;
}

.header-nav > li a {
  position: relative;
  display: block;
}

.header-nav > li a::after {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 1px solid #5F5E5E;
  border-right: 1px solid #5F5E5E;
  pointer-events: none;
}

/* ヘッダーとコンテンツをflexで並べる */
@media print, screen and (min-width: 1070px) {
/* Bases: HTML */
#Wrapper {
  display: flex;
  width: 100%;
}
}

main {
  width: 100%;
}

@media (max-width: 768px) {
  main {
    /* margin-top: 75px; */
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 56px 0 24px 0;
}

.footer-right {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.fAddress-left {
  display: flex;
  flex-direction: column; 
}

.container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 35px;
  margin-top: auto;
  overflow: hidden;
  box-sizing: border-box;
}

.icon-box {
  text-align: center;
}

.icon-box::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  width: 100%;
  height: 1px;
  background-color: #576972;
}

.icon-box a {
  display: flex;
  align-items: center;
  gap: 5.5px;
  justify-content: center;
}

.icon-box2 {
  text-align: center;
}

.icon-box2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  width: 100px;
  height: 1px;
  background-color: #576972;
}

.icon-box2 a {
  display: flex;
  align-items: center;
  gap: 5.5px;
  justify-content: center;
}

.icon {
  font-size: 30px;
  margin-bottom: -12.5px;
}

.icon-text {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

@media screen and (max-width: 1069px) {
  #Header .container {
    gap: 25px;
}
  #Header .icon-box {
    text-align: center;
    width: 50%;
}
  #Header .icon-box::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    width: 100%;
    height: 1px;
    background-color: #576972;
  }
  #Header .icon-box2 {
    text-align: center;
    width: 50%;
}
  #Header .icon-box2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    width: 100%;
    height: 1px;
    background-color: #576972;
  }
  .icon {
    font-size: 30px;
    margin-bottom: -8.5px;
  }
}

@media print, screen and (min-width: 768px) {
.map-container {
  position: relative;
  width: 100%;
  min-height: 438px;
  overflow: hidden;
  min-height: 638px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  #Footer .container {
    margin-top: 32px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    width: 100%;
  
    padding: 56px 0 24px 0;
  }
  .footer-right {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .map-container {
    width: 100%;
    height: 150px;
    position: static;
    width: 100%;
    height: 100%;
  }
}

.banner-container {
  width: 100%;
  padding: 10px;
  margin: 20px 0;
  border: 1px solid #5F5E5E;
  border-radius: 10px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.banner-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.0px;
}
.banner-tel p {
  font-family: "Nunito", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
}
.banner-tel p a {
  font-family: "Nunito", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(2.0rem, 2.4vw, 2.4rem);
}
.mercari {
    margin: 10px auto 0;
}
@media print, screen and (min-width: 1070px) {
  .banner-container {
    max-width: 216px;
    padding: 10px;
    margin: 20px 0 10px;
    border: 1px solid #5F5E5E;
    border-radius: 10px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
  }
}
@media (max-width: 768px) {
.banner-text {
    font-size: 16px;
    margin: 0 auto 5px;
  }
  .banner-tel p {
    font-size: clamp(2rem, 1.6vw, 1.6rem);
  }
  .banner-tel p a {
    font-size: clamp(3.2rem, 2.4vw, 2.4rem);
  }
  .mercari {
    width: 70%;
  }
}