/*common_css*/
/* ローディング画面：本番同様に非表示 */
#loading-wrap {
  display: none;
}

/* フォントは Google Fonts で読み込み（style.php）：Noto Sans JP, Oswald, Sawarabi Gothic */
[class^="icon-"],
[class*=" icon-"] {
  font-family: "Noto Sans JP", sans-serif;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* デフォルトのpaddingを削除 */
ul,
li,
ul[class],
ol[class] {
  padding: 0;
}

/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
  list-style: none;
}

/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  display: block;
}

/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
  margin-top: 1em;
}

/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
}

/***幅指定***/
[data-w-width] {
  max-width: 100%;
}

/*コンテンツ幅での設置*/
[data-w-width="1"] {
  width: 1170px;
  width: 1170px;
  margin: 0 auto;
}
@media (max-width: 1169px) {
  [data-w-width="1"] {
    width: calc(100% - 5%);
  }
}
@media (max-width: 768px) {
  [data-w-width="1"] {
    width: calc(100% - 12%);
  }
}
/*リソース設定無い場合とリソース設定がある場合。*/
/*margin設定はデザインによって変更OK*/

/*ウィンドウ幅での設置*/
[data-w-width="0"] {
  width: 100%;
}

/* クラス指定での幅（data-w-width と同等） */
.-w-wrapper-width-1 {
  max-width: 100%;
  width: 1170px;
  margin: 0 auto;
}
@media (max-width: 1169px) {
  .-w-wrapper-width-1 {
    width: calc(100% - 5%);
  }
}
@media (max-width: 768px) {
  .-w-wrapper-width-1 {
    width: calc(100% - 12%);
  }
}
.-w-wrapper-width-0 {
  max-width: 100%;
  width: 100%;
}

/***基本設定***/
html {
  font-size: 62.5%;
}
/*パーツ内ではremで余白やフォントサイズの指定を行うため、この数値*/

