@charset "UTF-8";
/* ============================================================
*
* BASE
*
* ============================================================ */
/* ------------------------------------------------------------
* 基本設定
* ------------------------------------------------------------ */

:root {
  --fontsize: 1.6rem;
  --fontcolor: #002834;
  --primarycolor: #FAD200;
  --primarycolor-right: #fcf2be;
  --primarycolor-opa: #fad20080;
  --secondarycolor:#3dab4a;
  --dangercolor:#c02525;
  --color-bg: #fafafa;
  --color-bg02:#FFFDDE;
  --sect-ptb: 60px;
  --cont-plr: 30px;
  --redius: 30px;
  --body-bg: #fff;
  --header-topSp: 50px;
  --header-topPc: 100px;
  --box-shadow: 4px 4px 1px 0px rgba(0, 0, 0, 0.45);
  --basecolor: #F5F5F5;
}



@media screen and (min-width: 1024px) {
  :root {
    --redius: 60px;
    --sect-ptb: 120px;
  }
}

html {
  font-size: 62.5%;
  line-height: 1.7;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  padding-top: 50px;
  font-family: Roboto, "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--fontsize);
  color: var(--fontcolor);
  background: var(--body-bg);
  font-weight: 500;
}


@media screen and (min-width: 1024px) {
  body {
    padding-top: var(--header-topPc);
  }
}

/* ----- リンクの設定 ----- */
a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
a:active,
a:visited {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

/* ----- ボタンの設定 ----- */
button {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ----- 画像 ----- */
img {
  max-width: 100%;
  vertical-align: bottom;
}
p {
  font-size: 1.6rem;
}


/* ============================================================
*
* レイアウト
*
* ============================================================ */
/* ------------------------------------------------------------
* ヘッダー
* ------------------------------------------------------------ */
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: var(--header-topSp);
  background-color: #fff;
  -webkit-transition: margin-top 0.3s ease;
  transition: margin-top 0.3s ease;
}

.ly_header_cont {
  padding: 0 16px 0 0;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {

  .ly_header {
    height: 113px;
  }
  .ly_header_cont {
    padding: 20px;
  }
  .ly_footer_cta a {
    display: inline-block;
  }
}

/* ------------------------------------------------------------
* フッター
* ------------------------------------------------------------ */
.ly_footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--basecolor);
}


.ly_footer_cta a {
  display: block;
  padding: 4px 10px;
  color: #fff;
  text-decoration: none;
}
.ly_footer_cta a:hover {
  text-decoration: underline;
}

.ly_footer_link::after {
  margin-left: 10px;
  font-family: fontello;
  content: "\e806";
}

.ly_footer_copy {
  display: block;
  padding: 20px 0 0;
  font-size: 1.2rem;
  color: #727272;
  text-align: center;
}

/* ------------------------------------------------------------
* ラッパー
* ------------------------------------------------------------ */
.ly_wrap {
  padding-top: var(--sect-ptb);
  padding-bottom: var(--sect-ptb);
}

.ly_wrap__bgColor {
  background-color: var(--basecolor);
}

.ly_wrap__bgColor_sec {
  background-color: var(--color-bg);
}

.ly_wrap__bgColor_third {
  /* background-image: url("../images/common/section_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; */
  background-color: var(--color-bg02);
}

.ly_wrap__bgColor_point {
  background-image: url("/images/common/logo_item_white.svg");
  background-repeat: no-repeat;
  background-position: top right;
  top: 0;
  right: 0;
  background-size: 50%;
  background-color: var(--basecolor);
}

.ly_wrap__bgColor_four {
  /* background-image: url("/images/common/logo_item_white.svg");
  background-repeat: no-repeat;
  background-position: top right;
  bottom: 0;
  right: 0;
  background-size: 10%; */
  background-color: var(--primarycolor);
}
/* ------------------------------------------------------------
* コンテンツエリア
* ------------------------------------------------------------ */
.ly_cont {
  max-width: 880px;
  padding-right: var(--cont-plr);
  padding-left: var(--cont-plr);
  margin-right: auto;
  margin-left: auto;
}

.ly_contLg {
  max-width: 1200px;
  padding-right: var(--cont-plr);
  padding-left: var(--cont-plr);
  margin-right: auto;
  margin-left: auto;
}

.ly_contMd {
  max-width: 1024px;
  padding-right: var(--cont-plr);
  padding-left: var(--cont-plr);
  margin-right: auto;
  margin-left: auto;
}

.ly_contSm {
  max-width: 760px;
  padding-right: var(--cont-plr);
  padding-left: var(--cont-plr);
  margin-right: auto;
  margin-left: auto;
}

/* ============================================================
*
* モジュール
*
* ============================================================ */
/* ------------------------------------------------------------
* ボタン
* ------------------------------------------------------------ */
/* ボタン */
.el_btn {
  box-sizing: border-box;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
  text-decoration: none;
  vertical-align: middle;
  background-color: var(--primarycolor);
  border: 2px solid var(--primarycolor);
  border-radius: 2em;
  transition: 0.3s;
  box-shadow: var(--box-shadow);
}
.el_btn:visited {
  background-color: var(--primarycolor);
}
.el_btn:active,
.el_btn:hover {
  color: #000;
  background-color: #fff;
  box-shadow: none;
}
.el_btn .el_btnContact_mail::before {
  margin-right: 5px;
  font-family: fontello;
  content: "\e807";
}
.el_btn .el_btnContact_target::before {
  margin-left: 10px;
  font-family: fontello;
  content: "\e806";
}

