@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
}

body {
  color: #fff;
  background-color: #F5E6D3;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

a, th, td {
  font-size: 1.1vw;
}

.fade-in {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 40px);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 4vw;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4.5vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 4.2vw;
  }
}

#lower {
  position: relative;
  margin-bottom: 3rem;
}
#lower .lower {
  width: 100%;
  height: 30vw;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 40vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 50vw;
  }
}
#lower .lower .lower_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#lower .lower_contents {
  position: absolute;
  top: 50%;
  left: 3%;
  display: inline-block;
}
#lower .lower_contents .headline {
  color: #F5E6D3;
  font-size: 2.5vw;
  letter-spacing: 0.4vw;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #lower .lower_contents .headline {
    font-size: 5.5vw;
  }
}
#lower .lower_contents p {
  font-family: "Cinzel", serif;
  color: #F5E6D3;
  font-size: 2vw;
  text-align: center;
}

.lower_headline {
  padding: 0.5vw 0;
  padding-left: 2vw;
  margin-bottom: 2vw;
  position: relative;
  color: #fff;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .lower_headline {
    padding: 1vw 0;
    padding-left: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .lower_headline {
    padding: 2vw 0;
    padding-left: 2vw;
    font-size: 5vw;
  }
}
.lower_headline::before {
  position: absolute;
  content: "";
  width: 0.7vw;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #5C3A21;
}

.back-to-top {
  display: none;
  position: fixed;
  z-index: 9999;
  right: 5%;
  bottom: 5%;
  color: #fff;
  background-color: #8B5E3C;
  padding: 0.5rem 1rem;
  font-size: 2vw;
  display: inline-block;
  text-decoration: none;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3), 1px -1px 2px rgba(255, 255, 255, 0.3), -1px 1px 2px rgba(255, 255, 255, 0.3), -1px -1px 2px rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  .back-to-top {
    display: none !important;
  }
}

@media screen and (min-width: 1441px) {
  .topBtnSp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .topBtnSp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .topBtnSp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .topBtnSp {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    color: #333;
    background-color: #fff;
    padding: 1rem;
    font-size: 3vw;
    width: 100% !important;
    text-decoration: none;
    text-align: center;
  }
  .topBtnSp::before {
    width: 100% !important;
    height: 20vw !important;
    border-radius: 0 !important;
  }
  .topBtnSp i {
    font-size: 4vw;
  }
  .topBtnSp p {
    font-size: 3vw;
  }
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  z-index: -1;
}

.grecaptcha-badge {
  z-index: 99999 !important;
}

.loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #F5E6D3;
  font-size: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}
.loading .loading_text {
  width: 50vw;
  height: 50vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.loading .loadinglogo {
  animation: 0.5s flashing infinite;
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .loading .loadinglogo {
    width: 80%;
  }
}
.loading .loadinglogo img {
  width: 100%;
}

.spinner-box {
  width: 300px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.spinner-box .pulse-container {
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spinner-box .pulse-container .pulse-bubble {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #8b6b4a;
}
.spinner-box .pulse-container .pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}
.spinner-box .pulse-container .pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}
.spinner-box .pulse-container .pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}
.loading.active {
  opacity: 1;
  visibility: visible;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_logo {
  width: 15%;
  padding-top: 2vw;
}
header #header_pc .header_logo img {
  width: 100%;
}
header #header_pc .header_menu {
  width: 75%;
}
header #header_pc .header_menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
header #header_pc .header_menu ul li {
  height: 100%;
}
header #header_pc .header_menu ul li a {
  display: block;
  height: 100%;
  text-decoration: none;
  font-size: 1.1vw;
  color: #fff;
  position: relative;
  padding: 0 1vw 0.5vw;
  padding-top: 2vw;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_menu ul li a {
    font-size: 1.2vw;
  }
}
header #header_pc .header_menu ul li a:hover {
  opacity: 0.75;
}
header #header_pc .header_menu ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #5C3A21;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
header #header_pc .header_menu ul li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
header #header_pc .header_menu ul li a.current {
  opacity: 0.75;
}
header #header_pc .header_menu ul li .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}
@media screen and (min-width: 1441px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_sp {
    display: none;
  }
}
header #header_sp .header_sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4vw;
  height: 60px;
}
header #header_sp .header_sp .header_logo {
  width: 30vw;
  margin-top: 2rem;
}
header #header_sp .header_sp .header_logo img {
  width: 100%;
}
header #header_sp .header_sp_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(33, 33, 33, 0.9);
}
header #header_sp .header_sp_bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  list-style: none;
}
header #header_sp .header_sp_bottom ul li a {
  text-decoration: none;
  color: #fff;
}
header #header_sp .header_sp_bottom ul li a .header_icon {
  text-align: center;
  margin-top: 2vw;
  height: 8vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
header #header_sp .header_sp_bottom ul li a .header_icon i {
  font-size: 6vw;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  z-index: 10005;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.hamburger p {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
}

.hamburger span:nth-child(1) {
  top: 5px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hamburger span:nth-child(2) {
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hamburger span:nth-child(3) {
  top: 25px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 15px;
  background: #fff;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  left: 15px;
  background: #fff;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(33, 33, 33, 0.9);
  text-align: center;
  width: 100%;
  height: 60vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp .ul {
  margin: auto;
  margin-top: 0 !important;
  margin-bottom: 4vw !important;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
nav.globalMenuSp .ul .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}

.sns {
  justify-content: center !important;
}

nav.globalMenuSp .ul li {
  list-style-type: none;
  padding: 0;
  width: 45%;
  transition: 0.4s all;
  margin-bottom: 20px;
}

nav.globalMenuSp .ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp .ul li:hover {
  background: #5C3A21;
}

nav.globalMenuSp .ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  font-size: 3.5vw;
  padding: 0;
  padding-bottom: 2vw;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp .ul li a i {
  margin-right: 2vw;
}

.header_sp_policy {
  text-align: center;
  margin-bottom: 8vw;
}
.header_sp_policy a {
  text-decoration: none;
  color: #fff;
  font-size: 3.5vw;
  padding: 0 4vw;
  padding-bottom: 2vw;
  border-bottom: 1px solid #fff;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

#top_main {
  overflow: hidden;
}
#top_main .top_main {
  width: 100vw;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_main .top_main {
    height: 100vw;
  }
}
#top_main .top_main .top_main_title {
  position: absolute;
  text-align: center;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 1px 1px 2px #333;
}
@media screen and (max-width: 768px) {
  #top_main .top_main .top_main_title {
    width: 80%;
  }
}
#top_main .top_main .top_main_title #top_text01 {
  color: #fff;
  font-size: 3.5vw;
  animation: fadeIn 3s ease 2s forwards normal;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top_main .top_main .top_main_title #top_text01 {
    font-size: 5vw;
  }
}
#top_main .top_main .top_main_title #top_text02 {
  color: #fff;
  padding-top: 1vw;
  font-size: 3.5vw;
  animation: fadeIn 3s ease 4s forwards normal;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top_main .top_main .top_main_title #top_text02 {
    font-size: 5vw;
  }
}
#top_main .top_main .slider {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  position: relative;
}
#top_main .top_main .slider::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.5);
  top: 0;
  left: 0;
}
#top_main .top_main .slider .slick-list {
  width: 100%;
  height: 100%;
}
#top_main .top_main .slider .slick-list .slick-track {
  width: 100%;
  height: 100%;
}
#top_main .top_main .slider .slick-list .slick-track .slick-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

#top_news {
  background-color: #f7f7f7;
  overflow: hidden;
}
#top_news .top_news {
  width: 80%;
  margin: auto;
  padding: 2vw 0;
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news {
    width: 95%;
    padding: 8vw 0;
  }
}
#top_news .top_news .top_news_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_flex {
    margin-bottom: 8vw;
  }
}
#top_news .top_news .top_news_flex .top_headline {
  color: #5C3A21;
}
#top_news .top_news .top_news_flex .top_headline h2 {
  font-family: "Cinzel", serif;
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_flex .top_headline h2 {
    font-size: 8vw;
    margin-bottom: 1vw;
  }
}
#top_news .top_news .top_news_flex .top_headline p {
  text-align: center;
}
#top_news .top_news .top_news_flex .top_news_btn a {
  text-decoration: none;
  transition: all 0.2s;
}
#top_news .top_news .top_news_flex .top_news_btn a:hover {
  border-bottom: 1px solid #333;
  opacity: 0.8;
}
#top_news .top_news .top_news_flex .top_news_btn a button {
  border: none;
  background-color: rgba(0, 0, 0, 0);
  color: #333;
  letter-spacing: 0.2vw;
  cursor: pointer;
}
#top_news .top_news .top_news_flex .top_news_btn a button i {
  margin-left: 0.25rem;
}
#top_news .top_news .top_news_contents ul {
  list-style: none;
}
#top_news .top_news .top_news_contents ul a {
  text-decoration: none;
}
#top_news .top_news .top_news_contents ul a li {
  border-bottom: 2px dotted #333;
  padding-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li {
    padding-bottom: 2vw;
  }
}
#top_news .top_news .top_news_contents ul a li .outline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline {
    flex-flow: column;
    align-items: flex-start;
  }
}
#top_news .top_news .top_news_contents ul a li .outline .date {
  padding: 0.5vw;
  color: #fff;
  background-color: #8B5E3C;
  margin-right: 2vw;
  font-size: 0.8vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline .date {
    margin-right: 0;
    margin-bottom: 2vw;
    font-size: 3vw;
  }
}
#top_news .top_news .top_news_contents ul a li .outline .title {
  color: #333;
  font-size: 1.2vw;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline .title {
    font-size: 3vw;
  }
}