body {
  background: #ffffff;
  background: var(--theme-main-bg);
  color: #313131;
  color: #333333;
  line-height: 1.6;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) {
  body {
    font-size: 3vw;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/***色指定***/
.-w-txt.-w-background {
  color: #fff;
  color: #fffaf4;
}
.-w-txt.-w-background-r {
  color: #000;
  color: #333333;
}
.-w-txt.-w-main {
  color: #001754;
  color: #909090;
}
.-w-txt.-w-main-r {
  color: #fff;
  color: #ffffff;
}
.-w-txt.-w-accent {
  color: #4f0506;
  color: #e5975c;
}
.-w-txt.-w-accent-r {
  color: #fff;
  color: #ffffff;
}
/*背景色＋テキスト色*/
.-w-bg.-w-background {
  background: #fff;
  background: var(--theme-main-bg);
  color: #000;
  color: #333333;
}
.-w-bg.-w-main {
  background: #001754;
  background: #909090;
  color: #fff;
  color: #ffffff;
}
.-w-bg.-w-accent {
  background: #4f0506;
  background: #e5975c;
  color: #fff;
  color: #ffffff;
}
/*反転ver*/
.-w-bg.-w-background-r {
  background: #000;
  background: #333333;
  color: #fff;
  color: #fffaf4;
}
.-w-bg.-w-main-r {
  background: #fff;
  background: #ffffff;
  color: #001754;
  color: #909090;
}
.-w-bg.-w-accent-r {
  background: #fff;
  background: #ffffff;
  color: #4f0506;
  color: #e5975c;
}
/*hover時背景色指定*/
a.-w-bg.-w-background:hover {
  background: #000;
  background: #333333;
  color: #fff;
  color: #fffaf4;
}
a.-w-bg.-w-main:hover {
  background: #fff;
  background: #ffffff;
  color: #001754;
  color: #fffaf4;
}
a.-w-bg.-w-accent:hover {
  background: #fff;
  background: #ffffff;
  color: #4f0506;
  color: #e5975c;
}
a.-w-bg.-w-background-r:hover {
  background: #fff;
  background: var(--theme-main-bg);
  color: #000;
  color: #333333;
}
a.-w-bg.-w-main-r:hover {
  background: #001754;
  background: #909090;
  color: #fff;
  color: #ffffff;
}
a.-w-bg.-w-accent-r:hover {
  background: #4f0506;
  background: #e5975c;
  color: #fff;
  color: #ffffff;
}

/***ボーダー色指定***/
.-w-bd.-w-background {
  border-color: #fff;
  border-color: #fffaf4;
}
.-w-bd.-w-main {
  border-color: #001754;
  border-color: #909090;
}
.-w-bd.-w-accent {
  border-color: #4f0506;
  border-color: #e5975c;
}
.-w-bd.-w-background-r {
  border-color: #000;
  border-color: #333333;
}
.-w-bd.-w-main-r {
  border-color: #fff;
  border-color: #ffffff;
}
.-w-bd.-w-accent-r {
  border-color: #fff;
  border-color: #ffffff;
}
/*hover時ボーダー色指定*/
a.-w-bd.-w-bg.-w-background-r:hover,
a.-w-bd.-w-background:hover {
  border-color: #000;
  border-color: #333333;
}
a.-w-bd.-w-bg.-w-main-r:hover,
a.-w-bd.-w-main:hover {
  border-color: #fff;
  border-color: #ffffff;
}
a.-w-bd.-w-bg.-w-accent-r:hover,
a.-w-bd.-w-accent:hover {
  border-color: #fff;
  border-color: #ffffff;
}
a.-w-bd.-w-bg.-w-background:hover,
a.-w-bd.-w-background-r:hover {
  border-color: #000;
  border-color: #fffaf4;
}
a.-w-bd.-w-bg.-w-main:hover,
a.-w-bd.-w-main-r:hover {
  border-color: #001754;
  border-color: #909090;
}
a.-w-bd.-w-bg.-w-accent:hover,
a.-w-bd.-w-accent-r:hover {
  border-color: #4f0506;
  border-color: #e5975c;
}

/*見出し設定*/
.-w-ttl_wrap {
  text-align: center;
}
.-w-section_inner h3.-w-general {
  text-align: center;
}
span.-w-general,
.-w-ttl-en.-w-font_en,
.-w-general .-w-font_en,
.-w-ttl-en.-w-font_en {
  font-size: 4.8rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
  color: #313131;
  color: var(--theme-text);
}
h2.-w-general {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  letter-spacing: 0px;
  color: #313131;
  color: var(--theme-text);
}
h3.-w-general {
  font-size: 1.9rem;
  margin-bottom: 3rem;
  letter-spacing: 0px;
  color: #ea7c5d;
  color: rgba(144, 144, 144, 1);
}
h4.-w-general {
  font-size: 2rem;
  color: #313131;
  color: var(--theme-text);
  margin-bottom: 1.5rem;
}
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"]
  .-w-wrapper
  .-w-ttl-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1rem;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"]
  h2.-w-general
  .-w-font_title2 {
  letter-spacing: -2px;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h3.-w-general {
  letter-spacing: 0;
}
@media (max-width: 1020px) and (min-width: 768px) {
  h2.-w-general {
    font-size: 2.1rem;
  }
  h3.-w-general {
    font-size: 2.05rem;
    letter-spacing: 0;
  }
  h4.-w-general {
    font-size: 1.9rem;
  }
  [data-lib="2578"] table tr th {
    width: 20% !important;
  }
}
@media (max-width: 768px) {
  .-w-ttl_wrap {
    text-align: center;
  }
  .-w-section_inner h3.-w-general {
    text-align: left;
  }
  span.-w-general,
  .-w-ttl-en.-w-font_en,
  .-w-general .-w-font_en,
  .-w-ttl-en.-w-font_en {
    font-size: 9vw;
    text-align: center;
    margin-bottom: 1rem;
  }
  h2.-w-general {
    margin-bottom: 1.5rem;
    font-size: 5.5vw;
    letter-spacing: 0;
    text-align: left;
    line-height: 1.5;
  }
  h3.-w-general {
    font-size: 5vw;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  h4.-w-general {
    font-size: 3.1vw;
    letter-spacing: -2px;
    text-align: left;
    margin-bottom: 1.5rem;
  }
}
/*フェード*/
@media (min-width: 1024px) {
  .-w-anime-fade {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transform: translateY(50px);
  }
  .-w-anime-fade.active {
    opacity: 1;
    transform: translateY(0px);
  }

  .-w-anime-fade:nth-child(2) {
    transition-delay: 0.2s;
  }
  .-w-anime-fade:nth-child(3) {
    transition-delay: 0.4s;
  }
  .-w-anime-fade:nth-child(4) {
    transition-delay: 0.6s;
  }
  .-w-anime-fade:nth-child(5) {
    transition-delay: 0.8s;
  }
  .-w-anime-fade:nth-child(6) {
    transition-delay: 1s;
  }
  .-w-anime-fade:nth-child(n + 7) {
    transition-delay: 1.2s;
  }
}

/*ボタン*/
.-w-more_btn {
  margin-top: 3rem;
  text-align: center;
}
.-w-more_btn a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  border: 2px solid;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 8px 5px;
  line-height: 1;
  text-align: center;
  min-width: 170px;
  background-color: #ff6600;
  color: #ffffff;
  border-color: #ff6600;
  background-color: rgba(229, 151, 92, 1);
  color: rgba(255, 255, 255, 1);
  border-color: rgba(229, 151, 92, 1);
}
.-w-more_btn a.current,
.-w-more_btn a:hover {
  opacity: 1;
  background-color: #ffffff;
  color: #ff6600;
  color: rgba(229, 151, 92, 1);
  background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 768px) {
  .-w-more_btn a {
    padding: 15px 10px;
    min-width: 100%;
    font-size: 4vw;
  }
}

.-w-more_btn a span,
.-w-contact_btn a > span > span {
  position: relative;
  z-index: 2;
  color: inherit;
}
.-w-more_btn a:hover span,
.-w-contact_btn a:hover > span > span {
  color: inherit;
}

/*ajaxフォーム*/
.owlet-form {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  border-bottom: 1px solid #dddddd;
  background-color: #fff;
  color: var(--theme-text);
  background-color: rgba(255, 250, 244, 1);
}
.owlet-form .alert {
  font-weight: bold;
  color: #ff0000;

  color: hsla(0, 100%, 50%, 1);
}
.owlet-form .-w-require {
  border-radius: 2px;
  margin-left: 10px;
  font-size: 1.4rem;
  font-weight: normal;
  padding: 5px 8px;
  color: #fff;
  color: rgba(255, 255, 255, 1);
}
.owlet-form .require {
  border-radius: 2px;
  margin-left: 10px;
  font-size: 1.4rem;
  font-weight: normal;
  padding: 5px 8px;
  background: #ce0000;

  color: hsla(0, 100%, 40%, 1);

  color: #fff;

  color: hsla(0, 0%, 100%, 1);
}
.owlet-form table {
  width: 1170px;
  width: 1170px;
  margin: 0 auto;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.owlet-form table tr {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
.owlet-form table tr th {
  background: #cecece;
  background: rgba(229, 151, 92, 1);
  color: #313131;
  color: rgba(255, 255, 255, 1);
  width: 25%;
  margin-right: 5%;
  padding: 15px 20px;
  font-weight: bold;
  vertical-align: middle;
  text-align: left;
  border-radius: 12px;
  min-width: 250px;
}
.owlet-form table tr td {
  border-top: 1px solid;
  border-color: #dddddd;
  border-color: #e5975c;
  background: #ffffff;
  color: #313131;
  width: 70%;
  padding: 15px 20px;
  vertical-align: middle;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  min-width: 785px;
}
.owlet-form .owlet-input-sample {
  font-size: 1.6rem;
  padding: 0 10px;
}
.owlet-form table input,
.owlet-form table select,
.owlet-form table textarea,
.owlet-form table label,
.owlet-form table .input_address {
  font-size: 1.6rem;
}
.owlet-form input.owlet-input-tel1 + span,
.owlet-form input.owlet-input-tel2 + span {
  font-size: 1.6rem;
}
.owlet-form input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
}
.owlet-form input.owlet-input-name-sei[type="text"],
.owlet-form input.owlet-input-name-mei[type="text"] {
  width: 40%;
  padding: 10px;
  margin: 0 10px 0 0;
}
.owlet-form input[type="text"],
select {
  min-height: 30px;
  border: 1px solid;
  border-color: #dddddd;
  border-color: var(--theme-text-08);
}
.owlet-form input.owlet-input-tel1[type="text"],
.owlet-form input.owlet-input-tel2[type="text"],
.owlet-form input.owlet-input-tel3[type="text"],
.owlet-form input.zip1[type="text"],
.owlet-form input.zip2[type="text"] {
  line-height: 1.2;
  padding: 10px;
  border-radius: 3px;
  min-height: 30px;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  width: 115px;
}
.owlet-form textarea {
  min-height: 150px;
  line-height: 1.2;
  padding: 10px;
  border-radius: 3px;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  width: 100%;
}
.owlet-form select {
  line-height: 1.2;
  border-radius: 3px;
  min-height: 30px;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  width: 180px;
}
.owlet-form .owlet-input-name-sei,
.owlet-form .owlet-input-name-mei {
  width: 90px;
  margin: 0 5px;
}
.owlet-form .zip1,
.owlet-form .zip2 {
  width: 60px;
  margin-bottom: 10px;
}
.owlet-form .zip2addr {
  margin-bottom: 10px;
  padding: 10px 13px 6px;
  box-sizing: border-box;
  display: inline-block;
  background: rgba(229, 151, 92, 1);
  color: rgba(255, 255, 255, 1);
}
.owlet-form select.prefectures,
.owlet-form select.city {
  margin: 0 5px 10px 0;
  padding: 10px;
}
.owlet-form .address,
.owlet-form input[name="input[address_address]"],
.owlet-form input[name="input[address_address2]"],
.owlet-form input[name="input[address2_address]"],
.owlet-form input[name="input[address2_address2]"] {
  width: 100%;
  margin-left: 0;
}
.owlet-form .address,
.owlet-form input[name="input[address_address]"] {
  margin-bottom: 5px;
}
.owlet-form .owl-datepicker {
  width: 150px;
  margin-right: 5px;
}
.owlet-form select[name="input[date_hour]"],
.owlet-form select[name="input[date_minute]"] {
  margin-right: 5px;
}
.owlet-form .owlet-input-tel1,
.owlet-form .owlet-input-tel2,
.owlet-form .owlet-input-tel3 {
  width: 60px;
}
.owlet-form .owlet-input-tel2,
.owlet-form .owlet-input-tel3 {
  margin-left: 5px;
}
.owlet-form input[name="input[company_name]"] {
  width: 80%;
  line-height: 1.2;
  padding: 2px;
}
.owlet-form textarea[name="input[text]"] {
  width: 80%;
}
.owlet-form table tr td label {
  display: block;
}
.owlet-form input[name="input[select_etc]"],
.owlet-form input[name="input[radio_etc]"],
.owlet-form input[name="input[check_etc]"] {
  width: 80%;
  margin-top: 5px;
}
.owlet-form .-w-rules-agree {
  text-align: center;
  margin-bottom: 3rem;
}
.owlet-form .-w-rules-agree a {
  display: inline-block;
}
.owlet-form input[type="submit"],
.owlet-form input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
.owlet-form input[type="button"],
.owlet-form select {
  border-radius: 3px;
  min-height: 30px;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
}
.owlet-form .form_button {
  text-align: center;
}

.owlet-form .form_button input[type="button"],
.owlet-form .owlet-form-confirm a {
  border-radius: 0px;
  cursor: pointer;
  padding: 8px 5px;
  cursor: pointer;
  width: 170px;
  font-size: 1.5rem;
}

.owlet-form .form_button input[type="button"] {
  border: 1px solid;
  border-color: #e5975c;

  background-color: #e5975c;
  color: #ffffff;
}
.owlet-form .form_button input[type="button"]:hover {
  background-color: #ffffff;
  color: #e5975c;
  transition: all 0.4s;
}

.owlet-form .owlet-form-confirm a {
  border: 1px solid #999;
  background-color: #999;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  margin-left: 20px;
}
.owlet-form .owlet-form-confirm a:hover {
  border: 1px solid #999;
  background-color: #fff;
  color: #999;
  transition: all 0.4s;
}
@media (max-width: 1169px) {
  .owlet-form {
    padding: 5rem 6%;
  }
  .owlet-form table {
    width: 100%;
  }
  .owlet-form table tr th,
  .owlet-form table tr td {
    min-width: auto;
  }
  .owlet-form table tr th {
    width: 28%;
    margin-right: 2%;
  }
}
@media (max-width: 768px) {
  .owlet-form table tr th {
    display: block;
    width: 100%;
    border-bottom: none;
    text-align: left;

    margin-bottom: 5px;
    background: none;
    color: #2d65af;
    color: #e5975c;
    padding: 0;
    min-width: auto;
  }
  .owlet-form table tr td {
    display: block;
    width: 100%;
    padding: 10px 2%;
    border-bottom: none;
    text-align: left;
    border-bottom-right-radius: initial;
    border-bottom-left-radius: initial;
    min-width: auto;
    background: var(--theme-main-bg);
  }
  .owlet-form .-w-rules-agree {
    font-size: 1.3rem;
  }
  .owlet-form .-w-form_wrap {
    background: none;
  }
  .owlet-form .-w-require {
    color: #e5975c;
  }
}

/*
フォーム 規約
**************************************/
.owlet-form .owlet-rules {
  width: 1170px;
  width: 1170px;
  margin: 0 auto;
}
.owlet-form .owlet-rules-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.owlet-form .owlet-rules-body {
  height: 200px;
  padding: 1rem;
  border: 1px solid;
  box-sizing: border-box;
  margin-bottom: 2rem;
  overflow-y: scroll;
}
.owlet-form .owlet-rules-agree {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 1169px) {
  .owlet-form .owlet-rules {
    width: 100%;
  }
}

/*
 フォント
****************************************/

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
}
/*ご予約はこちら、h2_日本語、見出しフォント*/
.-w-font_title1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
/*メインキャッチ、MVフォント*/
.-w-font_title2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
/*h2_英語、英数字フォント*/
.-w-font_en {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.-w-font_en_after:after {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  /*
     フォント
    ****************************************/
}

@media (max-width: 768px) {
  #google_translate_element select {
    font-size: 28px;
  }
}

/*================================================================*/

/*英語見出しアイコン*/
span.-w-general,
span.-w-en,
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en {
  position: relative;
  display: inline-block;
  padding: 0 80px 0;
}
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en {
  position: relative;
  display: inline-block;
  padding: 0 80px 0;
  margin-right: 0;
}
span.-w-general:before,
span.-w-general:after,
span.-w-en:before,
span.-w-en:after,
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:before,
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:after,
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:before,
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:after {
  content: "";
  width: 61px;
  height: 5px;
  position: absolute;
  top: 50%;
  margin-top: 0;
}
span.-w-general:before,
span.-w-en:before,
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:before,
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:before {
  left: 0;
  background: url(https://sun-laughtale55.jp/_img/ja/resource/9191/icon_lr/)
    no-repeat 0 0;
}
span.-w-general:after,
span.-w-en:after,
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:after,
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:after {
  right: 0;
  background: url(https://sun-laughtale55.jp/_img/ja/resource/9191/icon_lr/)
    no-repeat 0 0;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general {
  text-align: center;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"]
  h2.-w-general
  .-w-font_en {
  display: inline-block;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"]
  h2.-w-general
  .-w-font_title2 {
  display: block;
  text-align: left;
}
[data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-general {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
[data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en {
  position: relative;
  display: inline-block;
  padding: 0 80px 0;
}
[data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"]
  .-w-ttl-en.-w-font_en
  span:before,
[data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"]
  .-w-ttl-en.-w-font_en
  span:after {
  content: "";
  width: 61px;
  height: 5px;
  position: absolute;
  top: 50%;
  margin-top: -2.5px;
}
[data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"]
  .-w-ttl-en.-w-font_en
  span:before {
  left: 0;
  background: url(https://sun-laughtale55.jp/_img/ja/resource/9191/icon_lr/)
    no-repeat 0 0;
}
[data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"]
  .-w-ttl-en.-w-font_en
  span:after {
  right: 0;
  background: url(https://sun-laughtale55.jp/_img/ja/resource/9191/icon_lr/)
    no-repeat 0 0;
}
@media (max-width: 1020px) and (min-width: 768px) {
  h2.-w-general {
    font-size: 2.1rem;
  }
  h3.-w-general {
    font-size: 2.05rem;
    letter-spacing: 0;
  }
  h4.-w-general {
    font-size: 1.9rem;
  }
  [data-lib="2578"] table tr th {
    width: 20% !important;
  }
}
@media (max-width: 768px) {
  .-w-ttl_wrap {
    text-align: center;
  }
  .-w-section_inner h3.-w-general {
    text-align: left;
  }
  span.-w-general,
  .-w-ttl-en.-w-font_en,
  .-w-general .-w-font_en,
  .-w-ttl-en.-w-font_en {
    font-size: 9vw;
    text-align: center;
    margin-bottom: 1rem;
  }
  h2.-w-general {
    margin-bottom: 1.5rem;
    font-size: 5.5vw;
    letter-spacing: 0;
    text-align: left;
    line-height: 1.5;
  }
  h3.-w-general {
    font-size: 5.3vw;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  h4.-w-general {
    font-size: 3.1vw;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en {
    position: relative;
    display: inline-block;
    padding: 0 80px 0;
  }
}

/*ボタン*/

.-w-more_btn {
  margin-top: 3rem;
  text-align: center;
}
#foot_fixed .-w-contact_btn a,
.-w-more_btn a {
  min-width: 170px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border: 3px solid;
  background-color: #ffffff !important;
  color: #e5975c !important;
  border-color: #e5975c !important;
}
#foot_fixed .-w-contact_btn a:before,
.-w-more_btn a:before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid;
  border-color: rgba(229, 151, 92, 1);
}
.-w-more_btn a.current:before,
#foot_fixed .-w-contact_btn a:hover:before,
.-w-more_btn a:hover:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.-w-more_btn a span.icon-arrow::before,
.-w-more_btn a span.material-icons::before,
#foot_fixed table td .-w-contact_btn span.material-icons::before {
  display: none !important;
}
@media (max-width: 768px) {
  .-w-more_btn a {
    padding: 15px 10px;
    min-width: 100%;
    font-size: 4vw;
  }
}

/* 共有パーツ: メイン直下（inc/content-after-main.php）全ページ共通 */
.-w-content-after-main {
  padding: 3rem 0;
  box-sizing: border-box;
  position: relative;
  background: #f5f5f5;
  background: var(--theme-main-bg);
}
.-w-content-after-main * {
  box-sizing: border-box;
}
.-w-content-after-main a {
  color: #313131;
  text-decoration: none;
}
.-w-content-after-main a:hover {
  text-decoration: none;
}
.-w-content-after-main .-w-wrapper {
  background: #ffffff;
  color: #313131;
  padding: 3rem;
  line-height: 1.4;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .-w-content-after-main .-w-wrapper {
    padding: 3rem 6%;
  }
}

/* 下層ページ共通：ページヘッダー（-w-box エリア・data-lib="15064" 相当） */
main .-w-page-header,
.-w-page-header {
  padding-top: 120px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
main .-w-page-header .-w-wrapper,
.-w-page-header .-w-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 400px;
}
.-w-page-header .-w-wrapper-width-0.-w-wrapper {
  padding: 0 2%;
}
main .-w-page-header .-w-box span,
.-w-page-header .-w-box span {
  font-size: 7.5rem;
  line-height: 1.15;
  margin: 0 0 30px;
  display: block;
  color: #333;
  letter-spacing: 0.02em;
  text-shadow:
    #fff 1px 0,
    #fff -1px 0,
    #fff 0 1px,
    #fff 0 -1px,
    #fff 1px 1px,
    #fff -1px -1px,
    #fff 1px -1px,
    #fff -1px 1px;
}
main .-w-page-header .-w-box h2,
.-w-page-header .-w-box h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  color: #333;
  letter-spacing: 0.02em;
  text-shadow:
    #fff 1px 0,
    #fff -1px 0,
    #fff 0 1px,
    #fff 0 -1px,
    #fff 1px 1px,
    #fff -1px -1px,
    #fff 1px -1px,
    #fff -1px 1px;
}
.-w-page-header .-w-sp {
  display: none;
}
@media (max-width: 1169px) {
  main .-w-page-header .-w-wrapper,
  .-w-page-header .-w-wrapper {
    width: calc(100% - 12%);
  }
}
@media (max-width: 1023px) {
  main .-w-page-header,
  .-w-page-header {
    padding-top: 90px;
  }
}
@media (max-width: 768px) {
  main .-w-page-header,
  .-w-page-header {
    padding-top: 6rem;
  }
  main .-w-page-header .-w-wrapper,
  .-w-page-header .-w-wrapper {
    padding: 70px 0;
  }
  main .-w-page-header .-w-box span,
  .-w-page-header .-w-box span {
    font-size: 8vw;
  }
  main .-w-page-header .-w-box h2,
  .-w-page-header .-w-box h2 {
    font-size: 6vw;
  }
  .-w-page-header .-w-sp {
    display: block;
  }
}

/* 下層ページ共通：パンくず（data-lib="2839" 相当） */
main .-w-page-breadcrumb,
.-w-page-breadcrumb {
  min-width: auto;
  min-height: 4.2rem;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: -2rem auto 0;
  position: relative;
  color: #fff;
}
main .-w-page-breadcrumb ol,
.-w-page-breadcrumb ol {
  margin: 0;
}
main .-w-page-breadcrumb ol li:last-child:after,
.-w-page-breadcrumb ol li:last-child:after {
  content: none;
}
main .-w-page-breadcrumb ol li,
.-w-page-breadcrumb ol li {
  margin: 0 4px 0 0;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  color: #fff;
  text-shadow:
    var(--theme-text) 2px 0px,
    var(--theme-text) -2px 0px,
    var(--theme-text) 0px -2px,
    var(--theme-text) 0px 2px,
    var(--theme-text) 2px 2px,
    var(--theme-text) -2px 2px,
    var(--theme-text) 2px -2px,
    var(--theme-text) -2px -2px,
    var(--theme-text) 1px 2px,
    var(--theme-text) -1px 2px,
    var(--theme-text) 1px -2px,
    var(--theme-text) -1px -2px,
    var(--theme-text) 2px 1px,
    var(--theme-text) -2px 1px,
    var(--theme-text) 2px -1px,
    var(--theme-text) -2px -1px;
}
main .-w-page-breadcrumb ol li > span,
.-w-page-breadcrumb ol li > span {
  padding: 11px 0;
  display: block;
  text-align: center;
  color: #fff;
}
main .-w-page-breadcrumb ol li > a > span,
.-w-page-breadcrumb ol li > a > span {
  padding: 12px 0 11px;
  display: block;
  text-align: center;
  color: #fff;
}
main .-w-page-breadcrumb ol li a,
.-w-page-breadcrumb ol li a {
  text-decoration: none;
  display: block;
  padding: 0 10px 0 30px;
  position: relative;
  color: #fff;
}
main .-w-page-breadcrumb ol li:first-child a,
.-w-page-breadcrumb ol li:first-child a {
  padding: 0;
}
main .-w-page-breadcrumb ol li:last-child span,
.-w-page-breadcrumb ol li:last-child span {
  display: block;
  padding: 0 10px 0 30px;
}
main .-w-page-breadcrumb ol li a:hover,
.-w-page-breadcrumb ol li a:hover {
  text-decoration: none;
}
main .-w-page-breadcrumb ol li:after,
.-w-page-breadcrumb ol li:after {
  content: ">";
  position: absolute;
  right: -18px;
  top: 0;
  z-index: 2;
  color: #fff;
}
main .-w-page-breadcrumb ol li a[itemprop="item"]:after,
.-w-page-breadcrumb ol li a[itemprop="item"]:after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  main .-w-page-breadcrumb,
  .-w-page-breadcrumb {
    margin-top: 1rem;
  }
}

/* サイドSNS・ページトップ（全ページ共通・data-lib="4444" 相当・class 指定） */
.-w-side-sns-wrap {
  position: relative;
  z-index: 103;
}
.-w-side-sns-wrap a[href^="tel:"] {
  cursor: default;
}
.-w-side-sns-wrap a[href^="tel:"]:hover {
  text-decoration: none;
}
.-w-side-sns-wrap .-w-pc {
  display: block;
}
.-w-side-sns-wrap .-w-sp {
  display: none;
}
.-w-side-sns-wrap #-w-side_sns {
  display: none;
}
.-w-side-sns-wrap #-w-side_sns ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}
.-w-side-sns-wrap #-w-side_sns ul li {
  margin-bottom: 0;
}
.-w-side-sns-wrap #-w-side_sns ul li:last-child {
  margin-bottom: 0;
}
.-w-side-sns-wrap #-w-side_sns.fixed {
  display: block;
  position: fixed;
  right: 0;
  bottom: 110px;
  z-index: 100;
  text-align: center;
  width: 50px;
  background: rgba(20, 24, 34, 0.7);
  background-color: hsla(0, 0%, 0%, 0.6);
}
.-w-side-sns-wrap #-w-side_sns.fixed a {
  display: block;
  padding: 20px 5px;
}
@media (max-width: 768px) {
  .-w-side-sns-wrap {
    z-index: 100;
  }
  .-w-side-sns-wrap .-w-pc {
    display: none;
  }
  .-w-side-sns-wrap .-w-sp {
    display: block;
  }
  .-w-side-sns-wrap #-w-side_sns {
    display: none;
  }
  .-w-side-sns-wrap #-w-side_sns.fixed {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    bottom: inherit;
    padding: 0;
    z-index: 101;
    text-align: center;
    width: 100%;
    background: rgba(20, 24, 34, 0.7);
    background-color: hsla(0, 0%, 0%, 0.6);
  }
  .-w-side-sns-wrap #-w-side_sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .-w-side-sns-wrap #-w-side_sns ul li {
    width: 24%;
    padding: 0;
    margin-bottom: 0;
  }
  .-w-side-sns-wrap #-w-side_sns ul li img {
    margin: 0 auto;
  }
  .-w-side-sns-wrap #-w-side_sns ul li:last-child {
    display: none;
  }
}

/* ========================================
   #foot_fixed（固定フッター・sun-laughtale55 同様）
   ======================================== */
#foot_fixed {
  position: relative;
  z-index: 9999;
}
#foot_fixed li {
  list-style: none;
}
#foot_fixed.-w-fixed_on {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  transform: translateY(100%);
  opacity: 0;
}
#foot_fixed.-w-fixed_on.-w-appear {
  transform: translateY(0);
  opacity: 1;
}
#foot_fixed .-w-innner {
  width: 100%;
  height: 90px;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
#foot_fixed .-w-tracking {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: stretch;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
  width: fit-content;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px 12px 0 0;
}
#foot_fixed .-w-tel-container {
  position: relative;
  background: #ffffff;
  /* flex: 0 1 50%;
	min-width: 240px;
	max-width: 50%; */
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#foot_fixed .-w-tel-container .-w-tel-link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  padding: 0 2rem 0 1.75rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
#foot_fixed .-w-tel_line {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
}
#foot_fixed .-w-tel-container .-w-tel-link2 {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #333333;
  text-decoration: none;
}
#foot_fixed .-w-tel-container a[href^="tel:"] {
  pointer-events: auto;
}
#foot_fixed .-w-tel svg,
#foot_fixed .-w-tel {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
#foot_fixed .-w-tel path {
  fill: #1a1a1a;
}
#foot_fixed .-w-tel_number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}
#foot_fixed .-w-hours {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.4;
}
#foot_fixed .-w-add_btn-container .-w-mail-text,
#foot_fixed .-w-sns-container .-w-mail-text {
  font-size: 1.15rem;
  position: relative;
  font-weight: 500;
}
#foot_fixed .-w-text_wrap {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  margin-top: 2px;
}
#foot_fixed .-w-hours .item_ttl {
  display: inline-block;
  margin-right: 0.25em;
}
#foot_fixed .-w-add_btn-container,
#foot_fixed .-w-add_btn-container.-w-underbtn {
  position: relative;
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  min-width: 90px;
  background: #808080;
}
#foot_fixed .-w-add_btn-container > a {
  width: 100%;
  height: 100%;
  min-height: 90px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s;
}
#foot_fixed .-w-add_btn-container > a:hover {
  opacity: 0.92;
}
#foot_fixed .-w-add_btn-container .-w-img_icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#foot_fixed .-w-add_btn-container .-w-img_icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
#foot_fixed .-w-tracking > li:nth-child(2).-w-add_btn-container {
  background: #e0914d;
}
#foot_fixed .-w-tracking > li:nth-child(3).-w-add_btn-container {
  background: #808080;
}
#foot_fixed .-w-sns-container {
  position: relative;
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  min-width: 90px;
  background: #333333;
}
#foot_fixed .-w-sns-container > a {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 90px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s;
  cursor: pointer;
}
#foot_fixed .-w-sns-container > a path {
  fill: #ffffff;
}
#foot_fixed .-w-sns-container > a:hover {
  opacity: 0.92;
}
#foot_fixed .-w-sns-container > a svg {
  width: 28px;
  height: 28px;
}
#foot_fixed .-w-sns-sub {
  display: -webkit-box;
  display: flex;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(100%, 0);
  margin: 0 0 0 0;
  padding: 12px 16px;
  list-style: none;
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  gap: 12px;
  -webkit-box-align: center;
  align-items: center;
  transition:
    transform 0.3s ease-out,
    opacity 0.3s ease-out;
}
#foot_fixed .-w-sns-sub.-w-appear[aria-hidden="false"],
#foot_fixed .-w-sns-sub.-w-sns-sub-active {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
#foot_fixed .-w-sns-sub li {
  flex-shrink: 0;
  width: 30px;
}
#foot_fixed .-w-sns-sub li a {
  display: block;
  height: 30px;
}
#foot_fixed .-w-sns-sub li img {
  width: 30px;
  height: 30px;
  vertical-align: baseline;
  object-fit: contain;
}
#foot_fixed .-w-close {
  display: none;
}
#foot_fixed .-w-tel-link2_sp {
  display: none;
}
#foot_fixed .sp_tel_icon {
  display: none;
}
#foot_fixed .tel_text {
  display: none;
}
#foot_fixed .tel_text_sp {
  display: none;
}
#foot_fixed .tel_bottom_wrapper {
  display: none;
}
#foot_fixed .item_ttl {
  display: inline-block;
  width: auto;
}

