@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  /*------▼基本設定▼------*/
  --color-background: #fff;
  --color-font: #000;
  --color-primary: #FFA100;
  --color-primary-shade: ;
  --color-primary-tint: #F4D52B;
  --color-secondary: #06C755;
  --color-secondary-tint: ;
  --color-table-border: #CCC;
  --body-font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.1294), 1.6rem);
  /* 1.6-1.4rem (1920-375) */
  --body-font-family: "Noto Sans JP", sans-serif;
  --content-max-width: 1240px;
  /*------▼ヘッダー設定▼------*/
  --header-background: #fff;
  --header-color-font: #444;
  --header-color-primary: #FFA100;
  --header-secondary: #06C755;
  --header-color-primary-shade: ;
  --header-color-primary-tint: ;
  /*------▼フッター設定▼------*/
  --footer-background: #EFEFEF;
  --footer-color-font: #111;
  --footer-color-primary: ;
  /*------▼フォント設定▼------*/
  --font-family01: "Noto Sans JP", sans-serif;
  --font-family02: "Montserrat", sans-serif;
  --font-family03: ;
  --font-family04: ;
}

/*--メディアクエリ--------------------------------------------*/
@media print,
screen and (min-width: 1024px) {}

@media print,
screen and (max-width: 1023px) {}

@media print,
screen and (min-width: 769px) {}

@media print,
screen and (max-width: 768px) {}

/*--全体の設定--------------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;

  .post p {
    line-height: 2;
  }
}

/*--表示の切り替え--------------------------------------------*/

body.home .c_commoncta {
  display: none;
}

.page_contents_inner+.page_contents_inner {
  margin-top: var(--px100);
}

#content,
body:not(.home) #content.wide {
  padding: var(--px100w) 0 var(--px120);
  margin: 0 auto;
}

.fw_contents {
  margin-top: 0;
  margin-bottom: 0;
}

#content:has(.fw_contents),
body:not(.home) #content:has(.fw_contents).wide {
  padding: 0;
}

.fw_contents .page_contents_inner:nth-child(even) {
  background: var(--color-background);
}

.front_contents {
  position: relative;
  padding: var(--px160) 0;
}

/*--お知らせ　下線--------------------------------------------*/
.postlist li {
  border-top: 1px solid #ddd;
}

.postlist li:last-child {
  border-bottom: 1px solid #ddd;
}

/*--fvの比率調整--------------------------------------------*/
#mainImg img {
  width: 100% !important;
  height: auto;
}

/*--幅フル100%背景色--------------------------------------------*/

.widecolor {
  margin-right: calc(((100vw - 100%) / 2)* -1);
  margin-left: calc(((100vw - 100%) / 2)* -1);

  &.widecolor--yellow {
    background: #FFFCE8;
  }

  &.widecolor--stripe {
    background: url(/wp-content/uploads/top-question-bg.png) no-repeat center center/cover;
  }
}

@media print,
screen and (max-width: 768px) {

  .widecolor {
    padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) 0 min(calc(150px + (1vw - 19.2px) * 3.2362), 150px) 0;
    /* 120-80px (1920-375) */
  }
}

.post .widecolor>h2:first-child {
  margin-top: 0 !important;
}

.widearea {
  margin-right: calc(((100vw - 100%) / 2)* -1);
  margin-left: calc(((100vw - 100%) / 2)* -1);
}

@media print,
screen and (max-width: 768px) {

  #content,
  #content.wide {
    width: 100%;
  }

  .content_inner {
    width: 100%;
  }
}

/*----------------------------------------------
  utility
----------------------------------------------*/
/* コンテンツ幅 */
.max_w640 {
  max-width: 640px;
}

.max_w780 {
  max-width: 780px;
}

.max_w1050 {
  max-width: 1050px;
}


/* 文字色 */
.u-fc--primary {
  color: var(--color-primary);
}

.u-fc--white {
  color: var(--color-background);
}

/* 文字サイズ */
.u-fz18 {
  font-size: var(--rem18) !important;
}

.u-fz20 {
  font-size: var(--rem20w);
}

.u-fz24 {
  font-size: var(--rem24) !important;
}

.u-fz28 {
  font-size: var(--rem28);
}

.u-fz40 {
  font-size: var(--rem40w);
}