#top_contents {
  overflow: hidden;
}
#top_contents .top_contents {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
#top_contents .top_contents:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 5;
}
#top_contents .top_contents .contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contents .top_contents .contents {
    width: 95%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contents .top_contents .contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents {
    width: 100%;
    flex-flow: column;
  }
}
#top_contents .top_contents .contents .contents_image {
  width: 50%;
  height: 40vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contents .top_contents .contents .contents_image {
    width: 50%;
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_image {
    width: 100%;
    height: 70vw;
  }
}
#top_contents .top_contents .contents .contents_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_contents .top_contents .contents .contents_writing {
  position: relative;
  width: 42.5vw;
  padding: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contents .top_contents .contents .contents_writing {
    padding: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_writing {
    width: 100%;
    padding: 3rem 2rem;
  }
}
#top_contents .top_contents .contents .contents_writing .headline {
  position: relative;
  margin-bottom: 2vw;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_writing .headline {
    margin-bottom: 8vw;
  }
}
#top_contents .top_contents .contents .contents_writing .headline::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  bottom: 0%;
  left: 0;
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_writing .headline::after {
    bottom: -10%;
  }
}
#top_contents .top_contents .contents .contents_writing .headline h2 {
  font-family: "Cinzel", serif;
  color: #333;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_writing .headline h2 {
    width: 100%;
  }
}
#top_contents .top_contents .contents .contents_writing .headline h3 {
  color: #5C3A21;
  padding: 0 1vw;
  font-size: 1.3vw;
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents .contents .contents_writing .headline h3 {
    font-size: 3.5vw;
  }
}
#top_contents .top_contents .contents .contents_writing .text p {
  color: #333;
}

#contents_divide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: grayscale(80%);
  height: 40vw;
}
@media screen and (max-width: 768px) {
  #contents_divide {
    height: 60vw;
    background-attachment: scroll;
  }
}

#bottom_contents {
  overflow: hidden;
  background: #F5E6D3;
}
#bottom_contents .bottom_contents {
  padding-top: 5rem;
}
#bottom_contents .bottom_contents .contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  padding: 4vw 0;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents {
    width: 100%;
    flex-flow: column;
  }
}
#bottom_contents .bottom_contents .contents .contents_image {
  width: 50%;
  height: 40vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents .contents_image {
    width: 50%;
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_image {
    width: 100%;
    height: 70vw;
  }
}
#bottom_contents .bottom_contents .contents .contents_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#bottom_contents .bottom_contents .contents .contents_writing {
  position: relative;
  width: 42.5vw;
  padding: 2vw;
  background-color: #fff;
  box-shadow: 0 0 5px #ddd;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents .contents_writing {
    padding: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing {
    width: 100%;
    padding: 3rem 2rem;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .headline {
  position: relative;
  margin-bottom: 2vw;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .headline {
    margin-bottom: 8vw;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .headline::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  bottom: 0%;
  left: 0;
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .headline::after {
    bottom: -10%;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .headline h2 {
  font-family: "Cinzel", serif;
  color: #333;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .headline h2 {
    width: 100%;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .headline h3 {
  color: #5C3A21;
  padding: 0 1vw;
  font-size: 1.3vw;
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .headline h3 {
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents .contents_writing .text {
    line-height: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .text {
    line-height: 5vw;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .text p {
  color: #333;
}
#bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn {
  width: 100%;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn {
    width: 100%;
    margin: auto;
    margin-top: 2rem;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a {
  text-decoration: none;
}
#bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a button {
  width: 100%;
  font-size: 1vw;
  color: #fff;
  background-color: #8B5E3C;
  padding: 0.5vw 1vw;
  border: none;
  border-radius: 10px;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a button {
    font-size: 1.8vw;
    padding: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a button {
    padding: 2.5vw;
    font-size: 3.5vw;
  }
}
#bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a button i {
  margin-left: 1rem;
}
#bottom_contents .bottom_contents .contents .contents_writing .top_recruit_btn a button:hover {
  color: #fff;
  background-color: #333;
}
#bottom_contents .bottom_contents .contents_child03 {
  margin-left: auto;
  flex-flow: row-reverse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #bottom_contents .bottom_contents .contents_child03 {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #bottom_contents .bottom_contents .contents_child03 {
    width: 100%;
    flex-flow: column;
  }
}
#bottom_contents .bottom_contents .contents_child03 img {
  -o-object-position: center;
     object-position: center;
}

#flex_contents {
  overflow: hidden;
}
#flex_contents .flex_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 24vw;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul {
    flex-flow: column;
    height: auto;
  }
}
#flex_contents .flex_contents ul li {
  width: 33.3333333333%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li {
    width: 100%;
    height: 60vw;
  }
}
#flex_contents .flex_contents ul li a {
  margin: 2rem;
}
#flex_contents .flex_contents ul li a .list {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.4s;
}
#flex_contents .flex_contents ul li a .list .list_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
#flex_contents .flex_contents ul li a .list .list_bg:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#flex_contents .flex_contents ul li a .list_headline {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  text-align: center;
  color: #fff;
}
#flex_contents .flex_contents ul li a .list_headline .btn {
  width: 100%;
  display: inline-block;
  padding: 12px 24px;
  color: #fff;
  background-color: rgba(139, 94, 60, 0.75);
  text-decoration: none;
  position: relative;
}
#flex_contents .flex_contents ul li a .list_headline .btn::before, #flex_contents .flex_contents ul li a .list_headline .btn::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  border-top: 1px dashed #C19A6B;
}
#flex_contents .flex_contents ul li a .list_headline .btn::before {
  top: 6px;
}
#flex_contents .flex_contents ul li a .list_headline .btn::after {
  bottom: 6px;
}
#flex_contents .flex_contents ul li a .list_headline .btn h2 {
  font-family: "Cinzel", serif;
  font-size: 1.3vw;
  padding: 0.3vw 0;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li a .list_headline .btn h2 {
    padding: 1vw 0;
    font-size: 3.3vw;
  }
}
#flex_contents .flex_contents ul li a .list_headline .btn p {
  padding: 0.3vw 0;
  font-size: 0.9vw;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li a .list_headline .btn p {
    padding: 1vw 0;
    font-size: 1.6vw;
  }
}

#works .works {
  width: 90%;
  margin: auto;
}
#works .works .works_text {
  margin-bottom: 3rem;
}
#works .works .works_text p {
  color: #fff;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_text p {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_text p {
    font-size: 3.3vw;
  }
}
#works .works .works_contents ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul {
    flex-flow: column;
  }
}
#works .works .works_contents ul li {
  width: 30%;
  color: #fff;
  margin: 2vw 1vw;
  padding: auto;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#works .works .works_contents ul li .thumb {
  width: 100%;
  height: 20vw;
  margin-bottom: 1vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .thumb {
    height: 50vw;
    margin-bottom: 2vw;
  }
}
#works .works .works_contents ul li .thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents ul li .thumb:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents ul li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works .works_contents ul li .thumb .search {
  position: absolute;
  top: 4%;
  right: 1%;
  z-index: 10;
}
#works .works .works_contents ul li .thumb .search i {
  transition: all 0.4s;
  color: #fff;
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul li .thumb .search i {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .thumb .search i {
    font-size: 6vw;
  }
}
#works .works .works_contents ul li .title h4 {
  font-weight: 600;
  margin-bottom: 0.5vw;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul li .title h4 {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .title h4 {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#works .works .works_contents ul li .text p {
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .text p {
    font-size: 3.3vw;
  }
}
#works .works .works_contents p {
  color: #fff;
}
#works .works .works_contents .ba li {
  width: 45%;
  padding: 1vw;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li {
    width: 100%;
    padding: 3vw;
    margin-bottom: 8vw;
  }
}
#works .works .works_contents .ba li .thumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 15vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li .thumb {
    height: 35vw;
  }
}
#works .works .works_contents .ba li .thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0% !important;
  height: 0% !important;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .ba li .thumb:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .ba li .thumb .img {
  width: 45%;
  height: 100%;
  position: relative;
}
#works .works .works_contents .ba li .thumb .img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .ba li .thumb .img:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .ba li .thumb .img img {
  width: 100%;
}
#works .works .works_contents .ba li .thumb p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#works .works .works_contents .ba li .thumb p i {
  color: #5C3A21;
  font-size: 3vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li .thumb p i {
    font-size: 6vw;
  }
}

#modal-container {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
#modal-container .modal-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#modal-container img {
  max-width: 70vw;
  max-height: 70vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#modal-container .close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 2;
}
#modal-container .close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 2px;
  background: #fff;
}
#modal-container .close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}
#modal-container .close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  #modal-container .close {
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
  }
  #modal-container .close span {
    width: 28px;
  }
}