/* ナビゲーションの問い合わせボタン */
.el_btn_navContact {
  box-sizing: border-box;
  display: inline-block;
  min-width: 230px;
  max-width: 100%;
  padding: 0.8rem 1rem;
  margin-left: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--fontcolor);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background: var(--primarycolor);
  border: 1px solid var(--primarycolor);
  border-radius: 2em;
  transition: 0.3s;
}
.el_btn_navContact:visited {
  color: var(--fontcolor);
}
.el_btn_navContact:active,
.el_btn_navContact:hover {
  color: var(--fontcolor);
  background-color: #fff;
}
.el_btn_navContact .el_btnContact_mail::before {
  margin-right: 5px;
  font-family: fontello;
  content: "\e807";
}
.el_btn_navContact .el_btnContact_target::before {
  margin-left: 10px;
  font-family: fontello;
  content: "\e806";
}
.el_btn_line{
  display: flex;
  align-items: center;
  border: 3px solid var(--secondarycolor);
  background-color: var(--secondarycolor);
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
  max-width: 320px;
  padding: 10px;
  color: #fff!important;

  & img{
    width: 40px;
    margin-right: 10px;
  }
  & div{
    font-size: 2.0rem;
  }
  &:hover{
    background-color: #fff;
    color: var(--fontcolor)!important;
  }
}


/* ------------------------------------------------------------
* 見出し
* ------------------------------------------------------------ */
.el_lgHeading {
  font-size: 2.6rem;
}
.el_lgHeading_en {
  font-size: 1.8rem;
  font-weight: 400;
  position: relative;
  margin-left: 30px;
  &::before {
    content: "";
    background: var(--primarycolor);
    width: 26px;
    height: 4px;
    top: 50%;
    margin-top: -2px;
    left: -30px;
    position: absolute;
  }
}
.el_lgHeading .el_lgHeading_title {
  margin-top: 26px;
  font-size: 1.875rem;
  font-weight: bold;
}

.el_mdHeading {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  &::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 6px;
    background-color: var(--primarycolor);
    margin-left: -15px;
    margin-bottom: -10px;
  }
}



.el_smHeading {
  margin-bottom: 1em;
  font-size: 18px;
  font-weight: bold;
}

.el_heading_txt {
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 2;
  text-align: center;
}


@media screen and (min-width: 1024px) {

  .el_lgHeading {
    font-size: 4rem;
  }

  .el_mdHeading{
    font-size: 3.6rem;
  }

  .el_lgHeading_en {
    font-size: 2.4rem;
  }

  .el_heading_txt {
    font-size: 1rem;
  }
}
/* ------------------------------------------------------------
* ヘッダーのコンテンツ
* ------------------------------------------------------------ */
.bl_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin:4px
}

/* タイトル
* -------------------------------------------------- */
.bl_headerTitle {
  max-width: calc(100% - 90px);
}

.bl_headerTitle_inner {
  display: block;
  max-width: 200px;
  color: #000;
  text-decoration: none;
}
.bl_headerTitle_inner:visited {
  color: #000;
  text-decoration: none;
}
.bl_headerTitle_inner:active,
.bl_headerTitle_inner:hover {
  color: #000;
  text-decoration: none;
}
.bl_headerTitle_inner img {
  display: block;
  width: 100%;
  height: auto;
}
.bl_headerTitle_inner span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1;
}
/* ----- ナビゲーション ----- */
.bl_headerNav {
  display: none;
  align-items: center;
  font-size: 1.17vw;
  white-space: nowrap;
}

.bl_headerNavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: baseline;
  list-style: none;
}

.bl_headerNavItem {
  position: relative;
  margin: 1em;
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 700;
}
.bl_headerNavItem:hover {
  margin-bottom: 10px;
  text-decoration: none;
}

.bl_headerNavItem_link {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  padding: 0.5em;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
  text-decoration: none;
  transition:  color 0.3s;
}
.bl_headerNavItem_link:active,
.bl_headerNavItem_link:visited {
  color: #000;
  text-decoration: none;
}
.bl_headerNavItem_link:hover {
  color: var(--primarycolor);
}
.bl_headerNavItem_link:active::after,
.bl_headerNavItem_link:hover::after {
  transform: scaleX(1);
}

.bl_headerSide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.bl_headerItem {
  margin-right: 20px;
  text-decoration: none;
}
.bl_headerItem::before {
  display: inline-block;
  width: 50px;
  height: 50px;
  padding: 2px;
  font-family: fontello;
  font-size: 30px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  content: "\e807";
  background-color: #000;
  border: #000 1px solid;
  border-radius: 50px;
}

.bl_headerItem:hover {
  text-decoration: none;
}
.bl_headerItem:hover::before {
  color: #000;
  background-color: #fff;
  border: #000 1px solid;
}

.bl_headerHumOpnBtn::before {
  font-family: fontello;
  font-size: 50px;
  content: "\e805";
}

button:hover .bl_headerHumOpnBtn::before {
  font-family: fontello;
  content: "\e80a";
}

.bl_headerHum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}
.bl_headerHum span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* メニューが開かれている状態での変化 */
.bl_headerHum.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.bl_headerHum.active span:nth-child(2) {
  opacity: 0;
}

.bl_headerHum.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ----- ハンバーガーメニュー ----- */
.js_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998; /* 他のコンテンツの上に表示 */
  display: none; /* 初期状態では非表示 */
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: fadeIn 0.5s ease;
}

