@charset "UTF-8";
/* CSS Document */
/*
Theme Name: kitagawa
Theme URI:
Author:
Author URI:
Description: Original Template
Version: 1.0
*/
/****************************************

          General Setting

*****************************************/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
  font-weight: 400;
  font-family: 'M PLUS Rounded 1c', ‘ヒラギノ角ゴシック’, ‘メイリオ’, sans-serif;
  color: #6f6664;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  background: #f3f4f1;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  width /***/ : auto; /*IE8用ハック*/
  height: auto;
  border: none;
  vertical-align: top;
}
a img:hover {
  opacity: 0.65;
  filter: alpha(opacity=65);
}
a {
  color: rgba(111, 102, 100, 1);
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
a:hover {
  color: rgba(111, 102, 100, 0.5); /*#6f6664*/
}
h1, h2, h3, h4, h5 {
  line-height: 1;
}
@media only screen and (min-width: 769px) and (max-width: 820px) {
  body {
    font-size: 14px;
  }
}
/****************************************

          Layout

*****************************************/
html, body {
  height: 100%;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.br-pc {
  display: inline;
}
.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline;
  }
}
.container {
  max-width: 1024px;
  clear: both;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 90%;
    margin: 0 5%;
  }
}
.bg-wh {
  background-color: rgba(255, 255, 255, 1);
}
header {
  width: 100%;
  padding: 3% 3%;
  transition: all 0.5s;
}
.is-fixed {
  position: fixed;
  left: 0;
  z-index: 9999;
  padding: 1% 3%;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 2px 2px rgba(111, 102, 100, 0.02);
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.08);*/
}
.headercontainer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
}
.headercontainer h1 {
  font-size: 2em;
  font-weight: 500;
}
#drawer-checkbox {
  display: none;
}
#drawer-icon {
  cursor: pointer;
  position: relative;
  z-index: 9999;
  width: 32px;
  height: 32px;
  margin-left: auto;
  transition: .3s;
  border-radius: 50%;
  pointer-events: auto;
}
#drawer-icon span {
  position: absolute;
  display: block;
  z-index: 9998;
  width: 32px;
  height: 3px;
  top: 50%;
  left: 0;
  background: #6f6664;
  transition: all 0.3s ease-in-out;
  border-radius: 100vh;
}
#drawer-icon span::before, #drawer-icon span::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background: #6f6664;
  transition: 0.3s;
  border-radius: 100vh;
}
#drawer-icon span::before {
  margin-top: -10px;
}
#drawer-icon span::after {
  margin-top: 10px;
}
#drawer-checkbox:checked ~ #drawer-icon span, #drawer-checkbox:checked ~ .is-fixed #drawer-icon {
  background: transparent !important;
}
#drawer-checkbox:checked ~ #drawer-icon span::before, #drawer-checkbox:checked ~ #drawer-icon span::after {
  margin-top: 0;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  transition: all 0.5s 0s ease;
  transform: translateX(-100%);
  opacity: 0;
}
#drawer-checkbox:checked ~ #drawer-content {
  transform: translateX(0);
  opacity: 1;
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}
#drawer-close {
  display: none;
  position: fixed;
  z-index: 9997;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0.3;
}
.drawer-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 94%;
  padding: 0 3%;
}
.drawer-container h2 {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 5%;
}
.drawer-container ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin-bottom: 10%;
}
.drawer-container ul li a {
  width: 300px;
  color: #6f6664;
  display: inline-block;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 5%;
  padding: 1em 2em;
  border: 1px solid #6f6664;
  border-radius: 100vh;
  transition: 0.5s;
}
.drawer-container ul li a:hover {
  color: #fff;
  border: 1px solid #6f6664;
  background: #6f6664;
}
.drawer-container ul li:last-child {
  margin-bottom: 0;
}
.drawer-schedule {
  margin-bottom: 10%;
}
.drawer-schedule p {
  font-size: 0.8em;
  text-align: center;
  line-height: 1.2;
}
.drawer-contact {
  color: #8aac86;
}
.drawer-contact h2, .drawer-schedule h2 {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 5%;
}
.drawer-contact span {
  display: block;
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
}
.drawer-contact i {
  font-size: 0.8em;
  margin-right: 8px;
}
.drawer-contact span a {
  color: #8aac86;
}
footer {
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  padding-top: 72px;
  background: #FFF;
}
.footer-container {
  display: flex;
  gap: 96px;
  text-align: left;
  margin-bottom: 72px;
}
.footer-container-l {
  flex: 1;
}
.footer-container-r {
  flex: 1.5;
  margin-top: -114px;
  border-radius: 20px;
}
.footer-container-r img {
  border-radius: 20px;
}
.footer-container-l h2 {
  font-size: 2em;
  font-weight: 500;
  margin-bottom: 24px;
}
.footer-container-l i {
  color: #8aac86;
  margin-right: 8px;
}
.footer-container-l .footer-tel {
  color: #8aac86;
  font-size: 2em;
  font-weight: 700;
}
.footer-container-l .footer-tel a {
  color: #8aac86;
}
.footer-container-l .footer-tel i {
  font-size: 0.8em;
}
.footer-container-hour {
  margin-top: 16px;
}
.footer-container-hour h2 {
  text-align: center;
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 3%;
}
.footer-container-hour p {
  text-align: center;
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1.2;
}
.footer-container-hour .schedule {
  font-size: 0.8em;
}
address {
  display: block;
  font-size: 0.8em;
  font-style: normal;
  text-align: center;
  color: #FFF;
  padding: 1em;
  background: #8aac86;
}
@media screen and (max-width: 1024px) {
  footer {
    padding-top: 48px;
  }
  .footer-container {
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-container-r {
    flex: 1.4;
    margin-top: -72px;
  }
  .footer-container-hour {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .headercontainer h1 {
    font-size: 1.75em;
  }
  footer {
    width: 100%;
    padding-top: 10%;
  }
  .footer-container {
    text-align: center;
    flex-direction: column-reverse;
    font-size: 1em;
    gap: 0;
    margin-bottom: 10%;
  }
  .footer-container-r {
    flex: 1;
    margin-top: -20%;
    margin-bottom: 10%;
  }
  .footer-container-r img {
    border-radius: 10px;
  }
  .footer-container h3 {
    font-size: 1.2em;
  }
  address {
    font-size: 0.6em;
    text-align: center;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  header, .is-fixed {
    padding: 5% 3%;
  }
  .footer-container {
    font-size: 1em;
  }
  .footer-container-hour .schedule {
    font-size: 1em;
  }
}
main {
  flex: auto;
  margin-bottom: 144px;
}
@media screen and (max-width: 820px) {
  main {
    margin-bottom: 15%;
  }
}
@media screen and (max-width: 767px) {
  main {
    margin-bottom: 20%;
  }
}
/* ===== 固定CTA（スマホ下） ===== */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9995;
  display: flex;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(111, 102, 100, 0.25);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.fixed-cta.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
  color: #8aac86;
  padding: 1em;
  background: #fff;
  touch-action: manipulation; /* ダブルタップ拡大/遅延の抑制 */
  -webkit-tap-highlight-color: transparent;
}
.fixed-cta__btn i {
  margin-right: 0.5em;
}
@media (min-width: 768px) {
  .fixed-cta {
    display: none !important;
  }
  body {
    padding-bottom: 0 !important;
  }
}

/* スマホ時：下固定バー分、本文が隠れないように余白 */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
}
.subttl {
  font-size: 0.85em;
  font-weight: 700;
  color: #8aac86;
  margin-bottom: 16px;
}
.ttl {
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}
.ttl-gr {
  color: #8aac86;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 48px;
}
.btn {
  display: inline-block;
  color: #8aac86;
  line-height: 1;
  font-weight: 500;
  margin-top: 48px;
  padding: 1em 2em;
  border: 1px solid #8aac86;
  border-radius: 100vh;
  transition: 0.5s;
}
.btn:hover {
  color: #fff;
  border: 1px solid #8aac86;
  background: #8aac86;
}
.imgtxt-container {
  display: flex;
  align-items: center;
}
.imgtxt-container.reverse {
  flex-flow: row-reverse;
}
.imgtxt-container figure {
  width: 50%;
}
.imgtxt-container .text {
  flex: 1;
  text-align: left;
}
.w-container-l, .w-container-r {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
}
.w-container-l:before {
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  width: 95%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  border-radius: 20px 0 0 20px;
}
.w-container-r:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 100%;
  background: #fff;
  z-index: -1;
  border-radius: 0 20px 20px 0;
}
.imgtxt-container {
  gap: 5%;
}
.w-container-l .imgtxt-container figure span {
  display: block;
  margin-left: calc((50vw - 100%) * -1);
}
.w-container-r .imgtxt-container figure span {
  display: block;
  margin-right: calc((50vw - 100%) * -1);
}
.w-container-l .imgtxt-container figure img {
  border-radius: 0 20px 20px 0;
}
.w-container-r .imgtxt-container figure img {
  border-radius: 20px 0 0 20px;
}
.imgtxt-container .text p {
  text-align: justify;
  margin-bottom: 24px;
}
.imgtxt-container .text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .w-container-l {
    overflow: hidden;
    padding: 10% 3% 10% 3%;
  }
  .w-container-r {
    overflow: hidden;
    padding: 10% 3% 10% 3%;
  }
}
@media screen and (max-width: 820px) {
  .subttl {
    font-size: 1em;
    margin-bottom: 8px;
  }
  .ttl {
    font-size: 1.75em;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .subttl {
    text-align: center;
    font-size: 0.85em;
    font-weight: 700;
    color: #8aac86;
    margin-bottom: 16px;
  }
  .ttl {
    text-align: center;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .ttl-gr {
    text-align: center;
    color: #8aac86;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 48px;
  }
  .imgtxt-container {
    flex-direction: column;
  }
  .imgtxt-container.reverse {
    flex-direction: column;
  }
  .imgtxt-container figure {
    width: 100%;
    margin-bottom: 10%;
  }
  .w-container-l {
    overflow: hidden;
    padding: 10% 5% 10% 5%;
  }
  .w-container-r {
    overflow: hidden;
    padding: 10% 5% 10% 5%;
  }
  .w-container-l:before {
    border-radius: 10px 0 0 10px;
  }
  .w-container-r:before {
    border-radius: 0 10px 10px 0;
  }
  .w-container-l .imgtxt-container figure span {
    width: 95vw;
    margin-left: calc(50% - 50vw);
  }
  .w-container-l .imgtxt-container figure img {
    border-radius: 0 10px 10px 0;
  }
  .w-container-r .imgtxt-container figure {
    width: 110%;
  }
  .w-container-r .imgtxt-container figure span {
    width: 100vw;
    margin-right: calc(50% - 50vw);
  }
  .w-container-r .imgtxt-container figure img {
    border-radius: 10px 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .subttl {
    margin-bottom: 3%;
  }
  h2.ttl, .ttl-gr {
    font-size: 1.5em;
    margin-bottom: 5%;
  }
  .imgtxt-container .text {
	}
  .imgtxt-container .text p {
	  text-align: left;
    /*margin-bottom: 10%;*/
  }
}
/* -------------------------------------- 
 *	home
 * ---------------------------------------  */
#hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}
.key-slider,
.slick-list,
.slick-track {
  height: 100%;
}
#hero .hero-slider {
  position: relative;
  width: 95%;
  height: 60vh;
  margin-left: 5%;
}
#hero .hero-slider .slick-slide {
  position: relative;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
#hero .hero-slider .slick-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3); /* 白で薄くする */
  pointer-events: none;
  border-radius: 20px 0 0 20px;
}
#hero .hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s linear;
}
.hero-slider .slick-current img {
  transform: scale(1.1);
}
#hero h2 {
  position: absolute;
  top: 50%;
  left: -1%;
  transform: translateY(-50%);
  width: 90%;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  z-index: 2;
  color: #8aac86;
  text-shadow: 0px 0px 16px rgba(243, 244, 241, .5), 0px 0px 16px rgba(243, 244, 241, .5), 0px 0px 16px rgba(243, 244, 241, .5), 0px 0px 16px rgba(243, 244, 241, .5), 0px 0px 16px rgba(243, 244, 241, .5), 0px 0px 16px rgba(243, 244, 241, .5), 0px 0px 16px rgba(243, 244, 241, .5), 0px 0px 16px rgba(243, 244, 241, .5), 0px 0px 16px rgba(243, 244, 241, .5), 0px 0px 16px rgba(243, 244, 241, .5), 0px 0px 16px rgba(243, 244, 241, .5);
}
#hero h2 span {
  display: block;
  margin-left: 3%;
}
@media screen and (max-width: 1024px) {
  #hero .hero-slider {
    width: 97%;
    height: 70vh;
    margin-left: 3%;
  }
  #hero h2 {
    left: 1%;
    font-size: 3em;
  }
}
@media screen and (max-width: 768px) {
  #hero .hero-slider {
    width: 97%;
    margin-left: 3%;
  }
  #hero .hero-slider img {

  }
}
@media screen and (max-width: 767px) {
  #hero .hero-slider {
    width: 100%;
    margin-left: 0;
  }
  #hero .hero-slider .slick-slide {
    border-radius: 0;
  }
  #hero h2 {
    font-size: 1.8em;
    left: 3%;
  }
}
#home-news {
  position: relative;
  max-width: 900px;
  margin: -48px auto 0;
  padding: 48px;
  background: #fff;
  border-radius: 20px;
}
.home-news-container h2 {
  display: inline-block;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: #8aac86;
}
.home-news-container{
  display:flex;
  align-items:flex-start;
  gap: 2em;
  text-align:left;
}
.home-news-ttl{
  flex:0 0 auto;
  margin: 0;
  line-height:1.2;
}
.home-news-list{
  flex:1;
  list-style:none;
  margin:0;
  padding:0;
  min-width:0;
}
.home-news-row{
  margin:0;
}
.home-news-item{
  display:flex;
  gap: 0.2em;
  text-decoration:none;
  min-width:0; 
  padding:4px 0;
}
.home-news-date{
  font-size: 0.85em;
  flex:0 0 7.5em;
  white-space:nowrap;
  color:rgba(111,102,100,.5);
  line-height:1.2;
}
.home-news-title{
  flex:1;
  min-width:0;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  line-height:1.2;
}
.home-news-more {
  font-size: 0.9em;
  font-weight: 300;
  color: #8aac86;
  flex: 0 0 auto;
  /*margin-top: auto; */
  margin-left: auto;
  white-space: nowrap;
  line-height: 1.5;
  padding-top: 3px;
  text-decoration: underline;
}
.link-caution {
  display: block;
  padding-top: 48px;
}
.link-caution a{
  font-size: 1.5em;
  color: #ee9e3f;
  line-height: 1;
  font-weight: 700;
  transition: 0.5s;
  text-decoration: underline;
}
.link-caution a:hover {
  color: #6f6664;
}
#home-info {
  margin: 48px auto 114px;
}
#home-info .container {
  position: relative;
  display: flex;
  gap: 72px;
}
#home-info .container::after {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  width: 1px;
  height: 100%;
  background: #6f6664;
}
#home-info .container > div {
  flex: 1;
}
/*.home-info-hours {
  margin-bottom: 48px;
}*/
#home-info h2 {
  font-size: 1.25em;
  font-weight: 500;
  margin-bottom: 5%;
}
table.schedule {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2%;
}
table.schedule tr td {
  width: 11%;
  text-align: center;
  padding: 0.25em 0;
  border-left: 1px solid #6f6664;
}
table.schedule td.td-am {
  padding: 0.25em 0 0;
}
table.schedule tr th {
  width: auto;
  text-align: center;
  white-space: nowrap;
  border-left: none;
  font-size: 0.9em;
  font-weight: 500;
}
table.schedule tr th.time-ttl {
  font-weight: 400;
}
table.schedule tr th span {
  display: inline-block;
  text-align: right;
}
table.schedule tr th.th-am {
  padding-top: 0.25em;
  vertical-align: top;
}
table.schedule .ope {
  font-size: 0.7em;
  line-height: 1;
  vertical-align: middle;
}
table.schedule .montue {
  font-size: 0.7em;
  line-height: 1.2;
  letter-spacing: -0.05em;
  padding: 0.15em 0;
}
table.schedule tr.tr-am,
table.schedule tr.tr-pm {
}
.home-info-hours p {
  font-size: 0.75em;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
}
#home-info .home-info-contact h2 {
  margin-bottom: 5%;
}
.home-info-contact .tel {
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  color: #8aac86;
  margin-bottom: 5%;
}
.home-info-contact .tel a {
  color: #8aac86;
}
.home-info-contact .tel i {
  font-size: 0.8em;
  margin-right: 8px;
}
.home-info-contact p {
  font-size: 0.8em;
  font-weight: 500;
}
.home-info-contact .time span {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #home-news {
    max-width: 90%;
    margin: -5% 5% 0;
    padding: 3%;
  }
  .home-news-container {
    gap: 6%;
  }
  table.schedule {
    font-size: 0.8em;
  }
  .home-info-hours p {
    font-size: 0.8em;
  }
  .home-info-contact .tel {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 820px) {
  #home-info {
    max-width: 600px;
    font-size: 1.2em;
    margin: 10% auto;
  }
  #home-info .container {
    flex-direction: column;
    gap: 0;
  }
  #home-info .container::after {
    display: none;
  }
  .home-info-hours {
    margin-bottom: 10%;
  }
  #home-info .home-info-contact h2 {
    margin-bottom: 5%;
  }
  .home-info-contact .tel {
    margin-bottom: 3%;
  }
  .home-info-contact .time span {
    display: inline;
    margin-left: 3%;
  }
}
@media screen and (max-width: 767px) {
  #home-news {
    max-width: 90%;
    margin: -10% 5% 0;
    padding: 5%;
    border-radius: 10px;
  }
  .home-news-container {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
  }
  .home-news-ttl{
    width: 100%;
    text-align: center;
    padding-bottom: 3%;
  }
  .home-news-list{
    flex: 1 1 auto;
    min-width: 0;
  }
  .home-news-item{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 10%;
    line-height: 1;
  }
  .home-news-date{
    display:block;
    margin:0;
    line-height: 1.5;
    flex:none;
    width:auto;
  }
  .home-news-title{
    display:block;
    margin: 0;
    line-height: 1.35;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .home-news-more{
    flex: 0 0 auto;
    align-self: flex-end;
    width: auto;
    text-align: right;
    margin-left: auto;
    margin-top: 0;
  }
  .link-caution a {
    font-size: 1.2em;
  }
  #home-info h2 {
    font-size: 1em;
  }
  table.schedule {
    font-size: 0.75em;
  }
  table.schedule tr td {
    width: 10.5%;
    padding: 0.2em 0;
    border-left: 1px solid rgba(111, 102, 100, 0.3);
  }
  table.schedule .montue {
    font-size: 0.7em;
    letter-spacing: -0.05em;
    padding: 0.25em 0;
  }
  .home-info-hours p {
    font-size: 0.7em;
  }
  .home-info-contact .tel {
    font-size: 2em;
  }
}
#home-about {
  margin-bottom: 96px;
}
#home-treatment {
  margin-top: -96px;
  margin-bottom: 96px;
  padding-top: 96px;
}
.home-treatment-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
  margin-left: -48px;
}
.home-treatment-item {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  width: 100%;
  flex: 0 1 calc((100% / 3) - 48px);
  margin-left: 48px;
  background: #fff;
  border-radius: 20px;
}
/*.home-treatment-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
*/
/*
.home-treatment-item a:hover {
  background: rgba(111, 102, 100, 0.1); /*#6f6664*/