img.popup {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

#repair .repair {
  width: 100%;
}
#repair .repair .repair_text {
  width: 90%;
  margin: 5rem auto;
}
@media screen and (max-width: 768px) {
  #repair .repair .repair_text {
    width: 95%;
  }
}
#repair .repair .inner {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #repair .repair .inner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #repair .repair .inner {
    width: 90%;
  }
}
#repair .repair .inner .section-title {
  text-align: center;
  margin-bottom: 70px;
}
#repair .repair .inner .section-title span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #8b6b4a;
  margin-bottom: 15px;
  font-weight: 600;
}
#repair .repair .inner .section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #222;
}
@media screen and (max-width: 768px) {
  #repair .repair .inner .section-title h2 {
    font-size: 20px;
  }
}
#repair .repair .inner .section-title p {
  line-height: 2;
  color: #666;
}
@media screen and (max-width: 768px) {
  #repair .repair .inner .section-title p {
    text-align: left;
  }
}
#repair .repair .inner .table-group {
  margin-bottom: 2rem;
}
#repair .repair .inner .table-group .table-responsive {
  width: 100%;
}
#repair .repair .inner .table-group .table-responsive table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 0 5px rgba(139, 94, 60, 0.25);
  border-radius: 5px;
  overflow: hidden;
}
#repair .repair .inner .table-group .table-responsive table tr {
  border-bottom: 1px solid #eee;
}
#repair .repair .inner .table-group .table-responsive table tr:last-child {
  border-bottom: none;
}
#repair .repair .inner .table-group .table-responsive table tr td {
  padding: 14px 16px;
  font-size: 1.2rem;
  color: #444;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #repair .repair .inner .table-group .table-responsive table tr td {
    font-size: 14px;
  }
}
#repair .repair .inner .table-group .table-responsive table tr .price {
  color: #8b5e3c;
  text-align: right;
  white-space: nowrap;
  font-weight: bold;
}
#repair .repair .inner .table-group .table-responsive table tr:first-child {
  background: #8b5e3c;
}
#repair .repair .inner .table-group .table-responsive table tr:first-child td {
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #repair .repair .inner .table-group .table-responsive table,
  #repair .repair .inner .table-group .table-responsive tbody,
  #repair .repair .inner .table-group .table-responsive tr,
  #repair .repair .inner .table-group .table-responsive td {
    display: block;
    width: 100%;
  }
  #repair .repair .inner .table-group .table-responsive table {
    min-width: initial;
    box-shadow: none;
    background: none;
  }
  #repair .repair .inner .table-group .table-responsive tr {
    background: #fff;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  #repair .repair .inner .table-group .table-responsive tr:first-child {
    border-radius: 5px;
  }
  #repair .repair .inner .table-group .table-responsive tr:first-child td {
    background: #8b5e3c;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 14px;
  }
  #repair .repair .inner .table-group .table-responsive td {
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    position: relative;
  }
  #repair .repair .inner .table-group .table-responsive td:first-child {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 6px;
  }
  #repair .repair .inner .table-group .table-responsive td:nth-child(2) {
    color: #777;
    font-size: 13px;
    padding-top: 0;
  }
  #repair .repair .inner .table-group .table-responsive .price {
    text-align: left;
    font-size: 18px;
    color: #8b5e3c;
    padding-top: 4px;
  }
}
#repair .repair .inner .table-group p {
  color: #333;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  #repair .repair .inner .table-group p {
    font-size: 14px;
    line-height: 1.8;
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
#repair .repair .inner .table-group p .text-red {
  color: #f00;
}
#repair .repair .inner .precautions {
  background-color: #fff;
  padding: 1.5rem;
  margin-bottom: 5rem;
  box-shadow: 0 0 5px rgba(139, 94, 60, 0.25);
  border-radius: 5px;
  margin-top: 1rem;
}
#repair .repair .inner .precautions .text-red {
  color: #f00;
}
#repair .repair .inner .precautions p {
  margin-top: 0rem;
  color: #333;
}
#repair .repair .inner .precautions dl {
  display: flex;
  color: #333;
}
#repair .repair .inner .precautions dl dt {
  width: auto;
  padding-right: 0.5rem;
}
#repair .repair .inner .precautions dl dd {
  width: auto;
}
#repair .repair {
  /* スマホ */
}
@media screen and (max-width: 768px) {
  #repair .repair {
    padding: 70px 0;
  }
  #repair .repair table {
    width: 92%;
  }
  #repair .repair td {
    font-size: 14px;
    padding: 12px 10px;
  }
  #repair .repair td:last-child {
    font-size: 14px;
  }
}

.agreement-section {
  background: #fff;
  padding: 2rem;
  margin-bottom: 5rem;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(139, 94, 60, 0.25);
}
.agreement-section .agreement-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.agreement-section .agreement-head span {
  display: block;
  color: #8b5e3c;
  font-size: 14px;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.agreement-section .agreement-head h3 {
  color: #222;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .agreement-section .agreement-head h3 {
    font-size: 1.3rem;
  }
}
.agreement-section .agreement-text {
  line-height: 2;
  color: #555;
  margin-bottom: 1.5rem;
}
.agreement-section .agreement-list ul {
  list-style: none;
}
.agreement-section .agreement-list ul li {
  color: #333;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.8;
}
.agreement-section .agreement-list ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b5e3c;
  font-weight: bold;
}
.agreement-section .agreement-btn {
  text-align: center;
  margin-top: 2rem;
}
.agreement-section .agreement-btn a {
  display: inline-block;
  background: #8b5e3c;
  color: #fff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 5px;
  transition: 0.3s;
}
.agreement-section .agreement-btn a:hover {
  opacity: 0.8;
}

#cleaning .cleaning {
  width: 100%;
}
#cleaning .cleaning .cleaning_text {
  width: 90%;
  margin: 5rem auto;
}
@media screen and (max-width: 768px) {
  #cleaning .cleaning .cleaning_text {
    width: 95%;
  }
}
#cleaning .cleaning .inner {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #cleaning .cleaning .inner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #cleaning .cleaning .inner {
    width: 90%;
  }
}
#cleaning .cleaning .inner .section-title {
  text-align: center;
  margin-bottom: 70px;
}
#cleaning .cleaning .inner .section-title span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #8b6b4a;
  margin-bottom: 15px;
  font-weight: 600;
}
#cleaning .cleaning .inner .section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #222;
}
@media screen and (max-width: 768px) {
  #cleaning .cleaning .inner .section-title h2 {
    font-size: 20px;
  }
}
#cleaning .cleaning .inner .section-title p {
  line-height: 2;
  color: #666;
}
@media screen and (max-width: 768px) {
  #cleaning .cleaning .inner .section-title p {
    text-align: left;
  }
}
#cleaning .cleaning .inner .table-group {
  margin-bottom: 2rem;
}
#cleaning .cleaning .inner .table-group .table-responsive {
  width: 100%;
}
#cleaning .cleaning .inner .table-group .table-responsive table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 0 5px rgba(139, 94, 60, 0.25);
  border-radius: 5px;
  overflow: hidden;
}
#cleaning .cleaning .inner .table-group .table-responsive table tr {
  border-bottom: 1px solid #eee;
}
#cleaning .cleaning .inner .table-group .table-responsive table tr:last-child {
  border-bottom: none;
}
#cleaning .cleaning .inner .table-group .table-responsive table tr td {
  padding: 14px 16px;
  font-size: 1.2rem;
  color: #444;
  vertical-align: middle;
}
#cleaning .cleaning .inner .table-group .table-responsive table tr .price {
  color: #8b5e3c;
  text-align: right;
  white-space: nowrap;
  font-weight: bold;
}
#cleaning .cleaning .inner .table-group .table-responsive table tr:first-child {
  background: #8b5e3c;
}
#cleaning .cleaning .inner .table-group .table-responsive table tr:first-child td {
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #cleaning .cleaning .inner .table-group .table-responsive table,
  #cleaning .cleaning .inner .table-group .table-responsive tbody,
  #cleaning .cleaning .inner .table-group .table-responsive tr,
  #cleaning .cleaning .inner .table-group .table-responsive td {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  #cleaning .cleaning .inner .table-group .table-responsive table {
    min-width: initial;
    box-shadow: none;
    background: none;
  }
  #cleaning .cleaning .inner .table-group .table-responsive tr {
    background: #fff;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  #cleaning .cleaning .inner .table-group .table-responsive tr:first-child {
    border-radius: 5px;
  }
  #cleaning .cleaning .inner .table-group .table-responsive tr:first-child td {
    background: #8b5e3c;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 14px;
  }
  #cleaning .cleaning .inner .table-group .table-responsive td {
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    position: relative;
  }
  #cleaning .cleaning .inner .table-group .table-responsive td:first-child {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 6px;
  }
  #cleaning .cleaning .inner .table-group .table-responsive td:nth-child(2) {
    color: #777;
    font-size: 13px;
    padding-top: 0;
  }
  #cleaning .cleaning .inner .table-group .table-responsive .price {
    text-align: left;
    font-size: 18px;
    color: #8b5e3c;
    padding-top: 4px;
  }
}
#cleaning .cleaning .inner .table-group p {
  color: #333;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  #cleaning .cleaning .inner .table-group p {
    font-size: 14px;
    line-height: 1.8;
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
#cleaning .cleaning .inner .table-group p .text-red {
  color: #f00;
}
#cleaning .cleaning .inner .precautions {
  background-color: #fff;
  padding: 1.5rem;
  margin-bottom: 5rem;
  box-shadow: 0 0 5px rgba(139, 94, 60, 0.25);
  border-radius: 5px;
  margin-top: 1rem;
}
#cleaning .cleaning .inner .precautions .text-red {
  color: #f00;
}
#cleaning .cleaning .inner .precautions h5 {
  color: #333;
  margin-bottom: 1rem;
}
#cleaning .cleaning .inner .precautions p {
  margin-top: 0rem;
  color: #333;
}
#cleaning .cleaning .inner .precautions dl {
  display: flex;
  color: #333;
}
#cleaning .cleaning .inner .precautions dl dt {
  width: auto;
  padding-right: 0.5rem;
}
#cleaning .cleaning .inner .precautions dl dd {
  width: auto;
}
#cleaning .cleaning {
  /* スマホ */
}
@media screen and (max-width: 768px) {
  #cleaning .cleaning {
    padding: 70px 0;
  }
  #cleaning .cleaning table {
    width: 92%;
  }
  #cleaning .cleaning td {
    font-size: 13px;
    padding: 12px 10px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #cleaning .cleaning td {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #cleaning .cleaning td:last-child {
    font-size: 14px;
  }
}

.agreement-section {
  background: #fff;
  padding: 3rem;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(139, 94, 60, 0.25);
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .agreement-section {
    padding: 1.5rem;
  }
}
.agreement-section .agreement-head {
  text-align: center;
  margin-bottom: 2rem;
}
.agreement-section .agreement-head span {
  display: block;
  color: #8b5e3c;
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.agreement-section .agreement-head h3 {
  font-size: 2rem;
  color: #222;
}
@media screen and (max-width: 768px) {
  .agreement-section .agreement-head h3 {
    font-size: 1.3rem;
  }
}
.agreement-section .agreement-text {
  line-height: 2;
  color: #555;
  margin-bottom: 2rem;
}
.agreement-section .agreement-point {
  margin-bottom: 2rem;
}
.agreement-section .agreement-point ul {
  list-style: none;
}
.agreement-section .agreement-point ul li {
  color: #333;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.8;
}
.agreement-section .agreement-point ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b5e3c;
  font-weight: bold;
}
.agreement-section .agreement-btn {
  text-align: center;
}
.agreement-section .agreement-btn a {
  display: inline-block;
  background: #8b5e3c;
  color: #fff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 5px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .agreement-section .agreement-btn a {
    font-size: 0.9rem;
  }
}
.agreement-section .agreement-btn a:hover {
  opacity: 0.8;
}

