@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=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap');


:root {
  /*------▼基本設定▼------*/
  --color-background: #fff;
  --color-font: #111111;
  --color-primary: #17432C;
  --color-primary-shade: ;
  --color-primary-tint: #F0F8F4;
  --color-secondary: #604807;
  --color-secondary-tint: #E08908;
  --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: #242424;
  --header-color-primary: #E08908;
  --header-secondary: #06C755;
  --header-color-primary-shade: #17432C;
  --header-color-primary-tint: ;
  /*------▼フッター設定▼------*/
  --footer-background: #EFEFEF;
  --footer-color-font: #111111;
  --footer-color-primary: ;
  /*------▼フォント設定▼------*/
  --font-family01: "Noto Sans JP", sans-serif;
  --font-family02: "Lato", 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.page-contact .c_commoncta,
body.page-sitemap .c_commoncta,
body.page-privacy .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);
}

/*--お知らせ　下線--------------------------------------------*/
.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);
  background-color: var(--color-primary-tint);

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

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

  .widecolor {
    padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) 5% min(calc(150px + (1vw - 19.2px) * 3.2362), 150px) 5%;
    /* 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);
}

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

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

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

.u-fz30 {
  font-size: var(--rem30);
}

.u-fz36 {
  font-size: var(--rem36);
}

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

.u-lh140 {
  line-height: 1.4 !important;
}

@media(max-width: 768px) {
  .u-sp--l {
    text-align: left !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;
    }

    .note {
      text-align: center;

      b {
        display: block;
      }
    }
  }

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

    &:last-child {
      padding-right: var(--px24);
    }

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

  nav#mainNav ul li a b,
  nav#mainNav ul li a span {
    font-weight: 600;
  }
}

nav#mainNav ul li.current-menu-item a b,
nav#mainNav ul li a:hover b,
nav#mainNav ul li a:active b,
nav#mainNav ul li.current-menu-parent a b {
  color: inherit;
}

nav#mainNav ul li li a,
nav#mainNav ul li li.current-menu-item li a,
nav#mainNav ul li.current-menu-ancestor li a,
nav#mainNav ul li.current-menu-item li a {
  color: var(--color-font);
}

/*-----------------------------
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);

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

    .c-flex__item {
      width: calc((100% / 3) - var(--rem40));
      border: 1px solid #CCCCCC;
    }
  }
}

@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,
    &.c-list--col4 {
      grid-template-columns: 1fr;
    }
  }

  .c-flex {
    &.c-flex--col3 {
      .c-flex__item {
        width: calc((100% / 2) - var(--rem40));
      }
    }
  }
}

/*-----------------------------
リスト
------------------------------*/

/*-----------------------------
card
------------------------------*/

.cardstyle01 {

  .imgarea {
    border-radius: var(--rem20);
    overflow: hidden;
    margin-bottom: var(--rem20);
  }

  .cardstyle01__title {
    font-size: var(--rem20w);
    text-align: center;
    margin-bottom: var(--rem20);
    font-weight: bold;
  }
}

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

  &::after {
    border-color: #fff;
  }

  &:hover {
    color: #fff;
    background: var(--color-secondary);
    opacity: 0.8;

    &::after {
      border-color: #fff;
    }
  }
}

a.linkBtn:hover .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: var(--color-primary);
  color: var(--color-background);
}

.post table td {
  background: #fff;
}

.post table th,
.post table td {
  padding: var(--rem20) var(--rem16);
}

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

.wpcf7-form .must {
  background: var(--color-background);
  color: var(--color-font);
}

.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 */
.post .main-title,
.main-title {
  padding: 0;
  margin: 0 0 var(--rem40);
  border: none;
  background: transparent;
  text-align: center;
  position: relative;
  color: var(--color-primary);
  font-size: var(--rem40);
  font-weight: bold;


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

  &:after {
    content: '';
    position: relative;
    visibility: visible;
    display: block;
    width: var(--px80);
    height: 3px;
    margin: var(--rem14) auto 0;
    background: var(--color-primary);
  }

  &.main-title--white {
    color: var(--color-background);

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

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

    &::after {
      margin: var(--rem14) auto 0 0;
    }
  }
}

