@charset "UTF-8";

:root {
  --c-crimson: #7f0019;
  --c-crimson60: #b26675;
  --c-crimson20: #e5ccd1;
  --c-grey100: #5c5a5a;
  --c-grey60: #9d9c9c;
  --c-grey20: #dedede;
  --c-beige: #f3e9cc;
  --c-beige60: #f8f2e0;
  --c-beige30: #fcf8f0;
  --c-font: #3C3C43;
  --c-font60: #8a8a8e;
  --c-font20: #d8d8d9;
  --c-bg: #F5F5F5;
  --c-crimson-filter: brightness(0) saturate(100%) invert(9%) sepia(53%) saturate(6618%) hue-rotate(338deg) brightness(89%) contrast(109%);
  --c-white: #fff;

  --container-xl: 1128px;
  --container-lg: 936px;
  --container-md: 744px;
  --container-sm: 648px;

  --gutter-pc: 33px;
  --gutter-tb: 60px;
  --gutter-sp: 23.5px;

  --width-pc: 1920;
  --height-pc: 1080;

  --width-sp: 375;
  --height-sp: 667;
}

/*******************************************************************************
コンテナー
*******************************************************************************/

.l-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-pc);
  padding-right: var(--gutter-pc);
}

.l-container.--xl {
  width: min(100%, calc(var(--container-xl) + (var(--gutter-pc) * 2)));
}

.l-container.--lg {
  width: min(100%, calc(var(--container-lg) + (var(--gutter-pc) * 2)));
}

.l-container.--md {
  width: min(100%, calc(var(--container-md) + (var(--gutter-pc) * 2)));
}

.l-container .l-container {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1128px) {
  .l-container {
    padding-left: var(--gutter-tb);
    padding-right: var(--gutter-tb);
  }

  .l-container.--xl,
  .l-container.--lg,
  .l-container.--md {
    width: min(100%, calc(648px + (var(--gutter-tb) * 2)));
  }
}

@media (max-width: 648px) {
  .l-container {
    padding-left: var(--gutter-sp);
    padding-right: var(--gutter-sp);
  }

  .l-container.--xl,
  .l-container.--lg,
  .l-container.--md {
    width: min(100%, calc(328px + (var(--gutter-sp) * 2)));
  }
}

/*******************************************************************************
ヘッダー
*******************************************************************************/

.c-header__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 648px) {
  .c-header__title {
    font-size: 2rem;
  }
}

.c-header__txt {
  font-size: 1.6rem;
  margin-top: 10px;
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

@media (max-width: 648px) {
  .c-header__txt {
    font-size: 1.4rem;
    margin-top: 5px;
  }
}

.c-header__txt.--center {
  text-align: center;
}

/*******************************************************************************
ボーダー
*******************************************************************************/

.u-border-top-dashed {
  border-top: 1px dashed var(--c-grey20);
}

.u-border-top-dashed-pseudo {
  position: relative;
}

.u-border-top-dashed-pseudo::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: min(100%, var(--container-xl));
  border-top: 1px dashed var(--c-grey20);
}

@media (max-width: 648px) {
  .u-border-top-dashed-pseudo::before {
    width: min(calc(100% - (var(--gutter-sp) * 2)), var(--container-xl));
  }
}

.u-border-top {
  border-top: 1px solid var(--c-grey20);
}

.u-border-top.--sp {
  border-top: none;
}

@media (max-width: 648px) {
  .u-border-top.--sp {
    border-top: 1px solid var(--c-grey20);
  }
}

/*******************************************************************************
サイド固定ボタン
*******************************************************************************/

.c-fixed-side-btn {
  transition: opacity 350ms ease, bottom 350ms ease;
  position: fixed;
  right: 0;
  top: 160px;
  height: max-content;
  writing-mode: vertical-rl;
  line-height: 100%;
  padding: 33px 20.5px 30px;
  text-decoration: none;
  background: #3C3C43;
  border-radius: 8px 0 0 8px;
  z-index: 999;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  font-size: 1.6rem;
}

/* SP */
@media only screen and (max-width:768px) {
  .c-fixed-side-btn {
    display: flex;
    justify-content: center;
    width: 334.14px;
    height: 54.14px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    border-radius: 6px;
    padding: 0;
    writing-mode: unset;
    top: auto;
    line-height: 1.8;
  }

  .c-fixed-side-btn.hide {
    opacity: 0;
    bottom: -74px;
    transition: opacity 350ms ease, bottom 350ms ease;
  }
}