.service-ba {
  margin: 5rem 0 3rem;
}
.service-ba .service-ba-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .service-ba .service-ba-list {
    flex-flow: column;
  }
}
.service-ba .service-ba-list li {
  width: 48%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .service-ba .service-ba-list li {
    width: 100%;
    padding: 3vw;
    margin-bottom: 6vw;
  }
}
.service-ba .service-ba-thumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1vw;
}
.service-ba .service-ba-thumb .service-ba-img {
  position: relative;
  width: 45%;
  height: 15vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-ba .service-ba-thumb .service-ba-img {
    height: 35vw;
  }
}
.service-ba .service-ba-thumb .service-ba-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-ba .service-ba-thumb .service-ba-img .service-ba-label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.3vw 0.8vw;
  font-size: 0.9vw;
  letter-spacing: 0.1vw;
  color: #fff;
  background-color: #5C3A21;
}
@media screen and (max-width: 768px) {
  .service-ba .service-ba-thumb .service-ba-img .service-ba-label {
    font-size: 2.8vw;
    padding: 1vw 2vw;
  }
}
.service-ba .service-ba-thumb .service-ba-img .service-ba-label.after {
  background-color: #8B5E3C;
}
.service-ba .service-ba-thumb .service-ba-arrow i {
  color: #5C3A21;
  font-size: 2.5vw;
}
@media screen and (max-width: 768px) {
  .service-ba .service-ba-thumb .service-ba-arrow i {
    font-size: 6vw;
  }
}
.service-ba .service-ba-title h4 {
  color: #5C3A21;
  font-weight: 600;
  font-size: 1.2vw;
  margin-top: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-ba .service-ba-title h4 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .service-ba .service-ba-title h4 {
    font-size: 3.6vw;
  }
}
.service-ba .service-ba-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 3rem;
}
.service-ba .service-ba-pager button {
  min-width: 2.6rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid #8B5E3C;
  border-radius: 4px;
  color: #8B5E3C;
  font-size: 1rem;
  line-height: 1;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.25s;
}
.service-ba .service-ba-pager button:hover {
  background-color: #f1e9e2;
}
.service-ba .service-ba-pager button.is-current {
  color: #fff;
  background-color: #8B5E3C;
}
@media screen and (max-width: 768px) {
  .service-ba .service-ba-pager button {
    min-width: 9vw;
    font-size: 3.4vw;
    padding: 2vw 2.5vw;
  }
}
.service-ba .service-ba-empty {
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
}
.service-ba .service-ba-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .service-ba .service-ba-btns {
    flex-flow: column;
    gap: 1rem;
  }
}
.service-ba .service-ba-btns a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 1.1vw;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-ba .service-ba-btns a {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  .service-ba .service-ba-btns a {
    width: 100%;
    font-size: 3.6vw;
    padding: 3.5vw;
  }
}
.service-ba .service-ba-btns .service-ba-insta {
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.service-ba .service-ba-btns .service-ba-insta:hover {
  opacity: 0.85;
}
.service-ba .service-ba-btns .service-ba-more {
  color: #fff;
  background-color: #8B5E3C;
}
.service-ba .service-ba-btns .service-ba-more:hover {
  background-color: #5C3A21;
}

#coating .coating {
  width: 100%;
}
#coating .coating .coating_text {
  width: 90%;
  margin: 5rem auto;
}
@media screen and (max-width: 768px) {
  #coating .coating .coating_text {
    width: 95%;
  }
}
#coating .coating .inner {
  width: 85%;
  margin: 0 auto;
  padding-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #coating .coating .inner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #coating .coating .inner {
    width: 90%;
  }
}
#coating .coating .inner .section-title {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .section-title {
    text-align: left;
  }
}
#coating .coating .inner .section-title span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #8b6b4a;
  margin-bottom: 15px;
  font-weight: 600;
}
#coating .coating .inner .section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #222;
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .section-title h2 {
    font-size: 20px;
  }
}
#coating .coating .inner .section-title p {
  line-height: 2;
  color: #666;
}
#coating .coating .inner .table-group {
  margin-bottom: 2rem;
}
#coating .coating .inner .table-group .table-responsive {
  width: 100%;
}
#coating .coating .inner .table-group .table-responsive table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 0 5px rgba(139, 94, 60, 0.25);
  border-radius: 5px;
  overflow: hidden;
}
#coating .coating .inner .table-group .table-responsive table tr {
  border-bottom: 1px solid #eee;
}
#coating .coating .inner .table-group .table-responsive table tr:last-child {
  border-bottom: none;
}
#coating .coating .inner .table-group .table-responsive table tr td {
  padding: 14px 16px;
  font-size: 1.2rem;
  color: #444;
  vertical-align: middle;
}
#coating .coating .inner .table-group .table-responsive table tr .price {
  color: #8b5e3c;
  text-align: right;
  white-space: nowrap;
  font-weight: bold;
}
#coating .coating .inner .table-group .table-responsive table tr:first-child {
  background: #8b5e3c;
}
#coating .coating .inner .table-group .table-responsive table tr:first-child td {
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .table-group .table-responsive table,
  #coating .coating .inner .table-group .table-responsive tbody,
  #coating .coating .inner .table-group .table-responsive tr,
  #coating .coating .inner .table-group .table-responsive td {
    display: block;
    width: 100%;
  }
  #coating .coating .inner .table-group .table-responsive table {
    min-width: initial;
    box-shadow: none;
    background: none;
  }
  #coating .coating .inner .table-group .table-responsive tr {
    background: #fff;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  #coating .coating .inner .table-group .table-responsive tr:first-child {
    border-radius: 5px;
  }
  #coating .coating .inner .table-group .table-responsive tr:first-child td {
    background: #8b5e3c;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 14px;
  }
  #coating .coating .inner .table-group .table-responsive td {
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    position: relative;
  }
  #coating .coating .inner .table-group .table-responsive td:first-child {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 6px;
  }
  #coating .coating .inner .table-group .table-responsive td:nth-child(2) {
    color: #777;
    font-size: 13px;
    padding-top: 0;
  }
  #coating .coating .inner .table-group .table-responsive .price {
    text-align: left;
    font-size: 18px;
    color: #8b5e3c;
    padding-top: 4px;
  }
}
#coating .coating .inner .table-group p {
  color: #333;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .table-group p {
    font-size: 14px;
    line-height: 1.8;
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
#coating .coating .inner .table-group p .text-red {
  color: #f00;
}
#coating .coating .inner .precautions {
  background-color: #fff;
  padding: 1.5rem;
  margin-bottom: 5rem;
  box-shadow: 0 0 5px rgba(139, 94, 60, 0.25);
  border-radius: 5px;
  margin-top: -2rem;
}
#coating .coating .inner .precautions p {
  color: #333;
}
#coating .coating .inner .precautions p .text-red {
  color: #f00;
}
#coating .coating .inner .precautions dl {
  display: flex;
  color: #333;
}
#coating .coating .inner .precautions dl dt {
  width: auto;
  padding-right: 0.5rem;
}
#coating .coating .inner .precautions dl dd {
  width: auto;
}
#coating .coating .inner .coating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .coating-grid {
    grid-template-columns: 1fr;
  }
}
#coating .coating .inner .coating-card {
  background: #fff;
  border-radius: 5px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .coating-card {
    padding: 1.5rem;
  }
}
#coating .coating .inner .coating-card.caution .card-title {
  border-bottom: 2px solid #d14b4b;
}
#coating .coating .inner .coating-card.merit .card-title {
  border-bottom: 2px solid #4b8ed1;
}
#coating .coating .inner .coating-card .card-title {
  margin-bottom: 35px;
}
#coating .coating .inner .coating-card .card-title span {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 10px;
}
#coating .coating .inner .coating-card .card-title h3 {
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  color: #222;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .coating-card .card-title h3 {
    font-size: 1.2rem;
  }
}
#coating .coating .inner .info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
}
#coating .coating .inner .info-list li {
  position: relative;
  padding-left: 20px;
  line-height: 2;
  color: #444;
}
#coating .coating .inner .info-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b58b47;
  position: absolute;
  top: 12px;
  left: 0;
}
#coating .coating .inner .info-list li strong {
  color: #111;
  font-weight: 700;
}
#coating .coating .inner .delivery-wrap {
  background: #fff;
  border-radius: 5px;
  padding: 60px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .delivery-wrap {
    padding: 1rem;
  }
}
#coating .coating .inner .delivery-wrap .delivery-title {
  text-align: center;
  margin-bottom: 50px;
}
#coating .coating .inner .delivery-wrap .delivery-title span {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: #b58b47;
  margin-bottom: 10px;
}
#coating .coating .inner .delivery-wrap .delivery-title h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .delivery-wrap .delivery-title h3 {
    font-size: 1.3rem;
  }
}
#coating .coating .inner .delivery-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .delivery-list {
    grid-template-columns: 1fr;
  }
}
#coating .coating .inner .delivery-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid #ececec;
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .delivery-item {
    padding: 1rem;
  }
}
#coating .coating .inner .delivery-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #coating .coating .inner .delivery-item h4 {
    font-size: 1rem;
  }
}
#coating .coating .inner .delivery-item p {
  font-size: 1rem;
  font-weight: 700;
  color: #b58b47;
  margin-bottom: 10px;
}
#coating .coating .inner .delivery-item small {
  display: block;
  color: #777;
  line-height: 1.8;
  font-size: 1rem;
}
#coating .coating {
  /* スマホ */
}
@media screen and (max-width: 768px) {
  #coating .coating {
    padding: 70px 0;
  }
  #coating .coating table {
    width: 92%;
  }
  #coating .coating td {
    font-size: 14px;
    padding: 12px 10px;
  }
  #coating .coating td:last-child {
    font-size: 14px;
  }
  #coating .coating .section-heading {
    text-align: center;
    margin-bottom: 70px;
  }
  #coating .coating .section-heading .sub-title {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: #b58b47;
    margin-bottom: 15px;
    font-weight: 600;
  }
  #coating .coating .section-heading h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #222;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #coating .coating .section-heading h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #coating .coating .section-heading p {
    line-height: 2;
    color: #666;
  }
}

