/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/* #region 共通ページ */
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

/*=============================
  header
=============================*/
/* #region  */
/* .NavMenu_sp,
.header_contact_sp {
  display: none;
} */
.NavMenu_sp {
  display: none;
}

nav.NavMenu{             /* 既に display:flex; がある想定 */
  flex-wrap: nowrap;     /* 改行させない                    */
}

nav.NavMenu {
  display: flex;
  align-items:center;
  width: 100%;
  height: 120px;
  margin: 0;
}

/* ----- ロゴ ----- */
.header_logo   { flex: 0 0 150px; }      /* 絶対 150px で確保 */

/* ----- メニュー ----- */
.header_menu   { flex: 1 1 0; min-width: 0; } /* 残り幅を全部受け取る */

/* ----- 電話／営業時間 ----- */
.header_info   {                             /* 右端に固定幅で押し出す */
  flex: 0 0 250px;   /* 250px 確保／縮まない */
  margin-left: auto; /* ← これが “右寄せ” の決め手 */
  text-align: right;
  white-space: nowrap;  /* 電話を 1 行に保つ */
}

/* ----- 予約ボタンを使わないなら完全非表示 ----- */
.header_reserve{ display:none!important; }

.header_logo {
  width: 14%;
}

.header_info {
  width: 16%;
}

.header_reserve {
  width: 22%;
}

.header_logo a {
  display: block;
  width: 90%;
  height:auto;
  margin: 0 auto;
  padding:10px 0;  
  background-image: url(../images/logo.png);
  background-size:contain; 
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  transition: all 0.7s ease;
}

.header_logo a:hover {
  opacity: 0.5;
}


/* ===== ヘッダーメニュー ================================== */
.header_menu {
  flex:1 1 0; 
  display: flex;
  justify-content: center;   /* 中央寄せ & 均等幅にする土台   */
  gap: 16px;                 /* li 同士のすき間               */
  padding: 0;
  margin: 0;
  list-style: none;
}

.header_menu li {
  flex: 1 1 0;               /* 個数に合わせて自動均等割り    */
  min-width: 140px;          /* 文字が収まる最小幅            */
  position: relative;
  border-top:   2px solid #000;
  border-bottom:2px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-weight: 700;
  font-size: min(1vw, 16px);
}

/* 左右の縦線 */
.header_menu li::before,
.header_menu li::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 2px;
  height: calc(100% + 20px);
  background: #000;
}
.header_menu li::before { left: 0;  }
.header_menu li::after  { right: 0; }