.c-fixed-side-btn__label {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.c-fixed-side-btn__label::after {
  content: "";
  display: block;
  margin-top: 4px;
  width: 17px;
  height: 17px;
  background: url(../images/2510air/icon_button_arrow.svg) center/contain no-repeat;
}

/* SP */
@media only screen and (max-width:768px) {
  .c-fixed-side-btn__label::after {
    background: none;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin-top: 0;
    margin-left: 4px;
  }
}


/*******************************************************************************
表示、非表示
*******************************************************************************/

.u-show-sp {
  display: none;
}

@media (max-width: 648px) {
  .u-show-sp {
    display: block;
  }
}

@media (max-width: 648px) {
  .u-hide-sp {
    display: none;
  }
}

/*******************************************************************************
両端揃え
*******************************************************************************/

.u-text-justify {
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

/*******************************************************************************
btn
*******************************************************************************/

.btn.--center {
  display: flex;
  justify-content: center;
}

.btn .boxed-btn {
  padding: 24px 19px;
  background: var(--c-white);
}

.btn .boxed-btn span {
  font-weight: normal;
  margin-right: 8px;
}

.boxed-btn {
  background: none;
  border: none;
  outline: none;
  appearance: none;
  padding: 0;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: inline-flex;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  padding: 19.5px 19px;
  transition: border-color 0.15s ease-out;
}

.boxed-btn.--black {
  background-color: #3C3C43;
  color: #fff;
}

.boxed-btn::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='28' viewBox='0 0 16 28'%3e%3cpath d='M1.5 1l13 13-13 13' fill='none' stroke='black' stroke-width='2'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 8px;
  height: 14px;
}

.boxed-btn.--black::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);
}

.boxed-btn:hover {
  border-color: black;
}

.boxed-btn>span {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 17.5px;
}

.boxed-btn::after {
  content: "";
  flex: 0 0 auto;
}

.boxed-btn::after {
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.boxed-btn:hover::after {
  transform: translateX(50%);
}

/*******************************************************************************
ベース
*******************************************************************************/

.p-2510air img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}

/*******************************************************************************
First Visual
*******************************************************************************/

.fv {
  position: relative;
}

.fv img {
  width: 100%;
}

.fv__logo {
  position: absolute;
  top: calc(297 / 1080 * 100%);
  right: calc(492 / 1920 * 100%);
  width: calc(40 / 1920 * 100%);
}

@media screen and (max-width: 767px) {
  .fv__logo {
    top: calc(474 / 667 * 100%);
    right: calc(287 / 375 * 100%);
    width: calc(24 / 375 * 100%)
  }
}

.fv__txt {
  position: absolute;
  bottom: calc(100 / 1080 * 100%);
  left: calc(492 / 1920 * 100%);
  width: calc(167 / 1920 * 100%);
}

@media screen and (max-width: 768px) {
  .fv__txt {
    bottom: calc(334 / 667 * 100%);
    left: calc(262 / 375 * 100%);
    width: calc(90 / 375 * 100%)
  }
}

/*******************************************************************************
アバウト
*******************************************************************************/

.about {
  padding: 80px 0 160px;
}

@media screen and (max-width: 768px) {
  .about {
    padding: 40px 0 95px;
  }
}

.about__txt {
  width: min(100%, 689px);
  margin: auto;
}

@media screen and (max-width: 768px) {
  .about__txt {
    width: min(100%, 300px);
  }
}

/*******************************************************************************
スティッキーコンテンツ
*******************************************************************************/

.u-m-b-md {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .u-m-b-md {
    margin-bottom: 15px;
  }
}

.onnetsu__sticky--Box {
  position: sticky;
  top: 0px;
  background: #fff;
  box-sizing: border-box;
  padding: 5vh 0;
  min-height: 100vh;
  box-shadow: 0px -8px 4px rgb(0 0 0 / 0.08);
}

.onnetsu__sticky--BoxContent {
  display: grid;
  grid-template-columns: 648fr 458px;
  column-gap: 24px;
  width: min(100%, 1130px);
  margin: auto;
  align-items: center;
  /* max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center; */
}

.onnetsu__sticky--BoxContent .img {
  /* max-width: 685px;
  width: 100%; */
  position: relative;
}

