<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*==汎用==*/
.flex01 {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .flex01 {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.flex02 {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.flex03 {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .flex03 {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
/*パンくず*/
.bd_single {
  display: none;
}
/*蛍光ペン的なやつ*/
.underline {
  background: linear-gradient(transparent 70%, #ffe0c2 70%);
}
/*テキスト省略*/

.ellipsis {
  position: relative;
  overflow: hidden;
  line-height: 20px;
  height: 3.8rem;
}

.ellipsis:before,
.ellipsis:after {
  position: absolute;
  background: #fff;
}

.ellipsis:before {
  content: "･･･";
  bottom: 0;
  right: 0;
  padding: 0 3px;
}

.ellipsis:after {
  content: "";
  width: 100%;
  height: 100%;
}
.line_2 {
  height: 10rem;
}
.line_3 {
  height: 8rem;
}
/*==汎用ここまで==*/
/*pagetitle*/
.sec_ttl {
  margin: 60px auto;
}

.gallery {
  max-width: 1140px;
  padding: 0 25px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .gallery {
    max-width: 96%;
    padding: 0 0;
    margin: 50px auto;
  }
}

/*=========================================
選択部分 1行
========================================*/
.gallery_list_inner {
  max-width: 910px;
  margin: 60px auto;
}
.new {
  display: block;
  color: #dd0000;
  margin-bottom: 2px;
}
.list_ttl .gallery_h2 {
  margin-bottom: 4px;
  font-size: 2.4rem;
  line-height: 2;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6",
    "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.consider_sub_area {
  text-align: right;
  margin-bottom: 8px;
}
/*メイン画像*/
.list_img {
  text-align: center;
}
.list_img {
  overflow: hidden;
  width: 100%;
  max-width: 910px; /* トリミングしたい枠の幅 */
  /*height: 613px;*/ /* トリミングしたい枠の高さ */
  position: relative;
  padding-top: 67.36%;
}
.list_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.list_img a:hover {
  opacity: 0.5;
}

/*メイン画像下　説明部分*/
.list_category {
  margin: 15px auto;
}
.list_category_left {
  flex-basis: 90px;
}
.list_category_left.type02 {
  flex-basis: 15%;
}

.list_category_right {
  flex-basis: 817px;
}
.list_category_right_02 {
  flex-basis: 85%;
}
.list_category_right span {
  display: block;
  padding: 5px 15px;
  margin-right: 10px;
  background-color: #ff9933;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
}
.list_detail {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.list_detail ul {
  flex-basis: 635px;
}
.list_detail ul li {
  /*flex-basis:272px;*/
  width: 48%;
}
.list_detail ul li:first-child {
  margin-bottom: 20px;
}
.list_detail a {
  width: 274px;
  display: block;
  text-align: center;
  border: 1px solid #ff9933;
  color: #ff9933;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 60px;
  padding: 20px 0;
}
.list_detail a i {
  margin-right: 20px;
}
.list_detail a:hover {
  background-color: #ff9933;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .gallery_list_inner {
    max-width: 100%;
    margin: 50px auto;
  }
  .list_ttl .gallery_h2 {
    font-size: 2.1rem;
  }
  .list_img {
    overflow: hidden;
    width: 100%; /* トリミングしたい枠の幅 */
    /*height: 250px;*/ /* トリミングしたい枠の高さ */
  }
  .list_category .flex03 {
    justify-content: flex-start;
  }
  /*メイン画像下　説明部分*/
  .list_category {
    margin: 15px auto;
  }
  .list_category_left {
    flex-basis: 90px;
  }
  .list_category_right {
    flex-basis: 817px;
  }
  .list_category_right span {
    display: block;
    padding: 5px 10px;
    margin-right: 5px;
    background-color: #ff9933;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
  }
  .list_detail ul {
    flex-basis: 100%;
  }
  .list_detail ul li {
    flex-basis: 50%;
    margin-bottom: 10px;
  }
  .list_detail a {
    width: 100%;
    padding: 10px;
  }
  .list_detail a i {
    margin-right: 20px;
  }
  .list_detail a:hover {
    background-color: #ff9933;
    color: #fff;
  }
}

/*=========================================
選択部分 2列
========================================*/
.gallery_list_2rows {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gallery_list_2rows .list_ttl {
  position: relative;
}
.gallery_list_2rows .new {
  margin-bottom: 0;
  position: absolute;
  top: -15px;
}
.gallery_list_2rows .gallery_list_inner {
  max-width: 525px;
  width: 100%;
  margin: 0;
}
.gallery_list_2rows .gallery_list_inner:nth-child(2n) {
  margin-bottom: 60px;
}
.gallery_list_2rows .list_ttl .gallery_h2 {
  font-size: 2rem;
}
.gallery_list_2rows .ellipsis {
  height: 2em;
}
.gallery_list_2rows .list_category {
  align-items: center;
}
.gallery_list_2rows .list_category ul li {
  width: 48%;
  margin-right: 1%;
  line-height: 1.2;
}
.gallery_list_2rows .list_category ul li:first-child {
  margin-bottom: 20px;
}
.gallery_list_2rows .list_detail a {
  width: 100%;
  padding: 10px;
}
@media screen and (max-width: 1140px) {
  .gallery_list_2rows .gallery_list_inner {
    max-width: none;
    width: 48%;
  }
  .gallery_list_2rows .list_category ul {
    font-size: 1.4rem;
    margin: 0 auto 0 4%;
  }
  .gallery_list_2rows .list_category ul li:last-child {
    width: 100%;
    margin-top: 10px;
  }
  .gallery_list_2rows .list_category ul li:first-child {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .gallery_list_2rows .list_ttl .gallery_h2 {
    margin: 0 auto 10px;
  }
  .gallery_list_2rows .list_category {
    display: none;
  }
  .gallery_list_2rows .list_detail a {
    margin: 10px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .gallery_list_2rows .gallery_list_inner:nth-child(2n) {
    margin-bottom: 40px;
  }
  .gallery_list_2rows .list_ttl .gallery_h2 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .gallery_list_2rows .ellipsis {
    height: 1.6em;
  }
}
.gallery_list_2rows .gallery_list_inner:last-child {
  margin-bottom: 0;
}

/*=========================================
詳細ページより
========================================*/
.ttl_gallery_detail {
  max-width: 1090px;
  margin: 0 auto 10px;
  padding: 0;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.new {
  position: absolute;
  top: -20px;
  font-weight: 500;
}
.gallery_category {
  flex-basis: 70px;
  margin-bottom: 3px;
}
.ttl_gallery {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  flex-basis: 1000px;
  margin: 0 auto 20px;
}
.ttl_bottom_box {
  max-width: 1090px;
  margin: 0 auto 40px;
  justify-content: space-between;
}
.gallery_data_top {
  font-size: 2rem;
}
.gallery_data_top .data_name {
  padding: 0 0 0 1em;
}
.cms_detail_share {
  text-align: right;
}
.cms_detail_share .social_btn {
  padding: 0 10px 0 0;
  margin: 0;
  text-align: right;
}
@media screen and (max-width: 1140px) {
  .ttl_gallery_detail,
  .ttl_bottom_box {
    max-width: 96%;
  }
}
@media screen and (max-width: 767px) {
  .ttl_gallery_detail {
    max-width: 96%;
  }

  .ttl_gallery {
    flex-basis: 100%;
  }
  .cms_voice_share .social_btn {
    text-align: right;
  }
}
@media screen and (max-width: 480px) {
  .ttl_bottom_box {
    flex-direction: column-reverse;
    padding: 0 2.5%;
  }
  .gallery_data_top {
    font-size: 1.6rem;
  }
  .cms_detail_share {
    margin-bottom: 10px;
  }
  .cms_detail_share .social_btn {
    margin: 0;
  }
}

/*works-data　施工事例情報*/
.works-data {
  max-width: 1140px;
  margin: 60px auto 0;
  padding: 0 25px;
}
.works-data_ttl {
  margin: 60px auto 0;
  padding-bottom: 50px;
}
.works-data_txt {
  margin: 50px auto 40px;
  line-height: 1.8;
}
.works-data_ttl .ttl_bb {
  border-bottom: 1px solid #000;
  padding-right: 20px;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  padding-bottom: 2px;
}
.works-data_ttl .ttl_en {
  position: relative;
  top: 30px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1140px) {
  .works-data {
    padding: 0 2.5%;
  }
}
@media screen and (max-width: 767px) {
  .works-data_ttl {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 0 10px 35px;
  }
}
@media screen and (max-width: 480px) {
  .works-data_ttl .ttl_bb {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .works-data_ttl .ttl_en {
    display: none;
  }
}

/*ボタン*/
.btn_bottom a {
  margin: 40px auto 0 auto;
  display: block;
  width: 300px;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ffa347;
  color: #ffa347;
  transition: 0.5s all;
  letter-spacing: 0.1em;
}
.btn_bottom a:hover {
  background: #ffa347;
  color: #fff;
}
.btn_bottom a i {
  padding-right: 15px;
}

/*お客様の口コミ、評判*/
.consider_voice_sec {
}
.consider_sub_ttl {
  position: relative;
  font-weight: bold;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.consider_sub_ttl::after {
  content: "";
  display: block;
  background: #ff9933;
  width: 188px;
  height: 3px;
  margin: 5px 0 15px;
}
.consider_sub_txt_area {
  margin-bottom: 40px;
  padding: 0 2%;
  line-height: 1.8;
}

/*店舗情報*/
.appearance_sec {
  margin: 80px auto;
}
.appearance_sec .appearance_ttl {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  border-left: solid 8px #ff9933;
  border-bottom: solid 1px #ccc;
  padding: 4px 0 4px 16px;
  margin-bottom: 40px;
}
.appearance_sec .appearance_wrap {
  margin-bottom: 80px;
}
.appearance_sec .flex {
  display: flex;
  justify-content: space-between;
}
.appearance_sec .flex .appearance {
  width: 50%;
}
.appearance_sec .flex .appearance img {
  width: 100%;
}
.appearance_sec .flex .infomation {
  width: 45%;
  position: relative;
  padding: 0 0 64px 0;
}
.appearance_sec .flex .infomation dl,
.appearance_sec .flex .infomation ul {
  width: 100%;
}
.appearance_sec .flex .infomation dt {
  font-size: 2.1rem;
  line-height: 3.6rem;
  font-weight: bold;
}
.appearance_sec .info_name {
  display: inline-block;
  margin-right: 1em;
}
.appearance_sec a.info_link {
  color: #ff9933;
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}
.appearance_sec a.info_link:hover {
  opacity: 0.7;
}
.appearance_sec .flex .infomation address {
  font-size: 1.6rem;
  line-height: 3.6rem;
}
.appearance_sec .flex .infomation .free_dial {
  font-size: 2.8rem;
  line-height: 4.9rem;
  font-weight: bold;
}
.appearance_sec .flex .infomation .free_dial i {
  margin: 0 1rem 0 0;
}
.appearance_sec .flex .infomation .free_dial.free_dial_text {
  font-size: 2.5rem;
  line-height: 1.5;
}
.appearance_sec .flex .infomation .direct_dial,
.appearance_sec .flex .infomation .business_hours,
.appearance_sec .flex .infomation .access,
.appearance_sec .flex .infomation .area {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.appearance_sec .flex .infomation .direct_dial span {
  margin: 0 1rem 0 0;
}
.appearance_sec .flex .infomation .direct_dial i {
  margin: 0 0.5rem 0 0;
}
.appearance_sec .flex .infomation .conversion {
  position: absolute;
  bottom: 0;
}
.appearance_sec .flex .infomation .conversion li {
  width: 47.5%;
}
.appearance_sec .flex .infomation .conversion a {
  display: inline-block;
  width: 100%;
  background: #ff7033;
  text-align: center;
  color: #fff;
  font-size: 1.9rem;
  line-height: 6.4rem;
  font-weight: bold;
}
.appearance_sec .flex .infomation .conversion a:hover {
  background: #000;
}
.appearance_sec .flex .infomation .arrow {
  margin: 0 15px 0 0;
}
.appearance_sec .flex .infomation .arrow:before {
  content: "\f105";
}
.appearance_sec .map_open {
  font-size: 1.6rem;
  line-height: 6rem;
  text-align: center;
  color: #fff;
  background: #858585;
  max-width: 300px;
  width: 100%;
  margin: 50px auto 0 auto;
  display: block;
}
.appearance_sec .google_map {
  margin: 30px 0 0 0;
}
.appearance_sec .map_open:hover {
  background: #323232;
}
.appearance_sec .map_open i:before {
  content: "\f00e";
}

@media screen and (max-width: 768px) {
  .appearance_sec &gt; .flex {
    display: block;
  }
  .appearance_sec .flex .infomation .conversion {
    position: relative;
    margin: 20px 0 0;
  }
  .appearance_sec .flex .appearance,
  .appearance_sec .flex .infomation {
    width: 100%;
  }
  .appearance_sec .flex .infomation {
    margin: 20px 0 0;
    padding: 0 0 20px 0;
  }
}

@media screen and (max-width: 480px) {
  .appearance_sec .appearance_ttl {
    font-size: 1.8rem;
    padding: 4px 0 4px 8px;
    margin-bottom: 20px;
  }
  .appearance_sec .flex .infomation .conversion a {
    font-size: 1.4rem;
    line-height: 5rem;
  }
  .appearance_sec .google_map {
    height: 200px;
  }
  .appearance_sec a.info_link {
    display: block;
  }
}
/*テーブルCSS追加*/
.consider_area_sec table {
  border-collapse: separate;
  border-spacing: 1px 1px;
  border: 1px solid #fff;
  border: revert;
}
.consider_area_sec tr,
.consider_area_sec tbody {
  border: 1px solid #fff;
  border: revert;
  border-spacing: 1px 1px;
}
.consider_area_sec td {
  border: 1px solid #fff;
  border: revert;
  border-spacing: 1px 1px;
  padding: 2px 4px;
}
.consider_area_sec th {
  border: 1px solid #fff;
  border: revert;
  border-spacing: 1px 1px;
  padding: 2px 4px;
}

/*==========================================
 共通 イベント一覧
===========================================*/
.event {
  margin-top: 100px;
}
.event_h2_wrap {
  margin-bottom: 30px;
}
.event_h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}
.event_h2_wrap.shinyurigaoka .event_h2 {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
}
.event_h2_wrap.hachioji .event_h2 {
  font-size: 2.8rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6",
    "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 500;
  text-align: center;
}
.event_h2_wrap.suginami .event_h2 {
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6",
    "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 400;
  text-align: center;
}
.event_h2_wrap.yokohama_aoba .event_h2 {
  font-size: 1.8rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6",
    "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: bold;
  text-align: center;
  line-height: 2.4rem;
  letter-spacing: 10px;
  display: block;
}
.event_h2_wrap.yokohama_aoba .event_h2 .event_h2s {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 8.4rem;
  letter-spacing: 4px;
  display: block;
}
.event_h2_wrap.iruma .event_h2 {
  color: #ff8800;
}
.event_h2_wrap.ageo {
  padding: 0 24px 0 0;
  margin: 0 2.5%;
}
.event_h2_wrap.ageo .event_h2 {
  font-size: 2.4rem;
  line-height: 4.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #fd8164;
  box-shadow: 24px 21px 0 0 #fdc364;
  max-width: 504px;
  width: 100%;
  margin: 0 auto 80px;
  padding: 30px 10px;
}
.event_h2_wrap.kawaguchi .event_h2 {
  font-size: 3.6rem;
  line-height: 6.3rem;
  font-weight: bold;
  color: #399bff;
  letter-spacing: 0.1em;
}
.event_inner {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 2%;
}
.event_flex {
  display: flex;
  flex-wrap: wrap;
}
.event_item {
  flex-basis: 23%;
  width: 100%;
  margin: 0 1% 25px;
}
.event_item a {
  display: block;
  border: 1px solid #eee;
}
.event_item a:hover {
  box-shadow: 0px 0px 12px -1px rgba(0, 0, 0, 0.2);
}
.event_img {
  margin-bottom: 12px;
}
.event_img_inner {
  display: inline-block;
  line-height: 0;
  padding-top: 65%;
  position: relative;
  height: 0;
  overflow: hidden;
  width: 100%;
}
.event_img_inner img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: auto;
  width: 100%;
  transition: 0.3s;
}
.event_txt {
  padding: 0 2% 12px;
}
.event_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6",
    "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  margin-bottom: 8px;
}
.event_date {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  margin-bottom: 4px;
}
.event_date .far {
  margin-right: 1rem;
  width: 1em;
  text-align: center;
}
.event_time {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  margin-bottom: 4px;
}
.event_time .far {
  margin-right: 1rem;
  width: 1em;
  text-align: center;
}
.event_place {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  margin-bottom: 4px;
}
.event_place .fas {
  margin-right: 1rem;
  width: 1em;
  text-align: center;
}
.clamp {
  position: relative;
  overflow: hidden;
  height: 2rem;
}
.clamp:before {
  content: "...";
  bottom: 0;
  right: 0;
  padding: 0 3px;
  position: absolute;
  background: #fff;
}
.clamp:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
}
.event_ttl.ellipsis {
  background: #fff;
  overflow: hidden;
  width: 100%;
}
.event_ttl .ellipsis_inner {
  height: 50px;
  line-height: 1.4;
  position: relative;
  display: block;
}
.event_ttl .ellipsis_inner::before {
  content: "...";
  top: 22px;
  right: 0;
  background: #fff;
  position: absolute;
}
.event_ttl .ellipsis_inner::after {
  content: "";
  height: 100%;
  width: 100%;
  background: #fff;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .event_inner {
    padding: 0 0%;
  }
  .event_item {
    flex-basis: 46%;
    margin: 0 2% 40px;
  }
}

@media screen and (max-width: 480px) {
  .event_h2 {
    font-size: 2.4rem;
  }
  .event_ttl {
    font-size: 1.4rem;
  }
  .event_date {
    font-size: 1.2rem;
  }
  .event_time {
    font-size: 1.2rem;
  }
  .event_place {
    font-size: 1.2rem;
  }
  .event_h2_wrap.ageo {
    margin: 0 4%;
  }
  .event_flex {
    margin: 0 2%;
  }
}

/* 20250610追記 */
.wrap-new {
  max-width: 1140px;
  padding: 0 25px;
  margin: 60px auto 120px;
}

.appearance_sec-new.wrap-new.wrap_inner-new .appearance_ttl {
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  padding: 4px 0;
}

/* 2個目以降の .appearance_ttl にだけ margin-top:70px を付与 */
.appearance_sec-new.wrap-new.wrap_inner-new
  .appearance_ttl:not(:first-of-type) {
  margin-top: 70px;
}

.reserved-new .reserved_btn-new .arrow {
  margin: 0 15px 0 0;
}
.reserved-new .arrow:before {
  content: "\f105";
}
.appearance_wrap_r.flex_r {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 20px;
  border: 1px #000 solid;
}
.appearance_wrap_r.flex_r.another {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 20px;
  border: 1px #000 solid;
}
.appearance_wrap_r.flex_r .appearance {
  width: 50%;
}
.appearance_wrap_r.flex_r .appearance img {
  width: 100%;
  height: auto;
  display: block;
}
.appearance_wrap_r.flex_r .infomation-new {
  width: 45%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  /* justify-content: center; */
  height: 100%;
  justify-content: space-around;
}
.appearance_wrap_r.flex_r .info_dl-new {
  /* margin-bottom: 24px; */
  margin-bottom: 0; /* ←ここを0に */
  flex: none;
}

.info_dt-new {
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #222;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 4px;
}
.appearance_wrap_r.flex_r .info_dt-new.info_dt-top {
  display: none;
}
.appearance_wrap_r.flex_r .info_name-new {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  font-weight: bold;
  margin-bottom: 8px;
  display: inline-block;
}
.appearance_wrap_r.flex_r .info_name-another {
  font-size: clamp(1.6rem, 2.2vw, 2.7rem);
}
.appearance_wrap_r.flex_r .info_address-new address,
.appearance_wrap_r.flex_r .free_dial-new {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  margin-top: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: left;
}

.appearance_wrap_r.flex_r .free_dial_num-new {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: bold;
  color: #222;
  margin-left: 10px;
}
.appearance_wrap_r.flex_r .reserved-new {
  /* position: absolute; */
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 0; /* ←ここを0に */
  flex: none;
}
.appearance_wrap_r.flex_r .info_dl-new .pcnone_mds {
  display: none;
}

.appearance_wrap_r.flex_r .pcnone_1100 {
  display: none;
}
@media screen and (max-width: 1150px) {
  .appearance_wrap_r.flex_r .pcnone_1100 {
    display: block;
  }
}

.appearance_wrap_r.flex_r .pcnone_500 {
  display: none;
}
@media screen and (max-width: 500px) {
  .appearance_wrap_r.flex_r .pcnone_500 {
    display: block;
  }
}

.appearance_wrap_r.flex_r .reserved_btn-new {
  background: #ff7033;
  color: #fff;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: bold;
  padding: 12px 0;
  text-decoration: none;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  width: 100%;
  height: 48px;
}
.appearance_wrap_r.flex_r .reserved_btn-new:hover {
  background: #000;
}
.appearance_wrap_r.flex_r .info_link-new {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  color: rgb(255, 153, 0);
}
.appearance_wrap_r.flex_r .info_link-another {
  font-size: clamp(1.6rem, 2vw, 1.64rem);
}

.appearance_wrap_r.flex_r .info_link-new:hover {
  text-decoration: underline;
}

.appearance_wrap_r.flex_r .info_link_icon-new {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff9900;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 2rem;
  margin-left: 8px;
  font-weight: bold;
  transition: background 0.2s;
  line-height: 1;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .appearance_wrap_r.flex_r {
    flex-direction: column;
    gap: 24px;
  }
  .appearance_wrap_r.flex_r .info_name-new {
    font-size: clamp(1.8rem, 3vw, 3rem);
  }
  .appearance_wrap_r.flex_r .info_name-another {
    font-size: clamp(1.67rem, 3vw, 3rem);
  }

  .appearance_wrap_r.flex_r .appearance,
  .appearance_wrap_r.flex_r .infomation-new {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    min-height: 165px;
  }
  .appearance_wrap_r.flex_r .info_dt-new {
    display: none;
  }
  .appearance_wrap_r.flex_r .info_dt-new.info_dt-top {
    display: block;
  }
  .appearance_wrap_r.flex_r .reserved-new {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-top: 0px;
  }
  .appearance_wrap_r.flex_r .reserved_btn-new {
    font-size: clamp(1.3rem, 2vw, 2rem);
    margin-right: 5px;
  }

  .appearance_wrap_r.flex_r .info_link-new {
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 2rem);
    white-space: nowrap;
  }
  .appearance_wrap_r.flex_r .pcnone_1100 {
    display: none;
  }
  .appearance_wrap_r.flex_r .info_link_icon-new {
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }
  .appearance_wrap_r.flex_r .big_font,
  .appearance_wrap_r.flex_r .free_dial_num-new {
    font-size: clamp(2rem, 3vw, 2.2rem);
  }
  .appearance_wrap_r.flex_r .free_dial_num-new {
    font-size: clamp(2.3rem, 3vw, 2.2rem);
  }

  .appearance_wrap_r.flex_r .free_dial-new,
  .appearance_wrap_r.flex_r .info_address-new address {
    /* font-size: clamp(1.6rem, 2vw, 2rem); */
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }
  .appearance_wrap_r.flex_r .free_dial-new,
  .appearance_wrap_r.flex_r .free_dial_num-new {
    margin: 20px 0;
  }
  .appearance_wrap_r.flex_r .info_address-new address {
    margin-top: -15px;
  }
  .appearance_wrap_r.flex_r .info_dl-new .pcnone_mds {
    display: block;
  }
}
</pre></body></html>