/*}*/ 
.home-treatment-item figure {
  margin-bottom: 0;
}
.home-treatment-item figure img {
  border-radius: 20px 20px 0 0;
}
.home-treatment-item .text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.home-treatment-item .text h3 {
  font-size: 1.25em;
  font-weight: 500;
  color: #8aac86;
  margin-bottom: 5%;
}
.home-treatment-item .text p {
  text-align: left;
  margin-bottom: 8%;
}
.home-treatment-item .text .btn {
  font-size: 0.9em;
  margin-top: auto;
  padding: 1.2em 1em;
}
.triangle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-bottom: 12px solid #8aac86;
}
.home-treatment-sub{
  margin-top: 72px;
}
.home-treatment-sub-ttl {
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: 24px;
}
.home-treatment-sub-list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-bottom: 24px;
}
.home-treatment-sub-list li {
  list-style-type: none;
  width: 100%;
  flex: 0 1 calc((100% / 5) - 24px);
  font-size: 1em;
  font-weight: 500;
  color: #8aac86;
  margin-left: 24px;
  padding: 2%;
  background: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .home-treatment-container {
    margin-top: 24px;
    margin-left: -12px;
  }
  .home-treatment-item {
    flex: 0 1 calc((100% / 3) - 12px);
    margin-left: 12px;
  }
  .home-treatment-item .text {
    padding: 16px;
  }
  .home-treatment-item .text h3 {
    font-size: 1.25em;
  }
  .home-treatment-item .text .btn {
    font-size: 0.8em;
  }
  .home-treatment-sub-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
  }
  .home-treatment-sub-list li {
    flex: 0 1 calc((100% / 5) - 8px);
    margin-left: 8px;
    padding: 1%;
  }
}
@media screen and (max-width: 768px) {
  #home-about {
    margin-bottom: 10%;
  }
  #home-treatment {
    margin-bottom: 10%;
  }
  .home-treatment-container {
    flex-direction: column;
    margin-left: 0;
  }
  .home-treatment-item {
    flex: 1;
    margin-left: 0;
    margin-bottom: 5%;
    border-radius: 10px;
  }
  .home-treatment-item figure img {
    border-radius: 10px 10px 0 0;
  }
  .home-treatment-sub {
    margin-top: 5%;
  }
  .home-treatment-sub-ttl {
    font-size: 1.25em;
  }
  .home-treatment-sub-list {
    justify-content: center;
    margin-left: -3%;
    margin-bottom: 3%;
  }
  .home-treatment-sub-list li {
    flex: 0 1 calc((100% / 2) - 3%);
    font-size: 1em;
    margin-left: 3%;
    margin-bottom: 3%;
    padding: 3%;
    border-radius: 10px;
  }
}
#home-clinic-gallery {
  margin-bottom: 96px;
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}
.clinic-gallery-slider {
  margin-top: 48px;
}
.clinic-gallery-slider .slick-slide {
  opacity: .5;
  transform: scale(.9);
  transition: transform .3s ease, opacity .3s ease;
}
.clinic-gallery-slider .slick-center {
  opacity: 1;
  transform: scale(1);
}
.clinic-gallery-slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.clinic-gallery-slider .slick-dots {
  margin-top: 18px;
}
.clinic-gallery-slider .slick-dots li button:before {
  font-size: 8px;
  opacity: 1;
  color: #6f6664;
}
.clinic-gallery-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #6f6664;
  font-size: 12px;
}
.clinic-gallery-slider .slick-dots li.slick-active button:before {
}
@media (max-width: 768px) {
  #home-clinic-gallery {
    margin-bottom: 10%;
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .clinic-gallery-slider {
    margin-top: 5%;
  }
  .clinic-gallery-slider .slick-slide {
    opacity: 1;
  }
  .clinic-gallery-slider img {
    border-radius: 10px;
  }
}
#home-equipment {
	
}
#access {
  padding-top: 120px;
  margin-top: -120px;
  margin-bottom: 96px;
}
#access ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 48px;
  margin-bottom: 48px;
}
#access ul li {
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: #fff;
  border-radius: 20px;
}
#access ul li.access-car {
  width: 100%;
}
.access-car-content {
  width: 100%;
  display: flex;
  align-items: center;
}
.access-car-content .access-car-content-text {
  width: 37%;
  text-align: left;
  margin-right: 3%;
}
.access-car-content .access-car-content-text p:first-of-type {
  margin-top: 5%;
  margin-bottom: 5%;
}
.access-car-content figure {
  width: 60%;
  margin: 0;
}
.access-car-content figure img{
	border-radius: 20px;
}
#access ul li:not(.access-car) {
  width: calc(50% - 24px);
}
#access ul li h3 {
  font-size: 1.25em;
  color: #8aac86;
  font-weight: 500;
  margin-bottom: 2%;
}
#access ul li h3 i {
  margin-right: 8px;
}
#access .iframe-content {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 40%;
  border-radius: 20px;
}
#access .iframe-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: -3px 0 0 0 !important;
  padding: 0;
}
@media screen and (max-width: 820px) {
  #access ul li {
    padding: 5%;
  }
}
@media screen and (max-width: 767px) {
  #access {
    margin-bottom: 10%;
  }
  #access ul li {
    margin-bottom: 5%;
    border-radius: 10px;
  }
  #access ul {
    flex-direction: column;
    gap: 0;
    margin-bottom: 5%;
  }
  .access-car-content {
    flex-direction: column;
  }
  .access-car-content .access-car-content-text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 3%;
  }
  .access-car-content .access-car-content-text h3 {
    text-align: center;
  }
  .access-car-content .access-car-content-text p:first-of-type {
    margin-top: 3%;
  }
  .access-car-content figure {
    width: 100%;
  }
  #access ul li:not(.access-car) {
    width: 100%;
  }
  .access-car-content figure img {
    border-radius: 10px;
  }
  #access .iframe-content {
    padding-top: 100%;
    border-radius: 10px;
  }
}
/* ------------------------------------- 
 *	Pagetitle
 * ------------------------------------- */
