@charset "UTF-8";
/* 価格・プランページ */
.price #sub02 {
  max-width: 1430px;
  width: 94%;
  margin-inline: auto;
}

.price__prodHead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em 5.5%;
  width: 90%;
  margin: 0 auto;
   @media (min-width: 991px) {
    gap: 3em 5.5%;
    width: 100%;
   }
}

@media (min-width: 1145px) {
  .price__prodHead {
    flex-direction: row;
    align-items: flex-end;
  }
}

.price__prodHeading {
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.25em;
  @media (min-width: 769px) {
    font-size: 34px;
  }
}
.price__prodHeading > span:nth-child(1) {
  display: block;
  font-size: 0.56em;
  letter-spacing: 0.25em;
}
.price__prodHeading > span:nth-child(2) {
  display: block;
  margin-top: 0.75em;
  line-height: 1.25;
  @media (min-width: 769px) {
  margin-top: 0.5em;
  line-height: inherit;
  }
}
.price__prodHeading > span > span {
  font-size: 0.7em;
  letter-spacing: 0.25em;
}


.price__prodPrice__out {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0 2%;
  width: 95%;
  margin: 0;
}

@media (min-width: 1166px) {
  .price__prodPrice__out {
    flex-direction: row;
    align-items: flex-end;
	width: 45%;
  }
}


.price__prodPrice {
  font-size: 45px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-left: auto;  
  @media (min-width: 1145px) {
   line-height: 1;
  }
}
.price__prodPrice > span:nth-child(2) {
  font-size: 0.4em;
  margin-left: -6px;
}

.price__prodPrice02 {
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-left: auto;
  /*
  @media (min-width: 769px) {
    margin-left: 0;
  }
  */
}
.price__prodPrice02 > span:nth-child(1) {
  font-size: 0.5em;
}
.price__prodPrice02 > span:nth-child(3) {
  font-size: 0.4em;
  margin-left: -6px;
}

.price__prodBody {
  @media (min-width: 769px) {
    width: calc(100% + (100vw - 100%) / 2);
  }
}

.price__prodImg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  @media (min-width: 769px) {
    width: 100%;
    margin-left: inherit;
    margin-right: inherit;
  }
}

.price__prodContents {
  max-width: 955px;
  width: 86%;
  margin-inline: auto;
  @media (min-width: 769px) {
    width: 90%;
  }
  @media (min-width: 991px) {
    width: 100%;
  }  
}

.price__prodSelect{
  width: 90%;
  margin: 3em auto 0;
  @media (min-width: 769px) {
    width: 100%;
  }
}
.price__prodTitle{
  letter-spacing: 0.15em;
  @media (min-width: 769px) {
    letter-spacing: 6px;
  }
}

.price__prodCols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em 7%;
  margin-top: 1.5em;
}
@media (min-width: 768px) {
  .price__prodCols {
    gap: 3em 7%;
    grid-template-columns: 1fr 1fr;
    margin-top: 3em;
  }
}

.price__prodLink {
  display: flex;
  align-items: flex-start;
  gap: 5.1%;
}

.price__prodSelectImg {
  width: 37%;
}
.price__prodSelectImg > img {
  display: block;
  width: 100%;
  height: auto;
}

.price__prodSelectBody {
  flex: 1;
}

.price__inner {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
  @media (min-width: 769px) {
    width: 100%;
  }
}

