@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap");
/* mixins */
/* functions */
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  color: var(--base-text-color);
  font-weight: 400;
  font-size: var(--base-font-size-sp);
  font-feature-settings: "palt";
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.note {
  font-family: "Noto Sans JP", sans-serif;
}

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

.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
}

.pc-middle-block {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

.smp-inline {
  display: inline;
}
@media screen and (min-width: 768px) {
  .smp-inline {
    display: none;
  }
}

.pc-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-inline {
    display: inline;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a, button {
  color: var(--base-text-color);
  text-decoration: none;
  transition: all ease 0.3s;
}
a *, button * {
  transition: all ease 0.3s;
}
a *::before, a *::after, button *::before, button *::after {
  transition: all ease 0.3s;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

:root {
  --base-width: 1100px;
  --base-width-tab: 94%;
  --base-width-large: 1200px;
  --base-width-max: 1360px;
  --base-width-sp: 88%;
  --base-inline-half-sp: 6%;
  --base-inline-sp: 12%;
  --base-color: #000000;
  --base-text-color: #000000;
  --c-off-white: #f5f4ed;
  --c-red: #ae0000;
  --c-wine-red: #bb2763;
  --c-gray: #4d4d4d;
  --c-gray-light: #808080;
  --c-gray-pale: #f3f3f5;
  --c-ash: #c6c6c6;
  --c-subtle: #eef0e9;
  --c-green: #307f44;
  --c-green-gray-light: #eef0e9;
  --c-ash-yellow-light: #dbdbc0;
  --c-teal: #00a397;
  --c-blue: #0075c1;
  --c-sky-blue: #7eccf2;
  --c-dark-blue: #556f80;
  --c-navy: #002870;
  --c-brown: #ac9780;
  --c-gold: #d5d1a6;
  --base-font-size: 16px;
  --base-font-size-sp: vw(16);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  background-color: rgba(51, 51, 51, 0.45);
}

.l-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--base-width-sp);
  margin-inline: auto;
  padding-block: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-header-container {
    width: var(--base-width-tab);
    padding-block: 15px;
    -moz-column-gap: min(10%, 30px);
         column-gap: min(10%, 30px);
  }
}
@media screen and (min-width: 1280px) {
  .l-header-container {
    justify-content: center;
    -moz-column-gap: min(20%, 130px);
         column-gap: min(20%, 130px);
  }
}

.l-header-logo {
  display: block;
  width: 57%;
}
@media screen and (min-width: 768px) {
  .l-header-logo {
    width: min(18%, 170px);
  }
}
@media screen and (min-width: 1000px) {
  .l-header-logo {
    width: min(35%, 250px);
  }
}

.l-header-navigation {
  display: none;
  position: absolute;
  top: 12vw;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header-navigation {
    position: static;
    display: block;
    width: auto;
  }
}

.l-header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5.3333333333vw;
  width: 100%;
  padding-block: 8vw;
  background-color: rgba(51, 51, 51, 0.45);
}
@media screen and (min-width: 768px) {
  .l-header-nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 15px;
    padding-block: 0;
    background-color: transparent;
  }
}
@media screen and (min-width: 1000px) {
  .l-header-nav {
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .l-header-nav li {
    margin-top: -0.2em;
  }
}
.l-header-nav li a {
  position: relative;
  padding-bottom: 3px;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .l-header-nav li a {
    font-size: clamp(12px, 1.3440860215vw, 19px);
  }
}
.l-header-nav li a::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
  transition: 0.3s ease all;
  transform-origin: center center;
}
.l-header-nav li a:hover::after {
  width: calc(100% + 6px);
}
.l-header-nav li.instagram a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 4.5333333333vw;
}
.l-header-nav li.instagram a::before {
  content: "";
  display: block;
  width: 6.4vw;
  height: 6.4vw;
  margin-right: 1.8666666667vw;
  background-image: url(../myimg/common/icon-insta-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.l-header-menu {
  position: relative;
  display: block;
  width: 8.8vw;
  height: 2.4vw;
}
@media screen and (min-width: 768px) {
  .l-header-menu {
    display: none;
  }
}
.l-header-menu::before, .l-header-menu::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.3s ease all;
}
.l-header-menu::before {
  top: 0;
}
.l-header-menu::after {
  top: 100%;
}
.l-header-menu.is-active::before {
  top: 45%;
  transform: rotate(45deg);
}
.l-header-menu.is-active::after {
  top: 45%;
  transform: rotate(-45deg);
}

.l-footer-cta-container {
  background-color: var(--c-gray);
}

.l-footer-cta {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  width: var(--base-width-sp);
  padding-block: 6.6666666667vw 5.3333333333vw;
  background-color: var(--c-gray);
}
@media screen and (min-width: 768px) {
  .l-footer-cta {
    padding-block: 120px 100px;
    max-width: 1150px;
  }
}

.l-footer-cta__item {
  position: relative;
  display: block;
  width: 50%;
  padding: 4.8vw 4vw !important;
  border-radius: 15px;
  background-color: #fff !important;
  color: #000;
  text-decoration: none;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .l-footer-cta__item {
    width: 100%;
    max-width: 575px;
    padding: 35px !important;
  }
}
@media screen and (min-width: 1000px) {
  .l-footer-cta__item {
    padding: 50px !important;
  }
}
.l-footer-cta__item:first-child {
  background-color: var(--c-ash-yellow-light) !important;
}
.l-footer-cta__item:hover {
  background-color: var(--c-off-white) !important;
}
.l-footer-cta__item:hover:first-child {
  background-color: var(--c-off-white) !important;
}
.l-footer-cta__item:hover .l-footer-cta__arrow {
  right: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .l-footer-cta__item:hover .l-footer-cta__arrow {
    right: 40px;
  }
}

.l-footer-cta__title {
  display: block;
  color: var(--c-red);
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .l-footer-cta__title {
    font-size: 33px;
  }
}

.l-footer-cta__text {
  display: block;
  margin-top: 8vw;
  font-size: 2.6666666667vw;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .l-footer-cta__text {
    margin-top: 35px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .l-footer-cta__text {
    margin-top: 60px;
    font-size: 23px;
  }
}

.l-footer-cta__arrow {
  position: absolute;
  top: 5.8666666667vw;
  right: 4.8vw;
  display: inline-block;
  width: 16px;
  height: 1px;
  margin: 4.7px 0;
  border-radius: 9999px;
  background-color: #000000;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .l-footer-cta__arrow {
    top: 55px;
    right: 45px;
    width: 40px;
    height: 2px;
    margin: 14.1px 0;
  }
}
.l-footer-cta__arrow::before, .l-footer-cta__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 1px) 50%;
}
@media screen and (min-width: 768px) {
  .l-footer-cta__arrow::before, .l-footer-cta__arrow::after {
    top: calc(50% - 1px);
    width: 25px;
    height: 2px;
  }
}
.l-footer-cta__arrow::before {
  transform: rotate(42deg);
}
.l-footer-cta__arrow::after {
  transform: rotate(-42deg);
}

