@charset "UTF-8";
.scrollanime {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown2 {
  animation-name: fadeInDown2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes sub_main {
  0% {
    background-position: center top;
    opacity: 0;
  }
  100% {
    background-position: center bottom;
    opacity: 1;
  }
}
@keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*バウンドアニメーション*/
@keyframes fuwafuwa {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*上下の動きを指定*/
.updown {
  transform: translateY(-100px);
}

.downup {
  transform: translateY(100px);
}

/*左右の動きを指定*/
.sect02 {
  overflow: hidden;
} /*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(200px);
}

.slide-left {
  transform: translateX(-200px);
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.m0a {
  margin: 0 auto;
}

.fw_b {
  font-weight: bold;
}

.pb_50 {
  padding-bottom: 50px;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.flex_bw {
  display: flex;
  justify-content: space-between;
}

/*============================
共通
============================*/
html {
  font-size: 62.5%;
}

body {
  margin: 0 auto;
  letter-spacing: 1px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  color: #2a2a2a;
  font-size: 1.6em;
}
@media screen and (max-width: 430px) {
  body {
    font-size: 12px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation: fadeIn 1s ease forwards;
  transition: 0.5s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fadeInUp.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    z-index: -99;
  }
}
/*追従メニューバーここから*/
.g-nav {
  width: 100%;
  z-index: 10;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

/* 共通・パーツ */
.bgc-white {
  background-color: #fff;
}

.width1200 {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding: 30px 0 60px 0;
}
@media screen and (max-width: 768px) {
  .width1200 {
    padding: 20px 0 30px 0;
    width: 90%;
  }
}

.flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h3-purple {
  color: #B79FCB;
  font-family: "ropa-sans-pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(30px, 4.5vw, 45px);
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

.link_btn {
  text-align: left;
  margin-top: 20px;
}
.link_btn a {
  background-color: #333;
  font-size: 18px;
  padding: 12px 60px 12px 40px;
  transition: 0.5s;
  position: relative;
  height: inherit;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  cursor: pointer;
  color: #fff;
}
.link_btn a:after {
  /*くのじマーク*/
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-52%);
  right: 30px;
  top: 48%;
  position: absolute;
  content: "";
  transition: 0.5s;
}
.link_btn a:hover:after {
  right: 20px;
}

.link_purple {
  text-align: center;
  margin-bottom: 45px;
}
.link_purple a, .link_purple button {
  text-align: center;
  border: 1px solid #84416F;
  padding: 10px 40px;
  display: inline-block;
  transition: 0.5s;
}
.link_purple a:hover, .link_purple button:hover {
  background-color: #F2E3E9;
}
@media screen and (max-width: 360px) {
  .link_purple a, .link_purple button {
    padding: 10px;
  }
}
.link_purple #next-post, .link_purple #prev-post {
  text-align: center;
  border: 1px solid #84416F;
  padding: 10px 40px;
  display: inline-block;
  transition: 0.5s;
}
.link_purple #next-post:hover, .link_purple #prev-post:hover {
  background-color: #F2E3E9;
}
@media screen and (max-width: 360px) {
  .link_purple #next-post, .link_purple #prev-post {
    padding: 10px;
  }
}

.sp_only {
  display: none;
}

/*ヘッダーここから*/
header {
  background-color: rgba(255, 255, 255, 0.8);
  padding-right: 80px;
  height: 80px;
  vertical-align: middle;
}
header .header_inner {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 10px;
}
header .header_inner .header-left,
header .header_inner .header-right {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1150px) {
  header .header_inner .header-left {
    display: none;
  }
}
header .header_inner h1 {
  flex-shrink: 0;
  font-size: clamp(20px, 1.8vw, 32px);
  color: #707070;
  text-align: center;
  margin: 0 auto;
}
header .header_inner .header-right {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
header .header_inner .header-right a {
  color: #FFF;
  font-size: clamp(16px, 1.2vw, 21px);
  border-radius: 20px;
  text-align: center;
  padding: 7px 20px;
  width: 190px;
  height: 100%;
  transition: 0.5s;
  display: inline-block;
}
header .header_inner .header-right a:hover {
  background-color: #707070;
}
header .header_inner .header-right .sp-only {
  display: none;
}
header .header_inner .header-right .tel-pc {
  background-color: #D9B97E;
  color: #FFF;
  font-size: clamp(16px, 1.2vw, 21px);
  border-radius: 20px;
  text-align: center;
  padding: 7px 20px;
  width: 190px;
  transition: 0.5s;
  display: inline-block;
}
header .header_inner .header-right .header-contact {
  background-color: #B79FCB;
}
header .header_inner .header-right .header-tel {
  background-color: #D9B97E;
}
@media screen and (max-width: 780px) {
  header {
    padding-right: 70px;
    height: 70px;
  }
  header .header_inner {
    padding: 12px;
  }
  header .header_inner h1 {
    font-size: clamp(16px, 3.5vw, 20px);
  }
  header .header_inner .header-right a {
    padding: 8px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
  }
  header .header_inner .header-right a .tel-icon {
    width: 22px;
    height: auto;
  }
  header .header_inner .header-right a .contact-icon {
    width: 27px;
    height: auto;
  }
  header .header_inner .header-right .pc-only {
    display: none;
  }
  header .header_inner .header-right .sp-only {
    display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding-right: 70px;
    height: 70px;
  }
  header .header_inner {
    padding: 21px 10px;
  }
  header .header_inner h1 {
    font-size: 17px;
  }
  header .header_inner .header-right {
    display: none;
  }
}

.main-visual {
  margin-top: 80px;
  position: relative;
}
.main-visual .slide-sp {
  display: none;
}
.main-visual .key-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.main-visual .key-text h2 {
  text-align: center;
  margin-bottom: 5px;
}
.main-visual .key-text h2 img {
  width: clamp(150px, 40vw, 530px);
}
.main-visual .key-text .key-white {
  background-color: rgba(255, 255, 255, 0.75);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 10px 15px;
  width: 100%;
}
.main-visual .key-text .key-white .key-left {
  font-size: clamp(15px, 2.5vw, 26px);
  text-align: center;
}
.main-visual .key-text .key-white .key-right span {
  background-color: #A9B4CE;
  border-radius: 10px;
  padding: 5px 10px;
  width: 120px;
  display: inline-block;
  font-size: clamp(13.5px, 2.2vw, 22px);
  text-align: center;
}
.main-visual .key-text .key-white .key-right span:first-of-type {
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .main-visual .key-text .key-white {
    padding: 10px;
  }
  .main-visual .key-text .key-white .key-left {
    margin-bottom: 7px;
  }
  .main-visual .key-text .key-white .key-right span {
    padding: 3px;
    width: 100px;
    border-radius: 7px;
  }
}
@media screen and (max-width: 768px) {
  .main-visual {
    margin-top: 70px;
  }
  .main-visual .slide-pc {
    display: none;
  }
  .main-visual .slide-sp {
    display: block;
    width: 100%;
    height: calc(100vh - 70px);
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main-visual .main-visual,
  .main-visual .slider,
  .main-visual .slide,
  .main-visual .top-inner {
    height: calc(100vh - 70px);
  }
}

.intro .catch {
  font-size: clamp(16px, 2.5vw, 25px);
  margin-bottom: 10px;
  text-align: center;
}
.intro .lead {
  line-height: 1.8;
  font-size: clamp(12px, 2.2vw, 18px);
}

.top-service .service-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 25px;
  padding: 0 5px;
}
.top-service .service-list li {
  width: 282px;
  overflow: hidden;
}
.top-service .service-list li a {
  transition: 0.5s;
  position: relative;
  width: 100%;
  display: block;
}
.top-service .service-list li a:hover {
  opacity: 0.8;
}
.top-service .service-list li a dl dt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: clamp(11px, 2.8vw, 17px);
  padding: 7px 10px 6px 10px;
  z-index: 1;
  text-align: center;
}
.top-service .service-list li a dl dd img {
  transition: 0.5s;
  width: 100%;
}
.top-service .service-list li a dl dd img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 680px) {
  .top-service .service-list {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
  .top-service .service-list li {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 390px) {
  .top-service .service-list {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .top-service .service-list li a dl dt {
    padding: 6px;
  }
}
@media screen and (max-width: 370px) {
  .top-service .service-list li {
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
  }
  .top-service .service-list li a dl dt {
    font-size: 13px;
  }
}

.top-news .news-box {
  border-bottom: 1px solid #707070;
}
.top-news .news-box dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 5vw;
       column-gap: 5vw;
  padding: 1.3vw 5vw;
  border-top: 1px solid #707070;
}
.top-news .news-box dl dt a {
  transition: 0.5s;
  text-align: right;
}
.top-news .news-box dl dt a:hover {
  color: #B79FCB;
}
.top-news .news-box dl dd a {
  transition: 0.5s;
}
.top-news .news-box dl dd a:hover {
  color: #B79FCB;
}
@media screen and (max-width: 430px) {
  .top-news .news-box dl {
    flex-direction: column;
  }
  .top-news .news-box dl dt a {
    margin-bottom: 5px;
  }
}

.top-evn a img {
  transition: 0.5s;
  box-shadow: 2px 2px 6px #999;
}
.top-evn a img:hover {
  transform: translateY(-7px);
  opacity: 0.8;
}

.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}
.top-banner a {
  width: calc(50% - 20px);
  transition: 0.5s;
  box-shadow: 2px 2px 6px #999;
}
.top-banner a:hover {
  transform: translateY(-7px);
  opacity: 0.8;
}
.top-banner .banner-inner {
  padding: 30px;
  height: 100%;
  flex: 1;
}
.top-banner .banner-inner.top-showroom {
  background-image: url(img/top/top_showroom.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.top-banner .banner-inner.top-myroom {
  background-image: url(img/top/top_myroom.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.top-banner .banner-inner .banner-white {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
}
.top-banner .banner-inner .banner-white h4 {
  font-size: clamp(25px, 2.8vw, 35px);
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.1;
  color: #5E5D5C;
}
.top-banner .banner-inner .banner-white .banner-title {
  font-size: clamp(17px, 2.8vw, 20px);
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .top-banner {
    flex-direction: column;
  }
  .top-banner a {
    width: 100%;
  }
}

/*fixed_button*/
#fixed_button {
  display: none;
}
@media screen and (max-width: 430px) {
  #fixed_button {
    position: fixed;
    display: flex;
    justify-content: space-between;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  #fixed_button a {
    background-color: #B79FCB;
    text-align: center;
    padding: 10px 20px;
    width: 50%;
    transition: 0.5s;
    display: grid;
    place-items: center;
  }
  #fixed_button a:hover {
    background-color: #707070;
  }
  #fixed_button .fixed-tel {
    background-color: #D9B97E;
  }
}

/*ページトップボタン*/
#pagetop {
  text-align: center;
  position: fixed;
  right: 3vw;
  bottom: 3vw;
  z-index: 990;
}
#pagetop .pagetop_btt {
  cursor: pointer;
  transition: 0.3s;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #84416F;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #B79FCB;
  display: grid;
  place-items: center;
  box-shadow: 2px 3px 10px #707070;
}
#pagetop .pagetop_btt:hover {
  transform: translateY(-7px);
}
@media screen and (max-width: 430px) {
  #pagetop {
    bottom: calc(50px + 3vw);
  }
}