.onnetsu__sticky--BoxContent .img__Time {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.onnetsu__sticky--BoxContent .txt {
  padding: 0 40px;
  margin-top: 100px;
}

.onnetsu__sticky--BoxContent .txt__Title {
  line-height: 1.8;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.onnetsu__sticky--BoxContent .txt__Txt {
  font-size: 1.4rem;
  line-height: 1.8;
}

.onnetsu__sticky--BoxContent .txt__BtnWrap {
  margin-top: 0px;
  display: flex;
  justify-content: flex-start;
}

.onnetsu__sticky--BoxContent .txt__BtnWrap .txt__Btn {
  margin-left: 10px;
}

.onnetsu__sticky--BoxContent .txt__BtnWrap .txt__Btn:first-child {
  margin-left: 0px;
}

.onnetsu__sticky--BoxContent .txt__Btn {
  margin-top: 30px;
}

.onnetsu__sticky--Box.t1700 {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ced0d8+0,fedfc2+26,ffffff+53 */
  background: #ced0d8;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ced0d8 0%, #fedfc2 26%, #ffffff 53%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ced0d8 0%, #fedfc2 26%, #ffffff 53%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ced0d8 0%, #fedfc2 26%, #ffffff 53%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ced0d8', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}

.onnetsu__sticky--Box.t2100 {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ced0d8+0,ffffff+53 */
  background: #ced0d8;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ced0d8 0%, #ffffff 53%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ced0d8 0%, #ffffff 53%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ced0d8 0%, #ffffff 53%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ced0d8', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .onnetsu__sticky--Box {
    /*position: sticky;*/
    /*position: relative;*/
    top: 0px;
  }

  .onnetsu__sticky--BoxContent {
    display: block;
  }

  .onnetsu__sticky--BoxContent .img {
    text-align: center;
  }

  .onnetsu__sticky--BoxContent .img__Time {
    position: absolute;
    top: 0;
    left: var(--gutter-sp);
  }

  .onnetsu__sticky--BoxContent .img__Time img {
    max-height: 49px;
  }

  .onnetsu__sticky--BoxContent .img__Ils {
    position: relative;
    margin-top: 0vh;
    max-width: 320px !important;
  }

  .onnetsu__sticky--BoxContent .txt {
    padding: 0 30px;
    max-width: 100%;
    margin-top: 0px;
  }

  .onnetsu__sticky--BoxContent .txt__Title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .onnetsu__sticky--BoxContent .txt__BtnWrap {
    margin-top: 0px;
    display: block;
  }

  .onnetsu__sticky--BoxContent .txt__BtnWrap .txt__Btn {
    margin-left: 0px;
  }

  .onnetsu__sticky--BoxContent .txt__BtnWrap .txt__Btn:first-child {
    margin-left: 0px;
  }

  .onnetsu__sticky--BoxContent .txt__Btn {
    text-align: center;
    margin-top: 30px;
  }

  .onnetsu__sticky--BoxContent .txt__Btn a {
    margin-bottom: 0;
  }

  .onnetsu__sticky--Box.t1700 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ced0d8+0,fedfc2+26,ffffff+53 */
    background: #ced0d8;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ced0d8 0%, #fedfc2 26%, #ffffff 53%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ced0d8 0%, #fedfc2 26%, #ffffff 53%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ced0d8 0%, #fedfc2 26%, #ffffff 53%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ced0d8', endColorstr='#ffffff', GradientType=0);
    /* IE6-9 */
  }

  .onnetsu__sticky--Box.t2100 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ced0d8+0,ffffff+53 */
    background: #ced0d8;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ced0d8 0%, #ffffff 53%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ced0d8 0%, #ffffff 53%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ced0d8 0%, #ffffff 53%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ced0d8', endColorstr='#ffffff', GradientType=0);
    /* IE6-9 */
  }
}

.lead__center {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .lead__center {
    text-align: left;
    margin-bottom: 30px;
  }
}

.minmunT {
  font-size: 11px;
  color: #6D6D72;
}

.color-button {
  align-items: center;
  appearance: none;
  background: #7F0019;
  border-radius: 5px;
  display: inline-flex;
  font-size: 14px;
  font-weight: bold;
  justify-content: center;
  line-height: calc(26 / 14);
  margin: 0 0px 20px;
  max-width: 100%;
  outline: none;
  padding: 14px 15px;
  text-decoration: none;
  transition: all 0.15s ease-out;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: #fff;
}

.color-button:hover {
  opacity: 0.7;
  color: #fff;
}

.color-button:hover::after {
  transform: rotate(45deg) translate(50%, -50%);
}

.color-button::after {
  margin-left: 10px;
  transition: all 0.15s ease-out;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg) translate(0%, 0%);
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}