.terms-wrap {
  margin: 5rem 0;
  background: #fff;
  border-radius: 5px;
  padding: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .terms-wrap {
    padding: 1.5rem;
  }
}
.terms-wrap .terms-header {
  text-align: center;
  margin-bottom: 3rem;
  color: #444;
}
@media screen and (max-width: 768px) {
  .terms-wrap .terms-header {
    text-align: left;
  }
}
.terms-wrap .terms-header span {
  display: block;
  color: #8b5e3c;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.terms-wrap .terms-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .terms-wrap .terms-header h3 {
    font-size: 1.3rem;
  }
}
.terms-wrap .terms-header p {
  color: #444;
  line-height: 2;
}
.terms-wrap .terms-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .terms-wrap .terms-list {
    grid-template-columns: 1fr;
  }
}
.terms-wrap .terms-item {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 2rem;
}
.terms-wrap .terms-item h4 {
  color: #8b5e3c;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
}
.terms-wrap .terms-item ul {
  list-style: none;
  padding: 0;
}
.terms-wrap .terms-item ul li {
  color: #444;
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.8rem;
  line-height: 1.8;
}
.terms-wrap .terms-item ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b5e3c;
  position: absolute;
  left: 0;
  top: 10px;
}
.terms-wrap .terms-note {
  margin-top: 3rem;
  background: #fff8f3;
  border-left: 4px solid #8b5e3c;
  padding: 1.5rem;
}
.terms-wrap .terms-note strong {
  display: block;
  color: #8b5e3c;
  margin-bottom: 0.8rem;
}
.terms-wrap .terms-note p {
  color: #444;
  line-height: 2;
  margin: 0;
}

.guidance_lower {
  margin-bottom: 0 !important;
}

.school-guide img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.school-guide .inner {
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .school-guide .inner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .school-guide .inner {
    width: 90%;
  }
}
.school-guide {
  /* メインビジュアル */
}
.school-guide .school-mv {
  position: relative;
  background: url(images/school-mv.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
.school-guide .school-mv .mv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.school-guide .school-mv .mv-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.school-guide .school-mv .mv-content .sub-title {
  display: block;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.school-guide .school-mv .mv-content h2 {
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 700;
}
.school-guide .school-mv .mv-content p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .school-guide .school-mv .mv-content p {
    text-align: left;
  }
}
.school-guide .school-mv .mv-content .mv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  border-radius: 100px;
  background: #b58b47;
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}
.school-guide .school-mv .mv-content .mv-btn:hover {
  opacity: 0.8;
}
.school-guide {
  /* コンセプト */
}
.school-guide .concept {
  padding: 5rem 0;
}
.school-guide .concept .section-title {
  margin-bottom: 60px;
}
.school-guide .concept .section-title.center {
  text-align: center;
}
.school-guide .concept .section-title span {
  display: block;
  color: #b58b47;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.school-guide .concept .section-title h2 {
  line-height: 1.5;
  font-weight: 700;
  color: #333;
}
.school-guide .concept .concept-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .school-guide .concept .concept-wrap {
    grid-template-columns: 1fr;
  }
}
.school-guide .concept .concept-image {
  background-position: center;
  background-size: cover;
  height: 50vh;
}
.school-guide .concept .concept-text p {
  line-height: 2;
  margin-bottom: 25px;
  color: #555;
}
.school-guide .concept .concept-text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
}
.school-guide .concept .concept-text ul li {
  width: 100%;
  color: #8B5E3C;
  background: #fff;
  border-radius: 100px;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .school-guide .concept .concept-text ul li {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .school-guide .concept .concept-text ul li {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  .school-guide .concept .concept-text ul li {
    text-align: center;
  }
}
.school-guide {
  /* コース */
}
.school-guide .course {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.45);
}
.school-guide .course .section-title {
  margin-bottom: 60px;
}
.school-guide .course .section-title.center {
  text-align: center;
}
.school-guide .course .section-title span {
  display: block;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.school-guide .course .section-title h2 {
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}
.school-guide .course .course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .school-guide .course .course-grid {
    grid-template-columns: 1fr;
  }
}
.school-guide .course .course-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.school-guide .course .course-card .course-image {
  background-size: cover;
  background-position: center;
  height: 25vh;
}
.school-guide .course .course-card .course-body {
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .school-guide .course .course-card .course-body {
    padding: 1.5rem;
  }
}
.school-guide .course .course-card .course-body h4 {
  margin-bottom: 20px;
  color: #8B5E3C;
}
.school-guide .course .course-card .course-body p {
  line-height: 2;
  color: #555;
}
.school-guide .course .genre-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  list-style: none;
}
.school-guide .course .genre-list .genre-tag {
  background: #fff;
  color: #8B5E3C;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 600px) {
  .school-guide .course .genre-list .genre-tag {
    padding: 12px 24px;
    font-size: 1.4rem;
  }
}
.school-guide .course .course-note {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .school-guide .course .course-note {
    padding: 30px 25px;
  }
}
.school-guide .course .course-note .note-lead {
  font-weight: 700;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}
.school-guide .course .course-note ul {
  margin-bottom: 20px;
  list-style: none;
}
.school-guide .course .course-note ul li {
  position: relative;
  padding-left: 1.8em;
  line-height: 1.9;
  color: #555;
  margin-bottom: 12px;
}
.school-guide .course .course-note ul li::before {
  position: absolute;
  left: 0;
  top: 0;
}
.school-guide .course .course-note ul li.note-down::before {
  content: "🔻";
}
.school-guide .course .course-note ul li.note-up::before {
  content: "🔺";
}
.school-guide .course .course-note ul li.note-ok::before {
  content: "⭕️";
}
.school-guide .course .course-note ul li.note-tri::before {
  content: "▲";
  color: #b58b47;
}
.school-guide .course .course-note .note-foot {
  line-height: 1.9;
  color: #555;
}
.school-guide .course .course-note .note-foot span {
  display: inline-block;
  color: #8B5E3C;
  font-weight: 700;
}
.school-guide .course .course-note .note-sister {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px dashed #d8c7b0;
  line-height: 1.8;
  color: #555;
}
.school-guide .course .course-note .note-sister a {
  font-size: 1rem;
  color: #b58b47;
  font-weight: 700;
  text-decoration: underline;
  word-break: break-all;
}
.school-guide .course .course-note .note-sister a:hover {
  text-decoration: none;
}
.school-guide {
  /* 目的 */
}
.school-guide .purpose {
  padding: 120px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .school-guide .purpose {
    padding: 80px 0;
  }
}
.school-guide .purpose .section-title {
  margin-bottom: 50px;
}
.school-guide .purpose .section-title.center {
  text-align: center;
}
.school-guide .purpose .section-title span {
  display: block;
  color: #b58b47;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.school-guide .purpose .section-title h2 {
  line-height: 1.5;
  font-weight: 700;
  color: #333;
}
.school-guide .purpose .purpose-body {
  max-width: 820px;
  margin: 0 auto;
}
.school-guide .purpose .purpose-body .purpose-lead {
  font-weight: 700;
  color: #8B5E3C;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .school-guide .purpose .purpose-body .purpose-lead {
    font-size: 1.6rem;
  }
}
.school-guide .purpose .purpose-body p {
  line-height: 2.1;
  color: #555;
}
.school-guide {
  /* 受講料金 */
}
.school-guide .price {
  padding: 120px 0;
  background: #f7f7f7;
}
@media screen and (max-width: 768px) {
  .school-guide .price {
    padding: 80px 0;
  }
}
.school-guide .price .section-title {
  margin-bottom: 60px;
}
.school-guide .price .section-title.center {
  text-align: center;
}
.school-guide .price .section-title span {
  display: block;
  color: #b58b47;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.school-guide .price .section-title h2 {
  line-height: 1.5;
  font-weight: 700;
  color: #333;
}
.school-guide .price .price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media screen and (max-width: 900px) {
  .school-guide .price .price-grid {
    grid-template-columns: 1fr;
  }
}
.school-guide .price .price-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .school-guide .price .price-card {
    padding: 30px 25px;
  }
}
.school-guide .price .price-card .price-head {
  color: #8B5E3C;
  font-weight: 700;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 2px solid #e7ddd2;
}
.school-guide .price .price-sub + .price-sub {
  margin-top: 30px;
}
.school-guide .price .price-target {
  color: #555;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
}
.school-guide .price .price-list {
  list-style: none;
}
.school-guide .price .price-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px dashed #e0e0e0;
}
.school-guide .price .price-list li:last-child {
  border-bottom: none;
}
.school-guide .price .price-list li .name {
  color: #555;
  line-height: 1.6;
}
.school-guide .price .price-list li .yen {
  color: #333;
  font-weight: 700;
  white-space: nowrap;
}
.school-guide .price .price-list li .yen small {
  font-size: 0.75em;
  font-weight: 600;
  color: #888;
}
.school-guide .price .price-recommend {
  margin-top: 60px;
  background: #8B5E3C;
  border-radius: 20px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .school-guide .price .price-recommend {
    padding: 35px 25px;
  }
}
.school-guide .price .price-recommend > h3 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 35px;
}
.school-guide .price .price-recommend .recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media screen and (max-width: 900px) {
  .school-guide .price .price-recommend .recommend-grid {
    grid-template-columns: 1fr;
  }
}
.school-guide .price .price-recommend .recommend-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px;
}
.school-guide .price .price-recommend .recommend-card h4 {
  text-align: center;
  color: #8B5E3C;
  font-weight: 700;
  padding-bottom: 16px;
  margin-bottom: 12px;
  border-bottom: 2px solid #e7ddd2;
}
.school-guide {
  /* 管理画面（WYSIWYG）から入力された内容の共通スタイル */
}
.school-guide .guidance-rich {
  line-height: 1.9;
  color: #555;
}
.school-guide .guidance-rich h2, .school-guide .guidance-rich h3, .school-guide .guidance-rich h4 {
  color: #8B5E3C;
  font-weight: 700;
  line-height: 1.5;
  margin: 1.5em 0 0.6em;
}
.school-guide .guidance-rich h2:first-child, .school-guide .guidance-rich h3:first-child, .school-guide .guidance-rich h4:first-child {
  margin-top: 0;
}
.school-guide .guidance-rich p {
  margin-bottom: 1em;
}
.school-guide .guidance-rich ul, .school-guide .guidance-rich ol {
  margin: 0;
}
.school-guide .guidance-rich ul li, .school-guide .guidance-rich ol li {
  margin-bottom: 0.4em;
}
.school-guide .guidance-rich ul li {
  list-style: none;
}
.school-guide .guidance-rich ol li {
  list-style: decimal;
}
.school-guide .guidance-rich strong {
  font-weight: 700;
  color: #333;
}
.school-guide .guidance-rich a {
  color: #b58b47;
  text-decoration: underline;
}
.school-guide .guidance-rich img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.5em 0;
}
.school-guide .guidance-rich table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1em;
}
.school-guide .guidance-rich table th, .school-guide .guidance-rich table td {
  border: 1px solid #e0e0e0;
  padding: 10px 14px;
  text-align: left;
}
.school-guide .guidance-rich table th {
  background: #f3ece3;
  color: #333;
  font-weight: 700;
}
.school-guide .price .price-rich {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .school-guide .price .price-rich {
    padding: 30px 25px;
  }
}
.school-guide {
  /* スキル */
}
.school-guide .skill {
  padding: 120px 0;
  background: #fff;
}
.school-guide .skill .skill-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media screen and (max-width: 900px) {
  .school-guide .skill .skill-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .school-guide .skill .skill-list {
    grid-template-columns: 1fr;
  }
}
.school-guide .skill .skill-item {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
}
.school-guide .skill .skill-item h4 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}
.school-guide .skill .skill-item p {
  line-height: 1.8;
  color: #666;
}
.school-guide {
  /* リユース */
}
.school-guide .reuse {
  padding: 5rem 0;
}
.school-guide .reuse .reuse-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .school-guide .reuse .reuse-wrap {
    grid-template-columns: 1fr;
  }
}
.school-guide .reuse .reuse-text.center {
  text-align: center;
}
.school-guide .reuse .reuse-text span {
  display: block;
  color: #b58b47;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.school-guide .reuse .reuse-text h2 {
  line-height: 1.5;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .school-guide .reuse .reuse-text h2 {
    font-size: 2.5vw;
  }
}
.school-guide .reuse .reuse-text p {
  line-height: 2;
  color: #666;
}
.school-guide .reuse .reuse-image {
  height: 30vh;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}
