@charset "utf-8";

/*-------------------------------------------------------------------------------------
LP基本設定
----------------------------------------------------------------------------------------*/
/* モバイル向け */
html {
  font-size: calc((100vw / 75));
}

/* モバイル　&　タブレット */
@media screen and (min-width:751px) and (max-width:1040px) {
  html {
    font-size: calc((100vw / 104));
  }
}

/* PC */
@media screen and (min-width: 1041px) {
  html {
    font-size: 62.5%;
  }
}



body {
  line-height: 1.7;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  color: var(--text-color);
  letter-spacing: 0.04em;
}

@media screen and (min-width: 751px) {
  body {
    font-size: 1.8rem;
  }
}


/* 見出し */
h1 {
  line-height: 1;
}

h2,
h3,
h4,
h5,
h6 {
  line-height: 1.35;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* table */
table th,
table td {
  line-height: 1.5;
}

/* li */
li {
  line-height: 1.5;
}

/* dl */
dt {
  line-height: 1.5;
}

dd {
  line-height: 1.7;
}

/* 段落 */
p {
  text-align: justify;
  font-size: 3.2rem;
  font-weight: 500;
}

@media screen and (min-width: 751px) {
  p {
    font-size: 1.8rem;
  }
}



/* anchor link */
a {
  color: #000;
}

/* ホバー */
a img:hover {
  opacity: 0.9;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*-------------------------------------------------------------------------------------
layout
----------------------------------------------------------------------------------------*/

.secIn {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 6.4rem 4.5rem;
  position: relative;
}

@media screen and (min-width: 751px) {
  .container {
    margin-top: 8rem;
  }

  .secIn {
    padding: 7.2rem 4rem;
  }
}






/*-------------------------------------------------------------------------------------
main
----------------------------------------------------------------------------------------*/

/*
.secTtl
--------------------------------------------------------*/
.secTtl {
  position: relative;
  background: var(--green-color);
  padding: 3.2rem 2.4rem;
  text-align: center;
  font-size: 6.4rem;
  color: var(--white-color);
}

.secTtl::after {
  position: absolute;
  bottom: -3.4rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: "";
  width: 11.2rem;
  height: 3.6rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: var(--green-color);
  z-index: 1;
}

.secTtl .small {
  font-size: 4.8rem;
  font-weight: 700;
}

@media screen and (min-width: 751px) {
  .secTtl {
    padding: 3.2rem 2.4rem;
    font-size: 4.8rem;
  }

  .secTtl::after {
    bottom: -3.5rem;
  }

  .secTtl .small {
    font-size: 3.2rem;
  }
}

/* ▼非表示 */
.onayami .secTtl::after,
.step .secTtl::after {
  display: none !important;
}





/*
fv
--------------------------------------------------------*/
.fv {
  background: var(--bg-color);
}

.fv .secIn {
  height: 100%;
  overflow: hidden;
  padding: 0;
}

.sp_fvContents {
  margin-top: -6rem;
}


@media screen and (min-width: 751px) {
  .fv {
    height: 56rem;
  }

  .fvTxt {
    position: absolute;
    top: 57%;
    left: -7.5rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 81%;
  }

  .fvImg {
    position: absolute;
    bottom: 0;
    right: 6.4rem;
    width: 34.2%;
  }
}

/*
cta
--------------------------------------------------------*/
.cta {
  background: linear-gradient(to bottom, #085108 0%, #085108 40%, #053f05 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  text-align: center;
  position: relative;
}

.cta .secIn {
  padding: 5.6rem 4rem 7.2rem;
}

.cta .fvMedal {
  position: absolute;
  top: -18rem;
  right: 17rem;
  width: 28.6%;
  display: block;
  border-radius: 50%;
  box-shadow: 0 10px 80px rgba(255, 255, 255, .4);
}

.ctaTtl {
  display: inline-block;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 4.8rem;
  color: var(--white-color);
}

.ctaTtl::before,
.ctaTtl::after {
  position: absolute;
  top: 66%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  width: 3.7rem;
  height: 7.3rem;
}

.ctaTtl::before {
  background: url(../img/ctaTtl-left.svg)no-repeat;
  background-size: cover;
  left: -6.4rem;
}

.ctaTtl::after {
  background: url(../img/ctaTtl-right.svg)no-repeat;
  background-size: cover;
  right: -6rem;
}

.cta .btn {
  width: min(100%, 720px);
  margin: 0 auto;
  animation: btn_animation 2s infinite;
}

@keyframes btn_animation {
  0% {
    transform: translate(4px, 0px);
  }

  5% {
    transform: translate(-4px, 0px);
  }

  10% {
    transform: translate(4px, 0px);
  }

  15% {
    transform: translate(-4px, 0px);
  }

  20% {
    transform: translate(4px, 0px);
  }

  25% {
    transform: translate(-4px, 0px);
  }

  30% {
    transform: translate(0px, 0px);
  }
}

/* 位置調整 */

@media screen and (min-width: 751px) {
  .cta .secIn {
    padding: 4rem 4rem 5.6rem;
  }

  .cta .fvMedal {
    top: -14rem;
    right: -3.6rem;
    width: 19.7%;
  }

  .ctaTtl {
    margin-bottom: 2rem;
    font-size: 3.6rem;
  }

  .ctaTtl::before,
  .ctaTtl::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: "";
    width: 2.3rem;
    height: 4.7rem;
  }

  .ctaTtl::before {
    background: url(../img/ctaTtl-left.svg);
    background-size: cover;
    left: -3.4rem;
  }

  .ctaTtl::after {
    background: url(../img/ctaTtl-right.svg);
    background-size: cover;
    right: -3rem;
  }
}

@media screen and (min-width:751px) and (max-width:1120px) {
  .cta .fvMedal {
    right: 2rem;
  }
}


/*
お悩み
--------------------------------------------------------*/
.onayami {
  background: url(../img/bg-onayami.jpg) no-repeat center center;
  background-size: cover;
}

.onayami .secIn {
  max-width: 960px;
}

.onayamiTtl {
  background-color: transparent;
  padding: 0;
  margin-bottom: 11rem;
  color: var(--text-color);
}

.onayamiTtl span {
  position: relative;
  font-size: 8rem;
  font-weight: 700;
  color: var(--navy-color);
}

.onayamiTtl span::before {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background-color: var(--navy-color);
  border-radius: 50%;
}

.onayami .content {
  position: relative;
  background: var(--white-color);
  padding: 6.4rem 4rem;
}

.onayami .content::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -2rem;
  content: "";
  width: 2px;
  height: 6rem;
  background: var(--green-color);
}

.onayami .content .img {
  width: 32%;
  margin: -14rem auto 3.2rem;
}

.onayami .content .item {
  background: url(../img/check.svg) no-repeat left top 0.6rem;
  background-size: 3.8rem;
  margin-bottom: 1.6rem;
  padding: 0 0 1.6rem 4.8rem;
  border-bottom: 1px solid var(--gray-color);
  font-size: 3.2rem;
  font-weight: 700;
}

.onayami .content .item:last-child {
  margin-bottom: 0;
}


@media screen and (min-width: 751px) {
  .onayamiTtl {
    margin-bottom: 3.2rem;
  }

  .onayamiTtl span {
    font-size: 5.6rem;
  }

  .onayamiTtl span::before {
    width: 1.1rem;
    height: 1.1rem;
  }

  .onayami .content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 4rem;
  }

  .onayami .content::after {
    bottom: -2.4rem;
    height: 4rem;
  }

  .onayami .content .img {
    position: absolute;
    top: 2rem;
    left: 7rem;
    width: 19%;
    margin-top: 0;
  }

  .onayami .content .list {
    position: relative;
    width: 69%;
  }

  .onayami .content .item {
    background-size: 2.2rem 1.9rem;
    margin-bottom: 0.8rem;
    padding: 0 0 0.8rem 3rem;
    font-size: 2rem;
  }
}