/* l-about */
.fullwide03 {
  position: relative;
  background: transparent;
}

.fullwide03:before {
  content: "";
  background: url(/wp-content/uploads/l-about-bg.jpg) no-repeat center center / cover;
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.fullwide03_wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullwide03_inner {
  max-width: 1240px;
  width: 100%;
}

.fullwide01 {
  position: relative;
  background: url(/wp-content/uploads/line-bg.jpg) no-repeat center center / cover;
}

.fullwide01_wrap {
  background: rgba(255, 255, 255, .9);
  max-width: 1600px;
  width: 94%;
  margin: 0 auto;
  padding: var(--px80);
  display: block;
  border-radius: var(--rem20);
  overflow: hidden;
}

.fullwide01_inner {
  max-width: 1600px;

  p {
    max-width: 920px;
    margin: 0 auto;
  }
}

@media print,
screen and (max-width: 768px) {
  .fullwide01_wrap {
    padding: var(--px80) 5%;
  }

  .fullwide03:before {
    height: 20%;
  }
}

.l-line {
  .ctabtnlist {
    justify-content: center;
    gap: var(--rem20);
    max-width: 1420px;
    margin: var(--px50) auto 0 auto;

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

  a.item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--px30) 0;
    text-align: center;
    box-sizing: border-box;
    color: #111;
    border-radius: 0;
    transition: all ease .15s;

    &:hover {
      opacity: 0.8;
    }
  }

  .infotxt {
    font-size: var(--rem18);
    font-weight: 400;
    line-height: 1.5;
  }

  .btnttl {
    display: block;
    font-weight: bold;
  }

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

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

  a.telbtn {
    font-family: var(--font-family02);
    color: var(--color-background);
    background: var(--color-primary);
    font-weight: bold;
    border-radius: var(--rem20);
    overflow: hidden;
  }

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

  a.mailbtn {
    background: var(--header-secondary);
    color: var(--color-background);
    border-radius: var(--rem20);
  }

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

  a.purchasingbtn {
    background: var(--color-secondary-tint);
    color: var(--color-background);
    border-radius: var(--rem20);
  }

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

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

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

@media print,
screen and (max-width: 768px) {
  .l-line {
    & .ctabtnlist {
      li {
        width: 100%;
      }

      li+li {
        margin-top: var(--rem20);
      }

    }

    a.mailbtn,
    a.item {
      padding: var(--rem48) 20px;
    }
  }
}


.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;
  overflow: hidden;
  width: 50%;
  border-radius: 0 var(--rem40) var(--rem40) 0;
}

.column06 .rev .imgarea {
  border-radius: var(--rem40) 0 0 var(--rem40);
}

.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 .imgarea,
  .column06 .txtarea {
    width: 90%;
  }

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

.flowlist02 {
  padding-left: 5rem;
  position: relative;
}

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

.flowlist02>li {
  position: relative;
}

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

.flowlist02>li .icon {
  font-size: var(--body-font-size);
  width: 5rem;
  height: 5rem;
  color: #fff;
  font-weight: bold;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: -2.5rem;
  z-index: 100;
  border-radius: 50vh;
}

.flowlist02>li .icon::after {
  content: none;
}

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

.flowlist02>li dl::before {
  content: none;
}

.flowlist02>li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
}

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

.flowlist02>li dl dt {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: var(--rem20w);
  padding-bottom: 10px;
  border-bottom: dotted 2px
}

@media (max-width: 768px) {
  .flowlist02 {
    padding-left: 2rem;
  }

  .flowlist02>li .icon {
    left: -3.5rem;
  }

  .flowlist02::before {
    left: 1rem;
  }

  .flowlist02>li dl {
    padding-left: 4.5rem;
  }

  .flowlist02>li dl::after {
    width: 30px;
  }

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

.l-promise {
  background: #F0F8F4;

}

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

  .l-promise,
  .l-about,
  .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;
}