@media (max-width: 1023px) {
  #foot_fixed .-w-innner {
    height: 90px;
  }
  #foot_fixed .-w-add_btn-container > a,
  #foot_fixed .-w-sns-container > a {
    min-height: 90px;
  }
  #foot_fixed .-w-tel_number {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  #foot_fixed.-w-fixed_sp_on {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
  }
  #foot_fixed .-w-innner {
    height: auto;
    min-height: 75px;
  }
  #foot_fixed .-w-tracking {
    font-size: max(1rem, 2.8vw);
    width: 100%;
  }
  #foot_fixed .-w-tel-container {
    width: 25%;
    flex: 0 0 25%;
    min-width: 0;
    max-width: none;
    background: #f5f5f5;
  }
  #foot_fixed .-w-tel-container .-w-tel-link2 {
    display: none;
  }
  #foot_fixed .-w-tel-link {
    padding: 0;
  }
  #foot_fixed .-w-tel-link2_sp {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    color: #1a1a1a;
    text-decoration: none;
    pointer-events: auto;
    padding: 12px 6px;
    min-height: 70px;
  }
  #foot_fixed .tel_box {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  #foot_fixed .sp_tel_icon {
    display: block;
  }
  #foot_fixed .sp_tel_icon .-w-tel {
    width: 26px;
    height: 26px;
  }
  #foot_fixed .sp_tel_icon .-w-tel path {
    fill: #1a1a1a;
  }
  #foot_fixed .tel_text {
    display: none;
  }
  #foot_fixed .tel_text_sp {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
  }
  #foot_fixed .tel_bottom_wrapper {
    display: none;
  }
  #foot_fixed .-w-add_btn-container,
  #foot_fixed .-w-add_btn-container.-w-underbtn,
  #foot_fixed .-w-sns-container {
    width: 25%;
    flex: 0 0 25%;
    min-width: 0;
    height: auto;
  }
  #foot_fixed .-w-add_btn-container > a,
  #foot_fixed .-w-sns-container > a {
    padding: 12px 6px;
    gap: 6px;
    min-height: 70px;
  }
  #foot_fixed .-w-mail-text {
    font-size: 0.95rem;
  }
  #foot_fixed .-w-add_btn-container .-w-img_icon,
  #foot_fixed .-w-sns-container > a svg {
    width: 24px;
    height: 24px;
  }
  #foot_fixed .-w-sns-sub {
    bottom: 75px;
  }
  #foot_fixed .-w-sns-sub li {
    width: 40px;
  }
  #foot_fixed .-w-sns-sub li a {
    height: 40px;
  }
  #foot_fixed .-w-sns-sub li img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  #foot_fixed .tel_text_sp {
    font-size: 1.1rem;
  }
  #foot_fixed .-w-mail-text {
    font-size: 1.1rem;
  }
}

