@import url(../css/bootstrap.min.css);
@import url(../css/font-awesome.min.css);

@font-face {
  font-family: "APT";
  src: url("../fonts/APT.woff") format('woff');
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.6rem;
  color: #000;
  line-height: 1.6;
}

p {
  margin: 0;
  padding: 0;
}

a {
  -webkit-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
  text-decoration: none;
  outline: 0 solid transparent;
  color: #000;
}

a:hover,
a:focus {
  -webkit-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
  text-decoration: none;
  outline: 0 solid transparent;
  color: #999;
}

ul,
ol {
  margin: 0;
}

ul li,
ol li {
  list-style: none;
}

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

/* br setting */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.underline {
  text-decoration: underline;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

/* Spacing */
.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.font-bold {
  font-weight: 700;
}

.text-left {
  text-align: left !important;
}

.navbar-toggler {
  background-color: #fbb710;
  border-radius: 0;
  margin-bottom: 15px;
}

.navbar-toggler i {
  font-size: 12px;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar {
    display: block;
  }
}

@media only screen and (max-width: 991px) {	
	.photo-gllery {
		width: calc(100% - 20px);
		margin: 0 10px;
	}
}

@media only screen and (max-width: 767px) {
  .navbar {
    display: block;
  }
	
	.photo-item img {
		width: calc(100% - 20px);
	}
}

.mobile-nav {
  position: fixed;
  width: 100%;
  height: 70px;
  background-color: #fff;
  z-index: 3000;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.5em 1em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mobile-nav .amado-navbar-brand a {
  display: block;
}

.mobile-nav .amado-navbar-toggler {
  cursor: pointer;
}

.mobile-nav .amado-navbar-toggler span {
  width: 28px;
  height: 3px;
  background-color: black;
  display: block;
  margin-bottom: 5px;
  border-radius: 2px;
}

.mobile-nav .amado-navbar-toggler span:last-child {
  margin-bottom: 0;
}

/* ScrollUp */
#scrollUp {
  background-color: black;
  border-radius: 0;
  bottom: 20px;
  color: #ffffff;
  font-size: 24px;
  height: 40px;
  line-height: 40px;
  right: 50px;
  text-align: center;
  width: 40px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

#scrollUp:hover {
  background: #666;
}

.main-content-wrapper {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .main-content-wrapper {
    margin-top: 70px;
    z-index: 100;
  }
}

.main-content-wrapper .header-area {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 330px;
  flex: 0 0 330px;
  width: 330px;
  max-width: 330px;
  background-color: #fff;
  padding: 60px;
}

@media only screen and (min-width: 991px) and (max-width: 1189px) {
  .main-content-wrapper .header-area {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
    width: 280px;
    max-width: 280px;
    padding: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .main-content-wrapper .header-area {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    width: 300px;
    max-width: 300px;
    position: fixed;
    z-index: 4000;
    top: 0;
    left: -300px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    display: block;
    padding: 30px 40px 40px;
  }

  .logo img {
    width: 90%;
    height: auto;
  }
}

.main-content-wrapper .header-area.bp-xs-on {
  left: 0;
}

.main-content-wrapper .header-area .nav-close {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 15px;
  background-color: red;
  text-align: center;
  color: #fff;
  line-height: 40px;
  font-size: 12px;
  cursor: pointer;
  background-color: black;
  display: none;
}

@media only screen and (max-width: 991px) {
  .main-content-wrapper .header-area .nav-close {
    display: block;
  }
}

.main-content-wrapper .header-area .nav-close:hover {
  background-color: #131212;
}

.main-content-wrapper .header-area .logo {
  margin-bottom: 30px;
  display: block;
}

.main-content-wrapper .header-area .amado-nav li a {
  /*  font-size: 2.1rem;*/
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  padding: 12px 0;
  display: block;
  line-height: 0.9;
  color: #403d3d;
  /*  font-weight: normal;*/
  font-weight: 600;
  /*  font-family: 'APT';*/
  /*    font-family: 'Noto Serif JP', serif;
    */
  font-family: 'M PLUS 1p', sans-serif;
}

.main-content-wrapper .header-area .amado-nav li a::after {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  width: 40px;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
  left: -150px;
  background-color: black;
  z-index: 10;
  content: '';
}

.main-content-wrapper .header-area .amado-nav li a:hover,
.main-content-wrapper .header-area .amado-nav li a:focus {
  color: #999;
}

.main-content-wrapper .header-area .amado-nav li:hover a::after,
.main-content-wrapper .header-area .amado-nav li:focus a::after {
  left: -75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .main-content-wrapper .header-area .amado-nav li:hover a::after,
  .main-content-wrapper .header-area .amado-nav li:focus a::after {
    left: -75px;
  }
}

.main-content-wrapper .header-area .amado-nav li.active a::after {
  left: -75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-content-wrapper .header-area .amado-nav li.active a::after {
    left: -50px;
  }
}

.main-content-wrapper .header-area .amado-btn-group .amado-btn {
  width: 160px;
  display: block;
}

.main-content-wrapper .header-area .cart-fav-search a {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  padding: 15px 0;
  color: #131212;
  line-height: 1;
}

.main-content-wrapper .header-area .cart-fav-search a .search-nav {
  padding-bottom: 0;
}

.main-content-wrapper .header-area .cart-fav-search a span {
  color: #9e9e9e;
}

.main-content-wrapper .header-area .cart-fav-search a img {
  margin-right: 10px;
}

.main-content-wrapper .header-area .cart-fav-search a:hover,
.main-content-wrapper .header-area .cart-fav-search a:focus {
  color: #fbb710;
}

.main-content-wrapper .header-area .social-info a {
  color: black;
  display: inline-block;
}

.main-content-wrapper .header-area .social-info a i {
  font-size: 24px;
}

.main-content-wrapper .header-area .social-info a:hover,
.main-content-wrapper .header-area .social-info a:focus {
  color: #b5b5b5;
}

@media only screen and (max-width: 767px) {
  .main-content-wrapper .header-area .social-info {
    margin-bottom: 75px;
  }
}

.main-content-wrapper .products-catagories-area {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 330px);
  flex: 0 0 calc(100% - 330px);
  width: calc(100% - 330px);
  max-width: calc(100% - 330px);
  padding: 30px 55px 30px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1191px) {
  .main-content-wrapper .products-catagories-area {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 330px);
    flex: 0 0 calc(100% - 330px);
    width: calc(100% - 330px);
    max-width: calc(100% - 330px);
    padding: 30px 0px 30px 0;
  }
}

