@charset "UTF-8";
body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666565;
  background-color: #EFFDF5;
  font-family:  "Heebo",sans-serif, "Noto Serif", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
}

.layout_padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: flex;
}
.heading_container h2 {
  color: #252525;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.heading_container h2::before {
  content: "";
  width: 60px;
  height: 3px;
  position: absolute;
  top: 50%;
  right: -5px;
  background-color: #00b98e;
  transform: translate(100%, -50%);
}


.sub_page {
  background-color: #fff;
}
.sub_page .hero_area {
  height: auto;
  background-image: none;
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 10000;
}
.sub_page ul {
  padding: 0;
}
.sub_page #topicpath {
  padding-top: 70px;
}

.hero_area.sub_pages {
  height: auto;
}

.navbar-collapse {
  background: rgba(242, 241, 237, 0.94);
  border-radius: 10px;
}

/* ヘッダー全体 */
.header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 5px 20px;
  justify-content: space-between; /* 左ロゴと右情報を分ける */
  align-items: center;            /* 縦方向センター */
}

/* ロゴ */
.navbar-brand img {
  height: 60px;
}

/* 右側2行レイアウト */
.header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;       /* 右端に寄せる */
  justify-content: center; /* 縦方向センター */
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
  .header_section {
    padding: 5px 0;
   }
  .header_section .container-fluid {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-info {
    text-align: left;
    margin-top: 5px;
  }
  .header-info .info-row {
    justify-content: flex-start;
    gap: 15px;
  }
}

/* 店舗名 */
.header-info .shop {
  font-size: 18px;
  font-weight: bold;
  color: #d33;
  text-align: left;
  /*line-height: 1.2;*/
}

/* 電話番号 */
.header-info .number {
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  color: #d33;
}

/* 営業時間・定休日 */
.header-info .time {
  font-size: 14px;
  color: #333;
  text-align: right;
  padding-top: 6px;
  width: 165px;
}

/* 行の整列（店舗TEL + 営業時間/定休日） */
.header-info .info-row {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  text-align: left;
  line-height: 1.2;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .header-info .shop {
    font-size: 14px;
   }
  .header-info .number{
    font-size: 14px;
    padding-top: 0px;
   }
  .header-info .time {
    font-size: 13px;
    padding-top: 0px;
   }
}


/* ヘッダー固定＆半透明 */
.header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8); /* 半透明 */
}
/* ヒーロー背景を潜り込ませる */
.hero {
  position: relative;
  margin-top: -70px; /* ヘッダー高さ分だけ余白 */
  height: 850px; /* ヒーローエリアの高さを調整 */
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を天地に拡大 */
}
/* オーバーレイ部分は前面に */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* 上寄せ */
  padding: 100px 150px 0; /* 上を100pxに調整 */
  z-index: 5;
}

/* キャッチコピーと右バナーを重ねる */
.hero-overlay {
  position: relative;
  z-index: 1; /* 背景より前面 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 150px; /* 左右余白 */
}

/* 左側キャッチコピー */
.hero-left img {
  max-width: 100%;
  height: auto;
}

/* 右側縦バナー */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start; /* 左揃え */
  margin-top: 0; /* 上余白を削除してキャッチコピーと揃える */
}
.hero-right a img {
  display: block;
  max-width: 100%;
  height: auto;
}
/* コンテンツはヘッダー分だけ下げる */
#contents {
  position: relative;
  z-index: 1;
  padding-top: 0px; /* ヘッダー高さ分 */
}
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding: 10px 15px;
  color: #060606;
  text-align: center;
  text-transform: uppercase;
}
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link, .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
  opacity: 0.4;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.custom_nav-container form {
  padding-top: 7px;
}

.navbar-brand {
  margin-right: 5%;
  display: flex;
  align-items: center;
}
.navbar-brand img {
  width: 100%;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
  height: 70px;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}
.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 50px;
  width: 30px;
  height: 30px;
}

.lg_toggl-btn {
  background-color: transparent;
  border: none;
  outline: none;
  width: 56px;
  height: 40px;
  cursor: pointer;
}
.lg_toggl-btn:focus {
  outline: none;
}