#pagettl {
  position: relative;
  width: 100%;
  height: 288px;
  margin-bottom: 48px;
}
#pagettl:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
  width: 95%;
  margin-left: 5%;
  border-radius: 20px 0 0 20px;
  background: rgba(255, 255, 255, .75);
}
#pagettl img {
  width: 95%;
  height: 100%;
  object-fit: cover;
  margin-left: 5%;
  border-radius: 20px 0 0 20px;
}
.pagettl-txt {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.pagettl-txt h1 {
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
}
ul.breadcrumb {
  text-align: left;
	line-height: 1.2;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 72px;
}
ul.breadcrumb li {
  list-style-type: none;
  display: inline;
  font-size: 0.8em;
}
ul.breadcrumb li a {
  color: #8aac86;
}
ul.breadcrumb li a:hover {
  color: #00AA83;
}
.page-intro {
  margin-bottom: 72px;
}
.page-intro p{
  margin-bottom: 24px;
  }
  .page-intro p:last-of-type {
    margin-bottom: 0;
  }
@media screen and (min-width: 767px) and (max-width: 1024px) {
  ul.breadcrumb {
    margin-left: 5%;
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 768px) {
  #pagettl {
    height: 192px;
    margin-bottom: 3%;
  }
  #pagettl:before {
    width: 97%;
    margin-left: 3%;
    border-radius: 10px 0 0 10px;
  }
  #pagettl img {
    width: 97%;
    margin-left: 3%;
    border-radius: 10px 0 0 10px;
  }
  #pagettl h1 {
    font-size: 1.5em;
  }
  ul.breadcrumb {
    margin-left: 3%;
    margin-bottom: 8%;
  }
  .page-intro {
    text-align: left;
    margin-bottom: 10%;
  }
}
#about {
  padding-bottom: 72px;
}
@media screen and (max-width: 767px) {
  #about  {
    margin-bottom: 10%;
  }
}
#cataract {
}
#lens{
	margin-bottom: 48px;
}
.cataract-lens-detail{
  margin-top: 48px;
}
.cataract-lens-detail h2{
  font-size: 1.25em;
  font-weight: 500;
  margin-bottom: 24px;
}
.lens-card-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
  margin-left: -48px;
  margin-bottom: 48px;
}
.lens-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 0 1 calc((100% / 3) - 48px);
  margin-left: 48px;
  padding: 24px;
  background: rgba(243, 244, 241, .3); /*#f3f4f1;*/
  border-radius: 10px;
}
.lens-card h3 {
  min-height: 2em;
  font-size: 1.25em;
  font-weight: 500;
  color: #8aac86;
}
.lens-card h3 span {
  font-size: 0.8em;
  font-weight: 400;
}
.lens-card p {
  text-align: left;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .lens-card-wrap {
    margin-left: -24px;
  }
  .lens-card {
    flex: 0 1 calc((100% / 3) - 24px);
    margin-left: 24px;
    padding: 16px;
  }
  .lens-card h3 {
    min-height: 3em;
    font-size: 1.25em;
    font-weight: 500;
    color: #8aac86;
  }
}
@media screen and (max-width: 768px) {
#lens{
	margin-bottom: 16px;
}
  .lens-card-wrap {
    flex-direction: column;
    margin-left: 0;
  }
  .lens-card {
    flex: 1;
    margin-left: 0;
    margin-bottom: 5%;
  }
  .cataract-lens-note {
    text-align: left;
  }
}
#contactlens{}
#contactlens-policy{
	margin-bottom: 48px;
}
.contactlens-policy h2{
  margin-bottom: 48px;
}
.contactlens-policy-item{
  margin-bottom: 48px;
  padding: 24px;
  background: rgba(243, 244, 241, .3); /*#f3f4f1;*/
  border-radius: 20px;
}
.policy-head {
  text-align: center;
  margin-bottom: 24px;
}
.policy-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 96px;
  margin-bottom: 24px;
  color: #6f6664; 
}
.policy-head h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #ee9e3f;
}
.contactlens-policy-body{
  text-align: left;
}
.contactlens-policy-body p {
  margin-bottom: 2%;
}
.contactlens-policy-bodyp:last-of-type {
  margin-bottom: 0;
}
.contactlens-note h3 {
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .contactlens-note p {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  #contactlens-policy {
    margin-bottom: 16px;
  }
  .contactlens-policy-item {
    padding: 16px;
    border-radius: 10px;
  }
  .policy-head h3 {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.3;
  }
  .contactlens-note h3 {
    line-height: 1.2;
  }
}
#treatment {
  padding-bottom: 72px;
}
.treatment-nav {
  margin-bottom: 72px;
}
.treatment-nav h3 {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1;
  color: #8aac86;
  margin-bottom: 24px;
}
.treatment-nav ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
}
.treatment-nav li {
  display: flex;
  list-style-type: none;
  width: 100%;
  flex: 0 1 calc((100% / 4) - 24px);
  margin-left: 24px;
  margin-bottom: 24px;
}
.treatment-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #8aac86;
  font-size: 1em;
  font-weight: 500;
  padding: 8% 3%;
  background: #fff;
  border-radius: 5px;
}
.treatment-nav li a:hover {
  color: #FFF;
  background: #8aac86;
}
.symp {
  color: #8aac86;
  margin-bottom: 48px;
  padding: 24px;
  background: rgba(243, 244, 241, .3); /*#f3f4f1;*/
  border-radius: 10px;
}
.symp h3 {
  font-size: 1em;
  font-weight: 500;
  color: #8aac86;
  margin-bottom: 24px;
}
.symp ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style-type: none;
}
.symp li {
  width: 100%;
  flex: 0 1 calc((100% / 2) - 16px);
  position: relative;
  padding: 0 0 0 1.25em;
}
.symp li::before {
  position: absolute;
  left: 0;
  top: 0.25em;
  font-size: 0.8em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f00c';
  color: #8aac86;
}
@media screen and (max-width: 768px) {
  .treatment-nav ul {
    margin-left: -3%;
  }
  .treatment-nav li {
    flex: 0 1 calc((100% / 4) - 3%);
    margin-left: 3%;
    margin-bottom: 3%;
  }
}
@media screen and (max-width: 767px) {
  #treatment {
    margin-bottom: 0;
  }
  .treatment-nav {
    margin-bottom: 10%;
  }
  .treatment-nav h3 {
    font-size: 1.2em;
    margin-bottom: 5%;
  }
  .treatment-nav ul {
    margin-left: -3%;
  }
  .treatment-nav li {
    flex: 0 1 calc((100% / 2) - 3%);
    margin-left: 3%;
    margin-bottom: 3%;
  }
  .symp {
    margin-bottom: 10%;
    padding: 5%;
  }
  .symp h3 {
    margin-bottom: 5%;
  }
  .symp ul {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0;
  }
  .symp li {
    flex: 1;
    margin-bottom: 2%;
  }
}
#equipment {
  padding-bottom: 72px;
}
.equipment-container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.equipment-item {
  width: calc((100% - 48px) / 2);
  margin-bottom: 5%;
}
.equipment-item figure {
  width: 80%;
  margin: 0 auto 5%;
  padding: 3%;
  background: #fff;
  border-radius: 20px;
}
.equipment-item .text h3 {
  display: inline-block;
  font-size: 1em;
  color: #8aac86;
  line-height: 1;
  font-weight: 500;
  padding: 0.8em 2em;
  border: 1px solid #8aac86;
  border-radius: 100vh;
  margin-bottom: 5%;
}
.equipment-item .text h4 {
  font-size: 1.2em;
  font-weight: 500;
    line-height: 1.2;
  margin-bottom: 5%;
}
.equipment-item .text h5 {
  font-size: 1em;
  font-weight: 300;
  color: #8aac86;
  margin-bottom: 2%;
}
.equipment-item .text p {
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .equipment-item .text h3 {
    font-size: 0.85em;
    line-height: 1.2;
    padding: 0.8em 1em;
  }
}
@media screen and (max-width: 767px) {
  #equipment {
    margin-bottom: 0;
  }
  .equipment-container {
    flex-direction: column;
    gap: 0;
  }
  .equipment-item {
    width: 100%;
    margin-bottom: 10%;
    border-radius: 10px;
  }
  .equipment-item figure {
    width: 100%;
    border-radius: 10px;
  }
  .equipment-item .text h3 {
    font-size: 0.9em;
    line-height: 1.2;
    padding: 0.8em 1em;
  }
}
/* ------------------------------------- 
 *	single.php
 * ------------------------------------- */