.l-footer-container {
  padding-block: 10.6666666667vw 12vw;
}
@media screen and (min-width: 768px) {
  .l-footer-container {
    padding-block: 60px 30px;
  }
}

.l-footer-logo {
  width: 53%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer-logo {
    width: auto;
  }
}
.l-footer-logo img {
  margin-inline: auto;
}

.l-footer-navigation {
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-footer-navigation {
    margin-top: 35px;
  }
}

.l-footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.6666666667vw;
  width: var(--base-width-sp);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer-nav {
    gap: 35px;
  }
}
.l-footer-nav li {
  font-size: 2.4vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .l-footer-nav li {
    font-size: 13px;
  }
}

.l-footer-copyright {
  margin-top: 10.6666666667vw;
  font-size: 2.4vw;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    margin-top: 80px;
    font-size: 12px;
  }
}

/*======================================================================================*/
.fix-nav {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fix-nav {
    width: auto;
    bottom: 20px;
  }
}

.fix-nav-list {
  display: flex;
  justify-content: flex-start;
  gap: 1%;
  padding: 0 1%;
}
@media screen and (min-width: 768px) {
  .fix-nav-list {
    flex-direction: column;
    gap: 10px;
  }
}
.fix-nav-list > li {
  width: 48%;
}
.fix-nav-list > li > a {
  display: flex;
  justify-content: center;
  gap: 4vw;
  border-radius: 10px;
  padding: 2.6666666667vw 0;
  background-color: var(--c-green);
  color: #fff;
  font-size: 4vw;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fix-nav-list > li > a {
    align-items: center;
    gap: 10px;
    writing-mode: vertical-lr;
    padding: 1em 0.5em;
    font-size: 17px;
    border-radius: 10px 0px 0px 10px;
  }
}
.fix-nav-list > li > a img {
  display: inline-block;
  height: 8vw;
}
@media screen and (min-width: 768px) {
  .fix-nav-list > li > a img {
    width: 35px;
    height: auto;
  }
}