/* 行間 */
.u-lh200 {
  line-height: 2;
}

/* 下線 */
.u-under-line {
  border-bottom: 1px solid var(--color-table-border);
}

@media(max-width: 768px) {
  .u-sp--l {
    text-align: left !important;
  }

  .u-sp--fz12 {
    font-size: var(--rem12) !important;
  }

  /* サイズ調整 */
  .u-sp-w50 {
    width: 50%;
  }
}

/*----------------------------------------------
  header
----------------------------------------------*/
#header {

  a.head_btn.tel_btn {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    background: none;
    color: var(--header-color-font);
    background-color: var(--color-background);
    position: relative;

    &::before {
      content: "";
      display: block;
      background: var(--color-font);
      width: 1px;
      height: 60px;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
    }

    &:hover {
      color: var(--color-primary);
      opacity: 0.8;
    }
  }

  a.head_btn .header_tel {
    font-family: var(--font-family01);
    font-weight: 500;
    color: var(--color-primary);

    &:before {
      content: '\f095';
      display: inline-block;
      font-family: 'FontAwesome';
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1;
      margin-bottom: .1em;
      margin-right: 5px;
    }
  }

  a.head_btn .header_time {
    font-family: var(--font-family01);

    &::before {
      content: none;
    }
  }

  a.head_btn.mail_btn {
    &::before {
      content: none;
    }

    >span {
      &:before {
        content: '\f0e0';
        color: var(--header-background);
        display: block;
        font-family: 'FontAwesome';
        font-size: 2rem;
        font-weight: 400;
        line-height: 1;
        margin-bottom: .5em;
        text-align: center;
      }
    }
  }

  a.head_btn.line_btn {
    &::before {
      content: none;
    }

    >span {
      &:before {
        content: '\f3c0';
        color: var(--header-background);
        display: block;
        font-family: 'FontAwesome';
        font-size: 2rem;
        font-weight: 400;
        line-height: 1;
        margin-bottom: .5em;
        text-align: center;
      }
    }
  }


  nav#mainNav ul li a:active span,
  nav#mainNav ul li a:hover span,
  nav#mainNav ul li.current-menu-item a span,
  nav#mainNav ul li.current-menu-parent a span {
    color: var(--color-primary);
  }
}

.spmenu #menu p {
  transform: translateX(-50%);
  left: 50%;
  white-space: nowrap;
}

@media print,
screen and (min-width: 1024px) {
  nav#mainNav ul li a {
    padding: var(--px20) var(--px12);

    &:hover {
      opacity: 0.6;
    }
  }

  #header a.head_btn.mail_btn {
    background: var(--header-color-primary);
    color: var(--header-background);
    position: relative;

    &:hover {
      color: var(--header-background);
      opacity: 0.8;
    }
  }

  #header a.head_btn.line_btn {
    background: var(--header-secondary);
    color: var(--header-background);
    position: relative;

    &:hover {
      color: var(--header-background);
      opacity: 0.8;
    }
  }

  nav#mainNav ul li li {
    background: var(--color-background);
  }

  nav#mainNav ul,
  #header .header__nav-contact {
    font-family: var(--font-family02);
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  #header {

    .note,
    .inlinenote {
      font-size: var(--rem12);
      font-weight: 500;
    }
  }
}

/*-----------------------------
list
------------------------------*/
.c-list {
  display: grid;
  gap: var(--rem40);

  &.c-list--col2 {
    grid-template-columns: repeat(2, 1fr);
  }

  &.c-list--col3 {
    grid-template-columns: repeat(3, 1fr);
  }

  &.c-list--col4 {
    grid-template-columns: repeat(4, 1fr);
  }

  &.c-list--col5 {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--rem20);
  }
}