.school-guide {
  /* CTA */
}
.school-guide .school-cta {
  padding: 120px 0;
  text-align: center;
  background: #f7f7f7;
}
.school-guide .school-cta h3 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.5;
  margin-bottom: 30px;
  color: #222;
}
.school-guide .school-cta p {
  line-height: 2;
  color: #666;
  margin-bottom: 40px;
}
.school-guide .school-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 65px;
  border-radius: 100px;
  background: #b58b47;
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}
.school-guide .school-cta .cta-btn:hover {
  opacity: 0.8;
}

#company .company {
  padding: 3rem 0;
}
#company .company .company_contents {
  width: 80%;
  padding: 3rem;
  margin: auto;
  margin-bottom: 5rem;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents {
    width: 95%;
    margin-bottom: 2rem;
  }
}
#company .company .company_contents .lower_headline {
  color: #333;
}
#company .company .company_contents table {
  width: 100%;
  margin: auto;
  margin-bottom: 2vw;
  border-collapse: collapse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents table {
    width: 100%;
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table {
    width: 100%;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    border-bottom: 1px solid #8B5E3C;
  }
}
#company .company .company_contents table tr th, #company .company .company_contents table tr td {
  padding: 1.5vw;
  color: #333;
  border-bottom: 1px solid #8B5E3C;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents table tr th, #company .company .company_contents table tr td {
    padding: 3vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr th, #company .company .company_contents table tr td {
    padding: 8vw 4vw;
    font-size: 3.3vw;
    text-align: start;
    border-bottom: none;
  }
}
#company .company .company_contents table tr th {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr th {
    width: 100%;
    padding-bottom: 1.5vw;
  }
}
#company .company .company_contents table tr td {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr td {
    width: 100%;
    padding-top: 1.5vw;
  }
}
#company .company .company_contents .company_photos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2%;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .company_photos {
    flex-flow: column;
    gap: 4vw;
    margin-bottom: 6vw;
  }
}
#company .company .company_contents .company_photos .company_photo {
  flex: 1;
  min-width: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .company_photos .company_photo {
    width: 100%;
  }
}
#company .company .company_contents .company_photos .company_photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  border-radius: 0.5rem;
}
#company .company .company_contents .company_photos .company_photo figcaption {
  margin-top: 0.6em;
  text-align: center;
  color: #333;
  font-weight: 700;
}
#company .company .company_contents .map {
  width: 100%;
}
#company .company .company_contents .map iframe {
  width: 100%;
}

#sales .sales {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales .lower_headline {
    margin-bottom: 6vw;
  }
}
#sales .sales ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #sales .sales ul {
    flex-flow: column;
  }
}
#sales .sales ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 45%;
  margin-bottom: 2vw;
  padding-bottom: 1vw;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li {
    width: 100%;
  }
}
#sales .sales ul li .sales_name {
  width: 40%;
}
#sales .sales ul li .sales_name h4 {
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li .sales_name h4 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li .sales_name h4 {
    font-size: 3.3vw;
  }
}
#sales .sales ul li .sales_contents {
  width: 60%;
}
#sales .sales ul li .sales_contents p {
  color: #fff;
  margin-bottom: 0.5vw;
}
#sales .sales ul li .sales_contents .tel {
  color: #5C3A21;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li .sales_contents .tel {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li .sales_contents .tel {
    font-size: 3.3vw;
  }
}
#sales .sales ul li .sales_contents .tel i {
  margin-right: 1vw;
}

#philosophy .philosophy {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #philosophy .philosophy {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy .lower_headline {
    margin-bottom: 6vw;
  }
}
#philosophy .philosophy table {
  width: 100%;
}
#philosophy .philosophy table tbody {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy table tbody {
    flex-flow: column;
  }
}
#philosophy .philosophy table tr {
  width: 45%;
  margin-bottom: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy table tr {
    width: 100%;
    margin-bottom: 6vw;
  }
}
#philosophy .philosophy table tr th, #philosophy .philosophy table tr td {
  color: #fff;
  padding: 0.5vw;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #philosophy .philosophy table tr th, #philosophy .philosophy table tr td {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy table tr th, #philosophy .philosophy table tr td {
    font-size: 3.3vw;
  }
}
#philosophy .philosophy table tr th {
  width: 40%;
}
#philosophy .philosophy table tr td {
  width: 60%;
}

#recruit {
  margin-bottom: 5rem;
}
#recruit .recruit .recruit_text {
  margin-bottom: 8vw;
}
#recruit .recruit .recruit_text p {
  font-size: 1.2vw;
}
#recruit .recruit .recruit_contents {
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents {
    width: 90%;
  }
}
#recruit .recruit .recruit_contents .recruit_content {
  color: #333;
  background-color: #f1f1f1;
  padding: 3rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content {
    width: 100%;
    padding: 3rem 1rem;
    margin-bottom: 3rem;
  }
}
#recruit .recruit .recruit_contents .recruit_content h2 {
  color: #333;
  font-size: 1.8vw;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content h2 {
    font-size: 4.5vw;
  }
}
#recruit .recruit .recruit_contents .recruit_content table {
  width: 100%;
  margin: auto;
  margin-bottom: 2vw;
  border-collapse: collapse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_content table {
    width: 100%;
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table {
    width: 100%;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table tr {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    border-bottom: 1px solid #333;
  }
}
#recruit .recruit .recruit_contents .recruit_content table tr th, #recruit .recruit .recruit_contents .recruit_content table tr td {
  padding: 1.5vw;
  color: #333;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_content table tr th, #recruit .recruit .recruit_contents .recruit_content table tr td {
    padding: 3vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table tr th, #recruit .recruit .recruit_contents .recruit_content table tr td {
    padding: 8vw 4vw;
    font-size: 3.3vw;
    text-align: start;
    border-bottom: none;
  }
}
#recruit .recruit .recruit_contents .recruit_content table tr th {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table tr th {
    width: 100%;
    padding-bottom: 1.5vw;
  }
}
#recruit .recruit .recruit_contents .recruit_content table tr td {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table tr td {
    width: 100%;
    padding-top: 1.5vw;
  }
}
#recruit .recruit_btn {
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_btn {
    width: 90%;
  }
}
#recruit .recruit_btn a {
  text-decoration: none;
}
#recruit .recruit_btn a button {
  width: 100%;
  padding: 1.5vw;
  transition: all 0.4s;
  border: none;
  color: #212121;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_btn a button {
    padding: 3vw 2vw;
  }
}
#recruit .recruit_btn a button:hover {
  color: #fff;
  background-color: #8B5E3C;
}