/*
解決
--------------------------------------------------------*/
.solution {
  background: var(--bg2-color);
}

.solution .secIn {
  width: min(89.3%, 880px);
  background: var(--white-color);
}

.solution .secTtl {
  position: relative;
  padding-top: 5.6rem;
}

/* !! */
.solution .secTtl .exclamation {
  display: inline-block;
  font-weight: 700;
  transform: skew(-18deg);
}

.solution .secTtl .img {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  width: 36rem;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .solution .secTtl {
    padding-top: 4.4rem;
  }

  .solution .secTtl .img {
    top: -3rem;
    width: 28.8rem;
  }
}





/* 特徴 */
.solution .content .list {
  margin-bottom: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.solution .content .item {
  width: 27rem;
  height: 27rem;
  border-radius: 50%;
  background: linear-gradient(to right, #054205 0%, #316e31 50%, #054205 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border: 2px solid #AD8C3B;
}

.solution .content .item03 {
  margin-top: -4.4rem;
}

.solution .content .item_in {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #E1E79D 0%, #F7F8BE 50%, #E1E79D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solution .content .list_text {
  line-height: 1.2;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 4rem;
}

.solution .content .list_text span {
  font-weight: 700;
  font-size: 3rem;
}

.solution .content .item .strong {
  font-size: 7.6rem;
}

/* 位置調整 */
.solution .content .item01 .list_text {
  line-height: 1.15;
  margin-top: -1.6rem;
}

.solution .content .item02 .list_text {
  line-height: 0.95;
}

.solution .content .item03 .list_text {
  line-height: 1.1;
}

@media screen and (min-width: 751px) {
  .solution .content .item {
    width: 25rem;
    height: 25rem;
    border: 4px solid #AD8C3B;
  }

  .solution .content .item03 {
    margin-top: 0;
  }

  .solution .content .list_text {
    font-size: 3.6rem;
  }

  .solution .content .list_text span {
    font-size: 3.2rem;
  }

  .solution .content .item .strong {
    font-size: 6.4rem;
  }
}



/* 融資条件 */
.yuusi_ttl {
  position: relative;
  margin-bottom: 3.2rem;
  text-align: center;
}

.yuusi_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: var(--sub-color);
}

.yuusi_ttl span {
  position: relative;
  display: inline-block;
  padding: 1.2rem 2.4rem;
  text-align: center;
  line-height: 1;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(to right, #8D731C 5%, #AD8C3B 50%, #8D731C 95%);
  color: var(--white-color);
}

.yuusi_ttl span::before,
.yuusi_ttl span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  width: 2rem;
  height: 100%;
  background: var(--sub-color);
}

.yuusi_ttl span::before {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  left: -1.9rem;
}

.yuusi_ttl span::after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: -1.9rem;
}