.login_btn-container {
  padding-top: 30px;
}
.login_btn-container a {
  color: #00b98e;
  text-transform: uppercase;
}

/*end header section*/
/* slider section */
.slider_section {
  height: calc(90% - 70px);
  display: flex;
  align-items: center;
}
.slider_section .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.slider_section .number_box {
  width: 50px;
  position: absolute;
  right: 25px;
  top: 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 22px;
}
.slider_section .number_box::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider_section .row {
  align-items: center;
}
.slider_section .detail-box h1 {
  color: #00b98e;
  text-transform: uppercase;
}
.slider_section .detail-box h1 span {
  font-size: 5rem;
  color: #252525;
}
.slider_section .detail-box p {
  margin-top: 15px;
}
.slider_section .detail-box .btn-box {
  margin-top: 45px;
}
.slider_section .detail-box .btn-box a {
  text-transform: uppercase;
  text-align: center;
  width: 135px;
  font-size: 15px;
}
.slider_section .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 6px 0;
  background-color: #00b98e;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 20px;
  margin-right: 5px;
}
.slider_section .detail-box .btn-box .btn-1:hover {
  background-color: transparent;
  border-color: #00b98e;
  color: #00b98e;
}
.slider_section .detail-box .btn-box .btn-2 {
  display: inline-block;
  padding: 6px 0;
  background-color: #252525;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 20px;
}
.slider_section .detail-box .btn-box .btn-2:hover {
  background-color: transparent;
  border-color: #252525;
  color: #252525;
}
.slider_section .img-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.slider_section .img-container .img-box {
  width: 250px;
}
.slider_section .img-container .img-box img {
  width: 100%;
}
.slider_section .play_btn {
  background-color: #00b98e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 75px;
  height: 75px;
  position: absolute;
  z-index: 3;
  top: 56%;
  right: 32%;
}
.slider_section .play_btn a {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 75px;
  height: 75px;
  position: relative;
  z-index: 5;
}
.slider_section .play_btn img {
  width: 20px;
  margin-left: 3px;
}
.slider_section .play_btn::before {
  content: "";
  width: 75px;
  height: 75px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #00b98e;
  opacity: 1;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}
.slider_section .play_btn::before {
  z-index: 2;
  animation: before-animation 1500ms infinite;
}
@keyframes before-animation {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 1;
  }
}
.slider_section .carousel-indicators {
  margin: 0;
  align-items: center;
  justify-content: center;
  bottom: -150px;
}
.slider_section .carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #00b98e;
  opacity: 1;
  border: none;
  background-clip: unset;
}
.slider_section .carousel-indicators li.active {
  background-color: #252525;
}
.slider_section ol.carousel-indicators.indicator-2 {
  position: unset;
}
.slider_section ol.carousel-indicators.indicator-2 li {
  width: 25px;
  height: 25px;
  text-indent: 0px;
  text-align: center;
  line-height: 25px;
  color: #ffffff;
  margin: 0;
  background-color: transparent;
  opacity: 1;
  border: none;
  display: none;
}
.slider_section ol.carousel-indicators.indicator-2 li.active {
  display: block;
}

.about_section .row {
  align-items: center;
}
.about_section .detail-box p {
  margin-top: 20px;
}
.about_section .detail-box a {
  display: inline-block;
  padding: 7px 25px;
  background-color: #252525;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 20px;
  margin-top: 35px;
}
.about_section .detail-box a:hover {
  background-color: transparent;
  border-color: #252525;
  color: #252525;
}
.about_section .img-box img {
  width: 100%;
}

.trending_section {
  /*background-color: #f4f5f7;*/
}
.trending_section .tab_container .t-link-box {
  margin: 65px 0;
  color: #00b98e;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.trending_section .tab_container .t-link-box h5 {
  margin: 0;
}
.trending_section .tab_container .t-link-box hr {
  background-color: #00b98e;
  width: 60px;
  height: 1.5px;
  border: none;
  margin: 0 65px 0 5px;
}
.trending_section .tab_container .t-link-box .t-name {
  color: #252525;
}
.trending_section .tab_container .t-link-box:hover {
  cursor: pointer;
}
.trending_section .tab_container .t-link-box[aria-expanded=true] .t-name {
  color: #00b98e;
}
.trending_section .img_container {
  display: flex;
}
.trending_section .img_container .box {
  display: flex;
  flex-direction: column;
}
.trending_section .img_container .box .img-box {
  margin: 15px;
}
.trending_section .img_container .box .img-box img {
  width: 100%;
}
.trending_section .img_container .box.b-1 {
  padding-top: 35px;
}