.price__planCols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em 31px;
}
@media (min-width: 768px) {
  .price__planCols {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .price__planCols:not(:has(.price__planItem:nth-child(3))) {
    grid-template-columns: repeat(2, 1fr);
  }
}

.price__planLink {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 43px;
}
.price__planLink::after {
  content: "";
  display: inline-block;
  width: 17.4px;
  height: 17.4px;
  background: url("../img/common/icon_search_gold.svg") center/contain no-repeat;
  position: absolute;
  bottom: 5em;
  right: 1.5em;
  transition: all 0.3s ease;
}
.price__planLink:hover::after {
  transform: scale(1.2);
}
.price__planLink > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price__tableBox {
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
}

.price__tableContainer {
  width: 100%;
  border-collapse: collapse;
}
.price__tableContainer > tbody > tr > th {
  width: 100%;
  border-bottom: 1px solid #F9F8F7;
  padding: 1em;
  line-height: 1.5em;
  @media (max-width: 768px) {/*スマホのみ*/
    display: block;
  }
}
@media (min-width: 768px) {
  .price__tableContainer > tbody > tr > th {
    width: 17%;
    padding: 1.5em;
    line-height: 2;
  }
}
.price__tableContainer > tbody > tr > td {
  padding: 1em;
  @media (max-width: 768px) {/*スマホのみ*/
    display: block;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .price__tableContainer > tbody > tr > td {
    border-bottom: 1px solid #EDD8C5;
    padding: 1.5em;
    line-height: 2;
  }
}

.price__otherMainTitle{
  margin-left: 5%;
  @media (min-width: 769px) {
    margin-left: 0;
  }
}

.price__otherLink {
  text-decoration: none;
  display: block;
  width: 100%;
}

.price__otherImg > img {
  width: 100%;
}

.price__otherTexts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em 6%;
  margin: 1.5em auto 0;
  width: 90%;
}
@media (min-width: 768px) {
  .price__otherTexts {
    flex-direction: row;
    align-items: flex-end;
    gap: 0 1em;
    margin: 3em auto 0;
    width: 100%;
    padding-bottom: 2em;
  }
}

.price__otherTitle {
  flex: 1;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.3em;
}
@media (min-width: 530px) {
  .price__otherTitle {
    font-size: 25px;
  }
}
.price__otherTitle > span:first-child {
  display: block;
  font-size: 0.56em;
  line-height: 1.5;
  letter-spacing: 0.25em;
}
.price__otherTitle > span:nth-child(2) {
  display: block;
  margin-top: 0.3em;
}
.price__otherTitle > span:nth-child(2) > span {
  font-size: 0.708em;
  letter-spacing: 0.25em;
}

.price__otherPrice {
  width: max-content;
  align-self: end;
  font-size: 31.2px;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (min-width: 530px) {
  .price__otherPrice {
    font-size: 39px;
  }
}
.price__otherPrice > span:nth-child(2) {
  font-size: 0.4em;
}

.price__slideLink a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.price__slideLink:hover img {
  opacity: 1;
  transform: scale(1.03);
}

/* fancybox ナビボタン位置調整 */
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  transition: all 0.3s ease-in-out !important;
}

.fancybox-inner .fancybox-navigation .fancybox-button--arrow_right {
  display: none;
  top: var(--btn-top, 50%);
  left: var(--btn-next-left, 0);
}

.fancybox-inner .fancybox-navigation .fancybox-button--arrow_left {
  display: none;
  top: var(--btn-top, 50%);
  left: var(--btn-prev-left, 0);
}

/*  スタッフ紹介 */
.staff #sub01 {
  padding-top: 0;
  @media (max-width: 768px) {/*スマホのみ*/
    width: 100%;
  }
}
.staff_heading{
  width: 82%;
  margin: 0 auto;
  @media (min-width: 769px) {
    width: 90%;
  }
  @media (min-width: 991px) {
    width: 100%;
  }  
}
.staff__block {
  display: flex;
  flex-direction: column;
  gap: 4em;
}
@media (min-width: 768px) {
  .staff__block {
    gap: 7em;
  }
}

.staff__item {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 1.5em 7%;
  padding-inline: 0;
}
@media (min-width: 768px) {
  .staff__item {
    flex-direction: row;
  }
}
@media (min-width: 991px) {
  .staff__item {
    padding-inline: 7.25% 0;
  }
}

.staff__img {
  width: 94%;
  margin-right: auto;
}
@media (min-width: 768px) {
  .staff__img {
    width: 40.4%;
  }
}

.staff__contents {
  flex: 1;
  width: 84%;
  margin: 1em auto;
}

.staff__position {
  display: flex;
  align-items: flex-end;
  gap: 0.5em 26px;
}
.staff__position > dt {
  font-size: 0.52em;
  letter-spacing: 0.25em;
}
.staff__position > dd {
  white-space: nowrap;
}

.staff__cols {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.staff__colItem {
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
  flex-wrap: wrap;
  margin-bottom: 0.5em;
}
.staff__colItem > dt {
  white-space: nowrap;
  @media (max-width: 768px) {/*スマホのみ*/
    width: 100%;
    margin-bottom: 0.25em;
  }
}

/* 会社概要 */
.company #sub01 {
  padding-top: 0;
  padding-bottom: 0;
}

.company__details {
  max-width: 834px;
  width: 100%;
  margin-inline: auto;
}

.company__cols {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #E6E6E6;
  gap: 1em;
  padding-block: 2em;
  padding-inline: 6.8%;
}
@media (min-width: 768px) {
  .company__cols {
    flex-direction: row;
    gap: 0;
  }
}
.company__cols > dt {
  max-width: 136px;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: #000;
}
.company__cols > dd {
  flex: 1;
  font-size: 14px;
  line-height: 1.86;
  color: #000;
}

.company__link {
  text-decoration: none;
  display: block;
  padding-inline: 5.12%;
}

.company__mapBox {
  width: calc(100vw - 100% + 100%);
  margin-left: calc(-1 * (100vw - 100%) / 2);
}

.company__mapText {
  width: 96%;
  margin-inline: auto;
}

.company__mapInner {
  position: relative;
  width: 100%;
  min-height: 468px;
}
.company__mapInner > iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* お取引の流れ */
.flow #sub01 {
  padding-top: 0;
  @media (max-width: 768px) {/*スマホのみ*/
    width: 100%;
  }
}

.flow__blocks {
  display: flex;
  flex-direction: column;
  gap: 4em;
}
@media (min-width: 768px) {
  .flow__blocks {
    gap: 92px;
  }
}