/* メニューを表示するときのスタイル */
.js_menu.is-open {
  display: block;
  overflow: hidden;
}

/* メニュー表示中にボディのスクロールを無効にするスタイル */
body.no-scroll {
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.bl_menu_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
}

.bl_headerCloseBtn::before {
  font-family: fontello;
  font-size: 50px;
  content: "\e804";
}

.bl_menu_cont {
  padding: 100px 20px;
}

.bl_menuList {
  align-items: baseline;
  text-align: center;
  list-style: none;
}

.bl_menuItem {
  width: 100%;
  margin-bottom: 40px;
  font-size: 1.8rem;
  font-weight: bold;
}
.bl_menuItem a {
  box-sizing: border-box;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;

}
.bl_menuItem a:hover {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--primarycolor);
}

@media screen and (min-width: 1024px) {

  .bl_headerTitle {
    max-width: 100%;
  }
  .bl_headerTitle_inner {
    max-width: 260px;
  }
  .bl_headerTitle_inner span {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    letter-spacing: -0.05px;
  }
  .bl_headerNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .bl_headerSide {
    display: none;
  }
}

/* ------------------------------------------------------------
* ページタイトルのコンテンツ
* ------------------------------------------------------------ */
.bl_ttl_over{
  position: relative;
}
.bl_ttl_over_bg{
  position: absolute;
  background-image: url("../images/common/ttl.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  margin-top: 20px;
  /* background-color: var(--primarycolor-right);
  opacity: 0.5;
  width: 200px;
  height: 160px;
  z-index: -1;
  border-radius: var(--redius) 0 0 var(--redius);
  top: 0;
  right: 0;
  margin-top: 20px; */
}
.bl_ttl_wrap{
  padding-top: 40px;
}

.bl_ttl_ttl_en{
  text-transform: uppercase;
  padding-left: 40px;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  &:before{
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--primarycolor);
    top: 0;
    left: 0;
    margin-top: 12px;
    margin-left: 0;
  }
}
.bl_ttl_ttl{
  font-size: 2.4rem;
}
.bl_ttl_img{
  border-radius: var(--redius);
}

@media screen and (min-width: 1024px) {
  .bl_ttl_over_bg{
    width: 240px;
    height: 240px;
    margin-right: 100px;

  }
  .bl_ttl_ttl{
    font-size: 4.8rem;
    margin-bottom: 20px;
  }
}

/* ------------------------------------------------------------
* フッターのコンテンツ
* ------------------------------------------------------------ */

.bl_footer_inner {
  padding-right: var(--cont-plr);
  padding-left: var(--cont-plr);
}


address{
  font-size: 1.6rem;
  font-style: normal;
}

.bl_footer_logo{
  display: block;
  & img{
    width: 260px;
  }
}

.bl_footer_left{
  text-align: center;
}

.bl_footer_left_day{
  padding-top: 40px;
  padding-bottom: 40px;
}

.bl_footer_right{
  display: none;
  & a{
    margin: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    &:hover{
      color: var(--primarycolor);
    }
  }
}



@media screen and (min-width: 1024px) {
  .bl_footer_inner {
    display: flex;
    justify-content: space-between;
  }

  .bl_footer_left{
    text-align: left;
  }

  .bl_footer_leftFlex{
    display: flex;
  }

  .bl_footer_left_add{
    width: 50%;
  }
  .bl_footer_left_day{
    width: 40%;
    padding-left: 40px;
    padding-top: 0;
    flex-grow: 1;
  }
  .bl_footer_left{
    width: 50%;
  }
  .bl_footer_right{
    display: block;
    width: 50%;
    margin-top: 60px;
  }
  .bl_footer_rightInner{
    display: flex;
    flex-wrap: wrap;
    & a{
      display: inline-block;
      &:hover{
        color: var(--primarycolor);
      }
    }
  }
}

/* ============================================================
*
* ヘルパー
*
* ============================================================ */
/* ------------------------------------------------------------
* フォントとテキストのスタイル
* ------------------------------------------------------------ */
/* 太字 */
.hp_font_bold {
  font-weight: bold !important;
}

/* 文字揃え */
.hp_txt_left {
  text-align: left !important;
}

.hp_txt_right {
  text-align: right !important;
}

.hp_txt_center {
  text-align: center !important;
}

.hp_txt_justify {
  text-align: justify !important;
  text-justify: inter-ideograph !important;
}

/* 文字間を戻す */
.hp_letter_0 {
  letter-spacing: 0 !important;
}

.hp_brp {
  display: block;
}

.hp_brs {
  display: none;
}
/* 強調 */
.hp_txt_em {
  font-style: normal !important;
  font-weight: bold !important;
}

/* 重要 */
.hp_txt_strong {
  font-weight: bold !important;
  color: #e94218 !important;
}

/* 上付き文字 */
.hp_txt_sup {
  color: #6d6d6d;
}

/* 小文字 */
.hp_txt_small {
  font-size: 0.8em !important;
}

/* ------------------------------------------------------------
* パディングとマージン
* ------------------------------------------------------------ */
.hp_pt_0 {
  padding-top: 0 !important;
}

.hp_mt_0 {
  margin-top: 0 !important;
}

.hp_MT_0 {
  margin-top: 0 !important;
}

.hp_pt_xxs {
  padding-top: 5px !important;
}

.hp_mt_xxs {
  margin-top: 5px !important;
}

.hp_MT_xxs {
  margin-top: -5px !important;
}

.hp_pt_xs {
  padding-top: 10px !important;
}