.c-flex {
  display: flex;
  gap: var(--rem40) var(--rem20);

  &.c-flex--col3 {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media(max-width: 780px) {
  .c-list {
    display: grid;
    gap: var(--rem20);

    &.c-list--col2,
    &.c-list--col3,
    &.c-list--col3.c-list--sp-col2,
    &.c-list--col4,
    &.c-list--col5,
    &.c-list--sp-col2 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}

@media(max-width: 450px) {
  .c-list {
    display: grid;
    gap: var(--rem40);

    &.c-list--col2,
    &.c-list--col3 {
      grid-template-columns: 1fr;
    }
  }
}

/*-----------------------------
リスト
------------------------------*/
.post ul.list_check>li:before,
.post ul li.list-check:before {
  content: '\f058';
  color: var(--color-primary);
  font-size: 2.6rem;
  line-height: 1.5;
}

.list-wrap {
  max-width: 550px;
  width: 100%;
  margin: var(--rem40) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--rem12);
  background: #FFFCE8;
}

/*-----------------------------
card
------------------------------*/
.card01_list {
  &.cardstyle01 {
    .card-title {
      width: 100%;
      padding: var(--rem12);
      font-size: var(--rem18);
      font-weight: bold;
      text-align: center;
      color: var(--color-background);
      background: var(--color-primary);
      margin-bottom: var(--rem20);
    }
  }
}

/*-----------------------------
btn
------------------------------*/
.linkBtn,
.post .linkBtn,
a.linkBtn,
.post .subimitarea .linkBtn input[type="submit"] {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 280px;
  font-size: var(--rem16);
  color: #fff;
  line-height: 1.8;
  text-align: center;
  background: var(--color-primary);
  font-weight: 600;
  padding: var(--rem20) 30px var(--rem20) 20px;
  margin: 0 auto 0;
  border: none;
  border-radius: 50vh;
  transition: all .3s;
}

.post .linkBtn::after,
.linkBtn::after,
a.linkBtn::after {
  border-color: #fff;
}

.post .linkBtn:hover,
.linkBtn:hover,
a.linkBtn:hover,
.post .subimitarea .linkBtn input[type="submit"]:hover {
  color: #fff;
  background: var(--color-primary);
  opacity: 0.8;
}

.post .linkBtn:hover::after,
.linkBtn:hover::after,
a.linkBtn:hover::after {
  border-color: #fff;
}

.subimitarea>.linkBtn {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.post .subimitarea .linkBtn input[type="submit"] {
  margin-top: 0;
}

/*-----------------------------
table
------------------------------*/
.post table th {
  background: #FFFCE8;
  padding: var(--rem20);
}

.post table td {
  background: #fff;
  padding: var(--rem20);
}

.post .package_parts {
  .c-investigation-pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .c-investigation-pricing-table th,
  .c-investigation-pricing-table td {
    border: 1px solid var(--color-table-border);
    padding: var(--px20) var(--px16);
    text-align: center;
    vertical-align: middle;
    color: var(--color-font);
    line-height: 1.6;
  }

  .c-investigation-pricing-table th {
    background-color: #FFFCE8;
    font-weight: bold;
    font-size: var(--px16);
  }

  .c-investigation-pricing-table td {
    font-size: var(--px16);
    background-color: var(--color-background);
  }

  .c-investigation-pricing-table th:nth-child(1) {
    width: 30%;
  }

  .c-investigation-pricing-table th:nth-child(2) {
    width: 35%;
  }

  .c-investigation-pricing-table th:nth-child(3) {
    width: 35%;
  }
}

/* --- Media Query (SP) --- */
@media screen and (max-width: 768px) {
  .post .package_parts {

    .c-investigation-pricing-table th,
    .c-investigation-pricing-table td {
      padding: var(--px14) 4px;
      font-size: var(--px12);
    }
  }
}

/*-----------------------------
お問い合わせ
------------------------------*/

.wpcf7-form .must {
  background: var(--color-primary);
  color: #fff;
}

.wpcf7-form .must.must_fn {
  background: var(--color-primary);
  color: #fff;
}

.subimitarea {
  .linkBtn {
    padding: 0;
  }
}

.page-thanks {
  h1.title.first {
    color: var(--color-font);
  }
}

/*-----------------------------
TOP
------------------------------*/
/* title */
h1.title,
.post h1 {
  font-size: var(--rem40);
  position: relative;
  margin: 0 auto var(--px60w);
}

.post .main-title,
.main-title {
  padding: calc((90 / 1920) * 100vw) 0 0;
  margin: 0 0 var(--rem40);
  border: none;
  background: transparent;
  text-align: center;
  position: relative;

  &::before {
    content: "";
    display: block;
    width: calc((190/ 1920) * 100vw);
    height: calc((90 / 1920) * 100vw);
    background: url(/wp-content/uploads/title-img.png)no-repeat center center / contain;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  &::after {
    content: none;
  }
}

@media print,
screen and (max-width: 768px) {

  .post .main-title,
  .main-title {
    padding: calc((90 / 768) * 100vw) 0 0;

    &::before {
      content: "";
      display: block;
      width: calc((190/ 768) * 100vw);
      height: calc((90 / 768) * 100vw);
      background: url(/wp-content/uploads/title-img.png)no-repeat center center / contain;
    }
  }
}

.post .secondary-title,
.secondary-title {
  margin: 0 0 var(--rem40);
  padding-bottom: var(--rem40);
  text-align: center;
  position: relative;

  &::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .secondary-title__en {
    line-height: 1;
    display: block;
    font-size: var(--rem72);
    font-weight: bold;
    font-style: italic;
    color: var(--color-primary);
  }

  .secondary-title__ja {
    display: block;
    font-size: var(--rem24);
    font-weight: bold;
    color: var(--color-font);
  }

  &.secondary-title--left {
    text-align: left;

    &::after {
      left: 0;
      transform: translateX(0);
    }
  }

  &.secondary-title--white {
    .secondary-title__en {
      color: var(--color-background);
    }

    .secondary-title__ja {
      color: var(--color-background);
    }

    &::after {
      background: var(--color-background);
    }
  }
}

/* section */
.l-question {
  .question-contents {
    padding: var(--rem80) var(--rem40);
    background: var(--color-background);
    border-radius: var(--rem40);
    border: 4px solid var(--color-primary);
  }

  .question-list_wrap {
    display: flex;
    justify-content: center;
    align-items: center;

    .list_check {
      font-size: var(--rem20w);
      font-weight: 600;

      >li {
        padding-left: 4rem;
        margin-bottom: var(--rem20);
      }
    }
  }
}

.l-answer {
  position: relative;

  &::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: calc((95 / 1920) * 100vw) solid transparent;
    border-left: calc((95 / 1920) * 100vw) solid transparent;
    border-top: calc((90 / 1920) * 100vw) solid var(--color-primary);
    border-bottom: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.column06 {
  position: relative;
  margin: 0;
}

.column06_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  z-index: 20;
}

.column06 .imgarea {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 50%;
}

.column06 .imgarea img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.column06 .txtarea {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--px80) var(--px40);
  margin: 0 auto;
  z-index: 10;
}

.column06 .txtarea .txtinner {
  max-width: 540px;
}

.column06_wrap+.column06_wrap {
  margin-top: var(--px80);
}

@media print,
screen and (min-width: 1024px) {

  /*左右反転*/
  .column06_wrap.rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media print,
screen and (max-width: 1023px) {
  .column06_wrap.rev {
    flex-direction: row;
  }

  .column06 .imgarea,
  .column06 .txtarea {
    width: 90%;
  }

  .column06 .txtarea {
    margin: 0 auto;
  }
}

/* responsive */
@media print,
screen and (max-width: 768px) {

  .l-question,
  .l-answer,
  .l-strengths,
  .l-instagram,
  .l-news {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/*-----------------------------
下層
------------------------------*/
/* kv */

#thumbImg::before,
header#h1Header::before {
  background: transparent;
}

header#h1Header h1.title {
  color: var(--color-background);
  font-weight: bold;
}

body:not(.home):not(.page-privacy) {
  h2 {
    color: var(--color-font);

    &::after {
      background: var(--color-primary);
    }
  }

  .post h3,
  h3 {
    display: block;
    width: 100%;
    font-family: var(--font-family01);
    font-size: var(--rem24w);
    font-weight: 600;
    text-align: left;
    color: var(--color-font);
    line-height: 1.4;
    overflow-wrap: break-word;
    padding: 10px var(--rem20) 10px 0;
    margin: 0 0 var(--rem30);

    &::before,
    &::after {
      content: none;
    }

    &.h3--style02 {
      border-left: 13px solid var(--color-primary);
      padding: 0 10px;
      margin-bottom: var(--rem20);
      font-size: var(--rem20);
      border-bottom: none;
    }
  }
}

/* 屋根相談.comとは */
@media print,
screen and (max-width: 768px) {
  .p-company {
    .mt2 {
      margin-top: var(--rem40) !important;
    }
  }
}

/* ご利用の流れ */
.flowlist01 {
  padding-left: 13rem;
  position: relative;
}

.flowlist01::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 13rem;
}

.flowlist01>li {
  position: relative;
}

.flowlist01>li:not(:last-child) {
  margin-bottom: 8vh;
}

.flowlist01>li .icon {
  font-size: 1.6rem;
  color: #fff;
  background: var(--color-primary);
  padding: 0.8rem 2rem;
  display: block;
  position: absolute;
  top: 0;
  left: -13rem;
  z-index: 100;
  font-style: italic;
}

.flowlist01>li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent var(--color-primary);
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flowlist01>li dl {
  padding-left: 7rem;
  position: relative;
  padding-top: 0.7rem;
}

.flowlist01>li dl::before,
.flowlist01>li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
}

.flowlist01>li dl::before {
  width: 7px;
  height: 7px;
  margin-top: 0;
  background: #1A1A1A;
  border-radius: 50%;
  left: -4px;
}

.flowlist01>li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
  top: 2.3rem;
}

.flowlist01>li dl dt {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: var(--rem24);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-primary);
}