a {
  transition: 0.3s ease all;
}
a:hover {
  opacity: 0.85;
}

.cond-interview {
  background-color: var(--c-subtle);
}

.cond-interview-contain {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .cond-interview-contain {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    width: var(--base-width-tab);
    max-width: 1000px;
    margin-inline: auto;
  }
}
.cond-interview-contain .content {
  position: relative;
  padding-block: 12vw;
}
@media screen and (min-width: 768px) {
  .cond-interview-contain .content {
    width: 100%;
    padding-block: 7.4vw;
  }
}
@media screen and (min-width: 1000px) {
  .cond-interview-contain .content {
    padding-block: 59.5px;
  }
}
.cond-interview-contain .heading {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cond-interview-contain .heading {
    text-align: left;
  }
}
.cond-interview-contain .heading .title {
  font-size: 7.4666666667vw;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .cond-interview-contain .heading .title {
    font-size: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .cond-interview-contain .heading .title {
    font-size: 37px;
  }
}
.cond-interview-contain .heading .sub {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .cond-interview-contain .heading .sub {
    font-size: 14px;
    margin-top: 5px;
  }
}
.cond-interview-contain .image {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .cond-interview-contain .image {
    position: absolute;
    top: 0;
    right: 0%;
    width: 50%;
    max-width: 555px;
    height: 100%;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .cond-interview-contain .image img {
    width: auto;
    height: 100%;
    aspect-ratio: 554/324;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.cond-interview-contain .read {
  margin-top: 5.3333333333vw;
  font-size: 4.2666666667vw;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cond-interview-contain .read {
    margin-top: 45px;
    font-size: 17px;
    text-align: left;
  }
}
@media screen and (min-width: 1000px) {
  .cond-interview-contain .read {
    font-size: 21px;
  }
}

.default-heading {
  text-align: center;
}
.default-heading .title {
  font-size: 7.4666666667vw;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .default-heading .title {
    font-size: 45px;
  }
}
.default-heading .sub {
  font-size: 3.2vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .default-heading .sub {
    font-size: 15px;
  }
}

.other-cond-heading {
  font-size: 4vw;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .other-cond-heading {
    font-size: 28px;
  }
}

.other-slide {
  margin-top: 5.3333333333vw;
  width: var(--base-width-sp);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .other-slide {
    margin-top: 45px;
  }
}
.other-slide .splide__track {
  overflow: visible;
}
.other-slide .splide__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 2.1333333333vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .other-slide .splide__arrows {
    gap: 10px;
    margin-top: 15px;
  }
}
.other-slide .splide__arrows .splide__arrow {
  position: static;
  transform: none;
  width: 7.2vw;
  height: 7.2vw;
}
@media screen and (min-width: 768px) {
  .other-slide .splide__arrows .splide__arrow {
    width: 30px;
    height: 30px;
  }
}
.other-slide .splide__arrows .splide__arrow--next,
.other-slide .splide__arrows .splide__arrow--prev {
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  border: 1px solid #000;
}
.other-slide .splide__arrows .splide__arrow--next svg,
.other-slide .splide__arrows .splide__arrow--prev svg {
  display: none;
}
.other-slide .splide__arrows .splide__arrow--next {
  background-image: url(../myimg/common/icon-arrow-next.svg);
}
.other-slide .splide__arrows .splide__arrow--prev {
  background-image: url(../myimg/common/icon-arrow-prev.svg);
}

.other-cond-item {
  padding-block: 2.6666666667vw 2.6666666667vw;
  background-color: var(--c-gray);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .other-cond-item {
    max-width: 526px;
    padding-block: 10px 0;
  }
}

.other-cond-name {
  display: flex;
  align-items: center;
  height: 3.4em;
  padding-left: 1.5em;
  color: #fff;
  font-size: 4.2666666667vw;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .other-cond-name {
    font-size: 19px;
  }
}

.other-cond-contaier {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2%;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier {
    gap: 4%;
  }
}
.other-cond-contaier .other-cond-image {
  position: relative;
  width: 54%;
  margin-top: 2.6666666667vw;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-image {
    width: 50%;
    margin-top: 15px;
  }
}
.other-cond-contaier .other-cond-image .note {
  position: absolute;
  bottom: 1.0666666667vw;
  left: 1.3333333333vw;
  font-size: 2.1333333333vw;
  line-height: 1.5;
  text-shadow: 0px 0px 5px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-image .note {
    bottom: 10px;
    left: 10px;
    font-size: 11px;
  }
}
.other-cond-contaier .other-cond-info {
  color: #fff;
  width: 43%;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-info {
    width: 40%;
  }
}
.other-cond-contaier .other-cond-info .other-cond-plot {
  font-size: 5.3333333333vw;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-info .other-cond-plot {
    font-size: 28px;
  }
}
.other-cond-contaier .other-cond-info .other-cond-plot > span {
  font-size: 2.4vw;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-info .other-cond-plot > span {
    font-size: 12px;
  }
}
.other-cond-contaier .other-cond-info .other-cond-flor {
  background-color: #fff;
  padding: 0.2em 0.1em 0.3em 0.8em;
  font-size: 2.6666666667vw;
  line-height: 1.1;
  color: #000;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-info .other-cond-flor {
    font-size: 11px;
  }
}
.other-cond-contaier .other-cond-info .other-cond-flor .num {
  font-size: 4.5333333333vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-info .other-cond-flor .num {
    font-size: 20px;
  }
}
.other-cond-contaier .other-cond-info .other-cond-flor .sub {
  font-size: 3.4666666667vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-info .other-cond-flor .sub {
    font-size: 15px;
  }
}
.other-cond-contaier .other-cond-info .other-cond-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.other-cond-contaier .other-cond-info .other-cond-wrap .other-cond-sub {
  padding-bottom: 0.2em;
}
.other-cond-contaier .other-cond-info .other-cond-area {
  margin-top: 0.1em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-info .other-cond-area {
    margin-top: 0.5em;
  }
}
.other-cond-contaier .other-cond-info .other-cond-area .txt {
  font-size: 2.4vw;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-info .other-cond-area .txt {
    font-size: 12px;
    line-height: 1;
  }
}
.other-cond-contaier .other-cond-info .other-cond-area .txt + .txt {
  margin-top: 0.7em;
  padding-top: 0.3em;
  border-top: 1px dashed var(--c-ash);
}
.other-cond-contaier .other-cond-info .other-cond-area .txt .name {
  display: inline-block;
  font-size: 2.1333333333vw;
  letter-spacing: 0.1em;
  margin-right: 0.1em;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-info .other-cond-area .txt .name {
    font-size: 11px;
    margin-right: 8px;
  }
}
.other-cond-contaier .other-cond-info .other-cond-area .txt > span {
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-info .other-cond-area .txt > span {
    font-size: 21px;
  }
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-box {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 13px;
  }
}
.other-cond-contaier .other-cond-box .other-cond-tags {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.3333333333vw;
  margin-top: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-box .other-cond-tags {
    gap: 10px;
    margin-top: 0;
  }
}
.other-cond-contaier .other-cond-box .other-cond-tags .tag {
  display: inline-block;
  padding: 0.5333333333vw 1.0666666667vw;
  color: #fff;
  font-size: 2.6666666667vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-box .other-cond-tags .tag {
    padding: 1px 6px;
    font-size: 11px;
    white-space: nowrap;
  }
}
.other-cond-contaier .other-cond-box .other-cond-tags .tour {
  background-color: var(--c-wine-red);
}
.other-cond-contaier .other-cond-box .other-cond-links {
  position: relative;
  right: -5vw;
  display: inline-block;
  flex-shrink: 0;
  width: 100%;
  margin-top: 2.1333333333vw;
  background-color: var(--c-gold);
  font-size: 2.4vw;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-box .other-cond-links {
    right: -9%;
    margin-top: 0;
    font-size: 13px;
    width: 90%;
  }
}
.other-cond-contaier .other-cond-box .other-cond-links .other-cond-link {
  display: block;
  padding: 1.6vw 4vw;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-box .other-cond-links .other-cond-link {
    padding: 5px 20px 5px 20px;
  }
}
.other-cond-contaier .other-cond-box .other-cond-links .arrow {
  position: absolute;
  top: 0.9em;
  right: 2.6666666667vw;
  display: inline-block;
  width: 3.2vw;
  height: 1px;
  margin: 1.3333333333vw 0;
  border-radius: 9999px;
  background-color: #000000;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-box .other-cond-links .arrow {
    top: 28%;
    right: 9px;
    width: 19px;
    margin: 7.8px 0;
    transform: translateY(-50%);
  }
}
.other-cond-contaier .other-cond-box .other-cond-links .arrow::before, .other-cond-contaier .other-cond-box .other-cond-links .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0px);
  right: 0;
  width: 1.8666666667vw;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 0px) 50%;
}
@media screen and (min-width: 768px) {
  .other-cond-contaier .other-cond-box .other-cond-links .arrow::before, .other-cond-contaier .other-cond-box .other-cond-links .arrow::after {
    top: calc(50% - 0px);
    width: 11px;
  }
}
.other-cond-contaier .other-cond-box .other-cond-links .arrow::before {
  transform: rotate(45deg);
}
.other-cond-contaier .other-cond-box .other-cond-links .arrow::after {
  transform: rotate(-45deg);
}