/* tabel */
.yuusi_table {
  width: 100%;
}

.yuusi_table th,
.yuusi_table td {
  display: block;
  width: 100%;
  padding: 1.6rem;
  font-size: 2.8rem;
  border-left: 1px solid var(--gray-color);
  border-right: 1px solid var(--gray-color);
  font-weight: 500;
}

.yuusi_table tr:last-of-type td {
  border-bottom: 1px solid var(--gray-color);
}

.yuusi_table th {
  background: var(--sub-color);
  color: var(--white-color);
  vertical-align: middle;
  white-space: nowrap;
}

.yuusi_table td span {
  display: block;
  line-height: 1.35;
  font-size: 2.4rem;
  font-weight: 500;
}

@media screen and (min-width: 751px) {
  .yuusi_ttl span {
    padding: 0.8rem 1.6rem;
    font-size: 3.2rem;
  }

  /* tabel */
  .yuusi_table th,
  .yuusi_table td {
    display: table-cell;
    padding: 1rem;
    font-size: 1.8rem;
    border: 1px solid var(--gray-color);
  }

  .yuusi_table th {
    width: 30%;
  }

  .yuusi_table td {
    width: 70%;
  }

  .yuusi_table td span {
    font-size: 1.6rem;
  }
}


/*
選ばれる理由
--------------------------------------------------------*/
.reason {
  background: var(--bgGray-color);
}