@media (max-width: 768px) {
  .flowlist01>li .icon {
    font-size: 1.2rem;
  }

  .flowlist01 {
    padding-left: 10rem;
  }

  .flowlist01>li .icon {
    left: -11rem;
  }

  .flowlist01::before {
    left: 10rem;
  }

  .flowlist01>li dl {
    padding-left: 2.5rem;
  }

  .flowlist01>li dl::after {
    width: 15px;
  }

  .flowlist01>li dl dt {
    font-size: 1.4rem;
  }
}

.p-service {
  .ctabtnlist {
    justify-content: space-between;
    margin: var(--px50) auto 0 auto;
  }

  .ctabtnlist li {
    width: 50%;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
  }

  .item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--px30) var(--px12);
    text-align: center;
    box-sizing: border-box;
    border-radius: 0;
    transition: all ease .15s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  }

  .item:hover {
    opacity: 0.8;
  }

  @media print,
  screen and (max-width: 768px) {

    .ctabtnlist li,
    .ctabtnlist .item {
      width: 100%;
    }

    .ctabtnlist li+li {
      margin-top: 1rem;
    }

    .item {
      padding: var(--px20);
    }

    a.linebtn {
      padding: var(--px40);
    }
  }

  /*ボタン共通パーツ*/

  .btnttl {
    display: block;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .infotxt {
    font-size: var(--rem12);
    font-weight: 400;
  }

  /*電話ボタン*/

  .telnum {
    font-size: var(--rem20);
    margin-bottom: 1rem;
  }

  .telbtn .btnttl {
    font-size: var(--rem20);
  }

  a.telbtn {
    background: var(--color-primary);
    color: #fff;
  }

  /*メールボタン*/

  .mailbtn .btnttl {
    font-size: var(--rem24);
  }

  a.mailbtn {
    background: #fff;
    color: var(--color-primary);
  }

  /*LINEボタン*/

  a.linebtn {
    background: #06C755;
    color: #fff;
  }

  .linebtn .btnttl {
    font-size: var(--rem24);
    margin-bottom: 0;
  }

  /*ボタンアイコン*/

  .telnum::before,
  .mailbtn .btnttl::before,
  .linebtn .btnttl::before {
    content: '';
    display: inline-block;
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    margin-right: 1rem;
  }

  .telnum::before {
    content: '\f3cd';
  }

  .mailbtn .btnttl::before {
    content: '\f0e0';
  }

  .linebtn .btnttl::before {
    content: '\f3c0';
    font-weight: 400;
  }
}

