@charset "UTF-8";
/*----------------------------------------------------------------------------------------
rest.scss
----------------------------------------------------------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

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

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

html {
  font-weight: 500;
  font-size: 62.5%;
  overflow-y: scroll;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  transition: 0.2s;
}

a, span {
  display: inline-block;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

iframe {
  max-width: 100%;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

input,
select,
textarea {
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  padding: 10px 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

li {
  transition: 0.2s;
}

video {
  width: 100%;
}

/*----------------------------------------------------------------------------------------
header.scss
----------------------------------------------------------------------------------------*/
.l-header {
  position: fixed;
  margin: auto;
  z-index: 10;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
}
.l-header__inner {
  width: 100%;
  max-width: 1730px;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding: 0 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  max-width: 330px;
  margin-right: 2%;
}
.l-header__nav {
  transition: all 0.5s;
}
.l-header__item {
  position: relative;
  color: #999999;
}
.l-header__item.is-current {
  color: #e0ca82;
  border-bottom: 1px solid #e0ca82;
}
.l-header__link {
  font-family: "specter", sans-serif;
  letter-spacing: 0.5px;
}
.l-header__link--small {
  display: block;
  padding-top: 3px;
}
.l-header__btn {
  font-family: "specter", sans-serif;
  width: 100%;
  padding: 10px;
  text-align: center;
  background: #e0ca82;
  color: #603813;
}
.l-header__btn--small {
  display: block;
  padding-top: 3px;
}

