@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 17px;
  font-size: 1.7rem;
  color: #262626;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

@media screen and (max-width: 500px) {
  body {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

a {
  color: #262626;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s;
}

a:hover {
  color: #262626;
  text-decoration: none;
  opacity: 0.65;
}

a:active,
a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dd,
dt,
dl {
  margin: 0;
}

figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

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

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.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;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 .3em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: .5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 .3em;
  resize: vertical;
  width: 100%;
}

textarea :focus {
  outline: none;
  border-color: #000;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}

.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous,
.pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}

.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination>li {
  position: relative;
}

.pagination>li>span,
.pagination>li>a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination>li>span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination>li>a:active,
.pc .pagination>li>a:hover,
.pc .pagination>li>a:focus {
  border-color: #000;
  color: #000;
}

.pagination>li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal;
}

.wp-pagenavi a:hover {
  border: 1px solid #000;
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}

.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #000;
}

.breadcrumbs ul,
.breadcrumbs ol {
  list-style: none;
  padding: 0;
}

.breadcrumbs li {
  display: inline;
}

.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}

.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }

  .breadcrumbs li:before {
    margin: 0 5px;
  }
}

/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(../img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(../img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: .2em 2em;
}

@media screen and (max-width: 560px) {

  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}

/***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  display: none;
}

@media screen and (max-width: 1024px) {
  .toggle {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    padding: 13px;
    right: 10px;
    text-align: center;
    top: 5px;
    z-index: 7;
  }

  .toggle__bar {
    position: relative;
    margin: 8px auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .toggle__bar,
  .toggle__bar::before,
  .toggle__bar::after {
    display: block;
    width: 25px;
    height: 1px;
    background-color: #fff;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .toggle__bar::before,
  .toggle__bar::after {
    position: absolute;
    content: "";
  }

  .toggle__bar::before {
    top: -8px;
  }

  .toggle__bar::after {
    top: 8px;
  }
}

.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

@media screen and (min-width: 1025px) {
  .gnav {
    display: flex !important;
    height: inherit !important;
  }
}

@media screen and (max-width: 1024px) {
  .gnav {
    position: fixed;
    right: 0;
    top: 80px;
    max-width: 375px;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    z-index: 6;
    padding: 20px 15px;
    transform: translateX(100%);
    transition: all .6s;
  }

  .gnav.active {
    transform: translateX(0);
  }
}

/***************************

 header

***************************/
header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

header.fixedmenu {
  background-color: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.header-inner {
  width: 100%;
  padding: 10px 20px;
}

/***************************

layout/footer.scss

***************************/
footer {
  width: 100%;
}

footer .contact-banner {
  padding: 60px 20px;
}

.footer-container {
  width: 100%;
  background: #000;
  padding: 40px 20px;
  color: #fff;
}

.footer-container>.flexbox {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.footer-container .add {
  max-width: 450px;
  width: 100%;
  display: flex;
}

.footer-container .add .logo {
  margin-right: 35px;
}

.footer-container .add p {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.footer-container .add .sns-list {
  display: flex;
  align-items: center;
}

.footer-container .add .sns-list li:not(:last-child) {
  margin-right: 15px;
}

.footer-container .add .sns-list a {
  color: #fff;
  font-size: 1.9rem;
}

.footer-container .sub-nav {
  max-width: 500px;
  width: 100%;
}

.footer-container .sub-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer-container .sub-nav ul li:not(:last-child) {
  margin-right: 20px;
}

.footer-container .sub-nav ul a {
  font-size: 1.4rem;
  color: #fff;
}

.footer-container .copyright {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #fff;
  margin-top: 10px;
}

@media screen and (max-width: 900px) {
  .footer-container>.flexbox {
    flex-wrap: wrap;
  }

  .footer-container .add {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-container .sub-nav {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 550px) {
  footer {
    margin-bottom: 100px;
  }

  .footer-container .sub-nav ul {
    justify-content: space-between;
  }

  .footer-container .sub-nav ul li {
    width: 50%;
  }

  .footer-container .sub-nav li:not(:last-child) {
    margin-right: 0;
  }
}

@media screen and (max-width: 425px) {
  .footer-container .add {
    display: block;
    text-align: center;
  }

  .footer-container .add .logo {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer-container .add .sns-list {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-container .sub-nav ul li {
    text-align: center;
  }

  .footer-container .copyright {
    text-align: center;
  }
}

@media screen and (max-width: 375px) {
  .footer-container .sub-nav ul li {
    width: 100%;
  }
}

@media screen and (max-width: 369px) {
  footer {
    margin-bottom: 118px;
  }
}

.fixed-sidemenu {
  position: fixed;
  right: 0;
  z-index: 10;
  bottom: 50%;
  transform: translateY(50%);
}

.fixed-sidemenu li:last-child {
  margin-top: 10px;
}

.fixed-sidemenu li:last-child a {
  background: #282828;
}

.fixed-sidemenu a {
  display: block;
  width: 62px;
  writing-mode: tb-rl;
  padding: 30px 20px;
  font-size: 1.5rem;
  color: #fff;
  background: #B49E86;
}

.fixed-sidemenu a br {
  display: none;
}

@media screen and (max-width: 550px) {
  .fixed-sidemenu {
    width: 100%;
    bottom: 50px;
    transform: translateY(0);
  }

  .fixed-sidemenu ul {
    width: 100%;
    display: flex;
  }

  .fixed-sidemenu li {
    width: 50%;
  }

  .fixed-sidemenu li:last-child {
    margin-top: 0;
  }

  .fixed-sidemenu a {
    width: 100%;
    height: 100%;
    writing-mode: rl-tb;
    padding: 13px 10px;
    font-size: 1.5rem;
    text-align: center;
  }
}

@media screen and (max-width: 369px) {
  .fixed-sidemenu a {
    line-height: 1.4;
  }

  .fixed-sidemenu a br {
    display: block;
  }
}

.pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 10;
}

.pagetop a {
  display: block;
  width: 62px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  color: #fff;
  background: #B49E86;
  border-radius: 100%;
}

@media screen and (max-width: 550px) {
  .pagetop {
    width: 100%;
    height: 50px;
    bottom: 0;
    right: 0;
  }

  .pagetop a {
    width: 100%;
    height: 100%;
    line-height: 50px;
    border-radius: 0;
    border-top: 1px solid #fff;
  }
}

/*////////////////////////

 user common css

////////////////////////*/
.container_l {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.sp_550 {
  display: none;
}

.tab {
  display: none;
}

.tab_none {
  display: block;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .tab {
    display: block;
  }

  .tab_none {
    display: none;
  }
}

@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}

@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }

  .sp_550 {
    display: block;
  }
}

/*////////////////////////

fonts

////////////////////////*/
.cormorant-garamond {
  font-family: "EB Garamond", serif;
}

.eb-garamond {
  font-family: "EB Garamond", serif;
}

.shippori-mincho-b1 {
  font-family: "Shippori Mincho B1", serif;
}

.shippori-mincho {
  font-family: "Shippori Mincho", serif;
}

.extrabold {
  font-weight: 800;
}

.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.regular {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

.fw-bold {
  font-weight: bold;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_17 {
  line-height: 1.7;
}

.lh_1 {
  line-height: 1;
}

.fz20 {
  font-size: 2rem;
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}

@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}

/*////////////////////////

btn

////////////////////////*/
.btn-A {
  display: block;
  width: 100%;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.8rem;
  letter-spacing: -0.05em;
  color: #615E41;
  padding: 10px 40px;
  padding-right: 100px;
  background: url(../img/common/btn-arrow.png) no-repeat center right 40px;
  background-size: 35px 20px;
  background-color: #fff;
  border: 1px solid #afa787;
  border-radius: 50px;
}

.btn-A:hover {
  background: url(../img/common/btn-arrow-hov.png) no-repeat center right 40px;
  background-color: #afa787;
  color: #fff;
  opacity: 1;
}

.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .btn-A {
    font-size: 2.2rem;
    padding: 10px 30px;
    background-size: 25px 10px;
    background-position: center right 20px;
  }

  .btn-A:hover {
    background-size: 25px 10px;
    background-position: center right 20px;
  }

  .tab-center {
    margin: 0 auto;
  }
}

/*////////////////////////

hdg__

////////////////////////*/
.hdg_01 {
  text-align: center;
  background: url(../img/common/hdg-parts01.png) no-repeat center top;
  background-size: 30px 30px;
  padding-top: 50px;
}

.hdg_01.star_none {
  background: none;
}

.hdg_01.col_white {
  background: url(../img/top_renew/hdg-parts01.png) no-repeat center top;
  background-size: 30px 30px;
  color: #fff;
}

.hdg_01_ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  display: block;
  /*font-size: 4.8rem;*/
  font-size: 4rem;
  line-height: 1.3;
  letter-spacing: -0.09em;
  margin-bottom: 10px;
}

.hdg_01_sub_ja {
  display: block;
  /*font-size: 2rem;*/
  font-size: 1.8rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.hdg_01_en {
  display: block;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  /*font-size: 2rem;*/
  font-size: 1.8rem;
  color: #AFA787;
}

@media screen and (max-width: 768px) {
  .hdg_01 {
    padding-top: 30px;
    background-size: 28px 27px;
  }

  .hdg_01_ja {
    font-size: 3.8rem;
  }

  .hdg_01_sub_ja,
  .hdg_01_en {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 500px) {
  .hdg_01_ja {
    font-size: 2.6rem;
  }
}

/***************************

object/project/top.scss

***************************/
.top01 {
  width: 100%;
  background: url(../img/top/mv-back.jpg) repeat center center;
  overflow: hidden;
}

.main-visual-container {
  position: relative;
  max-width: 1310px;
  width: 100%;
  padding-top: 140px;
  margin: 0 auto 30px;
}

.main-visual_textbox {
  position: absolute;
  left: 0;
  bottom: 50px;
  z-index: 5;
}

.main-visual_textbox p {
  line-height: 2.2;
  margin-top: 45px;
}

.main-visual_copy_ja {
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 5.6rem;
  line-height: 1.3;
  letter-spacing: -0.09em;
  margin-bottom: 20px;
  font-feature-settings: 'palt';
}

.main-visual_copy_sub_ja {
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.main-visual_copy_en {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.main-visual_imagebox {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}

.main-visual_imagebox_text {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #B1ACAA;
  mix-blend-mode: multiply;
  right: 25px;
  top: 20px;
  z-index: 5;
}

.main-visual_flag {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 208px;
  height: 208px;
  background: url(../img/top/mv-flag.png) no-repeat center center;
  background-size: 100%;
  bottom: -20px;
  right: -20px;
  z-index: 5;
}

.main-visual_flag p {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 3.5rem;
  letter-spacing: -0.004em;
  line-height: 1.2;
  color: #B49E86;
  text-align: center;

  &.small {
    font-size: 1.8rem;
    padding-top: 20px;
    background: url(../img/common/hdg-parts02.png) no-repeat;
    background-position: top center;
    background-size: 15px 15px;
  }
}

.main-visual .swiper-pagination {
  width: 35px !important;
  height: 70%;
  left: inherit !important;
  right: 0;
}

.main-visual .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 1;
}

.main-visual .swiper-pagination-bullet-active {
  background: #000;
}

.main-visual_undertext {
  white-space: nowrap;
  font-family: "EB Garamond", serif;
  /* font-size: 12.2vw; */
  font-size: 10.2vw;
  text-align: center;
  line-height: 1;
  color: #F2F2F2;
  opacity: .53;
  z-index: 5;
}

@media screen and (max-width: 1300px) {
  .main-visual_flag {
    right: 20px;
  }

  .main-visual_textbox {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .main-visual_textbox {
    position: relative;
    bottom: inherit;
    margin-bottom: -25vw;
  }
}

@media screen and (max-width: 880px) {
  .main-visual_copy_ja {
    font-size: 6vw;
  }
}

@media screen and (max-width: 768px) {
  .top01 {
    position: relative;
  }

  .main-visual_textbox {
    padding: 0 40px;
    margin-bottom: -50px;
  }

  .main-visual_imagebox_text {
    right: inherit;
    left: 40px;
    top: 100px;
  }

  .main-visual_flag {
    display: none;
  }

  .main-visual-container {
    margin-bottom: 0;
    padding-top: 100px;
  }

  .main-visual_undertext {
    position: absolute;
    width: 100%;
    bottom: -2.5vw;
    opacity: .8;
    font-size: 11.2vw;
    letter-spacing: -0.04em;
  }

  .main-visual_copy_sub_ja {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 500px) {
  .main-visual_textbox {
    padding: 0 25px;
    margin-bottom: 0;
  }

  .main-visual_textbox p {
    margin-top: 25px;
  }

  .main-visual_textbox p br {
    display: none;
  }

  .main-visual_imagebox_text {
    top: 10px;
    left: 25px;
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .main-visual_copy_ja {
    font-size: 9vw;
    margin-bottom: 10px;
  }

  .main-visual_copy_sub_ja {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .main-visual_copy_en {
    font-size: 1.5rem;
  }

  .main-visual_textbox p {
    line-height: 1.8;
    font-weight: 500;
    font-size: 1.2rem;
  }

  ::-webkit-full-page-media, :future, :root .main-visual_undertext {
    position: absolute;
    width: 100%;
    bottom: -2.5vw;
    opacity: .8;
    font-size: 10.2vw;
  }
}

.top02 {
  width: 100%;
  margin-top: -2.5vw;
  background: #E9E9E9;
  padding: 200px 0 0;
}

.about-ttl_main br {
  display: none;
}

.about-container {
  position: relative;
  max-width: 1260px;
  width: 100%;
  background: #fff;
  padding: 0 20px;
  margin-bottom: 100px;
  border-radius: 15px;
}

.about-container .image {
  width: 100%;
  text-align: center;
}

.about-container p {
  max-width: 1080px;
  width: 100%;
  font-size: 2rem;
  line-height: 1.8;
  margin: 25px auto 0;
}

.about-container .inner {
  translate: 0 -65px;
}

.about-container .about-ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 20px 0;
  background: url(../img/common/hdg-parts01.png) no-repeat;
  background-position: top center;
  background-size: 30px 30px;
  z-index: 3;
  text-align: center;
  margin-bottom: 35px;
}

.about-container .about-ttl .about-ttl_main {
  font-family: "Shippori Mincho B1", serif;
  font-size: 4rem;
  /*font-size: 4.8rem;*/
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.09em;
}

.about-container .about-ttl .about-ttl_sub {
  /*font-size: 2rem;*/
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.about-under-mv {
  width: 100%;
}

.about-under-mv img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top02 {
    padding-top: 100px;
  }

  .about-container {
    margin-bottom: 50px;
  }

  .about-container .about-ttl .about-ttl_main {
    font-size: 3.8rem;
  }

  .about-container .inner {
    translate: 0 -60px;
  }
}

@media screen and (max-width: 550px) {
  .about-container .about-ttl .about-ttl_main {
    font-size: 2.6rem;
  }

  .about-container .about-ttl .about-ttl_sub {
    font-size: 1.5rem;
  }

  .about-container .inner {
    translate: 0 0;
    padding: 30px 0;
  }
}

@media screen and (max-width: 500px) {
  .about-container p {
    font-size: 1.5rem;
  }

  .about-ttl_main br {
    display: block;
  }
}

.top03 {
  width: 100%;
  padding: 100px 20px;
}

.top03 .hdg_01 br {
  display: none;
}

.gallery-swiper_container {
  position: relative;
  max-width: 1260px;
  width: 100%;
  margin: 40px auto 120px;
}

.gallery-swiper_container:before,
.gallery-swiper_container:after {
  position: absolute;
  content: '';
  width: 10%;
  height: 100%;
  top: 0;
  z-index: 10;
}

.gallery-swiper_container:before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.gallery-swiper_container:after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.gallery-swiper {
  width: 100%;
}

.gallery-wrapper {
  padding-bottom: 70px;
}

.gallery-swiper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #fff;
  opacity: 1;
  border: 1px solid #b49e86;
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: #B49E86;
}

.gallery-box {
  position: relative;
  width: 100%;
}

.gallery-box_image span {
  position: relative;
  display: block;
  background: #B49E86;
  text-align: center;
  aspect-ratio: 1 / 1;
}

.gallery-box_image span:after {
  position: absolute;
  content: '\2b';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-family: "FontAwesome";
  font-size: 2.4rem;
  color: #fff;
  background: #AFA787;
  border: 2px solid #fff;
  border-radius: 100%;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  pointer-events: none;
}

.gallery-box_image img {
  width: auto;
  height: 100%;
}

.gallery-box_image figcaption {
  font-size: 2.4rem;
  text-align: center;
  margin-top: 20px;
}

.gallery-modal-box {
  display: none;
}

.modaal-overlay {
  background: #464637 !important;
  mix-blend-mode: multiply;
}

.modaal-wrapper .modaal-close {
  background: #fff !important;
}

.modaal-close:after,
.modaal-close:before {
  background: #6F5C53 !important;
}

.modaal-container {
  background: transparent !important;
  box-shadow: none !important;
}

.gallery-modal-box_image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-modal-box_image li {
  aspect-ratio: 420 / 260;
  display: flex;
  justify-content: center;
}

.gallery-modal-box_text {
  margin-top: 20px;
}

.gallery-modal-box_text p {
  color: #fff;
  line-height: 2.2;
  margin-top: 10px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.65);
}

.contact-banner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .top03 {
    padding: 50px 20px;
  }

  .top03 .hdg_01 br {
    display: block;
  }

  .gallery-swiper_container {
    margin: 20px 0 60px;
  }

  .gallery-box_image figcaption {
    font-size: 2rem;
  }

  .gallery-modal-box_text p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 550px) {
  .gallery-modal-box_image {
    grid-template-columns: 100%;
  }

  .gallery-modal-box_image li {
    text-align: center;
  }

  .gallery-modal-box_image li:nth-child(2n + 1) {
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .top03 .hdg_01_ja br {
    display: block;
  }
}

.top04 {
  width: 100%;
  background: #F2EEE3;
  padding: 100px 0 140px;
}

.top04 .hdg_01 br.sp500 {
  display: none;
}

.special-voice-list {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 70px 40px;
}

.special-voice-list_block {
  position: relative;
  width: calc((100% - 40px) / 2);
  border-radius: 60px;
  background: #fff;
  padding: 50px;
}

.special-voice-list_block:before {
  position: absolute;
  content: '';
  width: 60px;
  height: 60px;
  background: url(../img/top_renew/voice-arrow.png);
  background-size: 100% 100%;
  z-index: 3;
  bottom: -30px;
  left: 50%;
  translate: -50% 0;
}

.special-voice-list_block:hover {
  cursor: pointer;
}

.special-voice-list_head {
  width: 100%;
}

.special-voice-list_head .num {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.special-voice-list_head .ttl {
  font-family: "Shippori Mincho B1", serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1.3;
  font-feature-settings: 'palt';
}

.special-voice-list_head .ttl span {
  color: #B6A96B;
}

.special-voice-list_textBox {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dotted #717171;
  display: none;
}

.special-voice-list_textBox p {
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .special-voice-list {
    gap: 50px 20px;
  }

  .special-voice-list_block {
    padding: 30px;
  }

  .special-voice-list_block:before {
    width: 40px;
    height: 40px;
    bottom: -20px;
  }
}

@media screen and (max-width: 768px) {
  .top04 {
    padding: 50px 0 70px;
  }

  .special-voice-list_block {
    width: 100%;
    border-radius: 40px;
  }

  .special-voice-list_head .ttl {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 500px) {
  .top04 .hdg_01 br.sp500 {
    display: block;
  }

  .top04 p.fz20 {
    font-size: 1.5rem;
  }

  .special-voice-list_head .ttl br {
    display: none;
  }

  .sp-fz20 {
    font-size: 2rem;
  }
}

.top05 {
  width: 100%;
  padding: 100px 0;
}

.top05 .hdg_01_ja br.sp500 {
  display: none;
}

.bilding-price {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 100px;
  padding: 50px 20px;
  background: #AEA686;
  border-radius: 60px;
  color: #fff;
}

.bilding-price p {
  max-width: 780px;
  width: 100%;
  margin: 30px auto 20px;
}

.bilding-price .image {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top05 {
    padding: 50px 0;
  }

  .bilding-price {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 500px) {
  .top05 .hdg_01_ja br.sp500 {
    display: block;
  }
}

.top06 {
  width: 100%;
  background: #E9E9E9;
  padding: 100px 0 140px;
}

.product-features {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 100px 45px;
  margin-top: 50px;
}

.product-features_block {
  width: calc((100% - 45px) / 2);
}

.product-features_block:nth-child(even) {
  padding-top: 60px;
}

.product-features_block .image {
  width: 100%;
  padding-left: 55px;
}

.product-features_block .image img {
  width: 100%;
}

.product-features_block .text {
  position: relative;
  width: calc(100% - 75px);
  background: #fff;
  padding: 60px 45px 50px;
  margin-top: -95px;
}

.product-features_block .text .num {
  position: absolute;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 9.5rem;
  font-weight: 400;
  color: #B39E85;
  line-height: 1;
  letter-spacing: -0.04em;
  top: -40px;
  right: 40px;
}

.product-features_block .text .ttl {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .product-features {
    gap: 100px 25px;
  }

  .product-features_block .image {
    padding-left: 35px;
  }

  .product-features_block .text {
    width: calc(100% - 45px);
    padding: 40px 25px 30px;
    margin-top: -5vw;
  }

  .product-features_block .text .num {
    font-size: 7.5rem;
  }
}

@media screen and (max-width: 768px) {
  .top06 {
    padding: 50px 0 70px;
  }

  .product-features {
    gap: 50px;
  }

  .product-features_block {
    width: 100%;
  }

  .product-features_block:nth-child(even) {
    padding-top: 0;
  }
}

@media screen and (max-width: 500px) {
  .top06 p.fz20 {
    font-size: 1.5rem;
  }

  .product-features_block .image {
    padding-left: 20px;
  }

  .product-features_block .text {
    width: calc(100% - 25px);
    margin-top: -7vw;
  }

  .product-features_block .text .num {
    font-size: 5.5rem;
    top: -30px;
  }

  .product-features_block .text .ttl {
    font-size: 2.2rem;
  }

  .product-features_block .text br.sp_none {
    display: none;
  }
}

.top07 {
  width: 100%;
  padding: 100px 0;
}

.top07 .hdg_01_ja br {
  display: none;
}

.top07 .hdg_01_sub_ja br {
  display: none;
}

.example-list {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 100px;
}

.example-list_block {
  position: relative;
  width: 100%;
  padding: 70px 65px 105px;
  border: 3px solid #AEA686;
  border-radius: 20px;
  counter-increment: count;
}

.example-list_block:hover {
  cursor: pointer;
}

.example-list_block:before {
  position: absolute;
  content: '#'counter(count);
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 9.5rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #B39E85;
  line-height: 1;
  z-index: 3;
  top: -40px;
  left: 65px;
}

.example-list_block:nth-child(-n+9):before {
  content: '#0'counter(count);
}

.example-list_block:not(:last-child) {
  margin-bottom: 85px;
}

.example-list_block .databox {
  width: 100%;
  display: flex;
  gap: 35px;
  margin-bottom: 20px;
}

.example-list_block .databox .ttl {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  /*font-size: 4.2rem;*/
  font-size: 3.6rem;
  line-height: 1.4;
  white-space: nowrap;
  letter-spacing: 0.009em;
}

.example-list_block .databox p {
  font-size: 1.8rem;
  line-height: 2;
}

.example-cont-tag {
  width: 100%;
  min-height: 64px;
  padding: 20px 35px;
  background: #F3F2EF;
  border-radius: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 35px;
}

.example-cont-tag li {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  color: #B39E85;
}

.example-cont-tag li:before {
  display: inline-block;
  content: '#';
  margin-right: 10px;
}

.example-list_box_gallery {
  width: 100%;
  display: none;
  margin-top: 40px;
}

.example-list_box_gallery .inner {
  padding-top: 20px;
}

.example-list_box_gallery_map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.example-list_box_gallery_map:before {
  position: absolute;
  content: '';
  width: 86px;
  height: 152px;
  background: url(../img/top/example-map-arrow.png);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}

.example-list_box_gallery_map div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #b49e86;
  padding: 60px 25px;
  margin-bottom: 45px;
}

.example-list_box_gallery_map .before:before {
  position: absolute;
  content: 'before';
  width: 160px;
  height: 40px;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 3rem;
  letter-spacing: 0.038em;
  line-height: 40px;
  color: #fff;
  text-align: center;
  background: #B49E86;
  border-radius: 100px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.example-list_box_gallery_map .after:before {
  position: absolute;
  content: 'after';
  width: 160px;
  height: 40px;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 3rem;
  letter-spacing: 0.038em;
  line-height: 40px;
  color: #B49E86;
  text-align: center;
  background: #fff;
  border: 1px solid #B49E86;
  border-radius: 100px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.example-list_box_gallery_photo {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
}

.example-list_box_gallery_photo li {
  position: relative;
}

.example-list_box_gallery_photo li:before {
  position: absolute;
  content: '';
  width: 123px;
  height: 71px;
  background: url(../img/top/example-photo-arrow.png);
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.example-list_box_gallery_photo li div {
  position: relative;
  aspect-ratio: 350 / 220;
  display: flex;
  justify-content: center;
  align-items: center;
}

.example-list_box_gallery_photo .before {
  margin-bottom: 10px;
}

.example-list_box_gallery_photo .before:before {
  position: absolute;
  content: 'before';
  width: 130px;
  height: 35px;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: 0.038em;
  line-height: 35px;
  color: #fff;
  text-align: center;
  background: #B49E86;
  border: 1px solid #fff;
  border-radius: 100px;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.example-list_box_gallery_photo .after:before {
  position: absolute;
  content: 'after';
  width: 130px;
  height: 35px;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: 0.038em;
  line-height: 35px;
  color: #B49E86;
  text-align: center;
  background: #fff;
  border: 1px solid #B49E86;
  border-radius: 100px;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.example-list_block .switch {
  position: absolute;
  content: '';
  width: 100%;
  min-height: 65px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 2.6rem;
  color: #fff;
  background: #AEA686;
  border-radius: 0 0 15px 15px;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.example-list_block .switch:hover {
  cursor: pointer;
}

.example-list_block .switch br {
  display: none;
}

.example-list_block .switch .arrow {
  width: 32px;
  height: 32px;
  background: url(../img/top_renew/example-arrow.png);
  rotate: 180deg;
}

.example-list_block .switch.open .arrow {
  rotate: 0deg;
}

@media screen and (max-width: 1024px) {
  .example-list_block {
    padding: 70px 35px 85px;
  }

  .example-list_block:before {
    left: 35px;
  }
}

@media screen and (max-width: 850px) {
  .example-list_block .databox {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .top07 {
    padding: 50px 0;
  }

  .example-list {
    margin-bottom: 50px;
  }

  .example-list_block {
    padding-top: 50px;
  }

  .example-list_block:not(:last-child) {
    margin-bottom: 55px;
  }

  .example-list_block:before {
    font-size: 7.5rem;
  }

  .example-list_block .databox .ttl {
    font-size: 3.2rem;
    white-space: inherit;
  }

  .example-list_box_gallery_map:before,
  .example-list_box_gallery_photo li:before {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% auto;
  }

  .example-list_box_gallery_photo {
    gap: 20px;
  }
}

@media screen and (max-width: 500px) {
  .top07 .hdg_01_ja br {
    display: block;
  }

  .top07 .hdg_01_sub_ja br {
    display: block;
  }

  .example-list_box_gallery_map,
  .example-list_box_gallery_photo {
    grid-template-columns: 100%;
    gap: 50px 20px;
  }

  .example-list_box_gallery_map {
    margin-bottom: 60px;
    gap: 100px;
  }

  .example-list_box_gallery_map:before {
    rotate: 90deg;
  }

  .example-list_box_gallery_map div {
    margin-bottom: 0;
  }

  .example-cont-tag {
    border-radius: 20px;
  }

  .example-list_block {
    padding-bottom: 110px;
  }

  .example-list_block .databox .ttl {
    font-size: 2.5rem;
  }

  .example-list_block .switch br {
    display: block;
  }

  .example-list_block .databox p {
    font-size: 1.5rem;
  }
}

.top08 {
  width: 100%;
  padding: 45px 0 100px;
}

.renovation-wrap {
  position: relative;
  width: 100%;
  border-radius: 15px;
  background: #F3F2EF;
  padding: 25px 50px 100px;
  z-index: 2;
}

.renovation-wrap:before {
  position: absolute;
  content: '';
  max-width: 350px;
  width: 40%;
  height: 140px;
  border-radius: 50%;
  background: #F3F2EF;
  top: -45px;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}

.renovation-list {
  width: 100%;
}

.renovation-list_block {
  display: flex;
  justify-content: center;
}

.renovation-list_block:nth-child(even) {
  flex-direction: row-reverse;
}

.renovation-list_block:not(:last-child) {
  margin-bottom: 80px;
}

.renovation-list_block .textbox {
  max-width: 600px;
  width: 100%;
}

.renovation-list_block .textbox .text {
  max-width: 460px;
  width: calc(100% - 65px);
  line-height: 2;
}

.renovation-list_block_head {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #B49E86;
}

.renovation-list_block_head .ttl {
  position: relative;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 3.4rem;
  letter-spacing: -0.09em;
  padding-left: 40px;
}

.renovation-list_block_head .ttl:before {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  background: url(../img/common/hdg-parts01.png);
  background-size: 100% auto;
  left: 0;
  top: 12px;
}

.renovation-list_block_head p {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 2rem;
}

.renovation-list_block:nth-child(odd) .image {
  position: relative;
  z-index: 3;
}


@media screen and (min-width: 1025px) {
  .renovation-list_block:nth-child(even) .textbox .text {
    margin-left: 70px;
  }

  .renovation-list_block:nth-child(even) .renovation-list_block_head {
    padding-left: 70px;
  }

  .renovation-list_block:nth-child(odd) .image img {
    translate: -35px 0;
  }

  .renovation-list_block:nth-child(even) .image img {
    translate: 35px 0;
  }
}


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

  .renovation-list_block,
  .renovation-list_block:nth-child(even) {
    flex-direction: column;
    gap: 40px;
  }

  .renovation-list_block .textbox,
  .renovation-list_block .textbox .text {
    max-width: 100%;
  }

  .renovation-list_block .textbox .text {
    width: 100%;
  }

  .renovation-list_block .image {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .top08 {
    padding-bottom: 50px;
  }

  .renovation-wrap {
    padding: 25px 30px 50px;
  }

  .renovation-list_block_head .ttl {
    font-size: 2.2rem;
  }

  .renovation-list_block_head .ttl:before {
    top: 6px;
  }
}

@media screen and (max-width: 500px) {
  .top08 p.fz20 {
    font-size: 1.5rem;
  }
}

.top09 {
  width: 100%;
  margin-bottom: 100px;
}

.top09 .hdg_01_ja br.sp500 {
  display: none;
}

.trip-wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-radius: 60px;
  padding: 60px 30px;
  background: #F2EEE3;
}

.trip-flow {
  position: relative;
  max-width: 745px;
  width: 100%;
  margin: 50px auto 0;
}

.trip-flow_block {
  position: relative;
  display: flex;
  gap: 20px;
  z-index: 3;
}

.trip-flow_block:not(:last-child) {
  padding-bottom: 30px;
}

.trip-flow_block:not(:last-child):before {
  position: absolute;
  content: '';
  width: 2px;
  height: calc(100% - 25px);
  border-left: 2px dotted #B6A96B;
  top: 25px;
  left: 24px;
}

.trip-flow_block dt {
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(182, 169, 107, 0.3);
  border-radius: 100%;
  font-family: "EB Garamond", serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trip-flow_block dt span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: #B6A96B;
  z-index: 1;
  border-radius: 100%;
}

.trip-flow_block dd {
  width: calc(100% - 70px);
}

.trip-flow_block dd h4 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.trip-flow_block dd p {
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .top09 {
    margin-bottom: 50px;
  }

  .trip-flow_block dd h4 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 500px) {
  .top09 .hdg_01_ja br.sp500 {
    display: block;
  }
}

.top10 {
  width: 100%;
  padding: 100px 0;
  background: #F3F2EF;
}

.top10 .hdg_01_ja br.sp500 {
  display: block;
}

.faq-cont-block {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.faq-cont-block:first-of-type {
  margin-top: 30px;
}

.faq-cont-block:not(:first-of-type) {
  margin-top: 65px;
}

.faq-cont_ttl {
  position: relative;
  font-family: "Shippori Mincho B1", serif;
  /*font-size: 3.6rem;*/
  font-size: 3rem;
  padding-left: 30px;
  margin-bottom: 20px;
}

.faq-cont_ttl:before {
  position: absolute;
  content: '';
  width: 8px;
  height: 100%;
  left: 0;
  top: 0;
  background: #B29E85;
  border-radius: 4px;
}

.faq-list {
  width: 100%;
}

.faq-list_item {
  width: 100%;
  border-radius: 15px;
  border: 1px solid #B29E85;
  background: #fff;
}

.faq-list_item:not(:last-child) {
  margin-bottom: 20px;
}

.faq-list_item:hover {
  cursor: pointer;
}

.faq-list_item dt {
  position: relative;
  width: 100%;
  min-height: 65px;
  display: flex;
  gap: 20px;
  padding: 15px 60px 15px 30px;
  background: #B29E85;
  border-radius: 14px;
}

.faq-list_item dt.open {
  border-radius: 14px 14px 0 0;
  transition: all .6s;
}

.faq-list_item dt span {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  line-height: 1;
  color: #fff;
}

.faq-list_item dt h5 {
  font-size: 2.2rem;
  color: #fff;
}

.faq-list_item dt .flag {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  z-index: 3;
}

.faq-list_item dt .flag:before,
.faq-list_item dt .flag:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  background: #fff;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.faq-list_item dt .flag:after {
  rotate: 90deg;
}

.faq-list_item dt.open .flag:after {
  rotate: 180deg;
  transition: all .6s;
}

.faq-list_item dd {
  width: 100%;
  display: none;
}

.faq-list_item dd .inner {
  width: 100%;
  display: flex;
  gap: 20px;
  border-radius: 0 0 14px 14px;
  padding: 20px 30px;
}

.faq-list_item dd span {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  line-height: 1;
  color: #B29E85;
}

.faq-list_item dd p {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .top10 {
    padding: 50px 0;
  }

  .faq-cont-block:not(:first-of-type) {
    margin-top: 45px;
  }

  .faq-cont_ttl {
    font-size: 2.6rem;
  }

  .faq-list_item dt {
    padding-left: 20px;
    padding-right: 40px;
  }

  .faq-list_item dt span,
  .faq-list_item dd span {
    font-size: 2.8rem;
  }

  .faq-list_item dt h5 {
    font-size: 2rem;
  }

  .faq-list_item dt .flag {
    right: 10px;
  }

  .faq-list_item dd .inner {
    padding: 20px;
  }
}

@media screen and (max-width: 500px) {
  .top10 .hdg_01_ja br.sp500 {
    display: block;
  }
}

.fz16 {
  font-size: 1.6rem;
}

.fz18 {
  font-size: 1.8rem;
}

/* 250916 */
.about-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 425px) {
  .bilding-price .image {
    background: #fff;
    border-radius: 20px;
    padding: 20px 0 20px;
  }
}