#recruit_form .recruit_form {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form {
    width: 95%;
  }
}
#recruit_form .recruit_form .recruit_form_text {
  margin-bottom: 8vw;
}
#recruit_form .recruit_form .recruit_form_text p {
  color: #fff;
  line-height: 2vw;
}
#recruit_form .recruit_form form {
  width: 100%;
  margin-bottom: 8vw;
}
#recruit_form .recruit_form form table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-top: 1px solid #fff;
}
#recruit_form .recruit_form form table tr {
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr {
    display: flex;
    flex-flow: column;
  }
}
#recruit_form .recruit_form form table tr th, #recruit_form .recruit_form form table tr td {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr th, #recruit_form .recruit_form form table tr td {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr th, #recruit_form .recruit_form form table tr td {
    font-size: 3.3vw;
  }
}
#recruit_form .recruit_form form table tr th {
  padding: 40px 0;
  width: 35%;
  text-align: end;
  padding-right: 80px;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr th {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr th {
    width: 100%;
    border-bottom: none;
    text-align: start;
    padding: 10px 0;
    padding-top: 20px;
    padding-left: 0px;
  }
}
#recruit_form .recruit_form form table tr th span.red {
  padding: 10px;
  background-color: red;
  color: #fff;
  margin-left: 20px;
}
#recruit_form .recruit_form form table tr th span.blue {
  padding: 10px;
  background-color: blue;
  color: #fff;
  margin-left: 20px;
}
#recruit_form .recruit_form form table tr td {
  padding: 40px 0;
  width: 65%;
  padding-right: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td {
    width: 100%;
    padding: 10px 0;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
#recruit_form .recruit_form form table tr td .mushroom input {
  width: 1vw;
  height: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td .mushroom input {
    width: 2vw;
    height: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td .mushroom input {
    width: 4vw;
    height: 4vw;
  }
}
#recruit_form .recruit_form form table tr td .number {
  margin-top: 2vw;
}
#recruit_form .recruit_form form table tr td input {
  width: 80%;
  height: 50px;
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td input {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td input {
    width: 100%;
  }
}
#recruit_form .recruit_form form table tr td textarea {
  width: 80%;
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td textarea {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td textarea {
    width: 100%;
  }
}
#recruit_form .recruit_form form table tr:first-child td {
  display: flex;
  color: #fff;
  width: 100%;
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field {
  width: 35%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr:first-child td .mwform-radio-field {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr:first-child td .mwform-radio-field {
    width: 45%;
  }
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field label {
  display: flex;
  height: 20px;
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field input {
  width: 10%;
  height: 100%;
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field .mwform-radio-field-text {
  display: inline-block;
  height: 100%;
}
#recruit_form .recruit_form form table tr:last-child td {
  display: flex;
  color: #fff;
  width: 100%;
}
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field {
  width: 35%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr:last-child td .mwform-radio-field {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr:last-child td .mwform-radio-field {
    width: 45%;
  }
}
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field label {
  display: flex;
  height: 20px;
}
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field input {
  width: 10%;
  height: 100%;
}
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field .mwform-radio-field-text {
  display: inline-block;
  height: 100%;
}
#recruit_form .recruit_form form table tr:nth-child(4) td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr:nth-child(4) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr:nth-child(4) td input {
    width: 29% !important;
  }
}
#recruit_form .recruit_form form .agree {
  text-align: center;
  margin: 20px 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .agree {
    margin: 10px 0;
  }
}
#recruit_form .recruit_form form .submit {
  text-align: center;
}
#recruit_form .recruit_form form .submit input {
  padding: 20px 180px;
  font-size: 18px;
  border: none;
  color: #212121;
  background-color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .submit input {
    padding: 10px 90px;
  }
}
#recruit_form .recruit_form form .submit input:hover {
  color: #fff;
  background-color: #8B5E3C;
}
#recruit_form .recruit_form form .submit input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .submit input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#recruit_form .recruit_form form .submit input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .submit input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}

#news .news .news_contents {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents {
    width: 95%;
  }
}
#news .news .news_contents h4 {
  color: #fff;
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents h4 {
    text-align: left;
    margin-bottom: 8vw;
  }
}
#news .news .news_contents ul {
  width: 80%;
  margin: auto;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul {
    width: 100%;
  }
}
#news .news .news_contents ul a {
  display: block;
  text-decoration: none;
  color: #fff;
  margin-bottom: 2vw;
}
#news .news .news_contents ul a li {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
}
#news .news .news_contents ul a .date {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents ul a .date {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a .date {
    font-size: 2.5vw;
    width: 20%;
  }
}
#news .news .news_contents ul a .outline {
  margin-left: 3vw;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a .outline {
    width: 75%;
  }
}
#news .news .news_contents ul a .outline .sp_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1vw;
  color: #fff;
}
#news .news .news_contents ul a .outline .sp_title .title {
  margin-right: 1vw;
  font-size: 1.2vw;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents ul a .outline .sp_title .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a .outline .sp_title .title {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a .outline .sp_title i {
    font-size: 3vw;
  }
}
#news .news .news_contents ul a .outline .descn p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents ul a .outline .descn p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a .outline .descn p {
    font-size: 2.5vw;
  }
}

.navigation {
  margin-top: 4vw;
  margin-bottom: 2vw;
  text-align: center;
}
.navigation .current {
  border: none;
  color: #fff;
}
.navigation a {
  border: none;
  color: #fff;
}

.wp-pagenavi a, .wp-pagenavi span {
  border: none !important;
  margin-left: 20px !important;
}

#news_single .news_single {
  margin-bottom: 4vw;
}
#news_single .news_single .news_contents {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents {
    width: 95%;
  }
}
#news_single .news_single .news_contents h4 {
  color: #fff;
  margin-bottom: 4vw;
}
#news_single .news_single .news_contents ul {
  width: 80%;
  margin: auto;
  list-style: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul {
    width: 100%;
  }
}
#news_single .news_single .news_contents ul li {
  display: block;
  text-decoration: none;
  color: #fff;
  margin-bottom: 2vw;
}
#news_single .news_single .news_contents ul li .outline .date {
  font-size: 0.8vw;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul li .outline .date {
    font-size: 1.2vw;
    margin-bottom: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul li .outline .date {
    font-size: 2.5vw;
    margin-bottom: 2.5vw;
  }
}
#news_single .news_single .news_contents ul li .outline .sp_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5vw;
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul li .outline .sp_title {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul li .outline .sp_title {
    margin-bottom: 4vw;
  }
}
#news_single .news_single .news_contents ul li .outline .sp_title .title {
  margin-right: 1vw;
  font-size: 1.4vw;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul li .outline .sp_title .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul li .outline .sp_title .title {
    font-size: 3.3vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul li .outline .sp_title i {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul li .outline .sp_title i {
    font-size: 3vw;
  }
}
#news_single .news_single .news_contents ul li .outline .descn p {
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul li .outline .descn p {
    font-size: 1.2vw;
    line-height: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul li .outline .descn p {
    font-size: 2.5vw;
    line-height: 4vw;
  }
}

.contact-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 80%;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact-nav {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .contact-nav {
    width: 95%;
    gap: 1rem;
  }
}
.contact-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background-color: #8B5E3C;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1vw;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact-nav a {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  .contact-nav a {
    width: 100%;
    justify-content: center;
    font-size: 3.6vw;
    padding: 3.5vw;
  }
}
.contact-nav a i {
  margin-right: 0.2rem;
}
.contact-nav a:hover {
  opacity: 0.8;
}

.contact-title {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-title span {
  display: block;
  font-family: "Cinzel", serif;
  color: #8B5E3C;
  letter-spacing: 0.2vw;
}
.contact-title h2 {
  color: #5C3A21;
  margin: 0.5rem 0;
}
.contact-title p {
  color: #333;
}

#contact .contact {
  width: 80%;
  margin: auto;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact {
    width: 95%;
  }
}
#contact .contact .contact_text {
  color: #333;
  margin-bottom: 3rem;
}
#contact .contact .contact_text p {
  font-size: 1.2vw;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_text p {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text p {
    font-size: 3.3vw;
    text-align: left;
  }
}
#contact .contact .form {
  width: 100%;
  margin-bottom: 8vw;
}
#contact .contact .form .wpcf7 {
  color: #333;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 5rem;
  border-radius: 10px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .wpcf7 {
    padding: 5rem 1rem;
  }
}
#contact .contact .form .wpcf7 label {
  display: block;
  margin-bottom: 2rem;
  font-size: 100%;
  font-weight: 600;
  color: #333333;
}
#contact .contact .form .wpcf7 label .red {
  background-color: #ff0000;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .form .wpcf7 label .blue {
  background-color: #2986ff;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .form .wpcf7 label .wpcf7-form-control-wrap input {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
}
#contact .contact .form .wpcf7 label textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
  height: 250px;
  resize: vertical;
}
#contact .contact .form .wpcf7 label.policy {
  text-align: center;
}
#contact .contact .form .wpcf7 label.policy input {
  width: auto;
}
#contact .contact .form .wpcf7 .wpcf7 input[type=url], #contact .contact .form .wpcf7 .wpcf7 input[type=email], #contact .contact .form .wpcf7 .wpcf7 input[type=tel] {
  padding: 2rem;
  margin-bottom: 2rem;
  height: 20px;
}
#contact .contact .form .wpcf7 input[type=submit] {
  color: #fff;
  background-color: #8B5E3C;
  cursor: pointer;
  transition: background-color 0.4s ease;
  border: none;
  width: 80%;
  margin: auto 10%;
  font-size: 120%;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
}
#contact .contact .form .wpcf7 input[type=submit]:hover {
  opacity: 0.7;
}
#contact .contact .form .wpcf7 .wpcf7-response-output {
  font-size: 160%;
  text-align: center;
  padding: 1rem;
  color: #333;
  font-weight: 600;
}
#contact .contact .form .wpcf7 .wpcf7-form-control {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
#contact .contact .form .thanks {
	color:#333;
  text-align: center;
  font-size: 140%;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .thanks {
    text-align: left;
    font-size: 100%;
  }
}