#news {}
#news-main-contents {
  text-align: left;
  padding: 48px;
  background: #fff;
  border-radius: 20px;
}
.news-archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-archive-item {
  display: flex;
  align-items: baseline;
  gap: 1.2em;
  padding: 12px 0;
}
.news-date {
  flex: 0 0 7.5em;
  font-size: 0.9em;
  color:rgba(111,102,100,.5);
  white-space: nowrap;
}
.news-title {
  flex: 1;
  text-decoration: none;
  line-height: 1.6;
}
.entry-header {
  margin-bottom: 48px;
}
.entry-header .entry-ttl {
  font-size: 1.5em;
  font-weight: 500;
  /*color: #8aac86;*/
	line-height: 1.2;
  margin-bottom: 8px;
}
.entry-state {
  font-size: 0.8em;
  color:rgba(111,102,100,.5);
}
.entry-content {
  line-height: 1.8;
}
.entry-content > p:not(:last-child) {
  margin-bottom: 1.6em;
}
.noentry {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #news-main-contents {
    padding: 5%;
    border-radius: 10px;
  }
  .news-archive-item {
    flex-direction: column;
    gap: 4px;
  }
  .news-date {
    flex: none;
    font-size: 0.8em;
  }
  .entry-header {
    margin-bottom: 5%;
  }
  .entry-header .entry-ttl {
    font-size: 1.2em;
	  margin-bottom: 0;
  }
}
/* ------------------------------------- 
 *	contact
 * ------------------------------------- */