.qa_list {
  cursor: pointer;
}

.qa_list .qa_list_inner dt {
  position: relative;
  font-weight: normal;
  margin: 1rem 0 0 0;
  display: flex;
  align-items: stretch;
  padding: 0rem 1rem 0rem 0rem;
  background: #ffffff;
  border: 1px solid #cccccc;
}

.qa_list .qa_list_inner dd .ans_flex {
  position: relative;
  font-weight: normal;
  margin: 0;
  display: flex;
  align-items: stretch;
  padding: 0;
  background: #ffffff;
}

.qa_list .qa_list_inner .a_ico {
  color: var(--color-font);
  background: #FFFCE8;
  line-height: 1.0;
  padding: 1rem 1rem 1rem 1rem;
  font-size: 2.2rem;
  border-right: 1px solid #cccccc;
  width: 100%;
  text-align: center;
  max-width: 90px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font-family);
}

.qa_list .qa_list_inner .q_ico {
  background: var(--color-primary);
  color: #fff;
  line-height: 1.0;
  padding: 1rem 1rem 1rem 1rem;
  font-size: 2.2rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
  max-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font-family);
  border-right: 1px solid #cccccc;
}

.qa_list .qa_list_inner .q_desc,
.qa_list .qa_list_inner .a_desc {
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  line-height: 1.7;
}