.hp_mt_xs {
  margin-top: 10px !important;
}

.hp_MT_xs {
  margin-top: -10px !important;
}

.hp_pt_sm {
  padding-top: 20px !important;
}

.hp_mt_sm {
  margin-top: 20px !important;
}

.hp_MT_sm {
  margin-top: -20px !important;
}

.hp_pt_md {
  padding-top: 40px !important;
}

.hp_mt_md {
  margin-top: 40px !important;
}

.hp_MT_md {
  margin-top: -40px !important;
}

.hp_pt_lg {
  padding-top: 60px !important;
}

.hp_mt_lg {
  margin-top: 60px !important;
}

.hp_MT_lg {
  margin-top: -60px !important;
}

.hp_pt_xl {
  padding-top: 80px !important;
}

.hp_mt_xl {
  margin-top: 80px !important;
}

.hp_MT_xl {
  margin-top: -80px !important;
}

.hp_pt_xxl {
  padding-top: 100px !important;
}

.hp_mt_xxl {
  margin-top: 100px !important;
}

.hp_MT_xxl {
  margin-top: -100px !important;
}

.hp_pr_0 {
  padding-right: 0 !important;
}

.hp_mr_0 {
  margin-right: 0 !important;
}

.hp_MR_0 {
  margin-right: 0 !important;
}

.hp_pr_xxs {
  padding-right: 5px !important;
}

.hp_mr_xxs {
  margin-right: 5px !important;
}

.hp_MR_xxs {
  margin-right: -5px !important;
}

.hp_pr_xs {
  padding-right: 10px !important;
}

.hp_mr_xs {
  margin-right: 10px !important;
}

.hp_MR_xs {
  margin-right: -10px !important;
}

.hp_pr_sm {
  padding-right: 20px !important;
}

.hp_mr_sm {
  margin-right: 20px !important;
}

.hp_MR_sm {
  margin-right: -20px !important;
}

.hp_pr_md {
  padding-right: 40px !important;
}

.hp_mr_md {
  margin-right: 40px !important;
}

.hp_MR_md {
  margin-right: -40px !important;
}

.hp_pr_lg {
  padding-right: 60px !important;
}

.hp_mr_lg {
  margin-right: 60px !important;
}

.hp_MR_lg {
  margin-right: -60px !important;
}

.hp_pr_xl {
  padding-right: 80px !important;
}

.hp_mr_xl {
  margin-right: 80px !important;
}

.hp_MR_xl {
  margin-right: -80px !important;
}

.hp_pr_xxl {
  padding-right: 100px !important;
}

.hp_mr_xxl {
  margin-right: 100px !important;
}

.hp_MR_xxl {
  margin-right: -100px !important;
}

.hp_pb_0 {
  padding-bottom: 0 !important;
}

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

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

.hp_pb_xxs {
  padding-bottom: 5px !important;
}

.hp_mb_xxs {
  margin-bottom: 5px !important;
}

.hp_MB_xxs {
  margin-bottom: -5px !important;
}

.hp_pb_xs {
  padding-bottom: 10px !important;
}

.hp_mb_xs {
  margin-bottom: 10px !important;
}

.hp_MB_xs {
  margin-bottom: -10px !important;
}

.hp_pb_sm {
  padding-bottom: 20px !important;
}

.hp_mb_sm {
  margin-bottom: 20px !important;
}

.hp_MB_sm {
  margin-bottom: -20px !important;
}

.hp_pb_md {
  padding-bottom: 40px !important;
}

.hp_mb_md {
  margin-bottom: 40px !important;
}

.hp_MB_md {
  margin-bottom: -40px !important;
}

.hp_pb_lg {
  padding-bottom: 60px !important;
}

.hp_mb_lg {
  margin-bottom: 60px !important;
}

.hp_MB_lg {
  margin-bottom: -60px !important;
}

.hp_pb_xl {
  padding-bottom: 80px !important;
}

.hp_mb_xl {
  margin-bottom: 80px !important;
}

.hp_MB_xl {
  margin-bottom: -80px !important;
}

.hp_pb_xxl {
  padding-bottom: 100px !important;
}

.hp_mb_xxl {
  margin-bottom: 100px !important;
}

.hp_MB_xxl {
  margin-bottom: -100px !important;
}

.hp_pl_0 {
  padding-left: 0 !important;
}

.hp_ml_0 {
  margin-left: 0 !important;
}

.hp_ML_0 {
  margin-left: 0 !important;
}

.hp_pl_xxs {
  padding-left: 5px !important;
}

.hp_ml_xxs {
  margin-left: 5px !important;
}

.hp_ML_xxs {
  margin-left: -5px !important;
}

.hp_pl_xs {
  padding-left: 10px !important;
}

.hp_ml_xs {
  margin-left: 10px !important;
}

.hp_ML_xs {
  margin-left: -10px !important;
}

.hp_pl_sm {
  padding-left: 20px !important;
}

.hp_ml_sm {
  margin-left: 20px !important;
}

.hp_ML_sm {
  margin-left: -20px !important;
}

.hp_pl_md {
  padding-left: 40px !important;
}

.hp_ml_md {
  margin-left: 40px !important;
}

.hp_ML_md {
  margin-left: -40px !important;
}

.hp_pl_lg {
  padding-left: 60px !important;
}

.hp_ml_lg {
  margin-left: 60px !important;
}

.hp_ML_lg {
  margin-left: -60px !important;
}