@media only screen and (max-width: 991px) {
  .main-content-wrapper .products-catagories-area {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

/* Footer Area */
.footer_area {
  position: relative;
  z-index: 1;
  margin: 50px;
  padding: 20px 0 10px;
  border-top: 1px solid black;
}

.footer_area p {
  color: #242424;
  margin: 0;
  font-size: 1.4rem;
}

.auther {
  font-size: 12px !important;
  color: #666 !important;
}

/* Index */
.index-slide {
  width: 100%;
  background-size: cover;
  margin-bottom: 30px;
}

.index-slide h1 {
  display: none;
}

.footer-phone {
  font-size: 2.4rem !important;
}

.footer-instra {
  margin-bottom: 20px;
}

.footer-instra a {
  color: black;
}

.footer-instra a:hover {
  color: #999;
}

.footer-fa {
  font-size: 2rem !important;
}

.news {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.news-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
}

.news-area div {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  border-right: 1px solid #efefef;
  border-left: 6px solid #eee;
  padding: 16px 12px;
  transition: 0.5s ease;
}

.news-area div:last-child {
  margin-right: 0px;
}

.news-area div:hover {
  background: #fbfbfb;
}

.news-area h3 {
  line-height: 1.6 !important;
}

.news-ttl a {
  color: black;
  font-size: 1.6rem;
}

.news-ttl a:hover {
  text-decoration: underline;
}

.news-arrow {
  margin-right: 2px;
  font-size: 1.6rem;
}

.news-small {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  margin-left: 10px;
  color: #333;
}

.link-news {
  font-size: 14px;
  margin-top: 30px;
  text-align: right;
}

.link-news a {
  text-decoration: underline;
}

/* about */
.greeting {
  width: 750px;
  margin: 0 auto 60px;
}

.greeting p {
  line-height: 1.8;
  margin: 30px 0 30px;
}

.container-fruid {
  padding: 0 50px;
}

.photo-gllery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.photo-gllery div {
  width: 31.7%;
  height: auto;
  margin-bottom: 40px;
}

.photo-cap {
  text-align: center;
  margin: 10px 0;
}

/* appoint */
.section-header {
  font-size: 2rem;
  border-bottom: 1px solid #e9e9e9;
  text-align: center;
  padding: 30px 0 10px;
  margin-bottom: 30px;
}

.appoint-rule {
  background: #f5f5f4;
  padding: 24px;
  position: relative;
  margin-bottom: 30px;
}

.appoint-rule li {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 4px;
}

.appoint-stg {
  color: #cc0066;
  font-weight: 700;
}

.tall a {
  padding: 16px 8px !important;
}

.appoint-btn a {
  display: block;
  background: #222;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding: 8px;
}

.appoint-btn:last-child a {
  background: #808080;
}

.appoint-btn a:hover {
  background: #444;
}

.appoint-btn i,
.blog-link i {
  margin-right: 4px;
}

.appoint-btn: {
  margin-top: 10px;
}

.appoint-btn2::nth-child(2) a {
  background: #808080;
}

.appoint-btn2 a:hover {
  background: #444;
}

.appoint-btn2 i,
.blog-link i {
  margin-right: 4px;
}

.appoint-btn2: {
  margin-top: 10px;
}

/* access */
.access {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.access-left,
.access-right {
  flex: 1;
}

.access h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.access-right {
  background: #fafafa;
  border: 1px solid #efefef;
  padding: 28px 22px;
  margin-left: 20px;
}

.gmap {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 30%;
  position: relative;
  margin: 50px;
  border: 1px solid #efefef;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}


/* blog */
.blog-ttl {
  flex: none !important;
  width: 100% !important;
  padding: 12px 12px 6px !important;
  margin-bottom: 10px;
}

.post-name {
  font-size: 2rem;
  border-left: 6px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding-left: 12px;
  padding-bottom: 10px;
  padding-top: 6px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.post-area {
  line-height: 2;
}

.blog-link {
  text-align: center;
  border-top: 1px solid #e9e9e9;
  padding-top: 46px;
  margin: 100px 0 80px;
}

.blog-link a:hover {
  text-decoration: underline;
}

.pager-box {
  margin: 0px;
  text-align: center;
  font-size: 1.6rem;
}

.pager {
  text-align: center;
}

a.page-numbers,
.pager .current {
  background: #fcfcfc;
  border: solid 1px #f3f3f3;
  padding: 10px 14px;
  margin: 0 2px;
}

.pager .current {
  background: rgba(0, 0, 0, 1);
  border: solid 1px rgba(0, 0, 0, 1);
  color: rgba(255, 255, 255, 1);
}

a:hover.page-numbers,
.pager .current {
  text-decoration: underline;
  color: #999;
}


/* service */
.service-link a {
  color: #999;
}

.service-link a:hover {
  text-decoration: underline;
}

.appoint-btns .appoint-btn:nth-child(2) a {
  background: grey;
}

.appoint-btns .appoint-btn {
  margin: 10px 0;
}

.appoint-btns .appoint-btn:last-child a {
  background: #222222;
}

/* Responsive css */
@media (max-width: 1199.98px) {
  .news-area div {
    flex: none;
    width: 100%;
    padding: 10px;
  }

  .news-area {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 4px;
  }

  .main-content-wrapper .header-area .amado-nav li a {
    font-size: 2rem;
  }

  .main-content-wrapper .header-area .amado-nav li a::after {
    width: 50px;
  }

  .link-news {
    text-align: center;
  }

  .container-fruid {
    padding: 0 30px;
  }

  .access-left,
  .access-right {
    flex: none;
    width: 100%;
  }

  .access-right {
    margin-left: 0;
    margin-top: 30px;
  }

  .gmap {
    padding-bottom: 40%;
  }

}

@media (max-width: 991.98px) {
  .index-slide {
    margin-bottom: 50px;
  }

  .container-md {
    width: 100%;
    padding: 0 30px;
  }

  .footer_area {
    margin: 50px 30px;
  }

  #scrollUp {
    bottom: 20px;
    right: 20px;
  }

  .main-content-wrapper .header-area .amado-nav li a {
    font-size: 2.1rem;
  }

  .greeting {
    width: 100%;
    padding: 0 30px;
  }

  .gmap {
    margin: 70px 30px 30px;
    padding-bottom: 50%;
  }
}

.main-content-wrapper .products-catagories-area .n2-ss-slide-backgrounds{
	height: 530px;
}
.main-content-wrapper .products-catagories-area div#n2-ss-2 .n2-ss-slider-3{
	height: 530px;
}
@media (max-width: 767.98px) {
  .photo-gllery div {
    width: 100%;
  }
	.main-content-wrapper .products-catagories-area div#n2-ss-2 .n2-ss-slider-3{
	height: unset;
}
.main-content-wrapper .products-catagories-area .n2-ss-slide-backgrounds{
	height: unset;
}
  .gmap {
    padding-bottom: 60%;
  }
}

@media (max-width: 575.98px) {
  .main-content-wrapper .header-area .amado-nav li a {
    font-size: 2.2rem;
  }

  .container-md {
    padding: 0 20px;
  }

  .footer_area {
    margin: 50px 20px;
  }

  .container-fruid,
  .greeting {
    padding: 0 20px;
  }

  .appoint-rule {
    padding: 20px;
  }

  .appoint-rule li {
    margin-bottom: 20px;
  }

  .gmap {
    margin: 70px 20px 30px;
    padding-bottom: 80%;
  }
}


.title_add {

  padding-bottom: 40px;
  width: 100%;
  max-width: 1920px;
  padding-left: 15px;
  padding-right: 15px;
}

.box_add {
  display: flex;
  align-items: start;
}

.title_add_h3 {
  text-align: left;
  margin-left: 0px;
  margin-bottom: 20px;
  font-size: 24px;
  max-width: 262px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
}

.box_add .right {
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;

}

.box_add .right .text {
  font-size: 20px;
  margin-bottom: 0px;
  text-align: left;
}

.box_add .left {
  padding-top: 30px;
  padding-right: 50px;
}

.box_add .left a {
  display: block;
  max-width: 200px;
}

.box_add .right img {
  max-width: 250px;
}

.container-fruid.mb-50.gallery-container {
    padding: 0;
}

@media (max-width: 991.98px) {
  .title_add {
    padding-bottom: 70px;
  }

  .box_add {
    flex-wrap: wrap;
  }

  .title_add_h3 {
    margin-bottom: 10px;
    font-size: 20px;
    margin-left: 0;
  }

  .box_add .right {
    width: 100%;
  }

  .box_add .right .text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .box_add .left {
    width: 100%;
    order: 2;
    padding-top: 15px;
    padding-right: 0px;

  }

  .box_add .left a {
    max-width: unset;
  }

  .box_add .left img {
    width: 45%;
  }

  /* .box_add .right img {
    max-width: 100%;
  } */

}


@media (max-width: 767px) {
  .box_add .right {
    flex-wrap: wrap;
    justify-content: center;
  }
}


h2.reserve-title {
    text-align: left;
    margin-bottom: 20px;
}

.reserve-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
}

.reserve-qr {
    flex: 100%;
    max-width: calc(40% - 10px);
    margin: 25px 10px 30px 0;  
    text-align: center;
}

.reserve-qr img {
    max-width: 100%;
}

.reserve-text {
    flex: 100%;
    max-width: calc(60% - 10px);
    margin: 0 10px 30px 0;  
}

.reserve-text p {
    font-size: 16px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .reserve-qr {
        max-width: 100%;
        margin: 0 0 30px 0;  
        text-align: center;
        order:2;
    }
    .reserve-text {
        max-width: 100%;
        margin: 0 0 30px 0;
        order: 1;  
    }

    h2.reserve-title {
        text-align: center;
    }

}