/* リンク全体をクリック領域に */
.header_menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* 背景ハイライト＋ストライプ */
.header_menu span {
  position: relative;
  padding: 0 8px;
  background: linear-gradient(
               168deg,
               transparent 0 50%,
               #99d1ff   50% 100%);
}
.header_menu span::before,
.header_menu span::after {
  content: "";
  position: absolute;
  left: 25%;
  width: 60%;
  z-index: -1;
  background: repeating-linear-gradient(
               -30deg,
               transparent 0 3px,
               #fff      3px 6px);
}
.header_menu span::before { top:  8px; height: 18px; }
.header_menu span::after  { bottom:3px; height:  7px; }

/* ---------- スマホ (≤768px) は縦並び ---------- */
@media (max-width: 768px) {
  .header_menu {
    flex-direction: column;
    gap: 8px;
  }
  .header_menu li {
    min-width: unset;
    width: 100%;
    font-size: 14px;
  }
}


/*
.header_menu {
  display: flex;           
  justify-content: center;
  padding: 0;
  list-style: none;
}


.header_menu li {
  width: 100%;
  height: 40px;
  position: relative;
  margin: 0 8px;
  border-top: solid 2px black;
  border-bottom: solid 2px black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: min(1vw, 16px);
  flex: 1;               
  text-align: center;
}

.header_menu li:before,
.header_menu li:after {
  content: "";
  position: absolute;
  top: -10px;
  width: 2px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: black;
}

.header_menu li:before {
  left: 14px;
}

.header_menu li:after {
  right: 14px;
}

.header_menu a {
  margin: 0px 14px;
  padding: 12px 0;
  width: 100%;
  height: 36px;
  display: block;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.header_menu span {
  text-align: center;
  min-width: 50px;
  background: linear-gradient(
    168deg,
    transparent 0%,
    transparent 50%,
    #99d1ff 50%,
    #99d1ff 100%
  );
  z-index: -1;
}

.header_menu span::before {
  content: "";
  position: absolute;
  left: 25%;
  top: 8px;
  width: 60%;
  height: 18px;
  z-index: -1;
  background: repeating-linear-gradient(
    -30deg,
    transparent,
    transparent 3px,
    white 2px,
    white 4px
  );
}

.header_menu span:after {
  content: "";
  position: absolute;
  left: 25%;
  bottom: 2.7px;
  width: 60%;
  height: 7px;
  z-index: -1;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 2.5px,
    white 2px,
    white 4px
  );
}

*/



.header_info,
.header_reserve {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.header_info {
  font-size: 14px;
  margin-left: 1vw;
}

.header_info .store_tel {
  font-size: max(1.7vw, 18px);
  margin: 7px 0;
  color: #99d1ff;
  text-shadow: 1px 1px 1px #000000, -1px 1px 1px #000000, 1px -1px 1px #000000,
    -1px -1px 1px #000000, 1px 0px 1px #000000, 0px 1px 1px #000000,
    -1px 0px 1px #000000, 0px -1px 1px #000000;
}

.header_info .store_tel i {
  color: #99d1ff;
  margin-right: 5px;
  text-shadow: 2px 2px 0px #000000, -2px 2px 0px #000000, 2px -2px 0px #000000,
    -2px -2px 0px #000000, 2px 0px 0px #000000, 0px 2px 0px #000000,
    -2px 0px 0px #000000, 0px -2px 0px #000000;
}

.header_info li:nth-child(1),
.header_info li:nth-child(2) {
  font-size: max(0.8vw, 12px);
  font-weight: 900;
}

.header_info li:nth-child(4) {
  font-size: max(1vw, 16px);
  font-weight: 900;
}
.header_reserve {
  position: relative;
}
/* .header_reserve {
  display: none;
} */
.header_reserve .reserve_btn {
  width: 90%;
  height: 75%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  margin: 10px auto 0 auto;
  padding: 0 0 0 5%;
  background: rgba(255, 232, 102, 0.2);

  border: #000 8px double;
  border-radius: 15px;
  position: absolute;
  top: 0;
}

.header_reserve .reserve_btn div {
  display: flex;
  align-items: center;
}

.header_reserve .reserve_btn div:nth-child(1) {
  width: 90%;
  height: 20%;
  font-size: clamp(10px, 1vw, 16px);
  font-weight: 900;
}

.header_reserve .reserve_btn div:nth-child(2) {
  height: 65%;
  /* font-size: clamp(18px, 2.3vw, 36px); */
  font-size: clamp(18px, 1.75vw, 36px);
  font-weight: 900;
  color: #ffa333;
  letter-spacing: 4px;
  text-shadow: 1px 1px 1px #000000, -1px 1px 1px #000000, 1px -1px 1px #000000,
    -1px -1px 1px #000000, 1px 0px 1px #000000, 0px 1px 1px #000000,
    -1px 0px 1px #000000, 0px -1px 1px #000000;
}

.header_reserve .jagged_wrap {
  width: 220px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  -moz-transform: rotate(-8deg);
  -webkit-transform: rotate(-8deg);
  position: absolute;
  bottom: -10px;
  right: -20px;
  z-index: 1001;
}

.header_reserve .jagged_bg {
  background-image: url(../images/jagged.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 200px;
  height: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_reserve .jagged_wrap p {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 5px;
  padding: 0 5px;
  color: #fff;
  text-shadow: 1px 1px 1px #000000, -1px 1px 1px #000000, 1px -1px 1px #000000,
    -1px -1px 1px #000000, 1px 0px 1px #000000, 0px 1px 1px #000000,
    -1px 0px 1px #000000, 0px -1px 1px #000000;
}

/* ************ */
header .Toggle {
  display: none;
}

/* .header_info_tab {
  display: none;
} */

.fixedHeader_wrap {
  width: 100%;
  height: 75px;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 120px;
  z-index: 1000;
  border-top: #ccc 1px solid;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.4);
}

.fixedHeader_wrap li:first-child {
  margin-bottom: 10px;
}

.fixedHeader_wrap i {
  font-size: 22px;
  margin-right: 5px;
}

.fixedHeader_wrap a {
  font-size: 24px;
  line-height: 26px;
  color: #8d7fdb;
  text-shadow: 1px 1px 1px #000000, -1px 1px 1px #000000, 1px -1px 1px #000000,
    -1px -1px 1px #000000, 1px 0px 1px #000000, 0px 1px 1px #000000,
    -1px 0px 1px #000000, 0px -1px 1px #000000;
}
@media screen and (max-width: 1300px) and (min-width: 1100px) {
  header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin: 0 auto;
    padding: 0 0 0 20px;
    width: 100%;
    height: auto;
    min-height: 100px;
  }

  header > :first-child {
    margin-right: auto;
  }

  .header_logo {
    margin: 22px 0 0 0;
  }

  .header_logo a {
    display: block;
    max-width: 180px;
    width: 15vw;
    height: 54px;
    background-image: url(../images/logo.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
  }

  nav ul {
    float: left;
    margin: 1% 1.3vw 0 0;
    padding: 0 0 0 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  nav ul li {
    margin-right: 1vw;
    font-size: 1vw;
    letter-spacing: 0.2px;
  }

  nav ul li:last-child {
    margin-right: 0;
  }

  nav ul li a {
    font-weight: 500;
    transition: all 0.7s ease;
  }

  nav ul li a:hover {
    color: #388dc6;
  }

  p.store_info {
    float: left;
    margin: 23px 1vw 0 0;
    display: block;
    width: auto;
    font-size: 1vw;
    letter-spacing: 0.2px;
  }

  .tel {
    display: block;
    font-size: 2vw;
    width: auto;
    height: 33px;
    background-image: url(../images/tel_icon.png);
    background-size: 20px 22px;
    background-repeat: no-repeat;
    background-position: left 5px;
    text-indent: 28px;
    line-height: 32px;
    letter-spacing: 0.2px;
  }

  a.contact_btn {
    float: right;
    display: block;
    padding: 33px 0 0 66px;
    max-width: 180px;
    width: 15vw;
    height: 100px;
    background-color: #214985;
    font-size: 14px;
    color: #ffffff;
    background-image: url(../images/contact_btn_icon.png);
    background-size: 25px 26px;
    background-repeat: no-repeat;
    background-position: 24px 36px;
    font-weight: 500;
    line-height: 16px;
  }

  .dust_area {
    margin: 0 auto;
    padding: 18px 10px 0 10px;
    max-width: 1112px;
    text-align: left;
    font-size: 12px;
  }
}
@media screen and (max-width: 1099px) {
  main {
    /* margin-top: 50px; */
    margin-top: 130px;
  }

  nav.NavMenu {
    /* height: 100px; */
    height: 65px;
  }

  .header_info {
    display: none;
  }

  .header_menu { 
	 width:auto; 
  }

  .header_logo {
    width: 15%;
  }

  .header_reserve {
    width: 25%;
    padding: 0 10px;
  }
  /* .header_reserve .reserve_btn {
  max-width: 190px;
}
.header_reserve .reserve_btn div {
  width: 90%;
  margin: auto;
}
.header_reserve .jagged_wrap {
  bottom: -20px;
} */

  /* ************ */
  .fixedHeader_wrap {
    height: 50px;
    font-size: 14px;
    top: 80px;
    position: fixed;
  }

  .fixedHeader_wrap li:first-child {
    margin-bottom: 0;
  }

  .fixedHeader_wrap i {
    font-size: 18px;
  }

  .fixedHeader_wrap a {
    font-size: 20px;
  }
  .fixedHeader_wrap {
    height: 50px;
    font-size: 14px;
    background-color: #fff;
  }

  .fixedHeader_wrap li:first-child {
    margin-bottom: 0;
  }

  .fixedHeader_wrap i {
    font-size: 18px;
  }

  .fixedHeader_wrap a {
    font-size: 20px;
  }

  main {
    position: relative;
    overflow: hidden;
  }

  header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: left;
    margin: 0 auto;
    padding: 15px 0 0 3vw;
    width: 100%;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    overflow: hidden;
    z-index: 10000;
    background-color: #fff;
    position: fixed;
    top: 0;
  }

  header > :first-child {
    margin-right: 0;
  }

  .header_logo {
    margin: 0 0 0 0;
  }

  .header_logo a {
    display: block;
    width: 130px;
    max-width: 160px;
    min-width: 100px;
    height: 0;
    padding-bottom: 40px;
    background-image: url(../images/logo.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
    z-index: 10000;
  }

  nav.NavMenu {
    /* display: none; */
  }
	
.header_menu   { display:flex; }
.header_info,
.header_reserve{ display:block; } /* 必要なら */


  .header_contact_sp {
    display: flex;
    width: 40vw;
    justify-content: flex-end;
    align-items: baseline;
    font-size: 5px;
    position: absolute;
    top: 21px;
    right: 50px;
  }

  .header_contact_sp li {
    text-align: center;
  }

  .header_contact_sp img {
    width: 80%;
    max-width: 75px;
    display: block;
  }

  nav.NavMenu_sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    color: #000;
    text-align: center;
    width: 100%;
    transform: translateY(-150%);
    transition: all 0.6s;
    z-index: 999;
    overflow: hidden;
  }

  .overlay {
    display: none;
  }

  .overlay.is-hidden {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    background-color: rgba(33, 73, 134, 0.8);
  }

  nav.NavMenu_sp ul {
    clear: both;
    float: none;
    background-color: #fff;
    display: block;
    width: 100%;
    margin: 0 auto 30px auto;
    padding: 0;
    z-index: 10003;
    border-top: 1px solid #444444;
  }

  nav.NavMenu_sp ul li {
    padding: 0 5%;
    clear: both;
    float: none;
    display: block;
    font-size: 1.1em;
    list-style-type: none;
    width: 100%;
    border-bottom: 1px solid #444444;
  }

  nav.NavMenu_sp ul li.time {
    margin: 0 auto;
    padding: 18px 2%;
    clear: both;
    float: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #444444;
    width: 100%;
    font-size: 12px;
    overflow: hidden;
    text-align: center;
  }

  nav.NavMenu_sp ul li.time .time_sub {
    display: block;
    margin-right: 8px;
    text-align: center;
  }

  nav.NavMenu_sp ul li.time .time_sub:last-child {
    margin-right: 0px;
  }

  nav.NavMenu_sp ul li a {
    clear: both;
    float: none;
    display: flex;
    justify-content: left;
    align-items: center;
    color: #444444;
    transition: all 0.7s ease;
  }

  nav ul li img {
    width: 58px;
    margin: 0;
    height: 58px;
  }

  nav.NavMenu_sp ul li a:hover {
    color: #388dc6;
  }

  nav.NavMenu_sp.active {
    transform: translateY(130px);
    overflow: hidden;
    position: fixed;
  }

  header .Toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    z-index: 10003;
  }

  .Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px #214986;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    left: 6px;
  }

  .Toggle span:nth-child(1) {
    top: 9px;
  }

  .Toggle span:nth-child(2) {
    top: 18px;
  }

  .Toggle span:nth-child(3) {
    top: 27px;
  }

  /* 最初のspanをマイナス45度に */
  .Toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /* 2番目と3番目のspanを45度に */
  .Toggle.active span:nth-child(2),
  .Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@media screen and (max-width: 820px) {
  nav.NavMenu {
    height: 60px;
  }

  .header_menu,
  .header_info,
  .header_reserve {
    display: none;
  }

  .header_logo {
    width: 40%;
  }
  .header_logo a {
    max-width: 110px;
    margin-left: 10px;
  }
  .header_reserve {
    width: 60%;
  }
  /* .header_reserve .reserve_btn {
  max-width: 160px;
  right: 10px;
  height: 98%;
  margin-top: 2px;
  padding: 0 0 0 2%;
  border: #000 6px double;
}

.header_reserve .reserve_btn div:nth-child(1) {
  padding-bottom: 0;
}
.header_reserve .jagged_wrap {
  bottom: -25px;
  width: 180px;
  height: 50px;
}
.header_reserve .jagged_bg {
  width: 160px;
  height: 50px;
} */
}

@media screen and (max-width: 750px) {
}

@media screen and (max-width: 500px) {
}

@media screen and (max-width: 360px) {
}

/* #endregion */

/*=============================
  下部問合せ
=============================*/
/* #region  */
.bottom_contact_wrap {
  margin: 0 auto;
  width: 100%;
  height: 420px;
  background-image: url(../images/bottom_contact_wrap_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
}

.contact_info {
  margin: 0 auto;
  padding: 50px 10px 0 10px;
  position: relative;
  width: 100%;
  max-width: 1112px;
}

.contact_info h4 {
  margin-bottom: 45px;
  font-size: 32px;
  color: #214985;
}

.contact_info p {
  font-size: 18px;
  color: #214985;
  font-weight: 700;
  line-height: 26px;
}

/* .contact_info p.small_left {
  display: inline-block;
  margin-right: 53px;
  font-size: 12px;
  color: #214985;
  font-weight: 700;
  text-indent: 35px;
}

.contact_info p.small_right {
  display: inline-block;
  font-size: 12px;
  color: #214985;
  font-weight: 700;
} */

.info_wrap {
  margin: 20px auto 6px auto;
  display: flex;
  flex-wrap: nowrap;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  vertical-align: middle;
}

/* .info_wrap_02 {
  margin: 30px auto 6px auto;
  display: flex;
  flex-wrap: nowrap;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  vertical-align: middle;
} */

.toho {
  margin-right: 28px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  vertical-align: middle;
  width: 291px;
  height: 52.5px;
  background-color: #ffffff;
  border-radius: 20px;
  vertical-align: middle;
}

p.contact_info_tel {
  display: block;
  font-size: 32px;
  height: 33px;
  background-image: url(../images/tel_icon.png);
  background-size: 25px 28px;
  background-repeat: no-repeat;
  background-position: left 0;
  text-indent: 33px;
  line-height: 24px;
  letter-spacing: 1px;
}

p.contact_info_tel_sp {
  display: none;
}

@media screen and (max-width: 820px) {
  .contact_info h4 {
    margin-bottom: 45px;
    font-size: 28px;
    color: #214985;
  }

  .contact_info p {
    font-size: 16px;
    color: #214985;
    font-weight: 700;
    line-height: 24px;
  }

  p.contact_info_tel {
    display: none;
  }

  p.contact_info_tel_sp {
    display: block;
    font-size: 32px;
    height: 33px;
    background-image: url(../images/tel_icon.png);
    background-size: 25px 28px;
    background-repeat: no-repeat;
    background-position: left 0;
    text-indent: 33px;
    line-height: 24px;
    letter-spacing: 1px;
  }

  .toho {
    margin: 0 auto 16px auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    vertical-align: middle;
    height: 50px;
    background-color: #ffffff;
    border-radius: 20px;
    vertical-align: middle;
  }

  p.contact_info_tel {
    display: none;
  }

  p.contact_info_tel_sp {
    margin: 0 auto;
    display: inline-block;
    font-size: 32px;
    height: 33px;
    background-image: url(../images/tel_icon.png);
    background-size: 25px 28px;
    background-repeat: no-repeat;
    background-position: left 0;
    text-indent: 33px;
    line-height: 24px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 768px) {
  .contact_info h4 {
    margin-bottom: 45px;
    font-size: 28px;
    color: #214985;
  }
  .contact_info p {
    font-size: 16px;
    color: #214985;
    font-weight: 700;
    line-height: 24px;
  }

  p.contact_info_tel {
    display: none;
  }

  p.contact_info_tel_sp {
    display: block;
    font-size: 32px;
    height: 33px;
    background-image: url(../images/tel_icon.png);
    background-size: 25px 28px;
    background-repeat: no-repeat;
    background-position: left 0;
    text-indent: 33px;
    line-height: 24px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 750px) {
}

@media screen and (max-width: 500px) {
  .contact_info .info_wrap {
    position: relative;
    margin: 30px auto 20px auto;
    display: block;
    text-align: center;
  }

  .contact_info h4 {
    margin-bottom: 25px;
    font-size: 26px;
    color: #214985;
  }

  p.contact_info_tel {
    display: none;
  }

  p.contact_info_tel_sp {
    margin: 0 auto;
    display: inline-block;
    font-size: 32px;
    height: 33px;
    background-image: url(../images/tel_icon.png);
    background-size: 25px 28px;
    background-repeat: no-repeat;
    background-position: left 0;
    text-indent: 33px;
    line-height: 24px;
    letter-spacing: 1px;
  }

  .contact_info {
    margin: 0 auto;
    padding: 30px 10px 0 10px;
    position: relative;
    width: 100%;
    max-width: 1112px;
  }
  .toho {
    margin: 0 auto 16px auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    vertical-align: middle;
    height: 50px;
    background-color: #ffffff;
    border-radius: 20px;
    vertical-align: middle;
  }

  .info_wrap_btn {
    margin: 0 auto 16px auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    vertical-align: middle;
    width: 200px;
    height: 50px;
    background-color: #214985;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 20px;
    transition: all 0.7s ease;
  }

  .info_wrap_btn:first-child {
    margin-right: 19px;
  }

  .info_wrap {
    position: relative;
    margin: 20px auto 6px auto;
    display: block;
    text-align: center;
  }

  .info_wrap_02 {
    margin: 30px auto 6px auto;
    display: flex;
  }
}

@media screen and (max-width: 360px) {
  .contact_info h4 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #214985;
  }

  .contact_info p {
    font-size: 14px;
    color: #214985;
    font-weight: 700;
    line-height: 20px;
  }

  p.contact_info_tel {
    display: none;
  }

  p.contact_info_tel_sp {
    margin: 0 auto;
    display: inline-block;
    font-size: 26px;
    height: 33px;
    background-image: url(../images/tel_icon.png);
    background-size: 25px 28px;
    background-repeat: no-repeat;
    background-position: left -1px;
    text-indent: 33px;
    line-height: 24px;
    letter-spacing: 1px;
  }

  /* .contact_info p.small_left {
  display: inline-block;
  margin-right: 0;
  font-size: 12px;
  color: #214985;
  font-weight: 700;
  text-indent: 0;
}

.contact_info p.small_right {
  display: inline-block;
  font-size: 12px;
  color: #214985;
  font-weight: 700;
} */
  .info_wrap_btn {
    margin: 0 auto 16px auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    vertical-align: middle;
    width: 180px;
    height: 40px;
    background-color: #214985;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 20px;
    transition: all 0.7s ease;
  }

  .info_wrap_btn:first-child {
    margin-right: 10px;
  }

  .info_wrap {
    position: relative;
    margin: 30px auto 20px auto;
    display: block;
    text-align: center;
  }

  .info_wrap_02 {
    margin: 30px auto 0 auto;
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    vertical-align: middle;
  }
}

/* #endregion */

/*=============================
  footer
=============================*/
/* #region  */
footer h2 a {
  display: block;
  width: 185px;
  height: 54px;
  background-image: url(../images/logo.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  transition: all 0.7s ease;
}

footer h2 a:hover {
  opacity: 0.5;
}

footer {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  height: auto;
  background-color: #f2f2f2;
}

.footer_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 40px 0 80px 0;
  width: 100%;
  max-width: 1112px;
  height: auto;
}

.footer_wrap_sp {
  display: none;
}

.footer_info {
  margin-right: 17.98%;
}

/* トップに戻るボタン */
.top_btn {
  /* display: block; */
  display: none !important;
  position: fixed;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: url(../images/top_btn.png);
  background-position: left top;
  background-repeat: no-repeat;
  /* background-size: 150px 150px; */
  background-size: 120px 120px;
  text-indent: -9999px;
  z-index: 9998;
  transform: scale(-1, 1) rotate(30deg);
  -moz-transform: scale(-1, 1) rotate(30deg);
  -webkit-transform: scale(-1, 1) rotate(30deg);
}
.top_btn:hover {
  opacity: 0.6;
  transition: all 0.7s ease;
}
.wave_wrap {
  display: block;
  position: fixed;
  right: 0;

  text-indent: -9999px;
  z-index: 9999;
  bottom: 60px;
  /* animation: wave 1s; */
}
.wave_wrap .wave {
  width: 150px;
  height: 150px;
  background-image: url(../images/wave.png);
  background-position: left top;
  background-repeat: no-repeat;
  /* background-size: 150px 150px; */
  background-size: 150px 120px;
  z-index: 9999;
}
.wave_wrap .wave:nth-child(odd) {
  animation: wave 3s -3s linear infinite;
}

.wave_wrap .wave:nth-child(even) {
  animation: wave2 3s linear infinite;
}
@keyframes wave {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0px);
  }
}
/*
@keyframes wave2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
} */
/* .top_btn_sp {
  transform: scale(0, 0);
} */

/* サイトマップ */
.sitemap {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.3px;
}

.sitemap .sitemap_bukkennlist_pc {
  display: none;
}

.sitemap_bukkennlist_pc.is-hidden {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.sitemap_bukkennlist_pc li {
  border-bottom: 1px dotted #444444;
  width: 100%;
  height: auto;
  margin-left: 15px;
}

.is-hidden > i.togle_icon {
  transform: rotate(90deg);
}

.sitemap_sp {
  display: none;
}

.sitemap ul.left {
  margin: 40px 60px 0 0;
  font-size: 14px;
}

.sitemap ul.center {
  margin: 40px 60px 0 0;
  font-size: 12px;
}

.sitemap ul.right {
  margin: 40px 0 0 0;
  font-size: 12px;
}

ul.left li {
  margin-bottom: 10px;
}

ul.center li,
ul.right li {
  margin-bottom: 5px;
}

.sitemap ul a {
  transition: all 0.7s ease;
}

.sitemap ul a:hover {
  color: #388dc6;
}

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

  .footer_wrap_sp {
    display: block;
    padding: 40px 15px 80px 15px;
    width: 100%;
    max-width: 1112px;
    height: auto;
    min-height: auto;
  }

  .footer_info {
    margin: 0 auto;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }

  .footer_info h2 {
    margin: 0 auto 15px auto;
  }

  .footer_info h2 a {
    display: inline-block;
    width: 185px;
    height: 54px;
    background-image: url(../images/logo.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
  }

  .footer_info h2 a:hover {
    opacity: 0.7;
  }

  .bottom_tel {
    display: block;
    margin: 0 auto 13px auto;
    font-size: 26px;
    width: auto;
    height: 30px;
    background-image: none;
    line-height: 32px;
    text-indent: -16px;
    letter-spacing: 1px;
    text-align: center;
  }

  .bottom_tel_img {
    padding-right: 5px;
  }
  /*
.bottom_tel_img img {
  width: 30px;
  height: 28px;
}

.sitemap {
  display: none;
} */

  .sitemap_sp {
    display: block;
    width: 100%;
    height: auto;
  }

  .sitemap_sp ul.sitemap_sp_list {
    padding-bottom: 30px;
    font-size: 14px;
    width: 100%;
  }

  .sitemap_sp ul.sitemap_sp_list li {
    padding: 10px 0 15px 30px;
    border-bottom: 1px solid #444444;
    width: 100%;
    height: auto;
  }

  .sitemap_sp ul.sitemap_sp_list li.sitemap_sub_list,
  .sitemap_sp ul.sitemap_sp_list li.sitemap_bukkennlist_sp {
    border-bottom: none;
  }

  .sitemap_sp ul a {
    transition: all 0.7s ease;
  }

  .sitemap_sp ul a:hover {
    color: #388dc6;
  }

  .sitemap_sub_list,
  .sitemap_bukkennlist_sp {
    display: none;
  }

  .sitemap_sub_list.is-hidden,
  .sitemap_bukkennlist_sp.is-hidden {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .kijilink,
  .listlink_sp {
    cursor: pointer;
  }

  i.togle_icon {
    margin-left: 5px;
  }

  /* .sitemap_sub_list ul li:last-child,
.sitemap_bukkennlist_sp ul li:last-child {
  border-bottom: none;
} */

  /* トップに戻るボタン */
  /* .top_btn {
    transform: scale(0, 0);
  } */

  /* .top_btn_sp {
  display: block;
  position: fixed;
  bottom: 5vw;
  right: 0;
  width: 71px;
  height: 71px;
  background-image: url(../images/top_btn.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 71px 71px;
  text-indent: -9999px;
  z-index: 9999;
  transform: scale(1, 1);
} */

  .top_btn_sp:hover {
    opacity: 0.7;
    transition: all 0.7s ease;
  }

  /* コピーライト */
  .copyright_wrap {
    margin: 0 auto;
    padding: 12px 2% 0 2%;
    width: 100%;
    height: auto;
    max-width: 1920px;
    min-height: 142px;
    background-color: #214985;
    color: #ffffff;
    text-align: center;
    font-size: 11px;
  }
}

@media screen and (max-width: 820px) {
}
@media screen and (max-width: 768px) {
  .sitemap {
    padding-top: 20px;
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    letter-spacing: 0.3px;
    overflow: hidden;
  }

  .sitemap ul.left {
    margin: 0 70px 40px 0;
    font-size: 14px;
  }

  .sitemap ul.center {
    float: left;
    margin: 0 70px 20px 0;
    font-size: 12px;
  }

  .sitemap ul.right {
    float: left;
    margin: 0 0 20px 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
}

@media screen and (max-width: 500px) {
}

@media screen and (max-width: 360px) {
  .sitemap_sp ul.sitemap_sp_list li {
    padding: 10px 0 15px 15px;
    border-bottom: 1px solid #444444;
    width: 100%;
    height: auto;
  }
}

/* #endregion */

/*=============================
  copyright
=============================*/
/* #region  */
.copyright_wrap {
  margin: 0 auto;
  padding-top: 12px;
  width: 100%;
  max-width: 1920px;
  height: 162px;
  background-color: #214985;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
}
/*
.copyright_wrap a {
  color: white;
} */

@media screen and (max-width: 1099px) {
}

@media screen and (max-width: 820px) {
}

@media screen and (max-width: 750px) {
}

@media screen and (max-width: 500px) {
}

@media screen and (max-width: 360px) {
}

/* #endregion */

/*=============================
  ＜固定＞下部問合せ
=============================*/
/* #region  */
.footer_contact_wrap {
  position: fixed;
  width: 100%;
  height: 80px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  /* background-color: rgba(255, 255, 255, 1); */
  /* background-color: rgba(255, 215, 0, 0.7); */
  /* background-color: rgba(153, 209, 255, 0.7); */
  /* background-color: rgba(6, 200, 217, 0.7); */
  /* background-color: rgba(199, 217, 7, 0.7); */
  /* background-color: rgba(234, 255, 8, 0.7); */
  /* background-color: rgba(135, 206, 235, 0.8); */
  z-index: 10;
  display: none;
}
.footer_contact_innner {
  width: 100%;
}
.fc_desc {
  /* display: flex; */
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: clamp(12px, 1.6vw, 28px);
  line-height: 2.2vw;
  font-weight: 900;
  width: 50%;
}

.color_99d1ff {
  color: #99d1ff;
}
.color_ffa333 {
  color: #ffa333;
}
.fc_desc span {
  font-size: clamp(16px, 2.2vw, 34px);
  /* letter-spacing: 4px; */
  letter-spacing: 4px;
  margin: 0 2px;
  text-shadow: 1px 1px 1px #000000, -1px 1px 1px #000000, 1px -1px 1px #000000,
    -1px -1px 1px #000000, 1px 0px 1px #000000, 0px 1px 1px #000000,
    -1px 0px 1px #000000, 0px -1px 1px #000000;
}
.fc_btn {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  height: 70%;
  /* width: 50%; */
  max-width: 800px;
}
.header_reserve_btn {
  height: 70%;
}
.btn_form {
  /* width: 32%; */
  width: 90%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1vw;
  font-size: clamp(16px, 1.6vw, 20px);
  cursor: pointer;
  overflow: hidden;
}
.btn_form img,
.btn_form img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
  border: #00506d 1px solid;
  background-color: rgba(255, 255, 255, 0.5);
}
.btn_form::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2.5s infinite;
}

/*hoverした際の移動のアニメーション*/
/* .footer_contact_btn:hover::before {
  animation: shine 2.5s;
} */

@keyframes shine {
  100% {
    left: 200%;
  }
}

/* --------------------------------------------- */
.btn_form {
  color: #000;
  text-decoration: none;
  vertical-align: middle;
  position: relative;
  z-index: 10;
}

.btn_form {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: all 700ms ease;
  color: #fff;
  background: #00bcff;
  border-radius: 4px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  font-weight: bold;
  border: solid 2px #00506d;
  text-shadow: 1px 1px 0px #00506d, -1px 1px 0px #00506d, 1px -1px 0px #00506d,
    -1px -1px 0px #00506d, 1px 0px 0px #00506d, 0px 1px 0px #00506d,
    -1px 0px 0px #00506d, 0px -1px 0px #00506d;
}

.btn_form:hover {
  color: #ffa333;
}

@media screen and (max-width: 1099px) {
}

@media screen and (max-width: 820px) {
  .footer_contact_wrap {
    flex-flow: column;
  }
  .fc_desc {
    width: 100%;
    height: 40%;
  }
  .fc_btn {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
}

@media screen and (max-width: 500px) {
  .footer_contact_btn .br_sp {
    display: block;
  }
}

@media screen and (max-width: 360px) {
  .fc_desc {
    font-size: 11px;
  }
  .fc_desc span {
    font-size: 14px;
  }
}

/* #endregion */

/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
/* #endregion 共通ページ */
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/

/* .fixedHeader_wrap{
  height: auto;
}
.temp20231107 {
  height: auto;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  background-color: #cd5c5c;

  z-index: 10;
}
.temp20231107 b {
  font-weight: bold;
  color: #ffffff;
}
@media screen and (max-width: 1099px) {

} */
