@charset "UTF-8";
/* --------------------------------
[コーディングルール]
・FLOCSSをベースにCSS設計 https://github.com/hiloki/flocss
・class名の単語区切りはキャメルケースを使用 blockName
・class名はマルチクラスでModifierはハイフン1つ始まりにする class="block__element -modifier"
・ページ固有のスタイルは /assets/scss/page にページ名のSCSSを作成しプレフィックスをページ名にする .home-kv__inner
・ディレクトリ名、ファイル名はハイフン区切り file-name.png
・メディアクエリーはPCファーストで、 @include max {} または @include min {} を使用
-------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
nav ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
a {
  text-decoration: none;
  background: transparent;
}
body {
  line-height: 1.5;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
ul, ol { list-style-type: none; }
th, strong, b { font-weight: normal; }
em, i { font-style: normal; }
sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}
sub {
  font-size: 70%;
  vertical-align: bottom;
  position: relative;
  bottom: -0.1em;
}
.t-center {
  text-align: center;
}
img[class*="wp-image-"],
img[class*="attachment-"] {
  max-width: 100%;
  height: auto; }

.wp-caption {
  width: auto !important;
}
.fade {
  opacity: 0;
  transition: all .6s;
  transform: translateY(50px);
}
.fade-next {
  opacity: 0;
  transition: all .6s;
  transform: translateY(50px);
}
.fade.is-fade {
  opacity: 1;
  transform: translateY(0);
}
.fade-next.is-fade-next {
  opacity: 1;
  transform: translateY(0);
}
/*
-------------------------------------------------------------------------------- reset ここまで */
.l-inner {
  width: 87.2%;
  margin: 0 auto;
}
.c-cv_button {
  display: block;
  width: 295px;
  height: 54px;
  color: #FFF;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  line-height: 54px;
  margin: 0 auto;
  text-shadow: 0 0 6px rgba(119,76,20,0.4);
  background: linear-gradient(-45deg,#DDC76C,#9A785B 100%);
  border-radius: 27px;
  box-shadow: 5px 5px 6px rgba(0,0,0,0.16);
  position: relative;
  transition: 0.2s;
}
.c-cv_button::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 43%;
}
@media (hover: hover) {
  .c-cv_button:hover {
    box-shadow: 5px 5px 6px rgba(0,0,0,0.32);
    transition: 0.2s;
  }
}
.c-note {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.c-note li {
  text-indent: -1rem;
  margin-left: 1rem;
}
.c-note li:not(:last-of-type) {
  margin-bottom: 4px;
}
.c-note li::before {
  content: "※";
  padding-right: 4px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: 1000px;
    max-width: 100%;
  }
  .c-cv_button {
    width: 590px;
    height: 64px;
    font-size: 24px;
    line-height: 64px;
    border-radius: 32px;
  }
  .c-note {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 855px) {
  .l-inner:not(.c-cv_button__wrap) {
    padding: 0 2.8%;
  }
}
/*
-------------------------------------------------------------------------------- common ここまで */

header {
  width: 100%;
  padding: 16px 24px;
  background: #FFF;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
header h1 {
  width: 85px;
}
header h1 > a {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 855px) {
  header {
    padding: 20px 183px;
  }
  header h1 {
    width: 125px;
  }
}



.l-fv {
  position: relative;
}
.l-fv__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.l-fv__text h2 {
  width: 80.5%;
  margin: 0 auto 26px;
}
.l-fv__card {
  width: 51.46%;
  margin-bottom: 36px;
}
.l-fv__card img {
  filter: drop-shadow(2px 4px 4px rgba(60,31,2,0.36));
}
.l-fv .c-cv_button {
  width: 248px;
  height: 48px;
  font-size: 16px;
  line-height: 48px;
  padding-right: 2px;
}
.l-fv .c-cv_button:after {
  right: 13px;
}
@media screen and (min-width: 768px) {
  .l-fv__text {
    width: 59%;
    flex-direction: row-reverse;
    justify-content: space-around;
  }
  .l-fv__text > div {
    width: 43.67%;
  }
  .l-fv__text h2 {
    width: 100%;
    margin: 0;
  }
  .l-fv__card {
    width: 45.65%;
    order: 1;
    margin: 0;
  }
  .l-fv .c-cv_button {
    width: 294px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 855px) {
  .l-fv .c-cv_button {
    margin-top: 20px;
  }
}
/*
-------------------------------------------------------------------------------- header/fv ここまで */
.l-campaign {
  margin: 24px 0 56px;
}
.l-campaign__top {
  margin-bottom: 20px;
}
.l-campaign__top h2 {
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 12px;
}
.l-campaign__top figure {
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.18);
  overflow: hidden;
}
.l-campaign__bottom {
  border: 2px solid #333;
  border-radius: 26px;
  overflow: hidden;
}
.l-campaign__bottom button {
  width: 100%;
  height: 48px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375px;
  text-align: center;
  border: none;
  background: none;
  padding: 12px 0;
  position: relative;
  cursor: pointer;
}
.l-campaign__bottom button::before,
.l-campaign__bottom button::after {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background: #333;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.l-campaign__bottom button::after {
  transform: rotate(90deg);
  transition: 0.2s;
}
.l-campaign__bottom button.is-open::after {
  transform: rotate(180deg);
  transition: 0.2s;
}
.l-campaign__cont {
  display: none;
  width: 90%;
  margin: 20px auto 32px;
}
.l-campaign__cont h3.l-campaign__lead {
  color: #8E611B;
  font-size: 24px;
  line-height: 1.16;
  text-align: center;
  margin-bottom: 23px;
}
.l-campaign__cont h3:not(.l-campaign__lead) {
  font-size: 18px;
  text-align: center;
  margin: 30px 0;
  padding: 10px 0;
  border-bottom: #000 dotted 1px;
}
.l-campaign__cont table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #000;
  border-collapse: collapse;
  border-spacing: 0;
}
.l-campaign__cont td.-left {
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
.l-campaign__cont td.-left ol + p {
  margin-top: 1rem;
} 
.l-campaign__cont table td {
  text-align: center;
  padding: 12px 5px;
  border: 1px solid #808080;
  background-color: #fff;
  vertical-align: middle;
}
.l-campaign__cont table th {
  padding: 12px 5px;
  vertical-align: middle;
  border: 1px solid #808080;
  background-color: #E3E0DE;
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
.l-campaign__cont.-info table th {
  background-color: #dfdfdf;
}
.l-campaign__cont ul,
.l-campaign__cont ol {
  list-style: none;
}
.l-campaign__cont h3 + ul{
  font-size: 14px;
  font-weight: normal;
}
.l-campaign__cont h3 + ul li strong {
  font-weight: bold;
  color: #ff0000;
}
.l-campaign__cont table td {
  font-weight: normal;
}
.l-campaign__text {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}
.l-campaign__text + figure {
  max-width: 750px;
  display: block;
  margin: 0 auto;
}
.l-campaign__text + figure a {
  border-radius: 0;
}
@media screen and (max-width: 767px){
  .l-campaign__cont table {
    border-color: #808080;
  }
  .l-campaign__cont table th,
  .l-campaign__cont table td {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #808080;
  }
  .l-campaign__cont table tr:last-of-type td {
    border-bottom: none;
  }
  .l-campaign__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .l-campaign {
    margin: 64px 0 140px;
  }
  .l-campaign__top {
    margin-bottom: 32px;
  }
  .l-campaign__top h2 {
    font-size: 24px;
    margin-bottom: 23px;
  }
  .l-campaign__bottom {
    border-width: 3px;
  }
  .l-campaign__bottom button {
    font-size: 24px;
    line-height: 1;
    padding: 14px 0 18px;
  }
  .l-campaign__bottom button::before,
  .l-campaign__bottom button::after {
    width: 20px;
    height: 3px;
    right: 37px;
  }
}
/*
-------------------------------------------------------------------------------- campaign ここまで */
.l-about {
  padding: 40px 0 80px;
  background: #EDEAE4;
  position: relative;
}
.l-about::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 4.8%;
  background: url(../img/deco_01.webp) center top/100% auto no-repeat;
  position: absolute;
  left: 0;
  top: -4.8vw;
}
.l-about__top {
  display: flex;
  align-items: center;  
  overflow: hidden;
  margin-bottom: 38px;
}
.l-about__top--left {
  width: 77%;
  margin-left: -34.5%;
}
.l-about__top--left img {
  filter: drop-shadow(2px 5px 10px rgba(0,0,0,0.16));
}
.l-about__top--right {
  width: 44.8%;
  text-align: center;
  margin-left: auto;
  margin-right: 6.4%;
}
.l-about__top--right img {
  width: 72%;
}
.l-about__top--right .c-note {
  color: #6E6E6E;
  margin-top: 11px;
}
.l-about__item {
  background: #FFF;
  padding: 40px 16px 23px;
  margin-bottom: 40px;
  border-radius: 10px;
}
.l-about__item h3 {
  color: #8E611A;
  font-size: 20px;
  line-height: 1.16;
  text-align: center;
}
.l-about__item figure {
  width: 80%;
  margin: 24px auto;
}
.l-about__item figure + p {
  line-height: 1.8;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .l-about::before {
    padding-top: 40px;
    background: url(../img/deco_01_pc.webp) center top/ 100% 100% no-repeat;
    top: -40px;
  }
  .l-about__top {
    width: 59%;
    margin: 0 auto 64px;
    justify-content: space-between;
  }
  .l-about__top--left {
    width: 42.68%;
    margin: 0;
  }
  .l-about__top--right {
    width: 52.6%;
    margin: 0;
  }
  .l-about__top--right img {
    width: 100%;
  }
  .l-about__top--right .c-note {
    font-size: 18px;
    margin-top: 26px;
  }
  .l-about__item {
    display: flex;
    flex-direction: column;
    padding: 40px 0 42px;
    position: relative;
  }
  .l-about__item figure {
    width: 26.3%;
    height: fit-content;
    position: absolute;
    left: 9.7%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .l-about__item > *:not(figure) {
    width: 50.7%;
    text-align: left;
    margin-left: auto;
    margin-right: 9.7%;
  }
  .l-about__item h3 {
    font-size: 24px;
    margin-bottom: 23px;
  }
}
/*
-------------------------------------------------------------------------------- about ここまで */
.l-merit {
  padding-bottom: 80px;
}
.l-merit#merit02 {
  background: #EDEAE4;
}
.l-merit__head {
  position: relative;
}
.l-merit__head h2 {
  width: 63%;
  position: absolute;
  top: 31px;
  left: 0;
  right: 0;
  margin: auto;
}
.l-merit__box {
  margin: -30px auto 40px;
  position: relative;
  z-index: 1;
}
.l-merit__item {
  margin-bottom: 32px;
  border-radius: 10px;
  overflow: hidden;
}
.l-merit__item dt {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  background: #988F80;
  padding: 13px 0 12px;
}
.l-merit__item--v2 dt {
  background: #5F62B4;
}
.l-merit__item--v2 dt span {
  display: block;
  font-size: 18px;
}
.l-merit__item dd {
  background: #EDEAE4;
  padding: 24px 16px 23px;
}
.l-merit__item figure {
  margin-bottom: 16px;
}
.l-merit__item + p {
  line-height: 1.8;
  margin-bottom: 32px;
}
.l-merit__lead {
  background: #EDEAE4;
  padding: 24px 16px 40px;
  margin-top: -30px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.l-merit__lead p {
  line-height: 1.8;
}
.l-merit__more {
  padding-top: 45px;
  position: relative;
}
.l-merit__more::before {
  display: block;
  content: "";
  width: 77px;
  height: 5px;
  background: #8E611A;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.l-merit__more h3 {
  color: #8E611A;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 24px;
}
.l-merit__more p {
  line-height: 1.8;
  margin-bottom: 24px;
}
.l-merit__image {
  padding: 24px 16px 23px;
  margin-bottom: 24px;
  border: 2px solid #ECEAE4;
  border-radius: 10px;
}
.l-merit__image h4 {
  color: #8E611A;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 12px;
}
.l-merit__image figure {
  margin-bottom: 10px;
}
.l-merit__list {
  padding-top: 45px;
  position: relative;
}
.l-merit__list::before {
  display: block;
  content: "";
  width: 77px;
  height: 5px;
  background: #8E611A;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.l-merit__service {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.l-merit__service--img {
  width: 47%;
}
.l-merit__service--ttl {
  width: 50%;
  color: #8E611A;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
.l-merit__service--ttl > span {
  font-size: 18px;
}
.l-merit__service--body,
.l-merit__service .c-note {
  width: 100%;
  margin-top: 16px;
  flex-shrink: 0;
}
.l-merit__service--body {
  line-height: 1.8;
}
.l-merit__service--v2 {
  margin-bottom: 32px;
}
.l-merit__service--v2 .l-merit__service--ttl {
  width: 100%;
  flex-shrink: 0;
}
.l-merit__service--v2 .l-merit__service--body {
  margin-top: 4px;
}
#merit02 .c-cv_button {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-merit {
    padding-bottom: 100px;
  }
  .l-merit__head h2 {
    width: 54%;
    top: 33px;
  }
  .l-merit__box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .l-merit__item {
    width: 48%;
    display: flex;
    flex-direction: column;
  }
  .l-merit__item dd {
    padding: 20px 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
  }
  .l-merit__item figure {
    margin: 0 auto 16px;
  }
  .l-merit__item:nth-of-type(1) figure {
    width: 96.5%;
  }
  .l-merit__item:nth-of-type(1) figure + .c-note {
    text-align: center;
  }
  .l-merit__item:nth-of-type(2) figure {
    width: 65.75%;
  }
  .l-merit__item--v2 {
    width: 100%;
  }
  .l-merit__item--v2 dt span {
    display: inline-block;
  }
  .l-merit__item--v2 dd {
    padding: 32px 9.7%;
    flex-direction: row;
    align-items: center;
  }
  .l-merit__item--v2 dd p {
    width: 67.12%;
    font-size: 20px;
    line-height: 1.6;
    flex-shrink: 0;
  }
  .l-merit__lead {
    padding: 32px 9.7% 64px;
  }
  .l-merit__more {
    padding-top: 70px !important;
  }
  .l-merit__more::before {
    width: 120px;
    height: 6px;
  }
  .l-merit__more h3 {
    font-size: 24px;
    margin-bottom: 33px;
  }
  .l-merit__more p {
    font-size: 20px;
    line-height: 1.6;
  }
  .l-merit__more--inner {
    display: flex;
    align-items: center;
    justify-content: space-between
  }
  .l-merit__image {
    width: 35.5%;
    margin-bottom: 48px;
  }
  .l-merit__more--inner p {
    width: 61.3%;
  }
  .l-merit__list {
    padding-top: 70px;
  }
  .l-merit__list::before {
    width: 120px;
    height: 6px;
  }
  .l-merit__service {
    position: relative;
  }
  .l-merit__service:not(.l-merit__service--v2) {
    min-height: 138px;
    display: block;
  }
  .l-merit__service--img {
    width: 22.6%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-merit__service--ttl,
  .l-merit__service--body,
  .l-merit__service .c-note {
    margin-left: calc(22.6% + 32px);
    max-width: 74.2%;
  }
  .l-merit__service--ttl {
    font-size: 26px;
  }
  .l-merit__service--body {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 15px;
  }
  .l-merit__service--v2 .l-merit__service--ttl,
  .l-merit__service--v2 .l-merit__service--body {
    max-width: 100%;
    margin-left: 0;
  }
  #merit02 .c-cv_button {
    margin-top: 48px;
  }
}
/*
-------------------------------------------------------------------------------- merit ここまで */
.l-info {
  background: #7C7C7A;
  padding: 64px 0 80px;
  position: relative;
}
.l-info h2 {
  color: #FFF;
  font-size: 24px;
  line-height: 1.16;
  text-align: center;
  margin-bottom: 31px;
}
.l-info__table {
  border-collapse: collapse;
}
.l-info__table th,
.l-info__table td {
  border: 2px solid #354473;
}
.l-info__table th {
  color: #FFF;
  font-size: 20px;
  background: #354473;
  padding: 25px 0;
}
.l-info__table td {
  font-size: 14px;
  line-height: 1.6;
  background: #FFF;
  padding: 25px;
}
.l-info__table tr:not(:last-of-type) th {
  border-bottom-color: #FFF;
}
.l-info__wrap {
  height: 400px;
  overflow: hidden;
  position: relative;
  transition: height 0.3s;
}
.l-info__mask {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 255px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, #7C7C7A);
}
.l-info__mask.-hide {
  background: none;
  height: auto;
  margin-top: 30px;
  position: relative;
}
.l-info__button {
  display: block;
  width: 295px;
  height: 48px;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  background: #7C7C7A;
  margin: 0 auto;
  border: 2px solid #FFF;
  border-radius: 26px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
.l-info__button::before,
.l-info__button::after {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background: #FFF;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.l-info__button::after {
  transform: rotate(90deg);
  transition: 0.2s;
}
.l-info__button.is-open::after {
  transform: rotate(180deg);
}
.l-info .c-cv_button {
  margin-top: 40px;
}
@media (hover: hover) {
  .l-info__button:hover {
    color: #7C7C7A;
    background: #FFF;
    border-color: #7C7C7A;
    transition: 0.2s;
  }
}
@media screen and (max-width: 767px) {
  /* .l-info__table,
  .l-info__table th,
  .l-info__table td {
    display: block;
  } */
  .l-info__table th {
    width: 30%;
  }
  .l-info__table td {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .l-info {
    padding: 80px 0 ;
  }
  .l-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .l-info__table th {
    font-size: 22px;
  }
  .l-info__table td {
    font-size: 16px;
  }
  .l-info__button {
    width: 590px;
    height: 64px;
    font-size: 24px;
    border-radius: 34px;
    border-width: 3px;
  }
  .l-info__button::before,
  .l-info__button::after {
    width: 20px;
    height: 3px;
    right: 37px;
  }
  .l-info .c-cv_button {
    margin-top: 48px;
  }
}
/*
-------------------------------------------------------------------------------- info ここまで */
.l-faq {
  background: #333;
  padding: 64px 0 60px;
  position: relative;
}
.l-faq h2 {
  color: #FFF;
  font-size: 24px;
  line-height: 1.16;
  text-align: center;
  margin-bottom: 31px;
}
.l-faq__list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-bottom: 32px;
}
.l-faq__item {
  border-radius: 8px;
  overflow: hidden;
}
.l-faq__item dt,
.l-faq__item dd {
  line-height: 1.4;
}
.l-faq__item dt {
  color: #FFF;
  font-size: 16px;
  background: #988F80;
  padding: 16px 48px 16px 16px;
  position: relative;
  cursor: pointer;
}
.l-faq__item dt::before,
.l-faq__item dt::after {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
}
.l-faq__item dt::after {
  transform: rotate(90deg);
  transition: 0.2s;
}
.l-faq__item.is-open dt::after {
  transform: rotate(180deg);
}
.l-faq__item dd {
  display: none;
  background: #ECEAE4;
  padding: 16px 16px 24px;
}
.l-faq__item dd p + * {
  margin-top: 1rem;
}
.l-faq__item dd a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .l-faq {
    padding: 80px 0;
  }
  .l-faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .l-faq__list {
    row-gap: 40px;
    margin-bottom: 56px;
  }
  .l-faq__item dt {
    font-size: 20px;
    padding: 24px 0 24px 9.7%;
  }
  .l-faq__item dt::before,
  .l-faq__item dt::after {
    right: 97px;
  }
  .l-faq__item dd {
    padding: 32px 9.7%;
  }
  .l-faq__item dd p {
    font-size: 20px;
  }
}

.p-no1 picture {
  display: block;
  margin-bottom: 10px;
}
.p-no1 .c-note {
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-no1 picture {
    margin-bottom: 16px;
  }
  .p-no1 .c-note {
    text-align: center;
  }
}
/*
-------------------------------------------------------------------------------- faq,no1 ここまで */
.l-container {
  max-width: 1118px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.l-footer {
  padding-top: 80px;
  position: relative;
}
.p-ft__inner {
  position: relative;
  padding-top: 0;
}
.p-ft__gotop {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
  transition: transform .3s;
  background-color: rgba(77, 77, 77, 0.7);
  width: 100%;
  height: 114px;
}
@media screen and (max-width: 767px) {
  .p-ft__gotop {
    height: 82px;
  }
}
.p-ft__tel {
  border: 1px solid #000;
  padding: 60px 15px 45px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1089px) {
  .p-ft__tel {
    max-width: 350px;
    margin: 0 auto 50px;
    padding: 20px 15px 20px;
  }
}
.p-ft__telCols {
  margin-bottom: 30px;
}
@media screen and (min-width: 1090px) {
  .p-ft__telCols {
    display: flex;
  }
}
@media screen and (max-width: 1089px) {
  .p-ft__telCols {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1090px) {
  .p-ft__telCol {
    width: 50%;
  }
  .p-ft__telCol.-n1 {
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1090px) {
  .p-ft__telColInner.-n1 {
    max-width: 465px;
    padding-right: 45px;
    border-right: 1.5px solid #000;
  }
  .p-ft__telColInner.-n2 {
    padding-left: 55px;
  }
}
.p-ft__telTtl {
  margin-bottom: 0.3em;
  font-size: 22px;
}
@media screen and (max-width: 1089px) {
  .p-ft__telTtl {
    font-size: 16px;
    font-feature-settings: "palt";
    margin-top: 2em;
  }
    .p-ft__telCol.-n1 .p-ft__telTtl {
      margin-top: 0;
    }
  }
.p-ft__telCat {
  margin-bottom: 0.1em;
  font-size: 16px;
}
@media screen and (max-width: 1089px) {
  .p-ft__telCat {
    font-size: 14px;
  }
}
.p-ft__telNum {
  line-height: 1;
  font-size: 57px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.p-ft__telNum > a {
  color: #000;
}
@media screen and (max-width: 1089px) {
  .p-ft__telNum {
    font-size: 40px;
  }
}
.p-ft__telOpen {
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 1089px) {
  .p-ft__telOpen {
    font-size: 13px;
    font-feature-settings: "palt";
  }
}
.p-ft__logo {
  display: block;
  text-align: center;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .p-ft__logo {
    margin-bottom: 50px;
  }
}
.p-ft__logo img {
  width: 338px;
}
@media screen and (max-width: 767px) {
  .p-ft__logo img {
    width: 212px;
  }
}
.p-ft__snsWrap {
  margin-bottom: 55px;
}
.p-ft__sns {
  width: 45px;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.p-ft__snsList {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
}
.p-ft__sns.-x img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(18%) hue-rotate(293deg) brightness(102%) contrast(105%);
}
.p-ft__sns a {
  transition: 0.2s;
}
.p-ft__snsImg {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-ft__snsImg {
    margin-bottom: 10px;
  }
}
.p-ft__snsImg img {
  width: 45px;
}
.p-ft__snsName {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ft__snsName {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .p-ft__sns a:hover {
    opacity: 0.8;
    transition: 0.2s;
  }
}
.p-ft__copyWrap {
  text-align: center;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-ft__copyWrap {
    margin-bottom: 55px;
  }
}
.p-ft__bgBase img {
  width: 100%;
}
.p-ft__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s;
}
.p-ft__bg img {
  width: 100%;
}
.p-ft__bg.is-cr {
  opacity: 1;
}
.p-ft__copy {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #000;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  padding: 15px;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s;
}
.p-ft__copy.is-cr {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-ft__copy {
    font-size: 15px;
  }
}
.p-ft__copy.-wt {
  color: #fff;
}
.p-ft__copy small {
  display: inline-block;
  position: relative;
}
.l-footer.-bg2 .p-ft__copy {
  background-image: url(../img/p-ft/bg2.png);
  color: #000;
}
.l-footer.-bg2 .p-ft__copy::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/p-ft/bg2b.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  animation: pFtBg2b 8s 2s infinite both;
  opacity: 0;
}
@keyframes pFtBg2b {
  0% {
    opacity: 0; }
  25% {
    opacity: 0; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; }
}
.l-footer.-bg3 .p-ft__copy {
  background-image: url(../img/p-ft/bg3.png);
}

.u-over {
  transition: opacity .3s;
}
@media screen and (min-width: 768px) {
  .u-over:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
/* -----
* print
----------------------------------------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    overflow-x: visible;
    overflow-y: visible;
  }
  .u-sp {
    display: none;
  }
  .fade {
    opacity: 1;
  }
  .p-ft__telCols {
    display: flex;
  }
  .p-ft__telCol {
    width: 50%;
  }
  .p-ft__telCol.-n1 {
    display: flex;
    justify-content: flex-end;
  }
  .p-ft__telColInner.-n1 {
    max-width: 465px;
    padding-right: 45px;
    border-right: 1.5px solid #000;
  }
  .p-ft__telColInner.-n2 {
    padding-left: 55px;
  }
}
/*
special ここから -------------------------------------------------------------------------------- */
.special {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 2;
  display: none;
}
.special_outside {
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 51;
  position: absolute;
  left: 0;
  bottom: 0;
}
.special_inner {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  background: #EDEAE4;
  padding: 60px 24px 32px;
  border-radius: 40px 40px 0 0;
  position: relative;
  z-index: 52;
}
.special_close {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 24px;
  top: 20px;
}
.special_close > span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.special_close > span::before,
.special_close > span::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #989898;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.special_close > span::before {
  transform: rotate(45deg);
}
.special_close > span::after {
  transform: rotate(-45deg);
}
.special_lead {
  color: #8E611B;
  font-size: 20px;
  font-weight: 600;
}
.special_lead > span {
  display: block;
  font-size: 18px;
}
.special_img {
  width: 160px;
  filter: drop-shadow(2px 4px 4px rgba(60,31,2,0.36));
}
.special_cont {
  font-size: 16px;
  line-height: 1.8;
}
.special .c-cv_button {
  width: 220px;
  height: 42px;
  font-size: 14px;
  line-height: 42px;
}
.special .c-cv_button::after {
  width: 6px;
  height: 6px;
}
@media screen and (min-width: 768px) {
  .special_inner {
    width: 65%;
    margin: 0 auto;
  }
  .special_cont {
    max-width: 45%;
  }
}