#contact {
  padding-bottom: 96px;
}
#contact .contact-container {
  max-width: 792px;
  margin: 0 auto;
}
.contact-tel {
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-sizing: border-box;
  margin-top: 96px;
  margin-bottom: 96px;
  padding: 48px;
  border: 1px solid #eee;
}
#contact h3 {
  font-size: 1.2em;
  font-weight: 400;
}
.contact-tel-num a {
  color: #00AA83;
  font-size: 2em;
  font-weight: 400;
}
.contact-tel-num i {
  margin-right: 8px;
}
.contact-form {
  box-sizing: border-box;
  margin-top: 48px;
  padding: 48px;
  border: 1px solid #eee;
}
.contact-form h3 {
  color: #00AA83;
  margin-bottom: 48px;
}
.contact-form p {
  margin-bottom: 48px;
}
#contact table {
  text-align: left;
  box-sizing: border-box;
  border-collapse: collapse;
  margin: 0 auto 48px;
}
#contact table tr:last-child {
  border-bottom: none;
}
#contact table tr {
  border-bottom: 1px solid #CCC;
}
#contact table th, #contact table td {
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 16px 0;
}
#contact table th {
  width: 200px;
  font-weight: 400;
}
#contact table td {
  width: auto !important;
}
#contact span.memo {
  font-size: 0.8em;
  font-weight: normal;
  margin-left: 8px;
}
#contact span.check {
  font-size: 0.6em;
  color: #FFF;
  font-weight: normal;
  margin-left: 8px;
  padding: 4px;
  background: #fb1a05;
}
#contact span.solo {
  font-size: 0.8em;
  color: #333;
  font-weight: normal;
  margin-left: 8px;
}
#contact .est {
  display: block;
  font-size: 0.8em;
  font-weight: normal;
  margin-top: 8px;
  margin-right: 8px;
}
#contact input.text, #contact textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}
#contact input.text, #contact textarea {
  width: 100%;
  display: block;
  font-size: 16px;
  box-sizing: border-box;
  padding: 12px 15px;
  border: 1px solid #ccc;
  background: #FFF;
  transition: border-color 0.2s ease, outline 0.2s ease;
}
#contact input.text::placeholder, #contact textarea::placeholder {
  font-size: 12px;
}
#contact input#zip {
  width: 50% !important;
  margin-bottom: 8px;
}
#contact input.text:focus, #contact textarea:focus {
  outline: 0;
  border: 1px #009cc5 solid;
}
#contact textarea {
  height: 10%;
}
#contact .finalcheck {
  margin-bottom: 24px;
}
#contact input.wpcf7c-btn-back, #contact input.wpcf7-submit, #contact input.wpcf7-confirm {
  padding: 0 48px;
}
#contact .wpcf7-form-control.wpcf7-acceptance {
  display: block;
  text-align: center;
}
#contact input.wpcf7-confirm, #contact input.wpcf7-submit {
  box-sizing: border-box;
  font-size: 1.2em;
  color: #FFF;
  text-align: center;
  font-weight: normal;
  border-style: none;
  margin: 0 auto;
  padding: 16px 48px;
  background: #00AA83;
  border-radius: 5px;
  transition: 0.3s;
  -webkit-appearance: none;
}
#contact .submitBtn {
  margin-bottom: 48px;
}
#contact .wpcf7-submit {
  display: block;
}
#contact .wpcf7-submit:hover {
  background-color: rgba(251, 26, 5, 0.5); /*#fb1a05*/
}
#contact .wpcf7-list-item {
  /*display: block!important; ラジオボタン縦並び*/
}
/*応答ボックスメッセージを非表示*/
#contact .wpcf7-mail-sent-ok {
  display: none !important;
}
#contact .recaptcha {
  text-align: center;
  font-size: 0.8em;
  margin: 0 auto;
}
#contact .recaptcha a {
  color: #00AA83;
}
@media screen and (max-width: 1024px) {
  #contact .contact-container {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .contact-tel {
    flex-direction: column;
    margin-top: 8%;
    margin-bottom: 8%;
    padding: 5%;
  }
  #contact h3 {
    font-size: 1em;
  }
  .contact-tel-Ttl {
    margin-bottom: 5%;
  }
  .contact-tel-num a {
    font-size: 1.5em;
  }
  .contact-form {
    padding: 5%;
  }
  .contact-form h3 {
    margin-bottom: 5%;
  }
  .contact-form p {
    text-align: left;
    margin-bottom: 5%;
  }
  #contact table {
    margin: 0 auto 5%;
  }
  #contact table th, #contact table td {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 5% 0;
  }
  #contact table th {
    padding-bottom: 0;
  }
  #contact input#zip {
    width: 100% !important;
  }
  #contact select {
    width: 100% !important;
  }
  #contact .wpcf7-form-control.wpcf7-acceptance {
    text-align: left;
  }
  #contact input.wpcf7-confirm, #contact input.wpcf7-submit {
    font-size: 1em;
    margin: 0 auto;
    padding: 5% 8%;
  }
  #contact .submitBtn {
    text-align: center;
    margin: 5% auto;
  }
}
#thanks p {
  margin-bottom: 48px;
}
#notFound{
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px 16px;
}
.notFoundBox{
  position: static;
  transform: none;
  width: min(520px, 100%);
  /*background-color: rgba(255, 255, 255);
  padding: 48px;
  border-radius: 20px;*/
}
.notFoundBox h2 {
  font-size: 1.2em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .notFoundBox {
    margin-bottom: 15%;
    padding: 8% 5%;
    border-radius: 10px;
  }
  .notFoundBox h2 {
    font-size: 1em;
  }
}
/*recaptcha*/
.grecaptcha-badge {
  visibility: hidden;
}

/* Simple Lightbox：スマホ時に画像を中央寄せ */
@media (max-width: 768px) {
  #slb_viewer_wrap .slb_image_wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100vh !important;
  }

  #slb_viewer_wrap .slb_image_wrap img {
    max-height: 90vh !important;
    width: auto !important;
  }
}