.reason .secIn {
  padding-top: 12rem;
}

.reason .content .item {
  position: relative;
  background: var(--white-color);
  border: 3px solid var(--green-color);
  padding: 8rem 4rem 4rem;
}

.reason .content .item .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: var(--green-color);
  line-height: 1;
  color: var(--white-color);
  position: absolute;
  top: -7rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.reason .content .item .tag .tag_in {
  display: block;
  font-size: 6.4rem;
  font-weight: 700;
  transform: skew(-8deg);
  letter-spacing: 0.02em;
}

.reason .content .item .tag .tag_in .small {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
}

.reason .content .item+.item {
  margin-top: 9.6rem;
}

.reason .content .item_contents .img {
  margin-bottom: 4rem;
}

.reason .content .item_contents .img img {
  height: 28rem;
  object-fit: cover;
}

.reason .list_ttl {
  background: url(../img/bg-listTtl.svg) repeat-x left bottom;
  background-size: 1.6rem 1.5rem;
  margin-bottom: 2.4rem;
  padding-bottom: 3.2rem;
  font-size: 4.8rem;
}

.yellow_marker {
  background: linear-gradient(transparent 60%, #FFE295 60%);
  font-weight: 700;
}

@media screen and (min-width: 751px) {
  .reason .secIn {
    padding-top: 10rem;
  }

  .reason .content .item {
    padding: 4rem;
  }

  .reason .content .item .tag {
    width: 8rem;
    height: 8rem;
    top: -4rem;
  }

  .reason .content .item .tag .tag_in {
    font-size: 4.2rem;
  }

  .reason .content .item .tag .tag_in .small {
    margin-left: -0.3rem;
    font-size: 1.3rem;
  }

  .reason .content .item+.item {
    margin-top: 6.4rem;
  }

  .reason .content .item_contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .reason .content .item_contents .img {
    width: 38.7%;
    margin-bottom: 0;
  }

  .reason .content .item_contents .img img {
    height: auto;
  }

  .reason .content .item_contents .textarea {
    width: 57.7%;
  }

  .reason .list_ttl {
    background-size: 0.9rem 0.8rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    font-size: 3.2rem;
  }
}




/*
主な取扱商品の一例
--------------------------------------------------------*/
.products {
  background: var(--bg2-color);
}

.products .secIn {
  padding: 6.4rem 8rem;
}

.products .content .item {
  min-height: 47.2rem;
  background: var(--white-color);
  border: 3px solid var(--green-color);
}

.products .content .item+.item {
  margin-top: 4rem;
}

.products .content .item .contents_wrap {
  padding: 4rem;
}

.products .content .item .img {
  width: 48%;
  margin: 0 auto 2.4rem;
}

.products .content .item .item_ttl {
  padding: 2rem;
  background: var(--green-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 4rem;
  color: var(--white-color);
  font-family: "Noto Sans JP", sans-serif;
}

.products .content .item .text {
  line-height: 1.5;
}

@media screen and (min-width: 751px) {
  .products .secIn {
    padding: 6.4rem 4rem;
  }

  .products .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .products .content .item {
    width: 31.7%;
    min-height: 47.2rem;
  }

  .products .content .item+.item {
    margin-top: 0;
  }

  .products .content .item .contents_wrap {
    padding: 2.4rem;
  }

  .products .content .item .img {
    width: 20.4rem;
    margin: 0 auto 1.6rem;
  }

  .products .content .item .item_ttl {
    padding: 0.8rem;
    min-height: 8.2rem;
    font-size: 2.4rem;
  }
}





/*
ワコーファイナンスならお申込み時0円
--------------------------------------------------------*/
.appeal {
  background: url(../img/bg-appeal.jpg) no-repeat center center;
  background-size: cover;
}

.appeal .secIn {
  max-width: 1040px;
  padding: 0;
}

@media screen and (min-width: 751px) {
  .appeal .secIn {
    padding: 1.6rem 4rem 0;
  }
}


/*
流れ
--------------------------------------------------------*/
.step {
  background: var(--bg3-color);
}

.step .secTtl {
  width: 48.5rem;
  margin: 0 auto 4rem;
  padding: 0;
  background: transparent !important;
}

/* .step .secIn{
  max-width: 960px;
} */
.step .content .item {
  position: relative;
  width: 64%;
  margin: 0 auto;
}

.step .content .item+.item {
  margin-top: 6.4rem;
}

.step .content .item+.item::before {
  content: "";
  position: absolute;
  top: -4.4rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  width: 6.4rem;
  height: 3.2rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #1E5329;
}


@media screen and (min-width: 751px) {
  .step .secTtl {
    width: 44.5rem;
  }

  .step .content .list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .step .content .item {
    position: relative;
    width: 31.4%;
    margin: 0;
  }

  .step .content .item+.item {
    margin-top: 0;
  }

  .step .content .item+.item::before {
    top: 50%;
    left: -2.3rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 2rem;
    height: 3.2rem;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }

}






/*
お客様の声
--------------------------------------------------------*/
.voice {
  background: var(--bgGray-color);
}

.voice .secIn {
  max-width: 960px;
  padding-top: 8.8rem;
}

.voice .secTtl {
  padding-top: 0.5rem;
}

.voice .secTtl span {
  font-size: 3.2rem;
}

.voice .secTtl .small {
  font-size: 3.9rem;
}

.voice .secTtl .small span {
  font-weight: 700;
}

.voice .item {
  position: relative;
  padding: 6rem 4rem 4rem;
  background: var(--bg3-color);
  border: 3px solid var(--sub-color);
  border: solid 1px var(--sub-color);
  /* 内側の線になる一本線の枠線をひく*/
  outline: solid 3px var(--sub-color);
  /* 外側の線になる5pxの一本線の枠線をひく*/
  outline-offset: 3px;
  /* 内側の線になる一本線の枠線をひく*/
  margin: 6px;
  /* outlineの値＋outline-offsetの値*/
}

.voice .item+.item {
  margin-top: 9.6rem;
}

.voice .item .tag {
  display: inline-block;
  padding: 1rem 4rem;
  position: absolute;
  top: -4.4rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: linear-gradient(to right, #8D731C 5%, #AD8C3B 50%, #8D731C 95%);
  line-height: 1;
}

.voice .item .tag span {
  display: inline-block;
  text-align: center;
  line-height: 1;
  font-size: 4.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: var(--white-color);
  transform: skew(-8deg)
}

.voice .item .tag::before,
.voice .item .tag::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  width: 2rem;
  height: 100%;
  background: var(--sub-color);
}

.voice .item .tag::before {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  left: -1.8rem;
}

.voice .item .tag::after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: -1.8rem;
}

.voice .item .item_contents .img {
  width: 32%;
  margin: 0 auto 3.2rem;
}

.voice .item .item_contents .itemTtl {
  margin-bottom: 2.4rem;
  font-size: 4.4rem;
}

.voice .item .item_contents .text {
  margin-bottom: 2.4rem;
}

.voice .item .item_contents .name {
  text-align: right;
  font-size: 2.4rem;
}


@media screen and (min-width: 751px) {
  .voice .secIn {
    padding-top: 8.8rem;
  }

  .voice .secTtl span {
    font-size: 3.2rem;
  }

  .voice .secTtl .small {
    font-size: 4rem;
  }

  .voice .secTtl {
    padding-top: 3.2rem;
  }

  .voice .item {
    padding: 4rem;
  }

  .voice .item+.item {
    margin-top: 6.4rem;
  }

  .voice .item .tag {
    padding: 0.8rem 3.2rem;
    top: -2.5rem;
  }

  .voice .item .tag span {
    font-size: 2.4rem;
  }

  .voice .item .tag::before {
    left: -1.9rem;
  }

  .voice .item .tag::after {
    right: -1.9rem;
  }

  .voice .item .item_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .voice .item .item_contents .img {
    width: 23.2%;
    margin: 0;
  }

  .voice .item .item_contents .textarea {
    width: 73%;
  }

  .voice .item .item_contents .itemTtl {
    margin-bottom: 1.6rem;
    font-size: 3.2rem;
  }

  .voice .item .item_contents .text {
    margin-bottom: 1.2rem;
  }

  .voice .item .item_contents .name {
    font-size: 1.6rem;
  }

}


/*
よくある質問
--------------------------------------------------------*/
.faq {
  background: var(--bg2-color);
}

.faq .secIn {
  max-width: 960px;
  padding-top: 7.2rem;
}

.faq .content {
  position: relative;
  background: var(--white-color);
  padding: 4rem;
}

.faq .content .img {
  position: absolute;
  top: -17.6rem;
  left: -2.2rem;
  width: 14.3rem;
}

.faqList {
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--gray-color);
}