/* ===== フッター（全ページ共通） ===== */
.-w-footer {
  padding: 5rem 0 0 0;
  background-color: #cdcdcd;
  background-size: cover;
  position: relative;
  z-index: 100;
}
.-w-footer a[href^="tel:"] {
  cursor: default;
}
.-w-footer a[href^="tel:"]:hover {
  text-decoration: none;
}
.-w-footer .-w-pc {
  display: block;
}
.-w-footer .-w-sp {
  display: none;
}
.-w-footer::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  background-color: hsla(0, 0%, 0%, 0.3);
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
}
.-w-footer .-w-foot-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 5.5rem;
}
.-w-footer .-w-more_btn a {
  width: 370px;
  padding: 30px 0;
  font-size: 1.8rem;
}
.-w-footer .-w-more_btn a span.material-icons {
  width: 100%;
}
.-w-footer .-w-more_btn a span.material-icons::before {
  content: "keyboard_arrow_right";
  font-family: "Material Icons";
  height: 20px;
  line-height: 1.2;
  padding-left: 1px;
  box-sizing: border-box;
  font-weight: 700;
  width: 20px;
  margin-right: 10px;
  border-radius: 10px;
  vertical-align: baseline;
  font-size: 18px;
  display: inline-block;
}
.-w-footer .-w-more_btn a span::before {
  background-color: #ffffff;
  color: #e5975c;
}
.-w-footer .-w-more_btn a:hover span::before {
  background-color: #e5975c;
  color: #ffffff;
}
.-w-footer .-w-foot-nav {
  width: 100%;
  padding: 45px 0 0;
  background: rgba(0, 0, 0, 0.5);
  background-color: hsla(0, 0%, 0%, 0.5);
}
.-w-footer .-w-flogo {
  margin-bottom: 25px;
}
.-w-footer .-w-flogo a {
  display: block;
}
.-w-footer .-w-flogo img {
  padding: 0px;
  background: none;
  object-fit: contain;
}
.-w-footer .-w-address {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #000;
}
.-w-footer .-w-tel {
  font-size: 4.8rem;
  line-height: 1;
}
.-w-footer .-w-tel a {
  color: #000;
  text-decoration: none;
}
.-w-footer .-w-time {
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.-w-footer .-w-line-btn {
  margin-bottom: 10px;
}
.-w-footer .-w-line-btn-text {
  font-size: 1.8rem;
  text-align: center;
}
.-w-footer .-w-fnav {
  width: 780px;
  margin: 0 auto;
}
.-w-footer .-w-fnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.-w-footer .-w-fnav ul li {
  margin: 0 10px 10px;
  font-size: 1.4rem;
}
.-w-footer .-w-fnav ul li.-w-link9 {
  display: none;
}
.-w-footer .-w-fnav ul li a {
  color: #ffffff;
  text-decoration: none;
}
.-w-footer .-w-fnav ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.-w-footer .-w-copyright {
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
}
.-w-footer .-w-copyright a {
  color: #ffffff;
  text-decoration: none;
}
.-w-footer .-w-sp-tel {
  display: none;
}
.-w-footer .-w-fixed_off .-w-foot-nav {
  padding-bottom: 5rem;
}
.-w-footer .-w-fixed_on .-w-foot-nav {
  padding-bottom: 11rem;
}
@media (max-width: 768px) {
  .-w-footer .-w-pc {
    display: none;
  }
  .-w-footer .-w-sp {
    display: block;
  }
  .-w-footer .-w-foot-main {
    padding: 0 2rem;
  }
  .-w-footer .-w-address {
    text-align: center;
    padding: 0 3rem;
    font-size: 3.5vw;
  }
  .-w-footer .-w-line-btn-text {
    font-size: 1.4rem;
  }
  .-w-footer .-w-fnav {
    display: none;
  }
  .-w-footer .-w-line-btn img {
    max-width: 60%;
    margin: 0 auto;
  }
  .-w-footer .-w-foot-nav {
    position: static;
    background: none;
  }
  .-w-footer .-w-sp-tel {
    width: 100%;
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  .-w-footer .-w-tel {
    font-size: 9vw;
  }
  .-w-footer .-w-tel-wrap {
    width: 80%;
    margin: 0 auto;
    color: #333333;
    background: url(https://sun-laughtale55.jp/_img/ja/cms_parts_library//image/_/)
      no-repeat left center;
    padding-left: 60px;
  }
  .-w-footer .-w-tel-wrap a {
    color: #333333;
    text-decoration: none;
  }
  .-w-footer .-w-tel-wrap a:hover {
    text-decoration: underline;
  }
  .-w-footer .-w-tel-wrap a[href^="tel:"] {
    cursor: default;
  }
  .-w-footer .-w-tel-wrap a[href^="tel:"]:hover {
    text-decoration: none;
  }
  .-w-footer .-w-number {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 5px;
  }
  .-w-footer .-w-time {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
  .-w-footer .-w-fixed_on .-w-foot-nav {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 1rem 8rem;
    margin-top: 5rem;
  }
  .-w-footer .-w-fixed_on .-w-foot-nav .-w-copyright {
    line-height: 1;
    font-size: 1.4rem;
  }
  .-w-footer .-w-more_btn {
    width: 100%;
  }
  .-w-footer .-w-more_btn a {
    width: 100%;
    padding: 20px 15px;
  }
}