/*フッターここから*/
footer {
  background-color: #000;
  padding: 40px 0 0 0;
}
footer .footer-inner {
  background-image: url(img/ceo.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 50px;
}
footer .footer-inner .footer-info {
  color: #fff;
}
footer .footer-inner .footer-info .footer-logo {
  margin-bottom: 30px;
  padding: 0 20px;
}
footer .footer-inner .footer-info .footer-ul {
  margin-bottom: 70px;
}
footer .footer-inner .footer-info .footer-ul li {
  margin-bottom: 5px;
}
footer .footer-inner .footer-info .footer-ul li a {
  transition: 0.5s;
  display: inline-block;
}
footer .footer-inner .footer-info .footer-ul li a:hover {
  transform: translateY(-7px);
}
footer .footer-inner .footer-info .footer-ul li .footer-fb {
  padding-right: 5px;
}
footer .footer-inner .footer-info .footer-ul li:nth-of-type(4) {
  margin-bottom: 20px;
}
footer .footer-inner .footer-info .copyright {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  footer .footer-inner {
    background-size: 38%;
    padding-bottom: 150px;
  }
  footer .footer-inner .footer-info .footer-logo {
    text-align: left;
    padding: 0;
  }
  footer .footer-inner .footer-info .footer-logo a img {
    width: 40%;
    min-width: 150px;
    height: auto;
  }
  footer .footer-inner .footer-info .copyright {
    font-size: 11px;
  }
  footer .footer-inner .footer-ul {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 430px) {
  footer {
    margin-bottom: 55px;
  }
}