.discount_section .row {
  align-items: center;
}
.discount_section .detail-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.discount_section .detail-box h2 {
  padding-left: 45px;
}
.discount_section .detail-box h2.main_heading {
  font-size: calc(1.375rem + 1.5vw);
  padding: 0;
  color: #00b98e;
  text-transform: uppercase;
}
.discount_section .detail-box a {
  display: inline-block;
  padding: 6px 30px;
  background-color: #252525;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 20px;
  margin-top: 25px;
}
.discount_section .detail-box a:hover {
  background-color: transparent;
  border-color: #252525;
  color: #252525;
}
.discount_section .img-box img {
  width: 100%;
}

.brand_section .brand_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.brand_section .brand_container .box {
  position: relative;
  text-align: center;
  background-color: #e4e5e9;
  padding: 75px 35px 10px 35px;
  margin: 30px 10px 0 10px;
  min-width: 225px;
  flex: 0 0 23.2467%;
}
.brand_section .brand_container .box h6 {
  color: #252525;
}
.brand_section .brand_container .box h6.price {
  color: #00b98e;
}
.brand_section .brand_container .box .new {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 35px;
  background-color: #252525;
  color: #ffffff;
}
.brand_section .brand_container .box .new h6 {
  margin: 0;
}
.brand_section .brand_container .box .img-box img {
  width: 100%;
}
.brand_section .brand_container .box:hover {
  background-color: #00b98e;
}
.brand_section .brand_container .box:hover h6.price {
  color: #252525;
}
.brand_section .brand-btn {
  display: inline-block;
  padding: 6px 30px;
  background-color: #252525;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 20px;
  margin-top: 15px;
}
.brand_section .brand-btn:hover {
  background-color: transparent;
  border-color: #252525;
  color: #252525;
}

.contact_section {
  position: relative;
}
.contact_section .design-box {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 0;
  width: 75px;
}
.contact_section .design-box img {
  width: 100%;
}
.contact_section h2 {
  margin-bottom: 65px;
}
.contact_section form {
  padding-right: 35px;
}
.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: transparent;
  outline: none;
  color: #101010;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
}
.contact_section input::placeholder {
  color: #131313;
}
.contact_section input.message-box {
  height: 120px;
}
.contact_section button {
  display: inline-block;
  padding: 12px 45px;
  background-color: #00b98e;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 30px;
  border-radius: 30px;
  color: #fff;
  margin-top: 35px;
}
.contact_section button:hover {
  background-color: transparent;
  border-color: #00b98e;
  color: #00b98e;
}
.contact_section .map_container {
  height: 450px;
  padding-bottom: 110px;
}
.contact_section .map_container .map-responsive {
  height: 100%;
}

.client_section .custom_heading-container {
  justify-content: center;
}
.client_section .client_container {
  display: flex;
  align-items: flex-start;
}
.client_section .client_box {
  margin-left: 25px;
  margin-right: 25px;
  padding: 25px;
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.1);
}
.client_section .client_box .client-id {
  display: flex;
  align-items: center;
}
.client_section .client_box .client-id .img-box img {
  width: 100%;
}
.client_section .client_box .client-id .name {
  margin-left: 15px;
}
.client_section .client_box .client-id .name h5 {
  font-weight: bold;
}
.client_section .client_box .client-id .name p {
  color: #00b98e;
  margin: 0;
}
.client_section .client_box .detail {
  margin-top: 25px;
}
.client_section .client_box:hover {
  background-color: #f3f3f3;
  box-shadow: none;
}
.client_section .client_box:hover .arrow_img {
  background-image: url(../images/arrow-green.png);
}
.client_section .client_box .arrow_img {
  width: 50px;
  height: 30px;
  background-image: url(../images/arrow.png);
  background-size: 25px;
  background-repeat: no-repeat;
}