.faqList:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faqList+.faqList {
  margin-top: 4rem;
}

/* 質問 */
.faqList dt,
.faqList dd {
  padding: 0 0 0 8rem;
}

.faqList dt {
  position: relative;
  margin-bottom: 2.4rem;
  line-height: 1.35;
  font-size: 4rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}

/* 回答 */
.faqList dd {
  position: relative;
  line-height: 1.5;
  font-weight: 500;
}

.faqList .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.faqList .tag span {
  color: var(--white-color);
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  transform: skew(-8deg);
  position: relative;
  top: -1px;
}

.faqList .q_tag {
  background: var(--green-color);
}

.faqList .a_tag {
  background: var(--sub-color);
}


@media screen and (min-width: 751px) {
  .faq .secIn {
    padding-top: 5.6rem;
  }

  .faq .content .img {
    top: -16rem;
    left: 4.8rem;
    width: 14.3rem;
  }

  .faqList {
    padding-bottom: 2rem;
  }

  .faqList+.faqList {
    margin-top: 2rem;
  }

  /* 質問 */
  .faqList dt,
  .faqList dd {
    padding: 0.4rem 1.6rem 0.4rem 6.4rem;
  }

  .faqList dt {
    line-height: 1.5;
  }

  .faqList dt {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 2.4rem;
  }

  /* 回答 */
  .faqList .tag {
    width: 4rem;
    height: 4rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 1rem;
    font-size: 2.4rem;
  }

  .faqList .tag span {
    font-size: 2.4rem;
  }
}














/*  アコーディオ開閉 */
.faqToggle {
  position: absolute;
  width: 3.6rem;
  height: 3.6rem;
  background: var(--main-color);
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 1.6rem;
}

.faqToggle:before,
.faqToggle:after {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  width: 2rem;
  height: 3px;
  bottom: 44%;
  right: 0.8rem;
}

.faqToggle:before {
  transform: rotate(90deg);
  transition: transform 0.3s;
}

.faqToggle:after {
  transform: rotate(0deg);
}

.faqList dt.open .faqToggle:before {
  transform: rotate(180deg);
}

/* 20251118 ロゴ修正 */
.logo.new-logo {
  width: 60rem;
  padding: 2.5rem;
}

@media screen and (min-width: 751px) {
  .logo.new-logo {
    width: 50rem;
    padding: 2.2rem;
  }
}