.flow__block {
  display: flex;
  flex-direction: column-reverse;
  gap: 2em 7.4%;
}
@media (min-width: 768px) {
  .flow__block {
    flex-direction: row;
  }
}

.flow__img {
  order: 99;
  width: 94%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .flow__img {
    order: unset;
    width: 34.8%;
  }
}
.flow__img > img {
  width: 100%;
}

.flow__contents {
  flex: 1;
  width: 82%;
  margin: 0 auto;
  @media (min-width: 769px) {
    width: 100%;
  }
}

.flow__step {
  display: inline-block;
  border: 1px solid #CEBA9F;
  border-radius: 28.421px;
  padding-block: 18.5px;
  padding-inline: 38.6px 61px;
}

.flow__texts {
  padding-left: 0;
}
@media (min-width: 768px) {
  .flow__texts {
    padding-left: 25px;
  }
}

/* 資料請求・相談窓口 */
.contact #sub01 {
  padding-top: 0;
}

.contact__topTexts{
  width: 90%;
  margin: 0 auto;
  @media (min-width: 1400px) {
    width: 100%;
  }
}

.contact__example {
  max-width: 1021px;
  width: 100%;
  margin-inline: auto;
  border: 1px solid #CEBA9F;
  padding: 2em;  
  @media (min-width: 769px) {
    padding: 3em 6.1% 4em;
  }
}

.contact__exampleTitle {
  display: inline-block;
  position: relative;
  margin-left: 6px;
}
.contact__exampleTitle::after {
  content: "";
  display: inline-block;
  width: 100%;
  aspect-ratio: 405.3/8.3;
  background: url("../img/sub/border_hukidashi.svg") center/contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.contact__exampleList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.5em;
}
@media (min-width: 768px) {
  .contact__exampleList {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__telBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2em 10.2%;
  width: 90%;
  margin: 0 auto;
  @media (min-width: 1400px) {
    width: 100%;
  }
}
@media (min-width: 991px) {
  .contact__telBox {
    flex-direction: row;
  }
}

.contact__telNum {
  flex: 1;
  max-width: 455px;
  width: 100%;
}

.contact__telLink {
  position: relative;
  display: block;
  width: 88.8%;
}
@media (min-width: 768px) {
  .contact__telLink {
    pointer-events: none;
  }
}
.contact__telLink::before {
  content: "";
  display: inline-block;
  width: 26.7px;
  height: 2px;
  background: #CCAE87;
  position: absolute;
  top: 15px;
  right: calc(-50px + 3%);
}
@media (min-width: 768px) {
  .contact__telLink::before {
    right: -50px;
  }
}
.contact__telLink::after {
  content: "";
  display: inline-block;
  width: 6.9px;
  height: 6.9px;
  border-top: 2px solid #CCAE87;
  border-right: 2px solid #CCAE87;
  transform: rotate(45deg);
  position: absolute;
  top: 12.5px;
  right: calc(-50px + 3%);
}
@media (min-width: 768px) {
  .contact__telLink::after {
    right: -50px;
  }
}
.contact__telLink:hover > img {
  opacity: 1;
}

.content__formWrap, .content__formWrap--exhibition {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3em 10.2%;
  width: 90%;
  margin: 0 auto;
  @media (min-width: 1400px) {
    width: 100%;
  }
}
@media (min-width: 991px) {
  .content__formWrap, .content__formWrap--exhibition {
    flex-direction: row;
  }
}
.content__formWrap--exhibition {
  display: block;
}

.content__form {
  flex: 1;
}

.content__formInner {
  display: flex;
  flex-direction: column;
  gap: 3em 0;
}
@media (min-width: 768px) {
  .content__formInner {
    gap: 2em 0;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 1em 0;
}
@media (min-width: 768px) {
  .form__group {
    flex-direction: row;
  }
}

.form__title, .form__title--pTopNone, .form__title--spNone {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5em;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .form__title, .form__title--pTopNone, .form__title--spNone {
    min-width: 177.5px;
    max-width: 177.5px;
    width: 100%;
    padding-top: 1.5em;
    padding-right: 2em;
  }
}
.form__title:first-child, .form__title--pTopNone:first-child, .form__title--spNone:first-child {
  height: fit-content;
}
.form__title--spNone {
  display: none;
}
@media (min-width: 768px) {
  .form__title--spNone {
    display: block;
  }
}
@media (min-width: 768px) {
  .form__title--pTopNone {
    padding-top: 0;
  }
}

.form__required {
  display: inline-block;
  border-radius: 10.989px;
  max-width: 58px;
  min-width: 58px;
  width: 100%;
  background: #C1272D;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding-block: 4.5px;
}

.form__fieldWrap {
  flex: 1;
}

.form__radio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
@media (min-width: 768px) {
  .form__radio {
    grid-template-columns: 1fr 1fr;
  }
}

.form__radioLabel {
  display: flex;
  align-items: center;
  gap: 23px;
}

input[type=text],
input[type=email],
select,
textarea {
  border: 1px solid #CEBA9F;
  border-radius: 18.716px;
  width: 100%;
  font-size: 16px;
  padding-block: 22px;
  padding-inline: 1em;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../img/common/icon_arrow_gray.svg") no-repeat;
  background-position: right 25px center;
  background-size: 7.8px 4.4px;
  max-width: 266px;
  width: 100%;
}
@media (min-width: 768px) {
  select {
    max-width: 100%;
    width: 100%;
  }
}

textarea {
  min-height: 319px;
}

input[type=radio] {
  display: none;
}

.radio__mark {
  width: 20px;
  height: 20px;
  border: 1px solid #CEBA9F;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: 0.2s;
}

input[type=radio]:checked + .radio__mark {
  border-color: #CEBA9F;
}

input[type=radio]:checked + .radio__mark::after {
  content: "";
  width: 13px;
  height: 13px;
  background: #CEBA9F;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type=checkbox] {
  display: none;
}

.checkbox__mark {
  width: 20px;
  height: 20px;
  border: 1px solid #CEBA9F;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  transition: 0.2s;
}

input[type=checkbox]:checked + .checkbox__mark {
  border-color: #CEBA9F;
}

input[type=checkbox]:checked + .checkbox__mark::after {
  content: "";
  width: 13px;
  height: 13px;
  background: #CEBA9F;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form__postCode {
  display: flex;
  align-items: center;
  gap: 29px;
}
.form__postCode > input {
  flex: 1;
  max-width: 266px;
  width: 100%;
}

input[type=submit] {
  border: none;
  width: 100%;
  background: #AF9A82;
  border-radius: 33.5px;
  cursor: pointer;
  padding-block: 18.5px;
  padding-inline: 1em;
  transition: all 0.3s ease;
}
input[type=submit]:hover {
  transform: translate(0, -3px);
}

/* FAQページ */
.faq #sub01 {
  padding-top: 0;
}

.faq__topTexts{
  width: 90%;
  margin: 3em auto 0;
  @media (min-width: 991px) {
    width: 100%;
  }
}

.faq__blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 110px;
  width: 90%;
  margin: 5em auto 0;
    @media (min-width: 991px) {
    width: 100%;
  }
}

.faq__heading {
  border: 1px solid #CEBA9F;
  border-radius: 28.421px;
  display: inline-block;
  padding-block: 13px;
  padding-inline: 60px;
}

.faq__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5em 2em;
  border-bottom: 1px solid #E5E5E5;
  padding-block: 41px 52px;
}
@media (min-width: 768px) {
  .faq__item {
    flex-direction: row;
    padding-block: 61px 72px;
  }
}
.faq__item:first-child {
  padding-top: 0;
}
.faq__item::after {
  content: "";
  display: inline-block;
  width: calc((100vw - 100%) / 2);
  height: 1px;
  background: #E5E5E5;
  position: absolute;
  bottom: -1px;
  right: calc((100% - 100vw) / 2);
}

.faq__title {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
}
@media (min-width: 768px) {
  .faq__title {
    width: 43%;
    gap: 1.5em;
  }
}
@media (min-width: 991px) {
  .faq__title {
    width: 32.5%;
  }
}
.faq__title > span {
  font-size: 0.77em;
  font-weight: 500;
  line-height: 1;
  color: #997F5C;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .faq__title > span {
    margin-top: 11px;
  }
}

.faq__text {
  flex: 1;
}

/* ユニットハウスとは？ */
.concept #sub01 {
  padding-top: 0;
}
.concept .sub02 {
  position: relative;
}
.concept .sub02::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 62.7419354839vw;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 1240px) {
  .concept .sub02::before {
    height: 778px;
  }
}
.concept #sub02 {
  position: relative;
  z-index: 1;
}

.concept__topTexts {
  width: 90%;
  margin-inline: auto;
}
@media (min-width: 991px) {
  .concept__topTexts {
    width: 89.3%;
    margin-inline: 0;
  }
}

.concept__detielHeading {
  font-size: 23px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin-left: 4.5%;
}
@media (min-width: 768px) {
  .concept__detielHeading {
    font-size: 27.7px;
    letter-spacing: 6px;
  }
}
@media (min-width: 991px) {
  .concept__detielHeading {
    margin-left: 0;
  }
}

.concept__imgBox {
    width: 100vw;
    margin-top: 1.5em;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  @media (min-width: 769px) {
    width: calc((100vw - 100%) / 2 + 100%);
    margin-top: 3em;
    margin-left: inherit;
    margin-right: inherit;
  }
}

.concept__detielItem {
  width: 90%;
  margin: 0 auto 5em;
}
.concept__detielItem:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 991px) {
  .concept__detielItem {
    width: 89.3%;
    margin: 5em 0 7em;
  }

  .concept__detielItem:nth-child(even) {
    margin: 5em 0 7em auto;
  }
}


.concept__detielTitle {
  display: flex;
  flex-wrap: wrap;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.25em;
  font-weight: bold;
}
.concept__detielTitle > span:nth-child(1) {
  display: inline-block;
  font-size: 0.64em;
  align-self: center;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .concept__detielTitle > span:nth-child(1) {
    margin-bottom: 8px;
  }
}
.concept__detielTitle > span:nth-child(2) {
  display: inline-block;
  margin-inline: 20px 33px;
}
.concept__detielTitle > span:nth-child(3) {
  display: inline-block;
  width: 100%;
  font-size: 0.72em;
  line-height: 1.8;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .concept__detielTitle > span:nth-child(3) {
    width: auto;
    margin-top: 0;
  }
}

.concept__diffBlocks {
  display: flex;
  flex-direction: column;
  gap: 4em;
}
@media (min-width: 768px) {
  .concept__diffBlocks {
    gap: 5em;
  }
}
@media (min-width: 991px) {
  .concept__diffBlocks {
    gap: 196px;
  }
}
.concept__diffHeading {
  font-size: 23px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin-left: 4.5%;  
}
@media (min-width: 768px) {
  .concept__diffHeading {
    font-size: 27.7px;
    line-height: 2;
    letter-spacing: 6px;
  }
}
@media (min-width: 991px) {
  .concept__diffHeading {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .concept__diffHeading > span {
    display: inline-block;
    margin-left: 2em;
  }
}

.concept__diffText {
  width: 90%;
  margin: 3em auto 0;
}
@media (min-width: 991px) {
  .concept__diffText {
    width: 89.3%;
    margin: 4em 0 0;
  }
}

.concept__diffBtn {
  text-decoration: none;
  border-radius: 33.5px;
  display: inline-block;
  max-width: 641px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  padding-block: 18.5px;
  padding-inline: 1em;
}
@media (min-width: 768px) {
  .concept__diffBtn {
    font-size: 17px;
  }
}

/* 納期について */
.deliverytime #sub01 {
  padding-top: 0;
}

.deliverytime__topTexts {
  width: 90%;
  margin: 3em auto 0;
}
@media (min-width: 768px) {
  .deliverytime__topTexts {
    width: 89.3%;
  }
}

.deliverytime__detielHeading{
  margin-left: 4.5%;
  @media (min-width: 991px) {
    margin-left: 0;
  }
}

.deliverytime__flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
@media (min-width: 991px) {
  .deliverytime__flow {
    grid-template-columns: repeat(4, 1fr);
  }
}

.deliverytime__flowItem {
  position: relative;
  padding: 2em 3em;
}
@media (min-width: 1200px) {
  .deliverytime__flowItem {
    padding-block: 3em 4em;
    padding-inline: 14.5%;
  }
}
.deliverytime__flowItem::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #898989;
  border-radius: 10px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (min-width: 768px) {
  .deliverytime__flowItem::before {
      width: 20px;
      height: 20px;
  }
}
@media (min-width: 991px) {
  .deliverytime__flowItem::before {
    bottom: unset;
    left: unset;
    top: 50%;
    right: -10px;
    transform: translate(0, -50%);
  }
}
.deliverytime__flowItem::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 2em;
  background: #666666;
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .deliverytime__flowItem::after {
    width: 3px;
  }
}
@media (min-width: 991px) {
  .deliverytime__flowItem::after {
    bottom: unset;
    left: unset;
    width: 2em;
    height: 3px;
    top: 50%;
    right: -2em;
    transform: translate(0, -50%);
  }
}
.deliverytime__flowItem:last-child::before, .deliverytime__flowItem:last-child::after {
  content: unset;
}

.deliverytime__flowHeading > span:first-child {
  display: inline-block;
  font-size: 0.83em;
  letter-spacing: 0.05em;
  margin-right: 0.5em;
  transform: translateY(-1px);
}
@media (min-width: 991px) {
  .deliverytime__flowHeading > span:first-child {
    transform: translateY(0px);
  }
}
@media (min-width: 1200px) {
  .deliverytime__flowHeading > span:first-child {
    transform: translateY(-2px);
  }
}
.deliverytime__flowHeading > span:nth-child(2) {
  display: inline-block;
}
@media (min-width: 991px) {
  .deliverytime__flowHeading > span:nth-child(2) {
    display: block;
  }
}
@media (min-width: 1200px) {
  .deliverytime__flowHeading > span:nth-child(2) {
    display: inline-block;
  }
}

.deliverytime__text {
  width: 100%;
}
@media (min-width: 768px) {
  .deliverytime__text {
    width: 89.3%;
  }
}

.deliverytime__block{
  width: 90%;
  margin: 0 auto;
  @media (min-width: 991px) {
    width: 100%;
  }
}
.deliverytime__imgBox{
    width: 100vw;
    margin-top: 1em;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    @media (min-width: 769px) {
      width: 100%;
      margin-top: 2em;
      margin-left: inherit;
      margin-right: inherit;
  }
}
.deliverytime__text{
  margin-top: 2em;
  @media (min-width: 769px) {
    margin-top: 3em;
  }
}

/* コネクティアとは？ */
.about .sub01 {
  position: relative;
  background-image: url(../img/sub/about_bg01_sp2.jpg);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #000;
  padding-top: 26px;
}
@media (min-width: 768px) {
  .about .sub01 {
    background-image: url(../img/sub/about_bg01.jpg);
    background-size: 1600px;
    padding-top: 0;
  }
}
@media screen and (min-width: 1600px) {
  .about .sub01 {
    background-size: 100%;
  }
}
.about #sub01 {
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about__cols {
  max-width: 1166px;
  width: 94%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 100px;
  padding-bottom: calc(343.59vw - 1033.46px);
}
@media (min-width: 768px) {
  .about__cols {
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 423px;
  }
}
@media (min-width: 1600px) {
  .about__cols {
    padding-bottom: max(423px, calc(423 / 1600 * 100vw));
  }
}

.about__texts {
  max-width: 920px;
  margin-inline: auto;
  margin-top: 2em;
}
@media (min-width: 991px) {
  .about__texts {
    margin-top: 3em;
    width: 100%;
  }
}
@media screen and (min-width: 1600px) {
  .about__texts {
    margin-top: max(170px, calc(170 / 1600 * 100vw));
  }
}

.about__topHeadingWrap{
  margin-left: 7%;
  @media (min-width: 991px) {
    margin-left: 0;
  }
}
.about__text{
  width: 86%;
  margin: 0 auto;
  @media (min-width: 991px) {
    width: 100%;
  }
}

.about__heading {
  font-size: 28px;
  @media screen and (min-width: 769px) {
    font-size: 35px;
    letter-spacing: 0.45em;
    line-height: 2.457;
  }

  > p {
    font-size: 0.8em;
    line-height: 1.74;
    letter-spacing: 0.25em;
    @media screen and (min-width: 769px) {
      font-size: 0.543em;
    }
  }

  > h2 {
    > span {
      display: inline-block;
    }
  }

  .about__txtIndent01{
    letter-spacing: -0.5em;
  }
  .about__txtIndent02{
    @media screen and (max-width: 410px) {
    letter-spacing: -0.25em;
    }
  }
}

.about__subHeading {
  font-size: 28px;
  letter-spacing: 0.25em;
  @media screen and (min-width: 769px) {
    font-size: 31px;
    line-height: 1.9;
  }

  > h3 {
    margin-top: -5px;

    > span:first-child {
      font-size: 1.1em;
      margin-right: 31px;
      @media screen and (min-width: 769px) {
        font-size: inherit;
      }
    }

    > span:last-child {
      display: block;
      font-size: 0.57em;
      font-weight: bold;
      @media screen and (min-width: 769px) {
        display: inline-block;
        font-size: 0.639em;
        line-height: 2.17;
      }
    }
  }

  > p {
    font-size: 0.516em;
    font-weight: 500;
    letter-spacing: 0.25em;
    @media screen and (min-width: 769px) {
      line-height: 2.6875;
    }
  }
}

.about__catch {
  letter-spacing: 0.5em;
}
.about__catch > span {
  display: block;
}
.about__catch > span:first-child {
  font-size: 0.81em;
}

.about__inner {
  max-width: 1200px;
  width: 94%;
  margin-inline: auto;
}

.about__contentsHeading {
  text-align: center;
  font-size: 32px;
  line-height: 1.33;
  letter-spacing: 0.15em;
  @media screen and (min-width: 769px) {
    font-size: 54px;
  }

  > p {
    &:first-child {
      font-size: 0.444em;
      letter-spacing: 0.1em;
    }

    &:last-child {
      font-size: 0.5em;
      letter-spacing: 0;
      @media screen and (min-width: 769px) {
        font-size: 0.352em;
      }
    }
  }

  > h3 {
    > span {
      display: inline-block;
      font-size: 0.8em;
      letter-spacing: 0.15em;
      @media screen and (min-width: 769px) {
        font-size: 0.667em;
      }
    }
  }
}

.about__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px 0;
}
@media (min-width: 990px) {
  .about__list {
    gap: 232px 0;
  }
}

.about__item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .about__item {
    flex-direction: row;
    padding-right: 20px;
  }
}
@media (min-width: 991px) {
   .about__item {
    align-items: center;
   }
}
@media (min-width: 768px) {
  .about__item:nth-child(2n) {
    flex-direction: row-reverse;
    padding-right: 0;
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  .about__item:nth-child(2n) .about__contents {
    max-width: 612px;
    min-width: 612px;
    margin-left: 0;
    margin-right: -256px;
  }
}
.about__item:nth-child(2n) .about__contents > span {
  padding-left: 5.5em;
}
@media (min-width: 990px) {
  .about__item:nth-child(1) .about__contents {
    padding-top: 61px;
  }
}
@media (min-width: 990px) {
  .about__item:nth-child(2) .about__contents {
    padding-top: 184px;
  }
}
.about__item:nth-child(2) .about__itemCatch > span {
  padding-left: 0;
}
@media (min-width: 768px) {
  .about__item:nth-child(2) .about__itemCatch > span {
    padding-left: 5.4em;
  }
}
@media (min-width: 990px) {
  .about__item:nth-child(3) .about__contents {
    padding-top: 184px;
  }
}
.about__item:nth-child(3) .about__itemCatch > span {
  padding-left: 0;
}
@media (min-width: 768px) {
  .about__item:nth-child(3) .about__itemCatch > span {
    padding-left: 2.7em;
  }
}
@media (min-width: 990px) {
  .about__item:nth-child(4) .about__contents {
    padding-top: 330px;
  }
}
.about__item:nth-child(5) .about__itemCatch > span {
  padding-left: 0;
}
@media (min-width: 768px) {
  .about__item:nth-child(5) .about__itemCatch > span {
    padding-left: 4.1em;
  }
}
@media (min-width: 990px) {
  .about__item:nth-child(6) .about__contents {
    padding-top: 145px;
  }
}
@media (min-width: 990px) {
  .about__item:nth-child(7) .about__contents {
    padding-top: 252px;
  }
}
.about__item:nth-child(7) .about__itemCatch > span {
  padding-left: 0;
}
@media (min-width: 768px) {
  .about__item:nth-child(7) .about__itemCatch > span {
    padding-left: 6.8em;
  }
}
@media (min-width: 990px) {
  .about__item:nth-child(8) .about__contents {
    padding-top: 0px;
  }
}
.about__item:nth-child(8) .about__itemCatch {
  white-space: normal;
}
@media (min-width: 769px) {
  .about__item:nth-child(8) .about__itemCatch {
    white-space: nowrap;
  }
}

.about__imgBox {
  position: relative;
  width: 92%;
  @media (min-width: 768px) {
    width: 66.3%;
  }
}

.about__item{
  &:nth-of-type(even){
    .about__imgBox{
      margin-left: auto;
      @media (min-width: 768px) {
        margin-left: 0;
      }
    }
  }
  &:nth-of-type(odd){
    .about__imgBox{
      margin-right: auto;
      @media (min-width: 768px) {
        margin-right: 0;
      }
    }
  }
}

@media (min-width: 768px) {
  .about__imgBox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}
.about__imgBox.mask01::after {
  background: linear-gradient(135deg, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0) 20%, rgba(35, 24, 21, 0.5) 100%);
}
.about__imgBox.mask02::after {
  background: linear-gradient(195deg, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0) 20%, rgba(35, 24, 21, 0.5) 100%);
}
.about__imgBox.mask03::after {
  background: linear-gradient(125deg, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0) 20%, rgba(35, 24, 21, 0.6) 100%);
}
.about__imgBox.mask04::after {
  background: linear-gradient(315deg, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0) 20%, rgba(35, 24, 21, 0.5) 100%);
}
.about__imgBox.mask05::after {
  background: linear-gradient(135deg, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0) 20%, rgba(35, 24, 21, 0.5) 100%);
}
.about__imgBox.mask06::after {
  background: linear-gradient(260deg, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0) 20%, rgba(35, 24, 21, 0.5) 100%);
}
.about__imgBox.mask07::after {
  background: linear-gradient(135deg, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0) 20%, rgba(35, 24, 21, 0.5) 100%);
}
.about__imgBox.mask08::after {
  background: linear-gradient(315deg, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0) 20%, rgba(35, 24, 21, 0.5) 100%);
}
.about__imgBox > img {
  display: block;
  width: 100%;
}

.about__contents {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .about__contents {
    max-width: 571px;
    min-width: 571px;
    width: 100%;
    margin-left: -189px;
    padding-top: 120px;
    padding-bottom: 0;
  }
}
@media (min-width: 990px) {
  .about__contents {
    padding-top: 208px;
  }
}

.about__headingWrap {
  display: flex;
  align-items: center;
  gap: 0 34px;
}

.about__label {
  letter-spacing: -0.02em;
  padding-top: 22px;
}

.about__itemHeading {
  flex: 1;
  font-size: 40px;
}
@media (min-width: 768px) {
  .about__itemHeading {
    font-size: 60px;
  }
}

.about__itemCatch {
  font-size: 26px;
  letter-spacing: 3px;
  margin-top: 0.5em;
  @media screen and (min-width: 769px) {
    font-size: 37px;
    margin-top: 0;
  }
}

.about__bottomArea {
  padding-top: 105px;
  padding-bottom: 350px;
}
@media (min-width: 768px) {
  .about__bottomArea {
    padding-top: 369px;
    padding-bottom: 0;
  }
}

.about__bottomHeading {
  font-size: 36px;
  letter-spacing: 0.45em;
}
@media (min-width: 768px) {
  .about__bottomHeading {
    font-size: 40px;
  }
}

/* 展示場について */
.exhibition #sub01 {
  padding-top: 0;
}
.exhibition #sub02 {
  max-width: 1244px;
}
.exhibition #sub03 {
  max-width: 926px;
}
.exhibition #sub04 {
  max-width: 830px;
}

.exhibition__inner {
  max-width: 1080px;
  width: 90%;
  margin-inline: auto;
  @media (min-width: 991px) {
    width: 100%;
  }
}

.exhibition__innerSmall {
  max-width: 970px;
  width: 100%;
  margin-inline: auto;
}

.exhibition__imgBox {
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
}
@media (min-width: 769px) {
  .exhibition__imgBox {
    width: calc((100vw - 100%) / 2 + 100%);
    margin-left: calc((100vw - 100%) / -2);
  }
}

.exhibition__SubHeading{
  width: 90%;
  margin: 0 auto;
  @media (min-width: 991px) {
    width: 100%;
    margin: 0;
  }
}

.exhibition__cols {
  max-width: 1013px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5em 9.88%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .exhibition__cols {
    flex-direction: row;
  }
}

.exhibition__item {
  flex: 1;
}

.exhibition__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  padding: 2em;
}
@media (min-width: 768px) {
  .exhibition__link:hover::after {
    transform: scale(1.2);
  }
}
.exhibition__link::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url(../img/common/icon_search_gold.svg) center/contain no-repeat;
  position: absolute;
  bottom: 3em;
  right: 1.7em;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .exhibition__link::after {
    bottom: 4.5em;
  }
}
.exhibition__link > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.exhibition__table {
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
}
.exhibition__table > table {
  width: 100%;
  border-collapse: collapse;
}
.exhibition__table > table > tbody > tr > th {
  text-align: center;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #EDD8C5;
  width: 120px;
  background: #E4DED4;
  width: 100%;
  padding: 1em;
  line-height: 1.5em;
  @media (max-width: 768px) {/*スマホのみ*/
    display: block;
  }
}
@media (min-width: 769px) {
  .exhibition__table > table > tbody > tr > th {
    width: 184px;
    padding: 1.8em;
  }
}
.exhibition__table > table > tbody > tr > td {
  text-align: center;
  background: #fff;
  padding: 1em;
  @media (max-width: 768px) {/*スマホのみ*/
    display: block;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .exhibition__table > table > tbody > tr > td {
    border-bottom: 1px solid #EDD8C5;
    padding: 1.8em;
  }
}

.exhibition__shortBox {
  max-width: 680px;
  width: 90%;
  margin-inline: auto;
  @media (min-width: 769px) {
    width: 100%;
  }
}

.exhibition__accessHeading {
  font-size: 33px;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .exhibition__accessHeading {
    font-size: 37px;
  }
}

.exhibition__address {
  position: relative;
  padding-left: 58px;
  line-height: 1.85;
  @media (min-width: 769px) {
    font-size: 1.15em;
  }

}
.exhibition__address::before {
  content: "";
  display: inline-block;
  width: 28px;
  aspect-ratio: 35.2/34.5;
  background: url("../img/common/icon_map_gold.svg") center/contain no-repeat;
  position: absolute;
  top: 47%;
  left: 5px;
  transform: translateY(-50%);
  @media (min-width: 769px) {
    width: 35.2px;
    left: 0;
  }
}

.exhibition__phone {
  display: block;
  text-decoration: none;
  position: relative;
  padding-left: 58px;
  line-height: 1.85;  
}
@media (min-width: 769px) {
  .exhibition__phone {
    font-size: 1.15em;
    pointer-events: none;
  }
}
.exhibition__phone::before {
  content: "";
  display: inline-block;
  width: 25px;
  aspect-ratio: 35.2/34.5;
  background: url("../img/common/icon_tel_gold.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  @media (min-width: 769px) {
    width: 35.2px;
    left: 1px;
  }
}

.exhibition__mapBox {
  width: 100%;
  aspect-ratio: 375/468;
  overflow: hidden;
  @media (min-width: 769px) {
    aspect-ratio: 926/491;
  }
}
.exhibition__mapBox > iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  background: gray;
}

.exhibition__rootbox {
  padding-left: 1em;
}

.exhibition__rootItem {
  width: 94%;
}
.exhibition__rootItem:last-child {
  border-top: 1px solid #CCCCCC;
}

.exhibition__texts {
  padding-left: 0.5em;
}

.exhibition__attention {
  display: inline-block;
  line-height: 2.33;
  padding-left: 0.5em;
}

/* 展示場についてのフォーム */
.exhibition__contactHeading {
  font-size: 36px;
}
@media (min-width: 769px) {
  .exhibition__contactHeading {
    font-size: 41px;
  }
}
.exhibition__contactHeading > span {
  display: block;
}
.exhibition__contactHeading > span:last-child {
  font-size: 0.56em;
  letter-spacing: 0.25em;
  margin-top: 0.5em;
}

.form__fieldCols {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2em 7.99%;
}
@media (min-width: 768px) {
  .form__fieldCols {
    flex-direction: row;
  }
}

.form__fieldCol {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2em;
}