.info_section {
  background-color: #0f1521;
  color: #ffffff;
}
.info_section .info_logo {
  width: 80%;
  margin: 0 auto 45px auto;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #ffffff;
}
.info_section h2 {
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
}
.info_section h5 {
  margin-bottom: 25px;
  font-size: 24px;
  color: #ffffff;
}
.info_section .info_insta .insta_container > div {
  display: flex;
}
.info_section .info_insta .insta_container img {
  width: 100%;
}
.info_section .info_insta .insta_container .insta-box {
  margin: 5px;
  display: flex;
  align-items: stretch;
}
.info_section .info_contact .img-box {
  width: 35px;
  display: flex;
  justify-content: center;
}
.info_section .info_contact p {
  margin: 0;
}
.info_section .info_contact > div {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.info_section .info_contact > div img {
  height: auto;
  margin-right: 12px;
}
.info_section .info_form form input {
  outline: none;
  width: 100%;
  padding: 7px 10px;
}
.info_section .info_form form button {
  display: inline-block;
  padding: 8px 30px;
  background-color: #00b98e;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 0;
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 15px;
}
.info_section .info_form form button:hover {
  background-color: transparent;
  border-color: #00b98e;
  color: #00b98e;
}
.info_section .info_form .social_box {
  margin-top: 35px;
  width: 100%;
  display: flex;
}
.info_section .info_form .social_box a {
  margin-right: 25px;
}

/* footer section*/
footer {
  background-color: #EFFDF5;
  padding-bottom: 1px;
  /*position: absolute;
  bottom: 0px;
  width: 100%;*/
}
.footer_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fdfeff;
}

.footer_section p {
  color: #171717;
  margin: 0;
  padding: 25px 0 20px 0;
  margin: 0 auto;
  text-align: center;
}

.footer_section a {
  color: #171717;
}

/* end footer section*/
#navbarSupportedContent {
  transform: translateX(100vw);
  opacity: 0;
  transition: all 0.3s ease-in;
  justify-content: space-between;
  align-items: center;
}

#navbarSupportedContent.lg_nav-toggle {
  transform: translateX(0);
  opacity: 1;
}

.custom_menu-btn button {
  margin-top: 12px;
  outline: none;
  border: none;
  background-color: transparent;
}

.custom_menu-btn button span {
  display: block;
  width: 34px;
  height: 3.5px;
  background-color: #0e2e50;
  margin: 8.5px 0;
  transition: all 0.3s;
}

.custom_menu-btn .s-2 {
  transition: all 0.1s;
  width: 17px;
  margin-left: auto;
}

.menu_btn-style button .s-1 {
  transform: rotate(45deg) translate(7px, 10px);
}

.menu_btn-style button .s-2 {
  transform: translateX(100px);
}

.menu_btn-style button .s-3 {
  transform: rotate(-45deg) translate(7px, -10px);
}

.position-relative img {
  width: 100%;
  height: 244px;
  object-fit: cover;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: normal;
  color: inherit;
  font-family: inherit;
}/*# sourceMappingURL=style02.css.map */

/*================================================
 *  フッター
 ================================================*/
@media(min-width: 767px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}/*SPのみリンクをタップして電話を発信させる*/

#footer a{ color:#333; }

#footer {
margin:auto;
padding:0;
/*background:url(../img/common/footer_bg.jpg) 0 100% repeat-x;*/
background:#f7f7f7;
border-top:dotted 2px #A4A296;
width:100%; /*追記*/
/*height:163px; 追記*/
/*position:absolute; 追記*/
bottom:0; /*追記*/
clear:both;
}

#footer .innerFooter{
margin:0 auto;
padding:20px 10px 10px;
max-width:800px;
}

.footerBox{
float:left;
max-width:1200px;
margin:0 0 10px 0;
padding:20px 0;
/*background:#FCFAEE;
border:solid 3px #CECBC4;*/
border-radius:7px;
	-moz-border-radius:7px;
	-khtml-border-radius:7px;
	-webkit-border-radius:7px;
}