.hp_pl_xl {
  padding-left: 80px !important;
}

.hp_ml_xl {
  margin-left: 80px !important;
}

.hp_ML_xl {
  margin-left: -80px !important;
}

.hp_pl_xxl {
  padding-left: 100px !important;
}

.hp_ml_xxl {
  margin-left: 100px !important;
}

.hp_ML_xxl {
  margin-left: -100px !important;
}

/* ------------------------------------------------------------
* ディスプレイ
* ------------------------------------------------------------ */
.hp_block {
  display: block !important;
}

.hp_inline {
  display: inline !important;
}

.hp_inline_block {
  display: inline-block !important;
}

@media screen and (min-width: 1024px) {
  a.is-PC{
    text-decoration: none;
    pointer-events: none;
  }
}

/* ------------------------------------------------------------
* 画像の幅
* ------------------------------------------------------------ */
/* 画像をブロックにする */
.hp_img_block {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 480px) {
  .hp_hide_sm_min {
    display: none !important;
  }
}

@media screen and (min-width: 480px) and (max-width: 1023px) {
  .hp_hide_tablet {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .ly_wrap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 1024px) {
  .hp_brp {
    display: none;
  }
  .hp_brs {
    display: block;
  }
  .hp_hide_lg_min {
    display: none !important;
  }
  .hp_hide_pc {
    display: none !important;
  }
  .un_homeTop_btn {
    margin-top: -40px;
  }
}

@media screen and (min-width: 1280px) {
  .hp_hide_xl_min {
    display: none !important;
  }
}

@media screen and (max-width: 1279px) {
  .hp_hide_xl_max {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .hp_hide_lg_max {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hp_hide_md_max {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .hp_hide_sm_max {
    display: none !important;
  }
  .hp_hide_sp {
    display: none !important;
  }
}

@media screen and (max-width: 374px) {
  .hp_hide_xs_max {
    display: none !important;
  }
}

/* ============================================================
*
* アニメーション
*
* ============================================================ */
/* ふわっと */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in[data-delay="0.2s"] {
  transition-delay: 0.2s;
}

.fade-in[data-delay="0.5s"] {
  transition-delay: 0.5s;
}

/* ============================================================
*
* ユニークグループ
*
* ============================================================ */
/* ------------------------------------------------------------
* トップページ
* ------------------------------------------------------------ */
/* メインビジュアル
* -------------------------------------------------- */
.un_homeMv_inner {
  position: relative;
  overflow: hidden;
  /* 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;
  width: 100%;
  height: 510px;
  background: url(assets/pic_mainvisial.jpg) center center/cover no-repeat; */
  height: 80vh;
}
.un_homeMv_copy {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 4%;
  margin-bottom: 20%;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;

  z-index: 2;
}
.un_homeMv_copyTtl {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-size: 2.8rem;
  /* 既存のbackgroundは消してOK */
  background: none;
  overflow: hidden;
}

/* 黄色いライン（下線） */
.un_homeMv_copyTtl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  height: 0.5em;
  width: 0;
  background: var(--primarycolor);
  border-radius: 0.2em;
  transition: width 1s cubic-bezier(.77,0,.18,1);
  z-index: -1;
  pointer-events: none;
}

/* .loaded でアニメーション開始 */
.un_homeMv_inner.loaded .un_homeMv_copyTtl::after {
  width: 100%;
}



.un_homeMv_copySub {
  font-size: 1.6rem;
  font-weight: bold;
}
.un_homeMv_img {
  position: absolute;
  top: 0;
  right: 0;

  background-image: url("../images/home/main-visal01.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80%;
  width: 80%;
  margin-top: 1%;
  margin-right: 4%;
  border-radius: var(--redius);
}

.un_homeMv_img02 {
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url("../images/home/main-visal02.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50%;
  width: 40%;
  margin-bottom: 10%;
  margin-left: 3%;
  border-radius: 30px;
}
.un_homeTop_btn {
  position: relative;
  margin-top: -30px;
}

@media screen and (min-width: 1023px) {
  .un_homeMv_copy {
    margin-bottom: 60px;
    margin-right: 10%;
    z-index: 2;
  }

  .un_homeMv_copyTtl {
    font-size: 6.4rem;
  }
  .un_homeMv_copySub {
    font-size: 2.4rem;
  }

  .un_homeMv_img {
    width: 40%;
    height: 90%;
    margin-top: 1%;
    margin-right: 10%;
    border-radius: var(--redius);
  }

  .un_homeMv_img02 {
    height: 60%;
    width: 30%;
    margin-bottom: 4%;
    margin-left: 10%;
    border-radius: 30px;
  }
}

.un_homeMv_img,
.un_homeMv_img02,
.un_homeMv_copy {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* JavaScript でこのクラスを追加 */
.loaded .un_homeMv_img,
.loaded .un_homeMv_img02,
.loaded .un_homeMv_copy {
  opacity: 1;
  transform: translateY(0);
}

.loaded .un_homeMv_img {
  transition-delay: 0.3s;
}

.loaded .un_homeMv_img02 {
  transition-delay: 0.6s;
}

.un_homeMV_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 200px; /* 高さ200px */
  z-index: -1;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  background: var(--primarycolor-right);
  transition: width 1s ease-in-out;
}

.un_homeMv_inner.loaded .un_homeMV_bg {
  width: 95%;
}

.un_homeMv_item01{
  position: absolute;
  width: 30%;
  z-index: 3;
  top:0;
  right: 0;
  margin-right: 10px;
  margin-top: 20px;
}
  @media screen and (min-width: 1023px) {
  .un_homeMv_item01{
    width: 20%;
    margin-right: 20px;
    margin-top: 40px;
  }
}


.un_homeMv_item02{
  position: absolute;
  width: 30%;
  z-index: 3;
  bottom:0;
  left: 0;
  margin-right: 10px;
  margin-top: 20px;
}
  @media screen and (min-width: 1023px) {
  .un_homeMv_item02{
    width: 14%;
    margin-right: 20px;
    margin-top: 40px;
  }
}



.un_homeMv_item03{
  position: absolute;
  width: 30%;
  z-index: 3;
  top:0;
  right: 0;
  margin-right: -16px;
  margin-top: -100px;
}
  @media screen and (min-width: 1023px) {
  .un_homeMv_item01{
    width: 20%;
    margin-right: 20px;
    margin-top: 40px;
  }
}

/* トップアバウト
* -------------------------------------------------- */

.un_homeAbout_top {
  position: relative;
  overflow: hidden;
}

.un_homeAbout_top {
  position: relative;
  overflow: hidden;
}

.un_homeAbout_bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 200px;
  margin-top: 10%;
  width: 0;
  background-color: var(--primarycolor-right);
  z-index: -1;
  transition: width 1.2s ease;
  border-radius: 30px 0 0 30px;
}

.un_homeAbout_top.is-inview .un_homeAbout_bg {
  width: 50%;
}

.un_homeAbout_img {
  position: relative;
  & .un_homeAbout_item {
    border-radius: var(--redius);
  }
}

@media screen and (min-width: 1024px) {
  .un_homeAbout_wrap {
    display: flex;
  }
  .un_homeAbout_box {
    padding-right: 20rem;
  }
}

/* トップ 料金・コース
* -------------------------------------------------- */
.un_homePrice_wrap {
  margin: 40px 0;
}

.un_homePrice_inner {
  margin-bottom: 40px;
}

.un_homePrice_box {
  position: relative;
  border-radius: var(--redius);
  box-shadow: var(--box-shadow);
  display: block;
  transition: 0.3s;
  text-decoration: none;
  background-color: #fff;

  & h3 {
    padding: 0.5em 2em;
    border-radius: var(--redius) var(--redius) 0 0;
    background-color: var(--primarycolor-opa);
    font-size: 2.2rem;
  }
  & p {
    padding: 2em 2em 3em 2em;
    font-weight: bold;
  }
  & .un_homePrice_arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-right: 0px;
    margin-bottom: -20px;
    width: 60px;
    height: auto;
    transition: 0.3s;
  }

  &:hover {
    box-shadow: none;
    .un_homePrice_arrow {
      margin-right: -20px;
    }
  }
}

@media screen and (min-width: 1024px) {
  .un_homePrice_wrap {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  .un_homePrice_inner {
    width: 50%;
  }
  .un_homePrice_box {
    margin: 30px;
    h3 {
      font-size: 3.2rem;
    }
  }
}


/* 店舗情報
* -------------------------------------------------- */
.un_homeShopList{
  margin-top: 20px;
  font-size: 1.5rem;
  margin-bottom: 10px;
  & dt{
    width: 100%;
    font-weight: bold;
  }
  & dd{
    width: 100%;
    padding: 0.5em;
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 0.5em;
  }
}


@media screen and (min-width: 480px) {
  .un_homeShopList{
    display: flex;
    font-size: 1.8rem;
    flex-wrap: wrap;
    & dt{
      width: 30%;
      padding: 0.5em;
      border-bottom: 1px solid #d2d2d2;
      margin-bottom: 0.5em;
    }
    & dd{
      width: 70%;
      border-bottom: 1px solid #d2d2d2;
      margin-bottom: 0.5em;
    }
  }
}




/* Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primarycolor);
}
.swiper-pagination-bullet-active{
  background-color: var(--primarycolor);
}

@media screen and (min-width: 1024px) {
  .un_homeShopWrap{
    display: flex;
    box-sizing: border-box;
  }

  .un_homeShop_cont{
    width: 40%;
  }
  .un_homeShop_img{
    width: 60%;
    padding-left: 40px;
  }
}

.un_homeShopBtnwrap{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  margin-left: -10px;
  margin-right: -10px;
}


.un_homeShopBtn_box{
      width: 50%;
}

.un_homeShopBtn{
  background-color: #fff;
  display: block;
  border-radius: var(--redius);
  box-shadow: var(--box-shadow);
  transition: 0.3s;
  text-decoration: none;

    margin: 10px;
    &:hover{
    box-shadow: none;
  }
}

.un_homeShopBtn_inner{
  text-align: center;
  padding: 16px 10px;
}
.un_homeShopBtn_img{
  width: 40px;
  height: auto;
}
.un_homeShopBtn_ttl{
  font-size: 1.6rem;
}
.un_homeShopBtn_txt{
  font-size: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .un_homeShopBtn_box{
    width: 33.333333%;
  }
  .un_homeShopBtn_img{
    width: 60px;
  }
  .un_homeShopBtn_inner{
    padding: 40px;
  }
  .un_homeShopBtn_ttl{
  font-size: 2.8rem;
}
.un_homeShopBtn_txt{
  font-size: 1.6rem;
}
}


/* ------------------------------------------------------------
* アバウト ひまわり整体院について
* ------------------------------------------------------------ */
/* お悩み
* -------------------------------------------------- */
.un_aboutProbrem_bg{
  background-color:var(--primarycolor-opa);
  border-radius: var(--redius);
  padding: 16px;
}
.un_aboutProbrem_wrap{
  padding: 20px 16px;
  background-color: #fff;
  border-radius: calc(var(--redius) / 2);
  & h2{
    font-size: 1.6rem;
    & span{
      background:linear-gradient(transparent 40%, #FAD200 60%);
    }
  }
}

.un_aboutProbrem_list{
  margin-top: 20px;
  list-style: none;
  & li{
    position: relative;
    margin-left: 20px;
    font-size: 1.4rem;
    margin-bottom: 10px;

    &::before{
      content: "";
      display: block;
      width: 1.4rem;
      height: 0.8rem;
      border-left: 2px solid var(--secondarycolor);
      border-bottom: 2px solid var(--secondarycolor);
      transform: rotate(-45deg);
      position: absolute;
      top: 0.5rem;
      left: -2rem;
    }
  }
}

@media screen and (min-width: 1024px) {
  .un_aboutProbrem_bg{
    padding: 80px;
  }
  .un_aboutProbrem_wrap{
      padding: 40px;
    & h2{
      font-size: 2.4rem;
    }
  }
  .un_aboutProbrem_list{
    & li{
      font-size: 1.6rem;
      margin-left: 28px;

      &::before{
        width: 2rem;
        height: 1rem;
        top: 0.5rem;
        left: -2.6rem;
      }
    }
  }
}


.un_about_symptom_wrap{
  display: flex;
}

.un_about_symptom_img{
  & img{
    max-width: 400%;
    margin-left: -200px;
  }
}


.un_about_symptom_list{
  padding: 20px;
  white-space: nowrap;
  border-radius: 100px 140px 230px 80px;
  background-color: var(--primarycolor-opa);
  margin: 10px;
}

.un_about_symptom_txt{
  font-size: 1.8rem;
  font-weight: bold;
}



.un_about_thunder_wrap{
  margin-top: 80px;
  border-radius: calc(var(--redius) / 2);
}


.un_about_thunder_list{
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primarycolor-opa);
  border-radius: 14px;
  padding: 10px 20px;
  & h3{
    font-size: 2.4rem;
    white-space: nowrap;
  }
  & p{
    font-size: 1.6rem;
    margin-left: 20px;
  }
  &:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 43.8px;
    height: 40px;
    margin-bottom: -60px;
    margin-left: 30px;
    background: var(--secondarycolor);
    clip-path: polygon(0 45.2%, 23.8% 45.2%, 23.8% 0, 76.2% 0, 76.2% 45.2%, 100% 45.2%, 50% 100%);
  }

}
.un_about_thunder_img{
  text-align: center;
  & img{
  }
}
.un_about_thunder_wrap{
  &:last-child{
    .un_about_thunder_list{
      &::before{
        display: none;
      }
    }
  }
}


@media screen and (min-width: 768px) {

  .un_about_symptom_wrap{
    margin-top: 40px;
  }
  .un_about_symptom_img{
    & img{
      max-width: 100%;
      margin-left: 0;
    }
  }
  .un_about_symptom_right{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 1024px) {

  .un_about_thunder_flex{
  display: flex;
}

.un_about_thunder_img{
  width: 50%;
  padding-right: 20px;
}
.un_about_thunder_box{
  width: 50%;
  padding-left: 20px;
}

  .un_about_thunder_wrap:first-child{
    margin-top: 0;
  }
  .un_about_symptom_txt{
    font-size: 2.1rem;
    text-align: center;
  }
  .un_about_symptom_list{
    padding: 40px;
    white-space: nowrap;
    border-radius: 100px 140px 230px 80px;
    margin: 10px;
  }
}


/* 整体師紹介
* -------------------------------------------------- */
.un_about_owner_wrap{
  margin-top: 60px;
}
.un_about_owner_left{

  & img{
    border-radius: var(--redius);
  }
}

.un_about_owner_name{
  font-size: 2.4rem;
  text-align: center;
  & span{
    font-size: 1.6rem;
    margin-right: 10px;
  }
}

.un_about_owner_right{
  margin-top: 20px;

  & p{
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 768px) {
  .un_about_owner_wrap{
    display: flex;
    box-sizing: border-box;
  }
  .un_about_owner_left{
    width: 40%;
    padding-right: 20px;
  }
  .un_about_owner_right{
    width: 60%;
    padding-left: 20px;
  }
}

/* ひまわり整体院の特徴
* -------------------------------------------------- */
.un_about_feature_wrap{
  margin-top: 60px;
}

.un_about_feature_left{
  text-align: center;
  margin-bottom: 20px;
  & img{
    border-radius: var(--redius);
  }
}

.un_about_feature_right{
}

.un_about_feature_ttl{
  font-size: 2.0rem;
  padding: 4px 8px 4px 36px;
  margin: 10px 0 20px 0;
  background-color: var(--primarycolor-opa);
  position: relative;
  border-radius: 10px;

  & span{
    position: absolute;
    top: 0;
    left: 0;
    margin-left: -12px;
    margin-top: -12px;
    width: 40px;
    height: 40px;
    background-color: var(--primarycolor);
    border-radius: 50%;
    text-align: center;
    font-size: 1.8rem;
    color: var(--fontcolor);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.un_about_feature_txt{
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.un_about_feature_subhead{
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.un_about_feature_subtxt{
  font-size: 1.4rem;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .un_about_feature_wrap{
    display: flex;
    box-sizing: border-box;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 80px;
  }
  .un_about_feature_left{
    width: 40%;
    margin: 0 20px;
  }

  .un_about_feature_right{
    width: 60%;
    margin: 0 20px;
  }

  .un_about_feature_ttl{
    font-size: 2.2rem;
    padding: 4px 8px 4px 60px;
      & span{
      margin-left: -12px;
      margin-top: -8px;
      width: 60px;
      height: 60px;
      text-align: center;
      font-size: 2.2rem;
    }
  }
}






/* ------------------------------------------------------------
* 料金・コース
* -------------------------------------------
----------------- */

/* 共通
* -------------------------------------------------- */
.un_price_wrap{
  padding: 40px 0;
}

.un_price_section {
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: 20px;
  position: relative;
  &::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 4px;
    background-color: var(--primarycolor);
    margin-left: -20px;
    margin-top: 20px;
  }
}

.un_price_time{
  display: inline-block;
  background-color: var(--primarycolor-opa);
  padding: 8px;
  font-size: 1.4rem;
  margin-left: 8px;
  line-height: 1;
  border-radius: 10px;
}
.un_price_sectionWrap{
  display: flex;
  align-items: center;
}

.un_price_title{
  font-size: 1.8rem;
  border-bottom: 2px solid var(--primarycolor);
  margin-bottom: 20px;
}
.un_price_headTxt{
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  .un_price_section {
    font-size: 3.6rem;
    margin-left: 40px;
    &::before{
      width: 30px;
      height: 4px;
      margin-left: -40px;
      margin-top: 28px;
    }
  }

  .un_price_time{
    font-size: 1.8rem;
    margin-left: 16px;
  }
  .un_price_title{
    font-size: 2.4rem;
  }
}


/* 価格表
* -------------------------------------------------- */
.un_price_list {
  list-style: none;
  padding: 0;
  max-width: 100%;
  /* border: 1px solid var(--primarycolor); */
  padding: 10px 0;
  margin: 20px 0;
}

.un_price_list li {
  display: flex;
  align-items: center; /* 縦中央揃え */
  font-size: 1.8rem;
  margin: 8px 0;
}

.un_price_list .un_price_list_dot {
  flex: 1;
  margin: 0 8px;
  height: 0.3em; /* 小さめに調整 */
  background-image: radial-gradient(#aaa 2px, transparent 2.5px);
  background-size: 8px 0.3em;
  background-repeat: repeat-x;
  display: block;
}

.un_price_list_price{
  font-size: 2.2rem; /* お好みで調整 */
  font-weight: bold;
}


.un_price_list_price__sub{
  margin-left: 6px;
  font-size: 1.4rem;
}


@media screen and (min-width: 768px) {
  .un_price_list li {
  font-size: 2.2rem;
}

.un_price_list_price{
  font-size: 3.0rem; /* お好みで調整 */
}

.un_price_list_price__sub{
  font-size: 1.6rem;
}

}






/* ------------------------------------------------------------
* faq
* -------------------------------------------
----------------- */

/* 共通
* -------------------------------------------------- */
.un_faq_qa {
    max-width: 100%;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.un_faq_qa summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 1em 1em 2em;
    color: var(--fontcolor);
    font-weight: 600;
    cursor: pointer;
}

.un_faq_qa summary::before,
.un_faq_qa p::before {
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 2.0rem;
}

.un_faq_qa summary::before {
    color: var(--primarycolor);
    content: "Q";
}

.un_faq_qa summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid var(--fontcolor);
    border-right: 3px solid var(--fontcolor);
    content: '';
    transition: transform .5s;
}

.un_faq_qa[open] summary::after {
    transform: rotate(225deg);
}

.un_faq_qa p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: var(--fontcolor);
    transition: transform .5s, opacity .5s;
}

.un_faq_qa[open] p {
    transform: none;
    opacity: 1;
}

.un_faq_qa p::before {
    color: var(--secondarycolor);
    line-height: 1.2;
    content: "A";
}




/* ------------------------------------------------------------
* 店舗情報
* -------------------------------------------
----------------- */

/* 共通
* -------------------------------------------------- */

/* 2列×3行テーブルの基本スタイル */
.un_info_table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1.6rem;
  background: #fff;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); */
}
.un_info_table th,
.un_info_table td {
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 16px;
  text-align: left;
}
.un_info_table th {
  /* background: #fad200; */
  color: #333;
  font-weight: bold;
  width: 30%;
}
.un_info_table td {
  width: 70%;
}

/* レスポンシブ：スマホでは縦並び、PCでは横2カラム */
@media screen and (max-width: 767px) {
  .un_info_table,
  .un_info_table tbody,
  .un_info_table tr,
  .un_info_table th,
  .un_info_table td {
    display: block;
    width: 100%;
  }
  .un_info_table th {
    /* background: #fad200; */
    border-bottom: none;
  }
  .un_info_table td {
    border-top: none;
    margin-bottom: 16px;
  }
}

.un_info_imgWrap{

}

  .un_info_img{
    margin-top: 20px;
    & img{
      border-radius: var(--redius);
    }
  }


@media screen and (min-width: 768px) {

  .un_info_imgWrap{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .un_info_img{
    width: calc(50% - 10px);
    & img{
      border-radius: var(--redius);
    }
  }


}


/* ------------------------------------------------------------
* ご予約について
* -------------------------------------------
----------------- */

/* 共通
* -------------------------------------------------- */
.un_reserve_tel{
  font-size: 3.2rem;
}