.p-sticky-footer {
  margin-top: 90px;
}

/*******************************************************************************
モーダル
*******************************************************************************/

.contentMordal {
  transition: all 0.5s ease;
  z-index: 100;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.contentMordal__Bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
}

.contentMordal__Area {
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);
  background: #fff;
  font-weight: bold;
  position: fixed;
  border-radius: 5px;
  z-index: 101;
  max-width: 410px;
  width: 100%;
  max-height: 80vh;
  left: 50%;
  top: 20vh;
  transform: translateX(-50%);
  overflow: scroll;
}

.contentMordal__Area.select {
  opacity: 1;
  visibility: visible;
  top: 10vh;
}

.contentMordal__Area--Title {
  text-align: left;
  padding: 15px;
  font-size: 18px;
}

.contentMordal__Area--Title img {
  vertical-align: middle;
  margin-right: 10px;
  width: 60px;
}

.contentMordal__Area--Img img {
  width: 100%;
  max-width: 100%;
}

.contentMordal__AreaCon {
  padding: 30px;
  font-size: 16px;
  font-weight: normal;
  line-height: calc(30 / 16);
}

.contentMordal__Area--Tel {
  font-weight: normal;
}

.contentMordal__Area--Tel a {
  text-decoration: underline;
}

.contentMordal__Area--Mail {
  font-weight: normal;
}

.contentMordal__Area--Mail a {
  text-decoration: underline;
}

.contentMordal__Area--Date {
  font-weight: normal;
}

.contentMordal__Area--Yoyaku {
  margin-bottom: 35px;
  text-align: center;
}

.contentMordal__Area--Car {
  margin-top: 30px;
}

.contentMordal__Area--Dis {
  font-weight: normal;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #000;
}

.contentMordal__Area .modal__close {
  cursor: pointer;
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  right: 15px;
  top: 18px;
}

.contentMordal.open {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  .contentMordal__Area {
    width: calc(100% - 40px);
    max-height: calc(100vh - 40px);
  }

  .contentMordal__Area.select {
    top: 20px;
  }

  .contentMordal__Area--Title {
    font-size: 16px;
  }

  .contentMordal__AreaCon {
    padding: 20px;
    font-size: 14px;
  }
}

/*******************************************************************************
環境を分析し〜「+AIR」
*******************************************************************************/

.p-air {
  padding-top: 90px;
}

.p-air-header__title {
  width: min(100%, 495px);
  margin: auto;
}

@media (max-width: 648px) {
  .p-air-header__title {
    width: min(100%, 240px);
    margin-left: 0;
  }
}

.p-air-header__txt {
  font-size: 1.4rem;
  line-height: 1.8;
  width: min(100%, 552px);
  margin: 40px auto 0;
}

.p-air-body {
  margin-top: 120px;
}

@media (max-width: 648px) {
  .p-air-body {
    margin-top: 40px;
  }
}

.p-air-content-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 105px;
}

@media (max-width: 648px) {
  .p-air-content-wrapper {
    row-gap: 40px;
  }
}

.p-air-content__title {
  margin: auto;
}

.p-air-content__title.--solar {
  width: min(100%, 349px);
}

@media (max-width: 648px) {
  .p-air-content__title.--solar {
    width: min(100%, 199px);
  }
}

.p-air-content__title.--amount {
  width: min(100%, 285px);
}

@media (max-width: 648px) {
  .p-air-content__title.--amount {
    width: min(100%, 160px);
  }
}

.p-air-content__body {
  margin-top: 40px;
}

@media (max-width: 648px) {
  .p-air-content__body {
    margin-top: 20px;
  }
}

.p-air-content__video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.p-air-footer {
  margin-top: 40px;
}

/*******************************************************************************
快適に設計〜ご体感ください・
*******************************************************************************/

.p-modelhouse {
  padding-top: 80px;
}

.p-modelhouse-header__title {
  width: min(100%, 546px);
  margin: auto;
}

@media (max-width: 648px) {
  .p-modelhouse-header__title {
    width: min(100%, 229px);
    margin-left: 0;
  }
}

.p-modelhouse-header__txt {
  font-size: 1.4rem;
  line-height: 1.8;
  width: min(100%, 552px);
  margin: 40px auto 0;
}

.p-modelhouse-body {
  margin-top: 110px;
}

@media (max-width: 648px) {
  .p-modelhouse-body {
    margin-top: 80px;
  }
}