#order {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #order {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #order {
    width: 95%;
  }
}
#order .order-title {
  text-align: center;
  margin-bottom: 3rem;
}
#order .order-title span {
  display: block;
  font-family: "Cinzel", serif;
  color: #8B5E3C;
  letter-spacing: 0.2vw;
}
#order .order-title h2 {
  color: #5C3A21;
  margin: 0.5rem 0;
}
#order .order-title p {
  color: #333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #order .order-title p {
    text-align: left;
  }
}
#order .order_agreement {
  text-align: center;
  color: #333;
  margin-bottom: 2.5rem;
}
#order .order_agreement p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #order .order_agreement p {
    text-align: left;
  }
}
#order .order_agreement .order_agreement_btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
#order .order_agreement .order_agreement_btns a {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background-color: #5C3A21;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1vw;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #order .order_agreement .order_agreement_btns a {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #order .order_agreement .order_agreement_btns a {
    font-size: 3.3vw;
  }
}
#order .order_agreement .order_agreement_btns a:hover {
  opacity: 0.8;
}
#order .form {
  width: 100%;
}
#order .form .wpcf7 {
  color: #333;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 4rem;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #order .form .wpcf7 {
    padding: 2rem 1rem;
  }
}
#order .form .wpcf7 label {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #333;
}
#order .form .wpcf7 .red {
  background-color: #ff0000;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 8px;
  font-size: 80%;
}
#order .form .wpcf7 input[type=text],
#order .form .wpcf7 input[type=email],
#order .form .wpcf7 input[type=tel] {
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
}
#order .form .wpcf7 textarea {
  width: 100%;
  height: 180px;
  padding: 1rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  resize: vertical;
}
#order .form .wpcf7 .wpcf7-checkbox,
#order .form .wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-top: 0.6rem;
}
#order .form .wpcf7 .wpcf7-list-item {
  margin: 0;
}
#order .form .wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-weight: 400;
}
#order .form .wpcf7 .wpcf7-list-item input[type=checkbox],
#order .form .wpcf7 .wpcf7-list-item input[type=radio] {
  width: auto;
  margin-right: 0.4rem;
}
#order .form .wpcf7 .order-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#order .form .wpcf7 .order-cols label {
  flex: 1;
  min-width: 200px;
}
@media screen and (max-width: 768px) {
  #order .form .wpcf7 .order-cols label {
    min-width: 100%;
  }
}
#order .form .wpcf7 .order-accept {
  text-align: center;
  font-weight: 400;
  margin-top: 1rem;
}
#order .form .wpcf7 .order-accept input {
  width: auto;
  margin-right: 0.5rem;
}
#order .form .wpcf7 input[type=submit] {
  display: block;
  color: #fff;
  background-color: #8B5E3C;
  cursor: pointer;
  border: none;
  width: 80%;
  margin: 1.5rem auto 0;
  font-size: 120%;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
  transition: opacity 0.3s;
}
#order .form .wpcf7 input[type=submit]:hover {
  opacity: 0.7;
}
#order .form .wpcf7 .wpcf7-response-output {
  text-align: center;
  font-weight: 600;
  color: #333;
  margin-top: 1rem;
}

.policy_contents {
  width: 80%;
  margin: auto;
  padding: 3rem 0;
  color: #333;
}
@media screen and (max-width: 768px) {
  .policy_contents {
    width: 90%;
  }
}
.policy_contents h2 {
  font-size: 1.4vw;
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .policy_contents h2 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  .policy_contents h2 {
    font-size: 4vw;
  }
}
.policy_contents p {
  margin-bottom: 3rem;
}

#top_sns_link {
  padding: 4rem 0;
  background: #f8f5f1;
}
#top_sns_link .sns_wrap {
  width: 85%;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_sns_link .sns_wrap {
    gap: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_sns_link .sns_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_sns_link .sns_wrap {
    flex-direction: column;
  }
}
#top_sns_link .sns_card {
  width: 48%;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_sns_link .sns_card {
    gap: 1.5rem;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #top_sns_link .sns_card {
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
#top_sns_link .sns_card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed #C19A6B;
  border-radius: 16px;
  pointer-events: none;
}
#top_sns_link .sns_card .sns_qr {
  width: 49%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_sns_link .sns_card .sns_qr {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #top_sns_link .sns_card .sns_qr {
    width: 150px;
  }
}
#top_sns_link .sns_card .sns_qr img {
  width: 100%;
  display: block;
}
#top_sns_link .sns_card .sns_content {
  width: 49%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_sns_link .sns_card .sns_content {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #top_sns_link .sns_card .sns_content {
    width: 100%;
  }
}
#top_sns_link .sns_card .sns_content h3 {
  font-size: 1.4rem;
  color: #5C3A21;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_sns_link .sns_card .sns_content h3 {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_sns_link .sns_card .sns_content h3 {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  #top_sns_link .sns_card .sns_content h3 {
    font-size: 1.2rem;
  }
}
#top_sns_link .sns_card .sns_content p {
  line-height: 2;
  color: #333;
  margin-bottom: 1.5rem;
}
#top_sns_link .sns_card .sns_content a {
  font-size: 1rem;
  display: inline-block;
  padding: 12px 3ch;
  background-color: #5C3A21;
  color: #fff;
  text-decoration: none;
  position: relative;
  border-radius: 30px;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_sns_link .sns_card .sns_content a {
    padding: 12px 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_sns_link .sns_card .sns_content a {
    padding: 12px 20px;
  }
}
@media screen and (max-width: 768px) {
  #top_sns_link .sns_card .sns_content a {
    font-size: 0.9rem;
    padding: 12px 28px;
  }
}
#top_sns_link .sns_card .sns_content a::before, #top_sns_link .sns_card .sns_content a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  border-top: 1px dashed #C19A6B;
}
#top_sns_link .sns_card .sns_content a::before {
  top: 6px;
}
#top_sns_link .sns_card .sns_content a::after {
  bottom: 6px;
}
#top_sns_link .sns_card .sns_content a:hover {
  background-color: #3E2723;
  transform: translateY(-3px);
}
#top_sns_link .instagram .sns_content h3 {
  color: #E1306C;
}
#top_sns_link .instagram .sns_content a {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}
#top_sns_link .instagram .sns_content a:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}
#top_sns_link .instagram .sns_content a::before, #top_sns_link .instagram .sns_content a::after {
  border-color: rgba(255, 255, 255, 0.4);
}
#top_sns_link .line .sns_content h3 {
  color: #06C755;
}
#top_sns_link .line .sns_content a {
  background: #06C755;
}
#top_sns_link .line .sns_content a:hover {
  background: #039c42;
}

#footer_contact {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#footer_contact:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
#footer_contact .footer_contact_contents {
  position: relative;
  z-index: 10;
  padding: 3rem 1rem;
}
#footer_contact .footer_contact_contents .headline {
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}
#footer_contact .footer_contact_contents .headline h2 {
  font-family: "Cinzel", serif;
}
#footer_contact .footer_contact_contents .headline p {
  text-align: center;
}
#footer_contact .footer_contact_contents .footer_contact_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .footer_contact_content {
    flex-flow: column;
  }
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form {
    width: 90%;
  }
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel a, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form a {
  text-decoration: none;
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel a button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form a button {
  width: 100%;
  padding: 1vw;
  border: none;
  letter-spacing: 0.2vw;
  font-size: 1.2vw;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel a button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form a button {
    font-size: 1.8vw;
    padding: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel a button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form a button {
    padding: 2.5vw;
    font-size: 4vw;
  }
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel a button i, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form a button i {
  margin-right: 1vw;
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button {
  width: 100%;
  font-family: "Cinzel", serif;
  font-size: 1.2vw;
  font-weight: 600;
  padding: 1vw;
  line-height: 1;
  border: none;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button {
    font-size: 1.8vw;
    padding: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel button, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button {
    padding: 2.5vw;
    font-size: 3.5vw;
  }
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_tel button i, #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button i {
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form {
    margin-top: 4vw;
  }
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button {
  color: #8B5E3C;
  background-color: #fff;
  transition: all 0.4s;
  cursor: pointer;
}
#footer_contact .footer_contact_contents .footer_contact_content .footer_contact_form button:hover {
  color: #fff;
  background-color: #8B5E3C;
}
#footer_contact .footer_contact_contents .text {
  text-align: center;
  color: #fff;
  margin-bottom: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #footer_contact .footer_contact_contents .text {
    margin-bottom: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #footer_contact .footer_contact_contents .text {
    font-size: 90%;
    margin-bottom: 2.5vw;
  }
}

footer {
  background-color: #8B5E3C;
}
@media screen and (max-width: 768px) {
  footer {
    height: 70vw;
  }
}
footer .footer_menu {
  padding-top: 4vw;
}
@media screen and (max-width: 768px) {
  footer .footer_menu {
    padding-top: 8vw;
  }
}
footer .footer_menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  margin: auto;
  margin-bottom: 2vw;
  list-style: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_menu ul {
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul {
    width: 95%;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul li {
    margin-bottom: 4vw;
  }
}
footer .footer_menu ul li a {
  font-size: 1vw;
  color: #fff;
  text-decoration: none;
  padding: 0 1vw;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_menu ul li a {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul li a {
    font-size: 3vw;
    padding: 0 4vw;
  }
}
footer .footer_menu ul li a:hover {
  opacity: 0.75;
}
footer .footer_menu ul li .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}
footer .copyright {
  text-align: center;
  padding-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    padding-bottom: 4vw;
    padding-top: 8vw;
  }
}
footer .copyright p {
  color: #fff;
  font-size: 0.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .copyright p {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  footer .copyright p {
    font-size: 2.5vw;
  }
}

/* ビフォーアフター画像のクリック拡大（ライトボックス） */
.service-ba-img.is-zoomable {
  cursor: zoom-in;
}
.service-ba-img.is-zoomable:hover .service-ba-zoom {
  opacity: 1;
}
.service-ba-img .service-ba-zoom {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .service-ba-img .service-ba-zoom {
    opacity: 0.85;
  }
}
.ba-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4vw;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.ba-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ba-lightbox .ba-lightbox-inner {
  margin: 0;
  max-width: 92vw;
  max-height: 90vh;
  text-align: center;
  transform: scale(0.96);
  transition: transform 0.35s ease;
}
.ba-lightbox.is-open .ba-lightbox-inner {
  transform: scale(1);
}
.ba-lightbox .ba-lightbox-img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  cursor: default;
}
.ba-lightbox .ba-lightbox-caption {
  margin-top: 1rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.ba-lightbox .ba-lightbox-close {
  position: absolute;
  top: 4vw;
  right: 4vw;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background-color 0.25s;
}
.ba-lightbox .ba-lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.ba-lightbox .ba-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background-color 0.25s;
}
.ba-lightbox .ba-lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.ba-lightbox .ba-lightbox-nav.ba-lightbox-prev {
  left: 2vw;
}
.ba-lightbox .ba-lightbox-nav.ba-lightbox-next {
  right: 2vw;
}
@media screen and (max-width: 768px) {
  .ba-lightbox .ba-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .ba-lightbox .ba-lightbox-nav.ba-lightbox-prev {
    left: 3vw;
  }
  .ba-lightbox .ba-lightbox-nav.ba-lightbox-next {
    right: 3vw;
  }
}
body.ba-lightbox-lock {
  overflow: hidden;
}
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
fieldset legend {
  padding: 0;
  /* 旧 label と同じ文字スタイルに合わせる */
}
/*# sourceMappingURL=style.css.map */