.qa_list .qa_list_inner .a_desc {
  line-height: 1.8;
  width: 100%;
}

.qa_list .qa_list_inner dt:after {
  content: '';
  position: absolute;
  top: 46%;
  right: 3rem;
  width: 12px;
  height: 12px;
  border-right: 1px solid #494949;
  border-bottom: 1px solid #494949;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.qa_list .qa_list_inner .active:after {
  top: 43%;
  right: 2rem;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.qa_list .qa_list_inner dd {
  display: none;
  position: relative;
  padding: 0;
  margin: 0 0 1rem 0;
  border: 1px solid #cccccc;
  border-top: 0;
}

@media only screen and (max-width: 959px) {
  .qa_list .qa_list_inner {
    margin-bottom: 8rem;
  }
}

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

  .qa_list .qa_list_inner .q_desc,
  .qa_list .qa_list_inner .a_desc {
    padding: 0.5rem 1rem 0.5rem 1rem;
  }

  .qa_list .qa_list_inner dt {
    padding: 0rem 1rem 0rem 0rem;
  }

  .qa_list .qa_list_inner .a_ico,
  .qa_list .qa_list_inner .q_ico {
    max-width: 50px;
    padding: 1.2rem 1.0rem;
  }

  .qa_list .qa_list_inner dt:after {
    right: 1.5rem;
    width: 6px;
    height: 6px;
  }

  .qa_list .qa_list_inner .active:after {
    right: 1.0rem;
  }
}

@media only screen and (max-width: 559px) {
  .qa_list .qa_list_inner dd {
    font-size: 1.4rem;
  }

  .qa_list .qa_list_inner {
    margin-bottom: 6rem;
  }

  .qa_list .qa_list_inner dt {
    font-size: 1.4rem;
  }
}


/* 選ばれる理由 */
@media (max-width: 768px) {
  .p-reason {
    .max_w1240 {
      padding-left: 5%;
      padding-right: 5%;
    }
  }
}

/*-----------------------------
マーカー
------------------------------*/
span.marker.orange {
  background: linear-gradient(transparent 60%, rgba(255, 161, 0, 0.4) 60%);
  font-weight: 600;
}

/*-----------------------------
Googleマップ
------------------------------*/
.googlemap {
  margin: 0 auto;
}

/*-----------------------------
サイトマップ
------------------------------*/
#sitemap_list {
  a {
    color: var(--color-font);
  }
}

/*-----------------------------
プライバシー・ポリシー
------------------------------*/

.page-privacy {
  h3 {
    margin-top: var(--rem40) !important;
    color: var(--color-font) !important;
    background: none !important;
    padding: 0 !important;
  }
}

/*-----------------------------
CTA
------------------------------*/
.cta02 {
  position: relative;
  padding: var(--px80) 0;
  z-index: 0;
}