.other-cond-button {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .other-cond-button {
    margin-top: 0;
  }
}

a.other-cond-button-link {
  position: relative;
  display: inline-block;
  max-width: 335px;
  width: 52%;
  border: 1px solid #000;
  text-align: center;
  padding: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  a.other-cond-button-link {
    padding: 10px;
  }
}
a.other-cond-button-link .arrow {
  position: absolute;
  top: 50%;
  right: 2.6666666667vw;
  display: inline-block;
  width: 3.2vw;
  height: 1px;
  margin: 1.3333333333vw 0;
  border-radius: 9999px;
  background-color: #000000;
  transform: translateY(-1.2vw);
}
@media screen and (min-width: 768px) {
  a.other-cond-button-link .arrow {
    top: 17px;
    right: 9px;
    width: 19px;
    margin: 7.8px 0;
    transform: translateY(-50%);
  }
}
a.other-cond-button-link .arrow::before, a.other-cond-button-link .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 1.8666666667vw;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 0px) 50%;
}
@media screen and (min-width: 768px) {
  a.other-cond-button-link .arrow::before, a.other-cond-button-link .arrow::after {
    top: calc(50% - 0px);
    width: 11px;
  }
}
a.other-cond-button-link .arrow::before {
  transform: rotate(45deg);
}
a.other-cond-button-link .arrow::after {
  transform: rotate(-45deg);
}
a.other-cond-button-link:hover {
  background-color: #000;
  color: #fff;
}
a.other-cond-button-link:hover .arrow {
  right: 1.8666666667vw;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  a.other-cond-button-link:hover .arrow {
    right: 6px;
  }
}
a.other-cond-button-link:hover .arrow::before, a.other-cond-button-link:hover .arrow::after {
  background-color: #fff;
}

