@charset "utf-8";

.cta_area{
	text-align: center;
	padding: 32px;
}

.cta_area .btn a{
	background: linear-gradient(-3deg, #3E0788 -12.01%, #FD026E 92.89%) !important;
	border: none;
	border-radius: 8px;
	width: 100%;
	max-width: 700px;
}

span.txt03 {
	display: block;
	line-height: 1;
}

.fee_tbl_ttls th {
    line-height: 24px;
}


p.annotation_txt {
    clear: both;
    font-size: 12px;
    line-height: 1.8em;
    text-align: left;
    color: #000;
}

.fee_tbl table{
	margin: 0;
	width: 100%;
}


select,input{
  border: solid 1px #454545;
  border-radius: 4px;
  color: #000 !important;
}

.select-wrapper {
  position: relative;
  width: 80%;
  margin: 5px 0 0 0;
}


.select-wrapper select {
  width: 100%;
  padding: 15px !important;
  font-size: 14px;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
}

.select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #000;
}

.close-x {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.close-x::before,
.close-x::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #333;
  transform-origin: center;
}

.close-x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebtn{
  position: fixed;
  transition: all 0.2s ease, visibility 0s;
  top: 80px;
  right: 20px;
  background: linear-gradient(#e90371, #5c0884);
  display: flex;
  border-radius: 100px;
  height: 150px;
  width: 150px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  box-shadow: 7.07px 7.07px 13px 0 rgba(0, 0, 0, 0.35);
  align-items: center;
  justify-content: center;
  z-index: 1000; 
}

.sidebtn a{
  color: #fff;
  padding-bottom: 10px;
}

.sidebtn a span{
  font-size: 22px;
  font-weight: normal;
}



@media screen and (max-width: 736px) {
    .sp_header ul.contact_btn li {
        width: 70% !important;
    }
}

@media screen and (max-width: 767px) {
    .fee_tbl_ttls th {
        line-height: 19px;
    }
}

@media screen and (max-width: 767px) {
    .fee_tbl table {
        margin: 0;
    }
}

/* 基本ヘッダー */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ccc;
  position: fixed;
  top: 0;
  height: 60px;
  width: 100%;
  z-index: 1000;
  background: #f1f1f3;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0 12px;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

/* 電話番号と予約ボタン */
.header-contact {
  display: flex;
  align-items: center;
  width: 140px;
}

.tel {
  margin-right: 10px;
  color: #333;
}

.btn-reserve {
  background: #e60012;
  color: #fff;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

/* ハンバーガーアイコン */
.menu-toggle {
  display: none;
  flex-direction: column;
  width: 24px;
  height: 18px;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2000; 
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 24px;   
  height: 3px;
  background: #333;
  border-radius: 1px;
}

/* レスポンシブ（SP用） */
@media screen and (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .header-contact {
    position: absolute;
    right: 64px;
  }
}

/* ハンバーガーアイコン開閉時（×表示） */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 6px;
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8.5px;
}

.menu-toggle span {
  transition: all 0.3s ease;
}