@media screen and (min-width: 1301px) {
  .l-header__hum {
    display: none;
  }
  .l-header__nav {
    max-width: 910px;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-header__list {
    text-align: center;
    display: flex;
    align-items: center;
  }
  .l-header__item {
    padding: 0 12px;
  }
  .l-header__link {
    font-size: 1.8rem;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .l-header__link--small {
    font-size: 1rem;
    display: block;
  }
  .l-header__btn {
    max-width: 105px;
    font-size: 1.6rem;
    margin-left: 10px;
  }
  .l-header__btn--small {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1300px) {
  .l-header__logo img {
    width: 90%;
  }
  .l-header__nav {
    visibility: hidden;
    opacity: 0;
  }
  .l-header__hum {
    display: block;
    position: absolute;
    top: 35px;
    right: 30px;
    width: 30px;
    height: 30px;
    z-index: 10;
    cursor: pointer;
  }
  .l-header__hum span {
    position: absolute;
    display: block;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    transition: all 0.5s;
    border-radius: 4px;
  }
  .l-header__hum span:nth-child(1) {
    top: 4px;
  }
  .l-header__hum span:nth-child(2) {
    top: 14px;
  }
  .l-header__hum span:nth-child(3) {
    bottom: 4px;
  }
  .l-header__nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: fixed;
    inset: 0;
    width: 100%;
    text-align: center;
    overflow: scroll;
  }
  .l-header__item {
    margin-bottom: 10%;
  }
  .l-header__link {
    font-size: clamp(1.6rem, 1.418rem + 0.485vw, 2rem);
    line-height: 1.4;
    padding-bottom: 5%;
  }
  .l-header__link--small {
    font-size: 0.7em;
  }
  .l-header__btn {
    max-width: 250px;
    font-size: clamp(1.6rem, 1.418rem + 0.485vw, 2rem);
    line-height: 1.4;
  }
  .l-header__btn--small {
    font-size: 0.6em;
  }
  .l-header__hum.is-open {
    position: absolute;
  }
  .l-header__hum.is-open span:nth-child(1) {
    transform: translateY(10px) rotate(225deg);
  }
  .l-header__hum.is-open span:nth-child(2) {
    opacity: 0;
  }
  .l-header__hum.is-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-225deg);
  }
  .l-header__nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.5s;
  }
}
@media screen and (min-width: 769px) {
  .l-header {
    height: 100px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 70px;
  }
  .l-header__hum {
    top: 20px;
  }
}
@media screen and (min-width: 481px) {
  .l-header__logo {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .l-header__logo {
    width: 40%;
  }
}
/*----------------------------------------------------------------------------------------
footer.scss
----------------------------------------------------------------------------------------*/
.l-footer__inner {
  max-width: 1090px;
  padding: 40px 20px;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
}
.l-footer__time {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.l-footer__holiday {
  font-size: 1.1rem;
  font-weight: 700;
}
.l-footer__tel {
  font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-top: 15px;
}
.l-footer__address {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.6153846154;
}
.l-footer__copy {
  display: block;
  padding: 20px;
  text-align: center;
  background-color: #534741;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
}
/*----------------------------------------------------------------------------------------
container.scss
----------------------------------------------------------------------------------------*/
.l-outContainer {
  max-width: 1920px;
  margin-inline: auto;
  padding: 0 20px;
}

.l-mainContainer {
  max-width: 1230px;
  margin-inline: auto;
  padding: 0 20px;
}

.l-middleContainer {
  max-width: 1070px;
  margin-inline: auto;
  padding: 0 20px;
}

.l-shortContainer {
  max-width: 940px;
  margin-inline: auto;
  padding: 0 20px;
}

/*----------------------------------------------------------------------------------------
project.scss
----------------------------------------------------------------------------------------*/
.p-mainVisual {
  position: relative;
}
.p-mainVisual__column {
  display: flex;
  justify-content: center;
}
.p-mainVisual__menu {
  width: 30%;
  background: #fff;
}
.p-mainVisual__imgs {
  width: 70%;
  position: relative;
}
.p-mainVisual__imgs-caption {
  max-width: 400px;
  width: 100%;
  position: absolute;
  z-index: 5;
  top: 150px;
  left: 0;
  padding: 15px 40px 15px 30px;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(90deg, rgba(10, 36, 61, 0.9) 80%, rgba(255, 255, 255, 0) 100%);
  text-align: left;
  line-height: 1.5882352941;
  color: #fff;
  display: flex;
  gap: 10px;
}
.p-mainVisual__imgs-caption a {
  display: grid;
  place-content: center;
  background-color: #e0ca82;
  color: #001e49;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-weight: 900;
  width: 26.0078023407vw;
  max-width: 250px;
  font-size: 1.5rem;
}
.p-mainVisual__tv {
  position: absolute;
  z-index: 10;
  top: 130px;
  right: 3%;
}
.p-mainVisual__detail {
  text-align: center;
  margin-bottom: 30px;
}
.p-mainVisual__list {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr;
  gap: 5px;
}
.p-mainVisual__item {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 10px 2%;
  max-width: 350px;
  margin-inline: auto;
  width: 100%;
  background-color: #4d4d52;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.p-mainVisual__item--bold {
  display: inline-block;
  margin-top: 5px;
  font-size: 1.8rem;
  line-height: 1.1;
  color: #e0ca82;
}
.p-mainVisual__item--small {
  font-size: 0.7em;
}
.p-mainVisual__slide {
  position: absolute;
  z-index: 1;
  width: 100%;
}
.p-mainVisual__slide img {
  width: 100%;
}
.p-mainVisual__slide li {
  position: relative;
}
.p-mainVisual__slide-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: clamp(1.4rem, 1.254rem + 0.388vw, 2rem);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 25px;
}
.p-mainVisual__caution {
  color: #fff;
  font-size: 1.6rem;
  position: absolute;
  bottom: 20px;
  right: 6%;
  z-index: 5;
}
.p-mainVisual .is-slide-arrow {
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  z-index: 10;
  top: 0;
}
.p-mainVisual .prev-arrow {
  left: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.p-mainVisual .next-arrow {
  right: 10px;
  width: 50px;
  height: 50px;
  transform: rotate(180deg);
  cursor: pointer;
}

.p-top-detail {
  background-image: url(../images/top/sectionBg.webp);
  background-size: cover;
}

.p-top-ad {
  font-size: 1.3rem;
  line-height: 1.6923076923;
  font-weight: 600;
}
.p-top-ad__txts {
  margin-bottom: 20px;
}

.p-top-rent {
  padding-top: 100px;
  text-align: center;
  color: #4d4d52;
}
.p-top-rent__heading {
  font-family: "specter", sans-serif;
}
.p-top-rent p {
  margin-top: 20px;
}

.p-top-type h2 {
  text-align: center;
  font-size: 2.7rem;
  margin-top: 120px;
}
.p-top-type h2 span {
  color: #9f7a46;
}
.p-top-type h2 span span {
  font-size: 1.3em;
}
.p-top-type ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.p-top-type__link {
  text-align: center;
  margin-top: 70px;
}

.p-top-sample {
  text-align: center;
  margin-top: 65px;
}
.p-top-sample h2 {
  max-width: 820px;
  width: 100%;
  margin-inline: auto;
  font-size: clamp(1.4rem, 1.279rem + 0.324vi, 1.9rem);
  padding-top: 10px;
  padding-bottom: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgb(255, 255, 255) 5%, rgb(255, 255, 255) 95%, rgba(255, 255, 255, 0.1) 100%);
  font-weight: 700;
}
.p-top-sample ul {
  max-width: 745px;
  margin-top: 50px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.p-top-quality {
  padding-top: 150px;
  text-align: center;
  color: #4d4d52;
}
.p-top-quality h2 {
  font-family: "specter", sans-serif;
}
.p-top-quality ul {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 100px;
}
.p-top-quality ul p {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 10px;
}
.p-top-quality ul p span {
  font-size: 1.3rem;
  margin-top: 5px;
  display: block;
}

.p-top-station {
  text-align: center;
}
.p-top-station ul {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1030px;
  margin-inline: auto;
}

.p-top-contents {
  margin-bottom: 150px;
}
.p-top-contents__heading {
  text-align: center;
  font-family: "specter", sans-serif;
  margin-bottom: 30px;
}
.p-top-contents__list {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  justify-content: center;
  gap: 35px;
  grid-template-columns: 1fr 1fr 1fr;
}
.p-top-contents__item {
  position: relative;
}
.p-top-contents__item img {
  transition: 0.2s;
  position: relative;
}
.p-top-contents__txts {
  color: #fff;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
}
.p-top-contents__txts hgroup h3 {
  font-family: "specter", sans-serif;
  letter-spacing: 1.5px;
}
.p-top-contents__txts hgroup p {
  margin-top: 10px;
  font-size: 1.2rem;
}
.p-top-contents__more {
  font-family: "specter", sans-serif;
  font-size: 1.4rem;
  margin-top: 30px;
  position: relative;
  display: inline-block;
  letter-spacing: 1.5px;
}
.p-top-contents__more::after {
  content: "";
  opacity: 0;
  transition: 0.2s;
  display: block;
  margin-top: 3px;
  height: 1px;
  width: 100%;
  background-color: #d1ad0e;
}

@media screen and (max-width: 1270px) {
  .p-fixed-menu {
    display: none;
  }
  .p-mainVisual__imgs-caption {
    max-width: 500px;
  }
  .p-mainVisual__imgs-caption a {
    max-width: 220px;
  }
}
@media screen and (min-width: 1001px) {
  .p-mainVisual__menu {
    display: grid;
    place-content: center;
    padding: 0 10px 10px;
    padding-top: 105px;
  }
  .p-mainVisual__heading {
    font-size: clamp(1.6rem, 1.164rem + 0.435vw, 2rem);
    margin-bottom: 20px;
  }
  .p-mainVisual__txts-pc {
    margin-top: 0;
  }
  .p-mainVisual__txts-pc img {
    width: 22.977022977vw;
    max-width: 525px;
  }
  .p-mainVisual__txts-tab {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .p-mainVisual__intro {
    text-align: center;
  }
  .p-mainVisual__column {
    flex-direction: column;
  }
  .p-mainVisual__menu {
    width: 100%;
    order: 2;
    padding-top: 10%;
    padding-bottom: 12%;
  }
  .p-mainVisual__imgs {
    width: 100%;
  }
  .p-mainVisual__slide img {
    height: 70vh;
  }
  .p-mainVisual__item {
    max-width: 300px;
  }
  .p-mainVisual__heading {
    font-size: clamp(1.65rem, 1.555rem + 0.254vw, 1.75rem);
    font-weight: 700;
    line-height: 1.7142857143;
    text-align: center;
    margin-bottom: 7%;
  }
  .p-mainVisual__txts-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .p-mainVisual__present {
    max-width: 1170px;
    padding-right: 20px;
    width: 100%;
    margin-inline: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    right: 0;
    bottom: 30px;
    text-align: right;
  }
  .p-mainVisual__present img {
    display: block;
    margin-left: auto;
    width: 39.0117035111vw;
    max-width: 585px;
  }
  .p-mainVisual__present img:first-of-type {
    margin-bottom: 20px;
  }
  .p-top-station ul {
    margin-top: 80px;
    margin-bottom: 175px;
  }
  .p-top-detail {
    padding-bottom: 100px;
  }
  .p-top-rent__heading {
    font-size: 2.8rem;
  }
  .p-top-rent p {
    font-size: 2.6rem;
  }
  .p-top-quality__heading {
    font-size: 2.8rem;
  }
  .p-top-contents__heading {
    font-size: 2.8rem;
  }
  .p-top-contents__item a:hover img {
    filter: brightness(0.5);
  }
  .p-top-contents__item a:hover p::after {
    opacity: 1;
  }
  .p-top-contents__txts hgroup h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-mainVisual__imgs-caption {
    position: unset;
    background: none;
    font-size: 1.4rem;
    padding-top: 0;
    padding-bottom: 8%;
    line-height: 20px;
    flex-direction: column;
  }
  .p-mainVisual__imgs-caption a {
    width: 100%;
    max-width: 390px;
    margin-inline: auto;
  }
  .p-mainVisual__detail {
    margin: 30px 20px 0;
  }
  .p-mainVisual__detail img:last-of-type {
    margin-top: 20px;
  }
  .p-mainVisual__item {
    max-width: 300px;
  }
  .p-mainVisual__present {
    text-align: center;
    margin-bottom: 5%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-mainVisual__tv {
    top: 100px;
  }
  .p-top-station__main {
    width: 80%;
    margin-inline: auto;
  }
  .p-top-station__list {
    flex-direction: column;
    gap: 40px;
    margin-top: 15%;
    margin-bottom: 15%;
  }
  .p-top-detail {
    padding-bottom: 14%;
  }
  .p-top-sample {
    margin-top: 10%;
  }
  .p-top-rent__heading {
    font-size: clamp(2.4rem, 1.255rem + 3.053vw, 3.6rem);
  }
  .p-top-rent p {
    font-size: clamp(1.8rem, 0.655rem + 3.053vw, 3rem);
  }
  .p-top-type h2 {
    font-size: clamp(2.4rem, 1.255rem + 3.053vw, 3.6rem);
    margin-top: 15%;
  }
  .p-top-type ul {
    flex-direction: column;
  }
  .p-top-quality h2 {
    font-size: clamp(2.4rem, 1.255rem + 3.053vw, 3.6rem);
  }
  .p-top-contents h2 {
    font-size: clamp(2.4rem, 1.255rem + 3.053vw, 3.6rem);
  }
  .p-top-contents__list {
    grid-template-columns: 1fr 1fr;
  }
  .p-top-contents__list img {
    width: 100%;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .p-top-contents__txts h3 {
    font-size: clamp(2rem, 1.237rem + 2.036vw, 2.8rem);
  }
}
@media screen and (min-width: 481px) {
  .p-top-station ul {
    gap: 30px;
  }
  .p-top-quality ul li {
    width: 20%;
  }
}
@media screen and (max-width: 480px) {
  .p-mainVisual {
    height: auto;
  }
  .p-mainVisual__imgs img {
    height: 50vh;
  }
  .p-mainVisual__tv {
    top: 80px;
  }
  .p-mainVisual__tv img {
    height: auto;
    width: 125px;
  }
  .p-mainVisual .is-slide-arrow {
    top: 30px;
  }
  .p-mainVisual__list {
    grid-template-columns: 1fr;
  }
  .p-mainVisual__slide-caption {
    padding: 15px;
  }
  .p-top-station__main {
    width: 100%;
  }
  .p-top-station ul {
    width: 90%;
    margin-inline: auto;
    gap: 40px;
  }
  .p-top-rent {
    padding-top: 70px;
  }
  .p-top-rent p {
    line-height: 30px;
  }
  .p-top-quality {
    padding-top: 70px;
  }
  .p-top-contents {
    margin-bottom: 70px;
  }
  .p-top-contents__list {
    grid-template-columns: 1fr;
  }
  .p-top-contents__txts h3 {
    font-size: 2.8rem;
  }
}
.p-share-bg {
  background-image: url(../images/shareStyle/background.webp);
  background-size: cover;
  background-position: top;
}

.p-share-mv {
  background-image: url(../images/shareStyle/mainVisual.webp);
}

.p-share-intro {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
  text-align: center;
  font-weight: 700;
}
.p-share-intro__heading {
  margin-bottom: 30px;
  color: #c89833;
}
.p-share-intro__txt {
  line-height: 2.1;
}
.p-share-intro__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.p-share-intro__item {
  width: 22%;
}
.p-share-intro__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 75px;
  color: #7d929d;
  border: 1px solid #7d929d;
  border-radius: 10px;
  background-color: #fff;
}

.p-share-cont__item:nth-of-type(odd) .p-share-cont__img {
  text-align: left;
  padding-right: 2%;
}
.p-share-cont__item:nth-of-type(odd) .p-share-cont__txt {
  margin-left: auto;
  background-size: cover;
  background-image: url(../images/shareStyle/beltOdd.webp);
}
.p-share-cont__item:nth-of-type(even) .p-share-cont__img {
  text-align: right;
  margin-left: auto;
  padding-left: 2%;
}
.p-share-cont__item:nth-of-type(even) .p-share-cont__txt {
  margin-right: auto;
  background-image: url(../images/shareStyle/beltEven.webp);
}
.p-share-cont__txt {
  background-repeat: no-repeat;
  background-position: center;
  font-size: clamp(1.5rem, 1.33rem + 0.453vw, 2.2rem);
  line-height: 2;
  max-width: 1920px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
}
.p-share-cont__txt span {
  font-size: 0.7em;
  margin-right: 15px;
}

@media screen and (min-width: 769px) {
  .p-share-intro {
    padding-bottom: 185px;
  }
  .p-share-intro__heading {
    font-size: clamp(4rem, 3.733rem + 0.348vw, 4.4rem);
  }
  .p-share-intro__txt {
    font-size: 2rem;
  }
  .p-share-intro__list {
    margin-top: 90px;
  }
  .p-share-intro__item a {
    font-size: 1.75rem;
  }
  .p-share-intro__item a:hover {
    color: #fff;
    background-color: #7d929d;
    transition: 0.2s;
  }
  .p-share-cont__item {
    padding-bottom: 200px;
  }
  .p-share-cont__item:nth-of-type(odd) .p-share-cont__txt {
    padding-left: 41%;
    text-align: left;
  }
  .p-share-cont__item:nth-of-type(even) .p-share-cont__txt {
    padding-right: 41%;
    text-align: right;
  }
  .p-share-cont__txt {
    margin-top: -90px;
    padding-top: 115px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .p-share-intro {
    padding-bottom: 15%;
  }
  .p-share-intro__heading {
    font-size: clamp(2.8rem, 1.655rem + 3.053vw, 4rem);
  }
  .p-share-intro__txt {
    font-size: clamp(1.4rem, 0.827rem + 1.527vw, 2rem);
  }
  .p-share-intro__list {
    gap: 10px;
    margin-top: 10%;
  }
  .p-share-intro__item {
    width: 48.5%;
  }
  .p-share-intro__item a {
    font-size: clamp(1.4rem, 1.209rem + 0.509vw, 1.6rem);
  }
  .p-share-cont__item {
    text-align: center;
    padding-bottom: 20%;
  }
  .p-share-cont__txt {
    margin-top: -10%;
    padding: 15% 2% 10%;
  }
}
/*----------------------------------------------------------------------------------------
locationAccess.scss
----------------------------------------------------------------------------------------*/
.p-location-mv {
  background-image: url(../images/locationAccess/mainVisual.webp);
}

.p-location-bg {
  background-image: url(../images/locationAccess/background.webp);
  background-size: cover;
  background-position: top;
}

.p-location-map {
  text-align: center;
}
.p-location-map__heading {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
}
.p-location-map img {
  display: block;
  margin-inline: auto;
}
.p-location-map__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1030px;
  margin-inline: auto;
  padding: 0 2%;
}

.p-location-time {
  margin-bottom: 75px;
}

.p-location-facility__heading {
  text-align: center;
  font-size: 2.4rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
}
.p-location-facility__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-location-facility__item {
  width: 45%;
}
.p-location-facility__cont {
  margin-bottom: 40px;
}
.p-location-facility__cont h3 {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
  color: #754c24;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.p-location-facility__cont h3::after {
  content: "";
  display: block;
  width: 65%;
  height: 1px;
  background-color: #754c24;
}
.p-location-facility__cont dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px 10px;
}
.p-location-facility__cont dt {
  width: 60%;
}
.p-location-facility__cont dd {
  width: 35%;
  color: #333333;
  font-weight: 700;
  text-align: right;
}
.p-location-facility__caution {
  margin-top: -10px;
  text-align: right;
  font-size: 1.3rem;
  font-weight: 700;
}

.p-access-map {
  max-width: 855px;
  margin-inline: auto;
}
.p-access-map__heading {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 45px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
}
.p-access-map__img {
  text-align: center;
  padding: 0 2%;
}

.p-access-time__heading {
  margin-bottom: 120px;
  text-align: center;
  font-size: 1.6rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
}
.p-access-time__heading--large {
  font-size: 2.4rem;
}
.p-access-time__heading--middle {
  font-size: 2rem;
}
.p-access-time__list {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-access-time__item {
  width: calc(50% - 10px);
  margin-bottom: 45px;
}
.p-access-time__item p {
  margin-top: 10px;
  font-weight: 600;
}

@media screen and (min-width: 769px) {
  .p-location-map {
    margin-top: 55px;
    margin-bottom: 150px;
  }
  .p-location-map__heading {
    margin-bottom: 140px;
  }
  .p-location-map__list {
    margin-bottom: 100px;
  }
  .p-location-facility {
    margin-bottom: 150px;
  }
  .p-location-facility__column {
    margin-top: 135px;
  }
  .p-location-facility__cont dl {
    font-size: 1.6rem;
  }
  .p-access-time {
    margin-top: 270px;
    padding-bottom: 150px;
  }
  .p-access-time__heading {
    margin-bottom: 120px;
  }
  .p-access-time__item p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-location-map {
    margin-bottom: 18%;
  }
  .p-location-map__heading {
    margin-bottom: 14%;
  }
  .p-location-map__list {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 14%;
  }
  .p-location-map__img {
    padding: 0 2%;
  }
  .p-location-time {
    padding: 0 2%;
  }
  .p-location-facility {
    margin-bottom: 18%;
  }
  .p-location-facility__cont dl {
    font-size: clamp(1.4rem, 1.209rem + 0.509vw, 1.6rem);
  }
  .p-location-facility__cont dt {
    width: 55%;
  }
  .p-location-facility__cont dd {
    width: 40%;
  }
  .p-location-facility__column {
    flex-direction: column;
    margin-top: 10%;
  }
  .p-location-facility__item {
    width: 100%;
  }
  .p-access-time {
    margin-top: 20%;
    padding-bottom: 15%;
  }
  .p-access-time__heading {
    margin-bottom: 10%;
  }
  .p-access-time__list {
    flex-direction: column;
  }
  .p-access-time__item {
    width: 100%;
  }
  .p-access-time__item p {
    font-size: clamp(1.3rem, 1.109rem + 0.509vw, 1.5rem);
    line-height: 1.5333333333;
  }
}
@media screen and (max-width: 480px) {
  .p-access-time__heading--large {
    font-size: 2rem;
  }
  .p-access-time__heading--middle {
    font-size: 1.8rem;
  }
}
/*----------------------------------------------------------------------------------------
plan.scss
----------------------------------------------------------------------------------------*/
.p-plan-mv {
  background-image: url(../images/plan/mainVisual.webp);
}

.p-plan-bg {
  background-image: url(../images/plan/background.webp);
  background-size: cover;
  background-position: top;
}

.p-plan-cont-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.p-plan-cont-tab__item {
  text-align: center;
  max-width: 240px;
  width: 100%;
  height: 50px;
}
.p-plan-cont-tab__link {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #42210b;
  color: #fff;
  font-weight: 700;
}
.p-plan-cont-tab__link--small {
  font-size: 1.7rem;
  margin-left: 5px;
  pointer-events: none;
}
.p-plan-cont-tab__link.is-active {
  background-color: #42210b;
}

.p-plan-detail {
  text-align: center;
  margin-bottom: 100px;
}

.p-plan-cont-room__cont[data-flex=horizontal] ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 65px;
}
.p-plan-cont-room__cont[data-flex=vertical] ul {
  text-align: center;
}
.p-plan-cont-room__cont[data-flex=vertical] ul li:nth-of-type(2) {
  margin-top: 65px;
}
.p-plan-cont-room__caution {
  margin-top: 15px;
  font-size: 1.4rem;
}

@media screen and (min-width: 769px) {
  .p-plan-cont-room__cont {
    padding-bottom: 200px;
  }
  .p-plan-cont-room__cont[data-flex=horizontal] li {
    width: 45%;
  }
  .p-plan-cont-tab {
    padding-bottom: 150px;
  }
  .p-plan-cont-tab__link {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-plan-cont-room__cont {
    padding-bottom: 20%;
  }
  .p-plan-detail {
    margin-bottom: 10%;
  }
  .p-plan-cont-tab {
    padding-bottom: 15%;
    flex-wrap: wrap;
  }
  .p-plan-cont-tab__link {
    font-size: clamp(2rem, 1.237rem + 2.036vw, 2.8rem);
  }
  .p-plan-cont-tab__link--small {
    font-size: clamp(1.4rem, 1.114rem + 0.763vw, 1.7rem);
  }
}
/*----------------------------------------------------------------------------------------
equipment.scss
----------------------------------------------------------------------------------------*/
.p-equipment-mv {
  background-image: url(../images/equipment/mainVisual.webp);
}

.p-equipment-bg {
  background-image: url(../images/equipment/background.webp);
  background-size: cover;
  background-position: top;
}

.p-equipment-category {
  font-size: 2rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
  padding-bottom: 20px;
  margin-bottom: 50px;
  position: relative;
}
.p-equipment-category::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #413733;
}

.p-equipment__heading {
  font-size: 2.4rem;
  text-align: center;
  margin-top: 30px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
}

.p-equipment-common {
  margin-bottom: 120px;
}
.p-equipment-common__imgs {
  max-width: 985px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
}
.p-equipment-common__img {
  max-width: 550px;
  width: 100%;
}
.p-equipment-common__heading {
  font-size: clamp(2.8rem, 2.267rem + 0.694vw, 3.6rem);
  margin-bottom: 35px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
}
.p-equipment-common__txt {
  font-size: clamp(1.4rem, 1.254rem + 0.388vw, 2rem);
  line-height: 1.75;
  margin-bottom: 60px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
}
.p-equipment-common__caution {
  text-align: right;
  font-weight: 700;
}

.p-equipment-detail {
  text-align: center;
  margin: 40px 0;
}

.p-equipment-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  place-content: center;
}

.p-equipment-occupied {
  padding-bottom: 270px;
}

@media screen and (min-width: 769px) {
  .p-equipment__heading {
    margin-bottom: 120px;
  }
  .p-equipment-common__imgs {
    margin-bottom: 120px;
  }
  .p-equipment-common__caution {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-equipment__heading {
    margin-bottom: 13%;
  }
  .p-equipment-category {
    text-align: center;
  }
  .p-equipment-category::after {
    position: absolute;
    right: 0;
    bottom: 10%;
    left: 0;
    margin: auto;
  }
  .p-equipment-common {
    margin-bottom: 90px;
  }
  .p-equipment-common__imgs {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15%;
  }
  .p-equipment-common__heading {
    text-align: center;
  }
  .p-equipment-common__caution {
    font-size: clamp(1.2rem, 1.009rem + 0.509vw, 1.4rem);
  }
  .p-equipment-occupied {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 480px) {
  .p-equipment__heading {
    margin-bottom: 17%;
  }
  .p-equipment-common__imgs {
    margin-bottom: 22%;
  }
}
/*----------------------------------------------------------------------------------------
project.scss
----------------------------------------------------------------------------------------*/
#selectPhoto {
  font-size: 1.6rem;
}

.p-gallery-bg {
  background-image: url(../images/gallery/background.webp);
  background-size: cover;
  background-position: top;
  padding-bottom: 100px;
}

.p-gallery-mv {
  background-image: url(../images/gallery/mainVisual.webp);
  margin-bottom: 0 !important;
}

.p-gallerys {
  max-width: 970px;
  width: calc(100% - 40px);
  padding: 60px 15px 40px;
  margin-inline: auto;
  position: relative;
  text-align: center;
}
.p-gallerys img {
  margin-inline: auto;
  height: auto;
}
.p-gallerys__sub {
  margin-top: 35px;
}
.p-gallerys__sub .slick-slide {
  margin-right: 10px;
  margin-left: 10px;
}
.p-gallerys__sub .slick-list {
  width: 90%;
  margin-inline: auto;
}
.p-gallerys__sub .is-slide-arrow {
  width: 40px;
  position: absolute;
  cursor: pointer;
}
.p-gallerys__sub .is-prev-arrow {
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
}
.p-gallerys__sub .is-next-arrow {
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
}
.p-gallerys__caution {
  text-align: left;
  margin-top: 40px;
  max-width: 850px;
  margin-inline: auto;
}
.p-gallerys__caution p {
  font-size: 1.2rem;
  line-height: 22px;
  margin-inline: auto;
  width: calc(100% - 40px);
}

.p-select li:nth-of-type(n + 2) {
  display: none;
}

@media (max-width: 480px) {
  .p-gallery-bg {
    padding-bottom: 30px;
  }
  .p-gallerys {
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }
  .p-gallerys__caution p {
    font-size: 1.1rem;
    width: 100%;
  }
  .p-gallerys .is-slide-arrow {
    width: 30px;
    height: 30px;
  }
  .p-gallerys .is-prev-arrow {
    left: -15px;
  }
  .p-gallerys .is-next-arrow {
    right: -15px;
  }
  .p-gallerys__main img {
    width: 350px;
    height: 200px;
  }
  .p-gallerys__sub img {
    width: 90%;
    height: 70px;
  }
}
.slick-prev,
.slick-next {
  display: none !important;
}

/*----------------------------------------------------------------------------------------
outline.scss
----------------------------------------------------------------------------------------*/
.p-outline-mv {
  background-image: url(../images/outline/mainVisual.webp);
}

.p-outline-bg {
  background-image: url(../images/outline/background.webp);
  background-size: cover;
  background-position: top;
}

.p-outline {
  text-align: center;
  position: relative;
}
.p-outline__inner {
  max-width: 970px;
  margin-inline: auto;
  padding-right: 2.5%;
  padding-left: 2.5%;
  padding-bottom: 100px;
}
.p-outline__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
  font-weight: 700;
}
.p-outline__label {
  text-align: left;
  background-color: #808080;
  color: #fff;
  padding: 10px 2.5%;
  border-top: 1px solid #999999;
  border-left: 1px solid #999999;
  border-right: 1px solid #999999;
  width: 25%;
}
.p-outline__cont {
  text-align: left;
  padding: 10px 20px;
  border-top: 1px solid #999999;
  border-right: 1px solid #999999;
  color: #333333;
  width: 75%;
}
.p-outline__cont a {
  font-family: "Noto Sans JP", sans-serif;
  color: #6495ed;
}
.p-outline__item {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.p-outline__item::before {
  display: block;
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-outline__label:last-of-type, .p-outline__cont:last-of-type {
  border-bottom: 1px solid #999999;
}
.p-outline__update {
  text-align: left;
  margin-top: 10px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
}
.p-outline__update p {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.p-label {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 135px;
}

@media (min-width: 769px) {
  .p-outline-main {
    padding-top: 200px;
  }
  .p-outline__list {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .p-outline-main {
    padding-top: 20%;
  }
  .p-outline__inner {
    padding-top: 10%;
  }
  .p-outline__list {
    font-size: clamp(1.4rem, 1.209rem + 0.509vw, 1.6rem);
  }
}
@media (max-width: 480px) {
  .p-outline__list {
    font-size: 1.3rem;
  }
  .p-outline__cont {
    padding-left: 10px;
  }
  .p-label {
    margin-bottom: 70px;
  }
}
.p-design {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
}

.p-design-bg {
  background-image: url(../images/design/background.png);
  background-size: cover;
  background-position: 0 -100px;
}

.p-design-mv {
  background-image: url(../images/design/mainVisual.webp);
}

.p-supervision {
  margin-top: -100px;
}
.p-supervision__heading {
  position: relative;
  text-align: center;
  max-width: 380px;
  width: 100%;
  margin-inline: auto;
}
.p-supervision__heading h2 {
  font-size: 1.8rem;
}
.p-supervision__heading--border span {
  position: absolute;
  max-width: 120px;
  width: 100%;
  height: 1px;
  background-color: #e0ca82;
}
.p-supervision__heading--border:first-of-type span {
  left: 0;
}
.p-supervision__heading--border:first-of-type span:nth-of-type(1) {
  top: 5px;
}
.p-supervision__heading--border:first-of-type span:nth-of-type(2) {
  top: 8px;
}
.p-supervision__heading--border:first-of-type span:nth-of-type(3) {
  top: 11px;
}
.p-supervision__heading--border:last-of-type span {
  right: 0;
}
.p-supervision__heading--border:last-of-type span:nth-of-type(1) {
  top: 5px;
}
.p-supervision__heading--border:last-of-type span:nth-of-type(2) {
  top: 8px;
}
.p-supervision__heading--border:last-of-type span:nth-of-type(3) {
  top: 11px;
}

.p-design-mainLogo {
  text-align: center;
  margin: 70px 20px;
}

.p-design-logos {
  max-width: 1030px;
  margin-inline: auto;
  background-image: url(../images/design/logoBg.png);
  background-position: center;
}
.p-design-logos__list {
  max-width: 870px;
  padding: 20px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.p-model__heading {
  margin-bottom: 10px;
  text-align: center;
  padding: 0 20px;
}
.p-model__heading h2 {
  color: #c89833;
  font-size: 5rem;
}
.p-model__heading p {
  margin-top: 10px;
  font-size: 2rem;
  color: #754c24;
}

.p-produce {
  margin-top: 225px;
}
.p-produce h2 {
  text-align: center;
  color: #c89833;
  font-size: 2.3rem;
  padding: 0 20px;
  line-height: 2.2608695652;
  max-width: 1030px;
  margin-inline: auto;
  background-image: url(../images/design/obj01.png);
  background-position: center;
  padding: 125px 0 190px;
}
.p-produce h2 span {
  font-size: 3.3rem;
}
.p-produce__list {
  padding: 0 20px 120px;
  text-align: center;
}
.p-produce__item {
  font-size: 1.7rem;
  color: #333333;
  line-height: 2.6470588235;
  margin-bottom: 110px;
}
.p-produce__item ul {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.p-produce__item:nth-of-type(5) {
  margin-bottom: 0;
}
.p-produce__item:last-of-type {
  margin-top: -100px;
  max-width: 1130px;
  margin-inline: auto;
  padding: 165px 0;
  background-image: url(../images/design/obj02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0;
  margin-bottom: 0;
}

.p-design-gallerys-wrapper {
  position: relative;
  padding-top: 70px;
}
.p-design-gallerys-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -25px;
  height: 55px;
  width: 1px;
}

.p-design-gallerys-tab {
  max-width: 1200px;
  padding-right: 2%;
  padding-left: 2%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.p-design-gallerys-tab__item {
  max-width: 250px;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  padding: 0 10px;
  background-color: #b3b3b3;
  cursor: pointer;
}
.p-design-gallerys-tab__item.is-active {
  background-color: #e0ca82;
  color: #ffffff;
}

.p-design-gallerys__list {
  max-width: 660px;
  padding: 70px 15px 120px;
  margin-inline: auto;
  position: relative;
  text-align: center;
  display: none;
}
.p-design-gallerys__list li {
  margin-bottom: 30px;
}
.p-design-gallerys__list li img {
  width: 100%;
}
.p-design-gallerys__list.is-show {
  display: block;
}
.p-design-gallerys__main figure {
  position: relative;
  max-width: 660px;
  margin-inline: auto;
}
.p-design-gallerys__main figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  padding: 10px 8px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  width: 125px;
  background-image: url(../images/design/galleryBg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.p-design-gallerys__main .slick-slide img {
  width: 100%;
}
.p-design-gallerys__sub {
  margin-top: 35px;
  margin-inline: auto;
  padding: 0 50px;
}
.p-design-gallerys__sub .slick-slide {
  margin-right: 10px;
  margin-left: 10px;
  width: 90%;
}
.p-design-gallerys__sub .slick-slide img {
  width: 100%;
}
.p-design-gallerys__sub .is-slide-arrow {
  width: 20px;
  position: absolute;
  z-index: 100;
}
.p-design-gallerys__sub .is-prev-arrow {
  top: 40px;
  left: 0;
}
.p-design-gallerys__sub .is-next-arrow {
  top: 40px;
  right: 0;
}
.p-design-gallerys__caution {
  font-size: 1.3rem;
  margin-top: 50px;
  text-align: left;
  margin-left: 55px;
}

@media (min-width: 769px) {
  .p-design-gallerys-tab__item--small {
    padding-top: 3px;
  }
}
@media (max-width: 768px) {
  .p-design-gallerys-tab {
    grid-template-columns: 1fr 1fr;
  }
  .p-design-gallerys-tab__item {
    max-width: 100%;
  }
  .p-design-logos {
    background-size: contain;
  }
  .p-design-logos__list {
    flex-direction: column;
    gap: 30px;
  }
  .p-produce {
    margin-top: 18%;
  }
  .p-produce h2 {
    font-size: clamp(1.6rem, 0.932rem + 1.781vw, 2.3rem);
  }
  .p-produce h2 span {
    font-size: clamp(2rem, 1.046rem + 2.545vw, 3rem);
  }
  .p-produce h2 {
    padding-top: 0;
    padding-bottom: 5%;
  }
  .p-produce__list {
    padding-top: 10%;
    padding-bottom: 15%;
  }
  .p-produce__item {
    font-size: clamp(1.5rem, 1.309rem + 0.509vw, 1.7rem);
    line-height: 2.3529411765;
    margin-bottom: 10%;
  }
  .p-produce__item:last-of-type {
    padding: 10% 0;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .p-supervision__heading {
    margin-top: 70px;
  }
  .p-supervision__heading--border span {
    width: 30%;
  }
  .p-supervision__heading--border:first-of-type span {
    left: 10px;
  }
  .p-supervision__heading--border:last-of-type span {
    right: 10px;
  }
  .p-model__heading h2 {
    font-size: 3rem;
  }
  .p-model__heading p {
    font-size: 1.8rem;
  }
  .p-design-gallerys-wrapper {
    padding-top: 60px;
  }
  .p-design-gallerys-tab {
    padding-left: 15px;
    padding-right: 15px;
  }
  .p-design-gallerys__main img {
    height: 280px;
  }
  .p-design-gallerys__sub .slick-list {
    width: 100%;
  }
  .p-design-gallerys__sub .is-slide-arrow {
    width: 10px;
  }
  .p-design-gallerys__sub .is-prev-arrow {
    top: 45%;
    left: -5px;
  }
  .p-design-gallerys__sub .is-next-arrow {
    top: 45%;
    right: -5px;
  }
  .p-design-gallerys__list {
    padding-bottom: 70px;
    padding-top: 40px;
  }
  .p-design-gallerys__caution {
    font-size: 1.15rem;
    margin-left: 2%;
  }
}
/*----------------------------------------------------------------------------------------
commonLinks.scss
----------------------------------------------------------------------------------------*/
.c-commonLinks {
  padding: 50px 2%;
  background-color: #c7b299;
}
.c-commonLinks__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.c-commonLinks__item {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Ms P明朝", "MS PMincho", serif;
  text-align: center;
  max-width: 280px;
  width: 100%;
  color: #fff;
  font-size: 2rem;
  background-image: url(../images/common/btnBg.webp);
  background-size: cover;
  background-position: center;
}
.c-commonLinks__item a {
  display: block;
  padding: 25px 0;
}

@media screen and (max-width: 768px) {
  .c-commonLinks__list {
    flex-direction: column;
  }
}
.c-subVisual {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: bottom;
  margin-bottom: 120px;
}
.c-subVisual__heading {
  font-family: "specter", sans-serif;
  background-image: url(../images/common/mvBelt.webp);
  background-position: right;
  background-repeat: no-repeat;
  max-width: 1150px;
  width: 100%;
  color: #42210b;
}
.c-subVisual__heading--small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.503rem + 0.259vw, 2rem);
}

@media screen and (min-width: 769px) {
  .c-subVisual__heading {
    font-size: clamp(5rem, 4.666rem + 0.434vw, 5.5rem);
    text-align: center;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .c-subVisual {
    margin-bottom: 10%;
  }
  .c-subVisual__heading {
    font-size: clamp(3rem, 1.092rem + 5.089vw, 5rem);
    text-align: left;
    padding-right: 5%;
    padding-left: 5%;
    margin-bottom: 15%;
  }
}
@media screen and (min-width: 481px) {
  .c-subVisual {
    height: 100vh;
  }
  .c-subVisual__heading {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .c-subVisual {
    height: 80vh;
  }
  .c-subVisual__heading {
    padding-top: 20px;
    padding-bottom: 20px;
    background-position: center;
  }
}
/*----------------------------------------------------------------------------------------
none.scss
----------------------------------------------------------------------------------------*/
@media (min-width: 769px) {
  .u-tab-appea {
    display: none;
  }
}
@media (max-width: 768px) {
  .u-tab-none {
    display: none;
  }
}
@media (min-width: 481px) {
  .u-sp-appea {
    display: none;
  }
}
@media (max-width: 480px) {
  .u-sp-none {
    display: none;
  }
}
/*----------------------------------------------------------------------------------------
utility.scss
----------------------------------------------------------------------------------------*/
.u-mt-5 {
  margin-top: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

@media screen and (max-width: 480px) {
  .u-pb-0 {
    padding-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */