@charset "UTF-8";
/*/////////----------------リセット*/
/* A modern CSS Reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
main,
h1,
h2,
h3,
h4,
div,
section,
ol,
ul,
li,
p,
figure,
blockquote,
dl,
dd,
a {
  margin: 0;
  padding: 0;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 100;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

input,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*/////////----------------ミックスイン設定*/
/*共通設定*/
html {
  font-size: 62.5%;
}

body {
  background: #FFF;
  font-family: "Oswald", "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #333;
}

a {
  display: block;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

button {
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  transition: 0.3s;
}

/*/////////----------------TOP特集 表示テンプレ （新着物件 お気に入り 閲覧済）*/
.new-arrived {
  padding: 150px 0 100px;
}
.new-arrived__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.new-arrived__title {
  text-align: center;
  margin-bottom: 50px;
}
.new-arrived__title-en {
  font-size: 3.4rem;
  color: #172633;
  font-weight: 500;
  letter-spacing: 1px;
}
.new-arrived__title-ja {
  margin-top: 8px;
  font-size: 1.8rem;
  font-weight: bold;
}
.new-arrived__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media (max-width: 1024px) {
  .new-arrived__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .new-arrived__list {
    grid-template-columns: 1fr;
  }
}
.new-arrived__item {
  display: flex;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.new-arrived__img {
  width: 39%;
}
.new-arrived__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.new-arrived__info {
  flex: 1;
  padding: 25px 20px 20px;
  font-size: 14px;
  color: #333;
}
.new-arrived__info dl {
  margin: 0;
}
.new-arrived__label {
  display: inline-block;
  margin-bottom: 5px;
  padding: 3px 7px;
  background-color: #3b555b;
  color: #FFF;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.new-arrived__row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.new-arrived__row dt {
  width: 60px;
  font-size: 1.4rem;
  font-weight: normal;
}
.new-arrived__row dd {
  font-size: 1.5rem;
  font-weight: bold;
}
.new-arrived__row dd span {
  font-size: 20px;
  font-weight: bold;
  margin-right: 3px;
}
.new-arrived__row:nth-last-of-type(1) {
  margin-top: 10px;
}
.new-arrived__row:nth-last-of-type(1) dd {
  font-size: 1.4rem;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .new-arrived { /*pc*/
    padding: 120px 0;
    /*pc*/
  }
  .new-arrived__title {
    text-align: center;
    margin-bottom: 50px;
  }
  .new-arrived__title-en {
    font-size: 2.6rem;
  }
  .new-arrived__title-ja {
    font-size: 1.6rem;
  }
  .new-arrived__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .new-arrived__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .new-arrived { /*tab*/
    /*tab*/
  }
  .new-arrived__list {
    grid-template-columns: 1fr;
  }
}

/*/////////----------------準備中*/
.preparation_con {
  margin: 50px auto;
  padding: 100px 20px;
  background: #fff;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/*/////////----------------wpアドミンバー*/
@media (max-width: 768px) {
  /*tab*/
  html #wpadminbar {
    position: fixed !important;
  }
  /*tab*/
}
/*/////////----------------ヘッダー*/
/*ヘッダースクロール時処理*/
@media (min-width: 1025px) {
  /*min1025*/
  #fixed-header {
    position: relative;
    top: 0;
  }
  #fixed-header.fixed { /*headerをfixed処理した際影つける*/
    position: fixed;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0 2px 10px rgba(43, 42, 40, 0.1);
    z-index: 1001;
  }
  #fixed-header.fixed .header-nav-menu_left, #fixed-header.fixed .header-nav-menu_right {
    box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
  }
  #fixed-header.no-show { /*下にスクロールした際、headerを隠す処理*/
    top: -130px;
    box-shadow: none;
    transition: 0.3s;
  }
  /*min1025*/
}
@media (min-width: 1025px) and (max-width: 768px) {
  #fixed-header {
    position: fixed;
    height: auto;
    min-height: 50px;
  }
  #fixed-header.fixed { /*headerをfixed処理した際影つける*/
    background-color: rgba(0, 0, 0, 0);
  }
  #fixed-header.fixed .header-nav-menu_left, #fixed-header.fixed .header-nav-menu_right {
    box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
  }
  #fixed-header .no-show {
    top: -80px;
  }
}
@media (min-width: 1025px) {
  #fixed-header.fixed .header__logo {
    padding: 20px 10px;
    background-color: #000000;
  }
  #fixed-header.fixed .header__logo img {
    max-width: 250px;
    height: auto;
  }
  #fixed-header.fixed .header__logo .pc {
    display: none;
  }
  #fixed-header.fixed .header__logo .sp {
    display: block;
  }
  #fixed-header.fixed .header__content {
    padding-top: 15px;
    gap: 5px;
  }
  #fixed-header.fixed .header__suvnav {
    gap: 8px;
  }
  #fixed-header.fixed .header__suvnav a {
    padding-right: 15px;
    font-size: 1.3rem;
  }
  #fixed-header.fixed .header__suvnav a::before {
    top: calc(50% - 4px);
    right: 5px;
    width: 7px;
    height: 7px;
  }
  #fixed-header.fixed .header__btn--like a {
    min-width: 110px;
    margin-left: 10px;
    padding: 4px 10px 4px 33px;
  }
  #fixed-header.fixed .header__btn--like a::before {
    /*@include iconFav*/
    top: calc(50% - 9px);
    left: 10px;
    width: 20px;
    height: 20px;
    background-image: url(../img/common/icon_fav.svg);
    background-size: auto;
  }
  #fixed-header.fixed .header__btn--viewed a {
    min-width: 110px;
    padding: 4px 10px 4px 33px;
  }
  #fixed-header.fixed .header__btn--viewed a::before {
    /*@include iconView*/
    top: calc(50% - 9px);
    left: 10px;
    width: 20px;
    height: 20px;
    background-image: url(../img/common/icon_view.svg);
    background-size: auto;
  }
  #fixed-header.fixed .header__nav-list {
    gap: 50px;
  }
  #fixed-header.fixed .header__nav-item a {
    font-size: 1.4rem;
  }
  #fixed-header.fixed .header__nav-item span {
    font-size: 1.1rem;
  }
}
/*ヘッダースクロール時処理 ここまで*/
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header__logo {
  /*@include flexAJCenterSet;*/
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30vw;
  padding: 30px 10px;
  background-color: #000;
}
.header__logo img {
  width: 100%;
  max-width: 135px;
  height: auto;
}
.header__logo .sp {
  display: none;
}
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 30px;
  margin-right: 2vw;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.header__toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: #333;
  transition: all 0.3s ease;
}
.header__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #fff;
}
.header__toggle.is-active span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
  background-color: #fff;
}
.header__content {
  /*@include flexWwSet;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 20px;
  padding-right: 7.1428571429vw;
}
.header__suvnav {
  /*@include flexACenterSet;*/
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__suvnav a {
  position: relative;
  padding-right: 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.header__suvnav a::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 4px);
  right: 5px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #646464;
  border-bottom: 1px solid #646464;
  transform: rotate(-45deg);
}
.header__suvnav a:hover {
  opacity: 1;
  color: #FFAC1D;
}
.header__suvnav a:hover::before {
  border-right: 1px solid #FFAC1D;
  border-bottom: 1px solid #FFAC1D;
}
.header__nav-list {
  display: flex;
  justify-content: end;
  gap: 70px;
  width: 100%;
  padding: 0;
  margin: 0;
}
.header__nav-item a {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.header__nav-item a:hover {
  opacity: 1;
  color: #FFAC1D;
}
.header__nav-item span {
  display: block;
  padding-left: 1px;
  color: #7F7D73;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: 0.3s;
}
.header__nav-item:hover span {
  opacity: 1;
  color: #FFAC1D;
  transition: 0.2s;
}
.header__btn a {
  font-weight: bold;
  font-size: 14px;
}
.header__btn--like a {
  position: relative;
  min-width: 120px;
  margin-left: 15px;
  padding: 4px 12px 4px 33px;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
}
.header__btn--like a::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  /*@include iconFav*/
  top: calc(50% - 9px);
  left: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_fav.svg);
  background-size: auto;
  border: none;
  transform: rotate(0);
}
.header__btn--like a:hover {
  opacity: 1;
  background-color: #DC744E;
  color: #FFF;
  transform: rotate(0);
}
.header__btn--like a:hover::before {
  border: none;
}
.header__btn--viewed a {
  position: relative;
  min-width: 120px;
  padding: 4px 12px 4px 33px;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
}
.header__btn--viewed a::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  /*@include iconView*/
  top: calc(50% - 9px);
  left: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_view.svg);
  background-size: auto;
  border: none;
  transform: rotate(0);
}
.header__btn--viewed a:hover {
  opacity: 1;
  background-color: #1EC16F;
  color: #FFF;
  transform: rotate(0);
}
.header__btn--viewed a:hover::before {
  border: none;
}
@media (max-width: 1024px) {
  .header { /* pc*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    /*pc*/
  }
  .header__logo {
    position: relative;
    z-index: 1001;
    padding: 15px 20px;
  }
  .header__logo .pc {
    display: none;
  }
  .header__logo .sp {
    display: block;
  }
  .header__content {
    position: absolute;
    top: 0;
    right: -100%;
    background: #172633;
    width: 100%;
    height: 100vh;
    padding: 40px 30px;
    z-index: 1000;
    transition: 0.3s;
  }
  .header__content.is-open {
    display: flex;
    justify-content: start;
    flex-direction: column;
    right: 0;
    transition: 0.3s;
  }
  .header__suvnav {
    order: 2;
    width: 85%;
    margin: 0 auto;
  }
  .header__suvnav li {
    width: 100%;
  }
  .header__suvnav li a {
    position: relative;
    color: #FFF;
    letter-spacing: 1px;
  }
  .header__nav {
    order: 1;
    width: 85%;
    margin: 0 auto;
    padding: 120px 0 20px;
  }
  .header__nav-list {
    flex-wrap: wrap;
    gap: 12px;
  }
  .header__nav-list li {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #666;
  }
  .header__nav-list li a {
    position: relative;
    color: #FFF;
    letter-spacing: 1px;
  }
  .header__nav-list li a span {
    color: #FFF;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
  }
  .header__nav-list li a::before {
    /*@include iconBefAf;*/
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: calc(50% - 4px);
    right: 5px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    transform: rotate(-45deg);
  }
  .header__toggle {
    display: flex;
  }
  .header__btn a {
    width: 100%;
    font-weight: bold;
    font-size: 14px;
  }
  .header__btn--like a {
    margin-top: 10px;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .header { /*tab*/
    /*tab*/
  }
}

@media (max-width: 768px) {
  /*tab*/
  /*tab*/
}
/*/////////----------------フッター*/
.footer {
  position: relative;
  background: #000;
  padding: 80px 0 0;
  /*tab*/
}
.footer__inner {
  /*@include flex_jsb;*/
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 80px;
}
.footer__left {
  max-width: 330px;
}
.footer__left .footer__logo {
  max-width: 260px;
  margin-bottom: 50px;
}
.footer__left .footer__company {
  color: #FFF;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1;
  letter-spacing: 1px;
}
.footer__left .footer__address {
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1.6;
}
.footer__left .footer__contact {
  position: relative;
  border-top: 1px solid #fff;
  margin-top: 10px;
  padding-left: 50px;
  padding-top: 10px;
}
.footer__left .footer__contact::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  top: calc(50% - 11px);
  left: 5px;
  width: 35px;
  height: 35px;
  background-image: url(../img/common/icon_tel.svg);
  background-size: auto;
}
.footer__left .footer__tel {
  color: #FFF;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}
.footer__left .footer__time {
  color: #FFF;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.footer__right {
  display: flex;
  justify-content: end;
  margin-top: 30px;
  font-size: 1.4rem;
}
.footer__right a {
  color: #fff;
}
.footer__right .footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 30px;
  margin-bottom: 15px;
}
.footer__right .footer__nav-list li a {
  font-size: 1.4rem;
  font-weight: bold;
}
.footer__right .footer__nav-list li a:hover {
  opacity: 1;
  color: #FFAC1D;
}
.footer__right .footer__subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin: 30px 0 50px;
}
.footer__right .footer__subnav li:nth-of-type(1) a,
.footer__right .footer__subnav li:nth-of-type(2) a,
.footer__right .footer__subnav li:nth-of-type(3) a {
  position: relative;
  padding-right: 20px;
  font-size: 1.3rem;
  text-decoration: none;
}
.footer__right .footer__subnav li:nth-of-type(1) a::before,
.footer__right .footer__subnav li:nth-of-type(2) a::before,
.footer__right .footer__subnav li:nth-of-type(3) a::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 4px);
  right: 5px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: rotate(-45deg);
}
.footer__right .footer__subnav li:nth-of-type(1) a:hover,
.footer__right .footer__subnav li:nth-of-type(2) a:hover,
.footer__right .footer__subnav li:nth-of-type(3) a:hover {
  opacity: 1;
  color: #FFAC1D;
}
.footer__right .footer__subnav li:nth-of-type(1) a:hover::before,
.footer__right .footer__subnav li:nth-of-type(2) a:hover::before,
.footer__right .footer__subnav li:nth-of-type(3) a:hover::before {
  border-right: 1px solid #FFAC1D;
  border-bottom: 1px solid #FFAC1D;
}
.footer__right .footer__subnav .btn--fav {
  position: relative;
  min-width: 120px;
  margin: 0 0 0 10px;
  padding: 8px 12px 8px 33px;
  background-color: #fff;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 4px;
  line-height: 1;
}
.footer__right .footer__subnav .btn--fav::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  /*@include iconFavBlc*/
  top: calc(50% - 9px);
  left: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_fav_blc.svg);
  background-size: auto;
}
.footer__right .footer__subnav .btn--fav:hover {
  opacity: 1;
  background-color: #DC744E;
}
.footer__right .footer__subnav .btn--view {
  position: relative;
  min-width: 120px;
  padding: 8px 12px 8px 33px;
  background-color: #FFF;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 4px;
  line-height: 1;
}
.footer__right .footer__subnav .btn--view::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  /*@include iconViewBlc*/
  top: calc(50% - 9px);
  left: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_view_blc.svg);
  background-size: auto;
}
.footer__right .footer__subnav .btn--view:hover {
  opacity: 1;
  background-color: #00c37a;
}
.footer__right .footer__bottom-nav {
  display: flex;
  justify-content: end;
  margin: 30px 0 40px;
}
.footer__right .footer__bottom-nav a {
  color: #fff;
  font-size: 1.2rem;
}
.footer__right .footer__bottom-nav a::after {
  content: "/";
  display: inline-block;
  margin-left: 5px;
}
.footer__right .footer__bottom-nav a:last-of-type::after {
  content: none;
}
.footer__copy {
  padding: 8px;
  background-color: #cccccc;
  color: #000;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .footer { /*tab*/
    padding: 60px 0 0;
    /*tab*/
  }
  .footer__inner {
    width: 90%;
    margin: 0 auto 60px;
  }
  .footer__left {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .footer__left .footer__logo {
    max-width: 200px;
    margin: 0 auto 40px;
  }
  .footer__left .footer__company {
    font-size: 1.6rem;
  }
  .footer__left .footer__address {
    font-size: 1.5rem;
  }
  .footer__left .footer__contact {
    padding-left: 40px;
  }
  .footer__left .footer__contact::before {
    top: calc(50% - 11px);
    left: calc(50% - 9.5rem);
    width: 30px;
    height: 30px;
  }
  .footer__left .footer__tel {
    font-size: 2.4rem;
  }
  .footer__left .footer__time {
    font-size: 1.5rem;
  }
  .footer__right {
    justify-content: start;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    font-size: 1.4rem;
  }
  .footer__right .footer__nav {
    width: 100%;
  }
  .footer__right .footer__nav-list {
    justify-content: center;
    gap: 0 10px;
    margin: 30px 0 0;
  }
  .footer__right .footer__nav-list li {
    width: calc((100% - 20px) / 3);
    margin-bottom: 15px;
    text-align: center;
  }
  .footer__right .footer__subnav {
    justify-content: center;
    gap: 13px 15px;
    margin: 30px 0 40px;
  }
  .footer__right .footer__subnav li:nth-of-type(1) a,
  .footer__right .footer__subnav li:nth-of-type(2) a,
  .footer__right .footer__subnav li:nth-of-type(3) a {
    padding-right: 0;
  }
  .footer__right .footer__subnav li:nth-of-type(1) a::before,
  .footer__right .footer__subnav li:nth-of-type(2) a::before,
  .footer__right .footer__subnav li:nth-of-type(3) a::before {
    right: -10px;
  }
  .footer__right .footer__subnav li:nth-of-type(4),
  .footer__right .footer__subnav li:nth-of-type(5) {
    width: 80%;
  }
  .footer__right .footer__subnav .btn--fav {
    width: 100%;
    margin: 0;
    padding: 12px 12px 12px 33px;
  }
  .footer__right .footer__subnav .btn--view {
    width: 100%;
    padding: 12px 12px 12px 33px;
  }
  .footer__right .footer__bottom-nav {
    justify-content: center;
    margin: 0;
  }
  .footer__right .footer__bottom-nav a {
    color: #fff;
    font-size: 1.2rem;
  }
  .footer__right .footer__bottom-nav a::after {
    content: "/";
    display: inline-block;
    margin-left: 5px;
  }
  .footer__right .footer__bottom-nav a:last-of-type::after {
    content: none;
  }
  .footer__copy {
    padding: 8px;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 2px;
  }
}

/**/
#back-top-btn {
  position: absolute;
  bottom: 2.1428571429vw;
  right: 7.1428571429vw;
  width: 75px;
  height: 75px;
}
#back-top-btn a {
  background-color: #FFF;
  border-radius: 100px;
  box-shadow: 0 0 8px rgba(43, 42, 40, 0.3);
}
#back-top-btn a:hover {
  opacity: 1;
  background-color: #FFAC1D;
}
#back-top-btn.fixed { /*headerをfixed処理した際影つける*/
  position: fixed;
  transition: 0.3s;
}
#back-top-btn.no-show { /*下にスクロールした際、headerを隠す処理*/
  bottom: -75px;
  box-shadow: none;
  transition: 0.3s;
}
@media (max-width: 768px) {
  #back-top-btn { /*tab*/
    right: 10px;
    width: 50px;
    height: 50px;
    /*tab*/
  }
}/*# sourceMappingURL=common.css.map */