.cta02:before {
  content: "";
  background: #F4D52B;
  width: 100%;
  height: 75%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.cta02 .cta02_wrap {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.cta02 .ctabtnlist {
  justify-content: space-between;
  margin: var(--px50) auto 0 auto;
}

.cta02 .ctabtnlist li {
  width: 50%;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
}

.cta02 .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--px40);
  text-align: center;
  box-sizing: border-box;
  border-radius: 0;
  transition: all ease .15s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.cta02 .item:hover {
  opacity: 0.8;
}

@media print,
screen and (max-width: 768px) {

  .cta02 .ctabtnlist li,
  .cta02 .ctabtnlist .item {
    width: 100%;
  }

  .cta02 .ctabtnlist li+li {
    margin-top: 1rem;
  }

  .cta02 .item {
    padding: var(--px60);
  }

  .cta02 a.linebtn {
    padding: var(--px100);
  }
}

/*ボタン共通パーツ*/

.cta02 .btnttl {
  display: block;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta02 .infotxt {
  font-size: var(--rem16);
  font-weight: 400;
}

/*電話ボタン*/

.cta02 .telnum {
  font-size: var(--rem36);
  margin-bottom: 1rem;
}

.cta02 .telbtn .btnttl {
  font-size: var(--rem20);
}

.cta02 a.telbtn {
  background: var(--color-primary);
  color: #fff;
}

/*メールボタン*/

.cta02 .mailbtn .btnttl {
  font-size: var(--rem24);
}

.cta02 a.mailbtn {
  background: #fff;
  color: var(--color-primary);
}

/*LINEボタン*/

.cta02 a.linebtn {
  background: #06C755;
  color: #fff;
}

.cta02 .linebtn .btnttl {
  font-size: var(--rem24);
  margin-bottom: 0;
}

/*ボタンアイコン*/

.cta02 .telnum::before,
.cta02 .mailbtn .btnttl::before,
.cta02 .linebtn .btnttl::before {
  content: '';
  display: inline-block;
  font-family: 'Font Awesome 5 Free', 'FontAwesome';
  font-weight: 900;
  margin-right: 1rem;
}

.cta02 .telnum::before {
  content: '\f3cd';
}

.cta02 .mailbtn .btnttl::before {
  content: '\f0e0';
}

.cta02 .linebtn .btnttl::before {
  content: '\f3c0';
  font-weight: 400;
}


/*-----------------------------
footer
------------------------------*/
.footer-img {
  width: 100%;

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

.footer__inner {
  width: 94%;
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: var(--px40);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
  border-bottom: solid 1px;
}

@media print,
screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

#copyright {
  width: 94%;
  max-width: 1240px;
}

/* ----------------------------
right
----------------------------*/

#footer .footnav ul {
  justify-content: flex-end;
}

@media print,
screen and (max-width: 768px) {
  #footer .footnav ul {
    justify-content: center;
    margin-top: var(--px40);
  }
}

/*footer navi ico*/

#footer .footnav ul>li {
  position: relative;
  line-height: 1.4;
  padding: 0 min(calc(16px + (1vw - 19.2px) * 0.4531), 16px) 0 25px;
  /* 16-9px、15-8px (1920-375) */
  margin-bottom: 10px;
}

#footer .footnav ul>li::before {
  left: 0;
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  margin-top: 0;
  background: transparent;
}

#footer .footnav ul>li::after {
  content: none;
}

/* ----------------------------
left
----------------------------*/

#footer .footer__logo:not(:last-child) {
  margin: 0;
  text-align: left;
}

.leftarea .logoare {
  display: flex;
  flex-direction: column;
  gap: var(--px14);
  line-height: 1;
}

.footer__catchphrase {
  line-height: 1.2;
  text-align: left;
}

@media print,
screen and (max-width: 768px) {
  #footer .footer__logo:not(:last-child) {
    text-align: center;
  }

  .footer__catchphrase {
    text-align: center;
  }
}

/* ----------------------------
SNSアイコン
----------------------------*/

/*LAYOUT調整*/

#footer .socialicon ul,
.socialicon ul {
  -webkit-box-pack: start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

#footer .socialicon ul li,
.socialicon ul li {
  padding: 0;
}

@media print,
screen and (max-width: 768px) {

  #footer .socialicon ul,
  .socialicon ul {
    justify-content: center;
  }
}

/*アイコンサイズ調整*/

#footer .socialicon .fa-facebook:before,
#footer .socialicon .fa-twitter:before,
#footer .socialicon .fa-youtube:before,
#footer .socialicon .fa-instagram:before,
#footer .socialicon .fa-x-twitter:before,
#footer .socialicon .fa-line:before,
#footer .socialicon .fa-tiktok:before {
  font-size: var(--rem24);
}


/*-----------------------------
news
------------------------------*/