/* 会社概要 */
.p-company {
  #content01 .company-bg01 {
    background: url(/wp-content/uploads/company-bg.png) no-repeat center center/contain;
  }
}

/* 宅配買取 */
.p-purchasing {
  .fullwide03:before {
    background: url(/wp-content/uploads/purchasing-bg.png) no-repeat center center / cover;
    background-color: #00000017;
    height: 70%;
    top: initial;
    bottom: 0;
  }

  .shop-info {
    background: var(--color-background);
    padding: var(--px40);
    display: flex;
    flex-direction: column;
    justify-content: center;

    .googlemap {
      padding-top: 0;
    }
  }
}

@media print,
screen and (max-width: 768px) {
  .p-purchasing {
    #content03 {
      padding-left: 5%;
      padding-right: 5%;
    }
  }

}

/* 買取内容 */
.p-service {
  .fullwide01 {
    position: relative;
    background: var(--color-primary);
  }

  .fullwide01_wrap {
    background: #eee;
    max-width: 1240px;
    width: 94%;
    margin: 0 auto;
    padding: var(--px80);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .fullwide01_inner {
    max-width: 960px;
  }
}

@media print,
screen and (max-width: 768px) {
  .p-service {
    .fullwide01_wrap {
      padding: var(--px80) 5%;
    }
  }
}

.customer-voice {
  .customer-voice__inner {
    padding: var(--rem40) var(--rem20);
    border: 1px solid var(--color-font);
  }

  .customer-voice__name {
    text-align: center;
    font-size: var(--rem20w);
    padding: 0.5em;
    margin-bottom: var(--rem20);
    border-bottom: 1px solid var(--color-font);
  }
}

/*-----------------------------
よくあるご質問
------------------------------*/
.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: #ffffff;
  background: var(--color-primary);
  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: #f2f2f2;
  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;
  }
}


/*-----------------------------
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 {
  background: url(/wp-content/uploads/cta-bg.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 0;
}

.cta02 .cta02_wrap {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  padding: var(--px80);
}

.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 a.item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--px40) 0;
  text-align: center;
  box-sizing: border-box;
  color: #111;
  border-radius: 0;
  transition: all ease .15s;
}

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

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

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

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

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

.cta02 .btnttl {
  display: block;
  font-weight: bold;
}

.cta02 .infotxt {
  font-size: var(--rem18);
  font-weight: 400;
  margin-top: 1rem;
  line-height: 1.5;
}

/*電話ボタン*/

.cta02 .telnum {
  font-size: var(--rem36);
}

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

.cta02 a.telbtn {
  font-family: var(--font-family02);
  color: var(--color-background);
  background: var(--color-primary);
  font-weight: bold;
}

/*メールボタン*/

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

.cta02 a.mailbtn {
  background: var(--color-secondary-tint);
  color: var(--color-background);
}


/*LINEボタン*/

.cta02 a.linebtn {
  background: var(--header-secondary);
  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
------------------------------*/
.socialicon {
  display: flex;
  justify-content: center;
}

#footer ul {
  margin: initial;
}

.icon-note {
  width: 50px;

  img {
    width: 100%;
  }
}


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

  .fa,
  .fa-brands,
  .fa-classic,
  .fa-regular,
  .fa-solid,
  .fab,
  .far,
  .fas {
    width: auto;
  }
}


/*-----------------------------
news
------------------------------*/
.post .time,
.postlist .time,
.post2b .time,
.post4b .time {
  background: var(--color-secondary);
}

.post .time a,
.post2b .time a,
.post4b .time a,
.postlist .time a {
  color: var(--color-font);
}

/* ----------------------------
TOPへボタン
----------------------------*/
a#scrollUp {
  background: var(--color-secondary);
  opacity: 1;
}

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

  a#scrollUp {
    bottom: 70px;
  }
}