.footerLeftBox{ float:left; width:20%; /*margin:10px 0 0 27px;*/ text-align:center; }
.footerLeftBox img {
    width:100%;
}
.footerRightBox{ float:right; width:78%; /*height:197px;margin:0 27px 0 0; */ padding:15px 20px; background-image:url(../img/common/footer_balloon_bg.png); background-repeat: no-repeat; background-position: 60% 20%; background-color: #fff; border:3px solid #1E8E7C;border-radius: 10px;box-sizing: border-box;display: table; }

.footerRightBox1{ float:left; width:39%; margin:0 2px 0 10px; padding:15px 20px; background-color: #fff; border:3px solid #1E8E7C;border-radius: 10px;box-sizing: border-box;display: table; }
.footerRightBox2{ float:right; width:39%; padding:15px 20px; background-color: #fff; border:3px solid #1E8E7C;border-radius: 10px;box-sizing: border-box;display: table; }

/*左側*/
.footerLeftBox img{ margin:0 0 2px; }
.footerLeftBox img.footerlogo{ width: inherit;margin: 0 auto 13px;
-moz-appearance: none;
appearance: none; }

/*右側会社情報*/
.ftCompanyBox{ float:left; width:70%; /*margin:20px 0 0 95px;*/ }

.ftCompanyBox2{ float:right; width:30%; text-align: right;/*margin:20px 0 0 95px;*/ }
.ftCompanyBox2 img{ height: 170px;}

.ftShopName{
margin:0 0 8px 0;
padding:0 0 0px 0;
/*background-image:url("../img/common/line_bg.jpg"), url("../img/common/footer_balloon_bg.png");
background-repeat:repeat-x, no-repeat;
background-position:bottom left,top right;*/
font-size:144%;
font-weight:bold;
line-height:2.0em;
/*border-bottom: dotted 1px #A4A296;
width:470px;*/
}

.ftComName{ margin:0; padding:0; font-size:122%; font-weight:bold; line-height: 1.0em;}
.ftComName span{ padding:0; color:#605A56; font-size:70%; font-weight:normal; }

.ftComTel{ float:left; /*width:235px;*/ margin:0; padding:0; color:#ef8000; font-size:219%; font-weight:bold; font-family:Meiryo, 'メイリオ'; }
.ftComTel a{ color:#ef8000 !important; }

.ftComInfo{ float:left; /*width:275px;*/ margin:22px 0 0 5px; padding:0; color:#1E8E7C; font-size:100%; font-weight:bold; line-height:1.0em; }

.ftCompanyBox ul{ margin:6px 0 2px 0; list-style-position:inside; border-top:dotted 1px #A4A296; }

.footer_logo {
    display:inline-block;
    padding:0 0 20px;
}
.innerFooter {
    display:inline-block;
    width:70%;
    text-align:left;
}
/*.innerFooter ul li{ display:table-cell; margin:0; padding:10px 20px 20px 0; font-size:84%; font-weight:bold; }
.innerFooter ul li a{ background:url(../img/common/footer_arrow.jpg) 0 40% no-repeat; padding:2px 0 2px 18px; }*/
.innerFooter ul {
    text-align: left;
}
.innerFooter ul li {
	position: relative;
    display: inline-block;
    margin: 0 15px 5px;
}
.innerFooter ul li::after,
.innerFooter ul li::before {
	display: block;
	content: '';
	position: absolute;
}
.innerFooter ul li::after {
	top: .35em;
	left: -1.2em;
	width: 14px;
	height: 14px;
	background-color: #1E8E7C;
	border-radius: 100%;
}
.innerFooter ul li::before {
	z-index: 2;
	top: .625em;
	left: -.975em;
	width: 4px;
	height: 4px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.innerFooter ul li a {
    font-weight: bold;
    font-size:0.9em;
}

/*右側ボタン*/
.ftBtnBox{ float:right; width:128px; height:140px; margin:28px 12px 0 0; background:url(../img/common/footer_btn_bg.jpg) 0 0 no-repeat; }
.ftBtnBox p{ margin:0 0 0 -5px; padding:106px 0 0 0; font-size:122%; font-weight:bold; text-align:center; }
.ftBtnBox p a{
margin:0;
padding:0 20px 0 20px;
background-image:url("../img/common/btn_arrow_left.png"), url("../img/common/btn_arrow_right.png");
background-repeat:no-repeat, no-repeat;
background-position:left,right;
}

address {
max-width:1200px;
margin:0;
padding:0;
font-size:77%;
color:#666;
text-align:center;
font-style:normal !important;
}
.ftShopName {
        width:100%;
        color:black;
    }
    
/* デフォルト：スマホなど小さい画面用 */
.link-large a {
  font-size: 16px; /* 小さい画面用 */
  font-family: "DNP 秀英丸ゴシック Std", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000000; /* 文字色を黒に固定 */
  text-decoration: none; /* 必要に応じて下線を消す */
}

/* タブレット以上 */
@media (min-width: 768px) {
  .link-large a {
    font-size: 20px;
    color: #000000;
  }
}

/* PC以上 */
@media (min-width: 1200px) {
  .link-large a {
    font-size: 24px;
    color: #000000;
  }
}
.link-large {
  margin-bottom: 10px; /* 緑線との隙間を詰める */
}
/* 調整用変数（必要に応じて変更） */
:root{
  --gap-mobile: 8px;    /* スマホと小画面での隙間 */
  --gap-tablet: 10px;   /* タブレット */
  --gap-desktop: 12px;  /* PC */
}

/* リンク群（フォント・色・サイズ・間隔） */
.link-large {
  margin-bottom: var(--gap-mobile) !important; /* mb-115 を上書き */
  text-align: center;
}

/* リンク自体 */
.link-large a {
  display: inline-block;       /* 間隔調整しやすくする */
  margin-right: 12px;          /* リンク同士のスペース */
  font-family: "DNP 秀英丸ゴシック Std", "DNP Shuei Maru Gothic Std",
               "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000000;              /* 文字色を黒で固定 */
  text-decoration: none;       /* 下線を消す（必要なければ削除） */
  line-height: 1;              /* 下余白の調整を安定させる */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* レスポンシブ：タブレット以上 */
@media (min-width: 768px) {
  .link-large { margin-bottom: var(--gap-tablet) !important; }
  .link-large a { font-size: 20px; }
}

/* レスポンシブ：PC以上 */
@media (min-width: 1200px) {
  .link-large { margin-bottom: var(--gap-desktop) !important; }
  .link-large a { font-size: 24px; }
}

/* もし .container-fluid（上の wrapper）の padding が隙間を作っているなら調整 */
/* 影響範囲が広い場合はより具体的なセレクタに置き換えてください */
.container-fluid.bg-white.mb-5 {
  padding-bottom: 10px !important; /* 必要に応じて 0〜20px の範囲で調整 */
}

/* 緑ラインと完全にくっつけたいとき（注意して使ってください） */
/* .link-large の margin-bottom を 0 にして .container-fluid の padding-bottom も 0 に */

/* ヘッダー */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.main-visual {
  position: relative;        /* 子要素を絶対配置する基準 */
  display: inline-block;     /* 必要なら幅を画像に合わせる */
}

.main-visual img {
  display: block;
  width: 100%;               /* 横幅いっぱいに */
  height: auto;
}

/* キャッチコピーの位置調整 */
.main-visual .catchcopy {
  position: absolute;
  top: 20px;                 /* 上からの距離 */
  left: 20px;                /* 左からの距離 */
}

/* 縦並びバナー群 */
.main-visual .side-banners {
  position: absolute;
  top: 100px;                /* 好きな位置に調整 */
  left: 20px;
  display: flex;
  flex-direction: column;    /* 縦並び */
  gap: 10px;                 /* バナーの間隔 */
}

/* ===== スマホ対応 ===== */
@media screen and (max-width: 767px) {
  .main-visual {
    height: auto; /* 可変 */
    padding: 100px 20px 40px; /* 上余白 */
    text-align: center;
  }

  .catchcopy {
    position: static; /* 絶対配置解除 */
    margin-bottom: 20px;
  }
  .catchcopy img {
    max-width: 90%; /* スマホ幅にフィット */
  }

  .side-banners {
    position: static; /* 絶対配置解除 */
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .side-banners img {
    width: 80%;
    max-width: 300px;
  }
    
  .innerFooter,
  .footerLeftBox,
  .footerRightBox1,
  .footerRightBox2 {
    width:100%;
    margin:5px 0px;
  }
  .ftShopName {
    font-size:130%;
    line-height:1em;
    }
  .ftComTel {
    font-size:200%;
    }
}

/* catchcopy の下に縦並び表示 */
.side-banners {
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: center;    /* 中央揃え（必要なければ消してOK） */
  margin-top: 20px;
}

.side-banners a {
  margin: 10px 0; /* バナー間の余白 */
  display: block;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100% !important;
}

.hero-bg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  box-sizing: border-box;
}

.hero-left {
  flex: 1;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: 30px;
  top: 180px;
}
.hero-right .member {
  position:absolute;
  top:90px;
  left:130px;
  font-size:20px;
  font-weight:bold;
  color: #d33; 
}
.hero-right .open {
  position:absolute;
  top:130px;
  left:130px;
  font-size:20px;
  font-weight:bold;
  color:#333;  
}
.hero-right small {
  font-weight:normal;
}
.hero_area {
  height: 100vh;
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero_area::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 100%;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .hero_area {
    height: 125vh !important;
  }
  .hero-overlay {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-left img {
    max-width: 80%;
    height: auto;
    margin-bottom: 15px;
    position: absolute;
    top: 210px;
    filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.7));
  }

  .hero-right {
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    top:350px;
    right:unset;
  }

  .hero-right img {
    max-width: 70%;
    height: auto;
  }
  .hero-right .member,
  .hero-right .open {
    left:210px;    
  }
}
.hero_area {
  position: relative;
}

.hero-bg {
  width: 100%;
  height: auto;
  position: absolute; /* 背景として配置 */
  top: 0;
  left: 0;
  z-index: -1; /* 背景より後ろにする */
}

.hero-overlay {
  position: relative;
  z-index: 1; /* キャッチコピーやバナーを前面に */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}

.hero-left img,
.hero-right a img {
  display: block;
  max-width: 100%;
}
.hero-left img,
.hero-right a img {
  display: block;
  max-width: 100%;
}
@media (min-width: 769px) {
.hero-left img {
  display: block;
  max-width: 100%;
  position:absolute;
  top:170px;
  left:8px;
}

/* === Heroエリアの固定高さ（500px）にする === */
.hero_area {
  height: 755px !important;        /* 高さを500px固定 */
  background-size: cover !important; /* 画像を天地いっぱいに */
  background-position: center center !important; /* 画像を中央配置 */
}

/* 市区名（アコーディオン見出し） */
[id^="schoolarea"] h4,
[id^="schoolarea"] h4 label,
[id^="schoolarea"] h4 span {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px 0;
  margin-top: 25px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333 !important;
}

/* 小さなシンプルアイコン（▶ を CSS で生成） */
[id^="schoolarea"] h4::before {
  content: "▶";
  font-size: 0.9rem;
  color: #009481;
  transition: 0.2s;
}

/* 開いているときのアイコン（向きを変える） */
[id^="schoolarea"] h4.open::before {
  transform: rotate(90deg);
}

/* 小学校区 / 中学校区 タイトル */
.PrimarySchool, .JuniorHighSchool {
  font-weight: 700;
  margin: 16px 0 6px 0;
  color: #009481;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 4px;
}

/* 学校区のリスト */
[id^="schoolarea"] ul li {
  list-style: none;
  margin: 6px 0;
}

/* チェックボックスの見た目 */
input[type="checkbox"] {
  accent-color: #009481; /* シンプルかつ綺麗に変わる */
  transform: scale(1.3);
  margin-right: 6px;
}

/* 学校名 (リンク風) */
[id^="schoolarea"] ul li span {
  color: #333;
  transition: 0.2s;
}
[id^="schoolarea"] ul li:hover span {
  color: #009481;
}

/* 都道府県ラベル */
.ShoolSearchPref {
  margin-top: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #444;
  border-left: 6px solid #009481;
  padding-left: 10px;
}

/* 検索ボタン */
.form_button input[type="submit"] {
  background: linear-gradient(90deg, #009481, #00b29d);
  color: white;
  border: none;
  padding: 14px 50px;
  font-size: 1.2rem;
  border-radius: 30px;
  display: block;
  margin: 40px auto;
  font-weight: bold;
  transition: 0.3s;
}
.form_button input[type="submit"]:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}