@media screen and (min-width: 1100px) {
  .model-house-inner {
    width: 50%;
  }
}

.model-house__name {
  font-size: 4.2666666667vw;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .model-house__name {
    font-size: 20px;
    margin-top: 1.1em;
  }
}
@media screen and (min-width: 1280px) {
  .model-house__name {
    margin-top: 2em;
  }
}

.model-house__read {
  font-size: 3.4666666667vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .model-house__read {
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) {
  .model-house__read {
    font-size: 18px;
  }
}

.model-house-image {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .model-house-image {
    width: 45%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .model-house-image {
    width: 48%;
  }
}

.model-house-button {
  margin-top: 2.6666666667vw;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4%;
}
@media screen and (min-width: 768px) {
  .model-house-button {
    margin-top: 20px;
    gap: 15px 4%;
  }
}
@media screen and (min-width: 1000px) {
  .model-house-button {
    margin-top: 40px;
  }
}
.model-house-button .model-house-link {
  position: relative;
  display: inline-block;
  font-size: 3.4666666667vw;
  letter-spacing: 0.05em;
  width: 48%;
  padding: 0.4em 1em;
  border: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .model-house-button .model-house-link {
    width: auto;
    padding: 0.5em 2.2em 0.5em 1.7em;
    font-size: 15px;
  }
}
@media screen and (min-width: 1000px) {
  .model-house-button .model-house-link {
    padding: 0.5em 3em 0.5em 2em;
    font-size: 17px;
  }
}
@media screen and (min-width: 1280px) {
  .model-house-button .model-house-link {
    padding: 0.5em 4em 0.5em 3.5em;
  }
}
.model-house-button .model-house-link .arrow {
  position: absolute;
  top: 0.8em;
  right: 2.6666666667vw;
  display: inline-block;
  width: 3.2vw;
  height: 1px;
  margin: 1.3333333333vw 0;
  border-radius: 9999px;
  background-color: #000000;
}
@media screen and (min-width: 768px) {
  .model-house-button .model-house-link .arrow {
    top: 32%;
    right: 0.6em;
    width: 19px;
    margin: 7.8px 0;
    transform: translateY(-50%);
  }
}
.model-house-button .model-house-link .arrow::before, .model-house-button .model-house-link .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0px);
  right: 0;
  width: 1.8666666667vw;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 0px) 50%;
}
@media screen and (min-width: 768px) {
  .model-house-button .model-house-link .arrow::before, .model-house-button .model-house-link .arrow::after {
    top: 0;
    width: 11px;
  }
}
.model-house-button .model-house-link .arrow::before {
  transform: rotate(45deg);
}
.model-house-button .model-house-link .arrow::after {
  transform: rotate(-45deg);
}
.model-house-button .model-house-link:hover {
  background-color: #000;
  color: #fff;
}
.model-house-button .model-house-link:hover .arrow {
  right: 1.8666666667vw;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .model-house-button .model-house-link:hover .arrow {
    right: 6px;
  }
}
.model-house-button .model-house-link:hover .arrow::before, .model-house-button .model-house-link:hover .arrow::after {
  background-color: #fff;
}

.instagram {
  margin-bottom: 16vw;
  max-width: 700px;
  margin-inline: auto;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .instagram {
    margin-bottom: 75px;
  }
}
@media screen and (min-width: 1000px) {
  .instagram {
    margin-bottom: 90px;
  }
}
.instagram .instagram__title {
  color: var(--c-red);
  font-size: 5.3333333333vw;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .instagram .instagram__title {
    font-size: 20px;
  }
}
.instagram .instagram-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--base-width-sp);
  margin-inline: auto;
  padding: 6.6666666667vw;
  background-color: #e7ebf1;
  border-radius: 15px;
  font-size: 4.8vw;
  line-height: 1.4;
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .instagram .instagram-link {
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    border-radius: 100px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1000px) {
  .instagram .instagram-link {
    padding: 30px;
  }
}
.instagram .instagram-link .txt {
  margin-right: 4vw;
  margin-left: 3.2vw;
}
@media screen and (min-width: 768px) {
  .instagram .instagram-link .txt {
    margin-right: 35px;
    margin-left: 25px;
  }
}/*# sourceMappingURL=style.css.map */