.p-modelhouse-content {
  display: grid;
  grid-template-columns: 552fr 552fr;
  column-gap: calc(24 / 1128 * 100%);
}

@media (max-width: 648px) {
  .p-modelhouse-content {
    grid-template-columns: none;
  }
}

.p-modelhouse-content__img {
  width: 100%;
}

.p-modelhouse-content__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 calc(48 / 552 * 100%);
  padding-top: 32px;
}

@media (max-width: 648px) {
  .p-modelhouse-content__body {
    padding: 0;
    margin-top: 20px;
    align-items: flex-start;
  }
}

.p-modelhouse-content__title {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
}

@media (max-width: 648px) {
  .p-modelhouse-content__title {
    order: 1;
  }
}

.p-modelhouse-content__list {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  margin-top: 40px;
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (max-width: 648px) {
  .p-modelhouse-content__list {
    order: 3;
  }
}

.p-modelhouse-content__list li {
  position: relative;
  padding-left: 2em;
}

@media (max-width: 648px) {
  .p-modelhouse-content__list li {
    padding-left: 1.5em;
  }
}

.p-modelhouse-content__list li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-modelhouse-content__button {
  margin-top: 40px;
}

@media (max-width: 648px) {
  .p-modelhouse-content__button {
    order: 2;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-modelhouse-footer {
  margin-top: 100px;
}

@media (max-width: 648px) {
  .p-modelhouse-footer {
    margin-top: 40px;
  }
}

/*******************************************************************************
よくあるご質問
*******************************************************************************/

.p-qa {
  padding-top: 120px;
}

@media (max-width: 648px) {
  .p-qa {
    padding-top: 80px;
  }
}

.p-qa-body {
  margin-top: 40px;
}

@media (max-width: 648px) {
  .p-qa-body {
    margin-top: 20px;
  }
}

.qandaArea {
  padding-bottom: 40px;
}

.qandaArea__box {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
  margin: 0 auto 20px auto;
  font-size: 1.4rem;
  line-height: 2.6rem;
  max-width: 760px;
  box-sizing: border-box;
  padding: 30px 40px;
  border-radius: 5px;
}

.qandaArea__box--title {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 3rem;
  margin-bottom: 30px;
}

.qandaArea__box--title p {
  display: flex;
}

.qandaArea__box--title .qTxt {
  font-size: 3.6rem;
  line-height: 3rem;
  margin-right: 1rem;
}

.qandaArea__box--txt p {
  margin-bottom: 20px;
}

.qandaArea__box--txt p:last-child {
  margin-bottom: 0;
}

.qandaArea__box--txt p a {
  text-decoration: underline;
}

.qandaArea__box--li {
  display: flex;
}

.qandaArea__box .btnWrap {
  margin: 30px auto 0 auto !important;
}

.qandaArea .btnWrap {
  text-align: center;
  margin: 40px auto 0 auto;
}

@media (min-width: 768px) {
  .qandaArea {
    padding-bottom: 50px;
  }

  .qandaArea__box {
    font-size: 1.6rem;
    line-height: 3rem;
  }

  .qandaArea__box--title {
    display: flex;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 3rem;
    margin-bottom: 30px;
  }

  .qandaArea__box--txt p {
    margin-bottom: 20px;
  }

  .qandaArea__box--txt p:last-child {
    margin-bottom: 0;
  }

  .qandaArea__box--txt p a {
    text-decoration: underline;
  }

  .qandaArea .btnWrap {
    margin: 50px auto 0 auto;
  }
}

/*******************************************************************************
資料請求〜メールニュース登録
*******************************************************************************/

.p-info-link {
  padding: 80px 0 100px;
}

@media (max-width: 648px) {
  .p-info-link {
    padding: 50px 0 150px;
  }
}

.p-info-link-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  row-gap: 16px;
}

@media (max-width: 648px) {
  .p-info-link-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-info-link-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 0;
}

.p-info-link-list__link {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  box-shadow: 0 0 4px rgb(0 0 0 / 0.08);
  border-radius: 4px;
}

.p-info-link-list__title {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  width: fit-content;
  margin: auto;
  line-height: 1.6;
  padding: 8px 10px;
}

.p-info-link-list__title::after {
  content: "";
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  width: 11px;
  height: 11px;
  transform: rotate(45deg);
  margin-left: 15px;
}

@media (max-width: 648px) {
  .p-info-link-list__title::after {
    width: 8px;
    height: 8px;
    margin-left: 10px;
  }
}