/** ==================================================
* KVスライダー
* ================================================ */
.home_intro{
  margin-top: 5px;
  position: relative;
}
.home_intro>.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80vw;
  max-width: 100%;
}
.home_intro>.content>.ttl{
  text-align: center;
  color: var(--color-blue);
  font-size: var(--font-40);
  line-height: 1.6;
  text-shadow: 0px 0px 5px var(--color-white);
}
.home_intro>.content>.item{
  display: flex;
  justify-content: center;
  align-items: center;
}
.home_intro>.content>.item>.list{
  --c-row-gutter-x: clamp(20px, 2.4242424242vw, 32px);
  --c-row-gutter-y: clamp(30px, 3.6363636364vw, 48px);
}
.home_intro>.content>.item>.list{
  padding: calc(var(--c-row-gutter-y, 0) / 2) calc(var(--c-row-gutter-x, 0) / 2);
}
@media (max-width:690px) {
  .home_intro{
    height: clamp(336px, 98.4057971014vw, 679px);
    max-height: 100%;
  }
  .top_slider > .slick-list > .slick-track{
    height: clamp(336px, 98.4057971014vw, 679px);
    max-height: 100%;
  }
  .home_intro>.content>.item>.list{
    padding: 0;
  }
  .home_intro>.content>.item{
    margin-top: 1em;
  }
}
@media (max-width:560px) {
  .home_intro>.content>.ttl{
    font-size: var(--font-28);
  }
}
/* スライダー */
.home_intro .kv_slider {
  width:100%;
  margin:0 auto;
}
.home_intro .kv_slider img {
  width:100%;
  height: max(80vh, 650px);
  min-height: 650px;
  object-fit: cover;
}
.home_intro .kv_slider .slick-slide {
  margin:0 10px;
}
.home_intro .kv_slick-prev, 
.home_intro .kv_slick-next {
  position: absolute;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 3px solid var(--color-black);
  border-right: 3px solid var(--color-black);
  height: 15px;
  width: 15px;
  z-index: 10;
}
.home_intro .kv_slick-prev {
  left: 9.5%;
  transform: rotate(-135deg);
}
.home_intro .kv_slick-next {
  right: 9.5%;
  transform: rotate(45deg);
}
.home_intro .slick-dots {
  margin: 0 auto;
  display: none !important;
}
.home_intro .slick-dots li {
  display:inline-block;
  margin:0 5px;
}
.home_intro .slick-dots button {
  color: transparent;
  outline: none;
  width:0px;
  height:10px;
  display:block;
  border-radius:50%;
  background:#ccc;
  border: none;
}
.home_intro .slick-dots .slick-active button{
  background: var(--color-black);
}
@media (max-width:690px) {
  .home_intro .kv_slider .slick-slide{
    margin: 0 5px;
  }
  .home_intro .kv_slick-prev, .home_intro .kv_slick-next{
    display: none !important;
  }
}


/** ==================================================
* こんなお悩み
* ================================================ */
.home_worries{
  background: url(../img-matsuo/home-worries-bg.jpg) center / cover no-repeat;
}
.home_worries>.inner{
  width: var(--content-size-large);
  margin-inline: auto;
  padding-block: 80px;
}
.worries_wrap{
  display: flex;
  align-items: center;
  gap: clamp(30px, 2.7777777778vw, 50px);
}
.worries_wrap>.item{
  flex-basis: 50%;
  max-width: 50%;
}
.worries_txt > .ttl{
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
.worries_txt > p{
  margin-top: clamp(20px, 2.9069767442vw, 50px);
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width:960px) {
  .worries_wrap{
    flex-direction: column;
  }
  .worries_wrap>.item{
    flex-basis: 100%;
    max-width: 100%;
  }
}
/** ==================================================
* 選ばれる理由
* ================================================ */
.home_about{
  width: var(--content-size-large);
  margin-inline: auto;
  margin-block: clamp(80px, 6.976744186vw, 120px);
}
.top_tlt{
  text-align: center;
}
.top_tlt > p > img{
  margin: 0 auto;
}
.top_tlt > p::after{
  content: attr(data-text);
  font-family: var(--font-vista);
  font-size: var(--font-16);
  color: var(--color-black-b);
}
.top_tlt > h2{
  font-size: var(--font-30);
  font-weight: bold;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top_tlt > h2::after{
  content: "";
  border-bottom: 10px solid var(--color-blue-light);
  width: 100%;
  display: block;
  position: relative;
  bottom: 20px;
  z-index: -10;
}
.top_tlt > h2>span{
  font-size: var(--font-35);
}
.about_list{
  display: flex;
  justify-content: space-around;
  margin-top: clamp(30px, 4.0697674419vw, 70px);
  gap: 1em;
}
.about_list--content > p{
  text-align: center;
  margin-top: clamp(10px, 1.1627906977vw, 20px);
}
.about > .action{
  text-align: center;
  margin-top: clamp(30px, 3.488372093vw, 60px);
}

@media (max-width:767px) {
  .about_list{
    flex-direction: column;
  }
  .about_list--content>img{
    width: 100%;
  }
}

/** ==================================================
* バナー
* ================================================ */
.c-bnr>.inner{
  width: var(--content-size-medium);
  margin-inline: auto;
  padding-block: 100px;
}
.c-bnr>.inner>.link{
  text-align: center;
}
@media (hover : hover) { 
  .c-bnr>.inner>.link:hover{
    opacity: 0.65;
  }
}
@media (max-width:960px) {
  .c-bnr>.inner{
    padding-block: 50px;
  }
}

/** ==================================================
* CTA
* ================================================ */
.c-cta{
  background: url(../img-matsuo/cta-bg.png) center / cover no-repeat;
}
.c-cta.-trans{
  transform: translateY(-80px);
  margin-bottom: -80px;
}
.c-cta>.inner{
  width: min(1146px,90vw);
  margin-inline: auto;
  padding-block: 100px;
}
.c-cta>.inner>.ttl{
  color: var(--color-white);
  font-size: var(--font-35);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1em;
}
.c-cta>.inner>.ttl>span{
  display: inline-block;
  background-color: var(--color-yellow);
  border-radius: 10px;
  color: var(--color-blue);
  line-height: 1.4;
  padding-inline: 5px;
}
.c-cta>.inner>.flx{
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width:767px) {
  .c-cta>.inner{
    padding-block: 50px;
  }
}
@media (max-width:560px) {
  .c-cta>.inner>.flx{
    flex-direction: column;
  }
  .c-cta>.inner>.ttl{
    font-size: 20px;
  }
}

/** ==================================================
* お知らせ 施工事例
* ================================================ */
.page-container > .title > .heading.-news::after{
  content: "NEWS";
  display: block;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-en);
  position: relative;
  bottom: 4em;
}

.home_news{
  padding-block: clamp(80px, 6.976744186vw, 120px);
}
.home_news.-marg{
  padding-block: clamp(80px, 6.976744186vw, 120px) clamp(150px, 11.1111111111vw, 200px);
}
.home_news.-orange-bg{
  background: url(../img-matsuo/works-bg.jpg) center / cover no-repeat;
}
.home_news>.inner{
  width: min(1500px,90vw);
  margin-inline: auto;
}

.news_body>.no-txt{
  text-align: center;
  margin-top: 1em;
  font-size: 16px;
}

.c_archiveList{
  display: grid;
  gap: clamp(20px, 2.0833333333vw, 40px);
  margin-block: 80px;
}
.c_archiveList.-col4{
  grid-template-columns: repeat(4, 1fr);
}
.c_archiveList.-col3{
  grid-template-columns: repeat(3, 1fr);
}
.c_archiveList>.item{
  position: relative;
}
.c_archiveList>.item>.article{
  height: auto;
  display: block;
  position: relative;
}
.c_archiveList>.item>.article>.media{
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
  margin-bottom: 0.5em;
}
.c_archiveList>.item>.article>.media>.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: var(--transition-duration) var(--transition-timing-function);
}
.c_archiveList>.item>.article>.ttl{
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.6;
  font-size: 20px;
}
.c_archiveList>.item>.article>.date{
  font-weight: 600;
  font-size: 16px;
}
.c_archiveList>.item>.article>.data{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: .5em;
}
.c_archiveList>.item>.article>.data>.category{
  background-color: var(--color-blue);
  color: var(--color-white);
  font-weight: 600;
  padding-inline: 10px;
  font-size: 16px;
}
@media (max-width:960px) {
  .c_archiveList.-col4{
    grid-template-columns: repeat(2, 1fr);
  }
  .c_archiveList>.item>.article>.ttl{
    font-size: 18px;
  }
}
@media (max-width:560px) {
  .c_archiveList.-col4{
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    margin-block: 35px;
  }
  .c_archiveList.-col3{
    grid-template-columns: repeat(1, 1fr);
  }
}

/** ==================================================
* c-action
* ================================================ */
.c-action{
  display: flex;
  justify-content: center;
}
.c-action>.link{
  background-color: var(--color-yellow);
  border-radius: 50px;
  padding-block: 15px;
  padding-inline: 1em;
  width: min(340px,100%);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black-b);
  position: relative;
}
.c-action>.link::after{
  --icon-width: 2px;
  content: "";
  position: absolute;
  top: 52%;
  right: 5%;
  display: inline-block;
  box-sizing: border-box;
  width: 13px;
  height: 13px;
  border-style: solid;
  border-width: var(--icon-width) var(--icon-width) 0 0;
  border-color: var(--color-black-b);
  transform: translateY(-50%) rotate(45deg);
  margin-right: 20px;
  transition: all .4s;
}
@media (hover : hover) {
  .c-action>.link:hover{
    opacity: 1;
  }
  .c-action>.link:hover:after{
    right: 3%;
  }
}

/** ==================================================
* サービス
* ================================================ */
.service{
  display: flex;
}
.service>.service_item>a{
  position: relative;
}
.service>.service_item>a::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 7%;
  right: 7%;
  width: 3em;
  height: 2em;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transition: var(--transition-duration) var(--transition-timing-function);
  -webkit-mask-image: var(--icon-arrow);
  mask-image: var(--icon-arrow);
  background-color: var(--color-black-b);
  transition-duration: var(--transition-duration);
  transition-timing-function: ease;
}
@media (hover : hover) {
  .service>.service_item>a:hover:after{
    right: 5%;
  }
}
.service>.service_item>a>img{
  max-height: 320px;
  object-fit: cover;
}
.service>.service_item>a>.service_tlt{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: var(--font-38);
  color: var(--color-black);
  font-weight: 600;
  text-align: center;
  width: 100%;
}
.service>.service_item>a>.service_tlt::before{
  content: attr(data-text);
  color: var(--color-black);
  font-size: var(--font-15);
  display: flex;
  position: relative;
  justify-content: center;
  top: 2em;
  margin-bottom: 1em;
}
@media (max-width:767px) {
  .service>.service_item>a>.service_tlt{
    font-size: var(--font-25);
  }
  .service>.service_item>a>.service_tlt::before{
    font-size: var(--font-12);
  }
  .service>.service_item>a>img{
    max-height: 250px;
    object-fit: cover;
  }
}
@media (max-width:560px) {
  .service{
    flex-direction: column;
  }
  .service>.service_item>a>.service_tlt {
    font-size: 30px;
  }
  .service>.service_item>a>.service_tlt::before{
    font-size: 16px;
  }
}

/** ==================================================
* お客様の声
* ================================================ */
.home_voice{
  width: var(--content-size-large);
  margin-inline: auto;
  padding-block: 80px;
}
.voice > .c_row{
  --c_row-gutter-x: 30px;
  --c_row-gutter-y: 80px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.col.-voice{
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  padding: calc(var(--c_row-gutter-y, 0) / 2) 0;
  flex-basis: 33.333333%;
  max-width: 33.333333%;
  align-items: center;
}
.c_card.-voice{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  word-wrap: break-word;
  padding: clamp(31px, 3.6764705882vw, 50px) clamp(10px, 1.7441860465vw, 30px) clamp(31px, 3.6764705882vw, 50px);
  background: #dfeaf8;
  border-radius: 10px;
  align-items: flex-start;
  box-shadow: 2px 8px 15px 0px rgb(35 37 38 / 18%), -10px -10px 30px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;
}
.c_card.-voice > h3{
  font-family: var(--font-sans);
  font-size: var(--font-14);
  font-weight: bold;
  border: 1px solid var(--color-blue);
  padding: 0 5px;
  margin-bottom: 15px;
}
.voice_content{
  font-size: var(--font-16);
  font-family: var(--font-sans);
  text-decoration: dotted 1px;
  text-decoration-line: underline;
  text-decoration-color: var(--color-blue);
  text-underline-offset: 12px;
  line-height: 2.5;
}
@media (max-width:767px) {
  .voice_content{
    font-size: 16px;
  }
}
.voice_age{
  margin-top: 1em;
  text-align: right;
  font-family: var(--font-sans);
}
/* スライダー */
.home_voice .slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
  width:100%;
  margin:0 auto;
}

.home_voice .slider img {
  width:100%;/*スライダー内の画像を横幅100%に*/
  height:auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.home_voice .slider .slick-slide {
  margin:0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.home_voice .slick-prev, 
.home_voice .slick-next {
  position: absolute;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  height: 15px;
  width: 15px;
}

.home_voice .slick-prev {
  left: -1.5%;
  transform: rotate(-135deg);
}
.home_voice .slick-next {
  right: -1.5%;
  transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.home_voice .slick-dots {
  margin: 0 auto;
}
.home_voice .slick-dots li {
  display:inline-block;
  margin:0 5px;
}
.home_voice .slick-dots button {
  color: transparent;
  outline: none;
  width:11px;
  height: 11px;
  display:block;
  border-radius:50%;
  background: var(--color-blue-light);
  border: none;
}
@media (max-width:767px) {
  .home_voice .slick-dots button{
    width:100%;
    height:11px;
    max-width: 8px;
  }
  .home_voice .slick-prev {
    left: -2.5%;
  }
  .home_voice .slick-next {
    right: -2.5%;
  }
}
.home_voice .slick-dots .slick-active button{
  background: var(--color-blue);
}

/** ==================================================
* フッター
* ================================================ */
.footer{
  background-color: #d3e6f6;
  padding: clamp(80px, 6.976744186vw, 120px) 1em clamp(50px, 5.8139534884vw, 100px);
  display: flex;
  justify-content: center;
}
.footer_content{
  margin-right: clamp(0px, 6.976744186vw, 120px);
}
.footer_content >.addr{
  font-size: 16px;
  line-height: 1.6;
  margin-top: 1em;
}
.footer_content > .tel{
  margin-top: .5em;
  font-size: 16px;
  line-height: 1.6;
}
.footer_content > .tel>.link{
  text-decoration: underline;
}
.footer > .footer_content > .brand{
  flex: 0 0 auto;
}
.footer > .footer_content > .brand > a{
  display: flex;
  align-items: center;
}
.footer > .footer_content > .brand > a:hover{
  opacity: 1;
}

.footer_menu{
  margin-top: clamp(10px, 1.7441860465vw, 30px);
}
.footer_menu > .nav{
  display: flex;
  font-size: 16px;
  line-height: 2.2;
}
.footer_menu > .nav > ul{
  margin-right: clamp(30px, 4.0697674419vw, 70px);
}
.footer_menu > .nav > ul:last-of-type{
  margin-right: 0;
}
.footer_menu > .nav > ul > li > a{
  transition: all .4s;
}
.footer_menu > .nav > ul > li > a:hover{
  opacity: .65;
  transition: all .4s;
}
.footer_menu > .nav > ul > li > a::before{
  --icon-width: 2px;
  content: "";
  display: inline-block;
	box-sizing: border-box;
	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: var(--icon-width) var(--icon-width) 0 0;
	border-color: var(--color-black);
	transform: rotate(45deg);
  margin-right: 20px;
  transition: all .4s;
}
.footer_menu > .nav > ul > li > a:hover:before{
  transform: rotate(46deg) translateX(3px) translateY(-3px);
  transition: all .5s;
}

.sp_footer{
  display: none;
}
.copy{
  padding: 18px 1em;
  background-color: var(--color-blue);
}
.copy > p{
  font-size: 12px;
  font-family: var(--font-sans);
  text-align: center;
  color: var(--color-white);
}
@media (max-width:1100px) {
  .footer{
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer_content{
    margin-right: 0;
    text-align: center;
  }
  .footer > .footer_content > .brand > a{
    justify-content: center;
  }
}
@media (max-width:767px) {
  footer{
    padding-bottom: 55px;
  }
  .footer{
    padding-block: 40px 25px;
  }
  .sp_footer{
    display: block;
    position: fixed;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 100000;
    align-items: flex-end;
  }
  .sp_footer-contact{
    background-color: var(--color-blue);
    width: 50%;
    padding: 10px 0;
    color: #fff;
    text-align: center;
  }
  .sp_footer-contact > a{
    color: #fff;
    font-size: var(--font-20);
    font-weight: bold;
    position: relative;
    padding-left: 40px;
  }
  .sp_footer-contact > a > img{
    position: absolute;
    width: 30px;
    height: auto;
    left: 0;
    top: 2px;
  }
  .sp_footer-tel{
    background: var(--color-white);
    width: 50%;
    padding: 10px 0;
    color: #fff;
    text-align: center;
  }
  .sp_footer-tel > a{
    color: var(--color-blue);
    font-size: var(--font-20);
    font-weight: bold;
    position: relative;
    padding-left: 40px;
  }
  .sp_footer-tel > a > img{
    position: absolute;
    width: 20px;
    height: auto;
    left: 10px;
    top: 0;
  }
}

/** ==================================================
* 
* ================================================ */
/* 固定ページ・投稿ページ */
.page-container > .title {
  /* display: grid;
  place-items: center;
  height: clamp(125px, 14.7058823529vw, 200px); */
  position: relative;
}
.page-container > .title > img{
  height: clamp(300px, 20.3488372093vw, 350px);
  width: 100%;
  object-fit: cover;
}
.page-container > .title > .heading {
  max-width: var(--content-size-large);
  margin: 0 auto;
  font: 700 var(--font-30)/1.375 var(--font-sans-b);
  font-size: 35px;
  color: var(--color-white);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-shadow: 0px 4px 2px #00000073;
}
.page-container > .title > .heading::before {
  content: url(../img/logo.svg);
  display: block;
  position: relative;
  bottom: 0.3em;
  transform: scale(0.7);

}
.page-container > .title > .heading.-about::after{
  content: "ABOUT US";
  display: block;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-en);
  position: relative;
  bottom: 4em;
}
@media (max-width:767px) {
  .page-container > .title > .heading{
    font-size: 26px;
    width: 100%;
  }
}
.page-container > .breadcrumb {
  max-width: var(--content-size-large);
  margin: 0 auto;
  padding-top: 25px;
}
.page-container > .body {
  padding: clamp(80px, 6.976744186vw, 120px) 0 clamp(80px, 8.7209302326vw, 150px);
}
.archive-container {
  max-width: var(--content-size-medium);
  margin: 0 auto;
}
.archive-container > .archive-category {
  margin-bottom: clamp(25px, 2.9411764706vw, 40px);
}
.archive-container > .pagination {
  margin-top: clamp(47px, 5.5147058824vw, 75px);
  text-align: center;
}
.archive-container > .pagination > .wp-pagenavi > .current{
  border: 1px solid var(--color-brown);
  color: var(--color-white);
  background-color: var(--color-brown);
  padding: 5px 8px;
  margin-right: 5px;
}
.archive-container > .pagination > .wp-pagenavi > .page{
  border: 1px solid var(--color-brown);
  color: var(--color-brown);
  padding: 5px 8px;
  margin-right: 5px;
}


.archive-category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  font-size: var(--font-13);
  line-height: 1.25;
}
.archive-category > li > a {
  display: block;
  padding: 0.375em 1em;
  border: 2px solid var(--color-brown);
  color: var(--color-brown);
}
.archive-category > li > a.-current {
  background: var(--color-brown);
  color: var(--color-white);
}
.single-container {
  max-width: var(--content-size-medium);
  margin: 0 auto;
}
.single-article {
  padding: 0 clamp(63px, 7.3529411765vw, 100px) 0;
  background: var(--color-white);
  color: var(--color-black);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(38px, 4.4117647059vw, 60px)), calc(100% - clamp(38px, 4.4117647059vw, 60px)) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(38px, 4.4117647059vw, 60px)), calc(100% - clamp(38px, 4.4117647059vw, 60px)) 100%, 0 100%);
}
@media (max-width: 768px) {
  .single-article {
    padding: 0;
  }
}
.single-article > .single-header {
  padding-bottom: clamp(16px, 1.8382352941vw, 25px);
  border-bottom: 1px dotted var(--color-red-b);
}
.single-article > .single-header > .heading {
  font: 700 var(--font-27)/1.5 var(--font-sans-b);
  font-size: 27px;
  text-align: justify;
  word-break: break-all;
}
.single-article > .single-header > .single-headerData {
  margin-top: clamp(9px, 1.1029411765vw, 15px);
}
.single-article > .body {
  margin-top: clamp(38px, 4.4117647059vw, 60px);
}
.single-article > .single-footer {
  margin-top: clamp(44px, 5.1470588235vw, 70px);
}
.single-article > .single-footer > .c-pager {
  margin-top: clamp(16px, 1.8382352941vw, 25px);
}
.single-headerData {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.25;
  color: var(--color-brown);
}
.single-headerData > li:not(:last-child)::after {
  content: "/";
  margin: 0 0.75em;
}
.single-headerCategory {
  display: flex;
  flex-wrap: wrap;
}
.single-headerCategory > li:not(:last-child)::after {
  margin: 0 0.25em 0 0.125em;
  content: ",";
}
.single-footerShare {
  padding: clamp(19px, 2.2058823529vw, 30px);
  background: var(--color-brown-light);
  text-align: center;
}
.single-footerShare > .heading {
  margin-bottom: 0.75em;
  font-weight: 700;
  font-size: var(--font-15);
}
.c-pager {
  --c-pager-gap: 2em;
  --c-pager-font-weight: 500;
  --c-pager-font-size: var(--font-13);
  --c-pager-font-family: var(--font-sans);
  --c-pager-line-height: 1.5;
  --c-pager-color: var(--color-black-light);
  --c-pager-a-text-decoration: underline;
}
.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--c-pager-gap);
  line-height: var(--c-pager-line-height);
  font-weight: var(--c-pager-font-weight);
  font-size: var(--c-pager-font-size);
  font-family: var(--c-pager-font-family);
  color: var(--c-pager-color);
}
.c-pager > .prev,
.c-pager > .next {
  flex: 1 1 0%;
}
.c-pager > .next {
  text-align: right;
}
.c-pager > .back {
  flex: 0 0 auto;
}
.c-pager > .prev a,
.c-pager > .next a {
  display: inline-flex;
  align-items: center;
  -webkit-text-decoration: var(--c-pager-a-text-decoration);
          text-decoration: var(--c-pager-a-text-decoration);
}
.c-pager > .prev a::before {
  flex: 0 0 auto;
}
.c-pager > .back a {
  text-align: center;
}
.c-pager > .next a {
  text-align: right;
}
.c-pager > .next a::after {
  flex: 0 0 auto;
}

.c-pager .prev > a,
.c-pager .next > a {
  gap: 0.5em;
}
.c-pager .prev > a::before,
.c-pager .next > a::after {
  content: "";
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: var(--icon-arrow-right) no-repeat center/cover;
          mask: var(--icon-arrow-right) no-repeat center/cover;
}
.c-pager .prev > a::before {
  transform: rotate(180deg);
}

/* パンくず */
.c-breadcrumb {
  --c-breadcrumb-font-size: var(--font-16);
  --c-breadcrumb-line-height: 1.375;
  --c-breadcrumb-color: var(--color-brown);
  --c-breadcrumb-divider-size: .875em;
  --c-breadcrumb-divider-margin-x: .75em;
  --c-breadcrumb-divider-color: currentColor;
  --c-breadcrumb-divider-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3e%3cpath fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-miterlimit='10' d='M6 3.5l5 4.5-5 4.5'/%3e%3c/svg%3e");
}
.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: var(--c-breadcrumb-line-height);
  font-size: var(--c-breadcrumb-font-size);
  color: var(--c-breadcrumb-color);
}
@media (max-width:767px) {
  .c-breadcrumb{
    font-size: 15px;
    line-height: 2;
  }
}
.c-breadcrumb > li {
  display: flex;
  align-items: center;
  padding-right: var(--c-breadcrumb-divider-margin-x);
}
.c-breadcrumb > li:not(:last-child)::after {
  content: "";
  flex: 0 0 auto;
  width: var(--c-breadcrumb-divider-size);
  height: var(--c-breadcrumb-divider-size);
  background-color: var(--c-breadcrumb-divider-color);
  margin-left: var(--c-breadcrumb-divider-margin-x);
  -webkit-mask: var(--c-breadcrumb-divider-image) no-repeat center center/contain;
          mask: var(--c-breadcrumb-divider-image) no-repeat center center/contain;
}
.c-breadcrumb > li > a {
  text-decoration: underline;
}

.c-row.-archive-list {
  --c-row-gutter-x: clamp(41px, 4.7794117647vw, 65px);
  --c-row-gutter-y: clamp(50px, 5.8823529412vw, 80px);
}
.c-row {
  display: flex;
  flex-wrap: wrap;
  /* margin: calc(var(--c-row-gutter-y) / 2 * -1) calc(var(--c-row-gutter-x) / 2 * -1); */
  padding: 0;
  list-style: none;
}
.c-row.-one > .col {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
@media (max-width: 768px){
  .c-row.-md-three > .col {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 560px){
  .c-row.-sm-two > .col {
      flex-basis: 100%;
      max-width: 100%;
  }
}
.c-row > .col {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    padding: calc(var(--c-row-gutter-y, 0) / 2) calc(var(--c-row-gutter-x, 0) / 2);
}
.c-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  line-height: 1;
  color: inherit;
  word-wrap: break-word;
}
.c-card.-home-works > .media,.c-card.-archive-list > .media {
  aspect-ratio: 335/250;
}
.c-card > .media {
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
}
.c-card > .media > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-card > .body {
  flex: 1 1 0%;
}
.c-card.-archive-list > .body > .title{
  margin-top: 0.625em;
  font: 700 var(--font-16)/1.625 var(--font-sans-b);
  text-align: justify;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive_category{
  display: flex;
  margin-top: 10px;
}
.archive_category > li{
  border: 1px solid var(--color-brown);
  color: var(--color-brown);
  font-size: var(--font-15);
  padding: 0.375em 1em;
}
.archive_category > li + li{
  margin-left: 5px;
}
.archive_category > li:first-of-type{
  display: none;
}
.c-card.-archive-list > .body > .date{
  margin-top: 10px;
}



/* 当院について */
.aboutus{
  padding: 0 clamp(0px, 10.4651162791vw, 180px);
}
.aboutus_wrap{
  display: flex;
  justify-content: center;
  gap: 3em;
  margin-bottom: clamp(30px, 6.976744186vw, 120px);
}
.aboutus_img > img{
  border-radius: 10px;
}
.aboutus_wrap > .aboutus_profile{
  width: 60%;
}
.aboutus_profile > h2{
  font-size: var(--font-24);
}
.aboutus_profile > .h2_after{
  font-size: var(--font-14);
  line-height: 1;
  margin-bottom: 30px;
}
.aboutus_list{
  display: flex;
  gap: 1em;
  margin-top: 40px;
  font-size: var(--font-15);
}
.aboutus_list > .profile{
  width: 50%;
  background: var(--color-brown-light);
  border-radius: 10px;
  padding: 0  clamp(0px, 1.1627906977vw, 20px) clamp(0px, 1.7441860465vw, 30px);
}
.aboutus_list > .profile > h3{
  font-size: var(--font-16);
  text-align: center;
  font-weight: bold;
  position: relative;
  bottom: 1em;
}
.aboutus_list > .profile th{
  width: 30%;
}
.aboutus_list > .qualification{
  width: 50%;
  background: var(--color-brown-light);
  border-radius: 10px;
  padding: 0  clamp(0px, 1.1627906977vw, 20px) clamp(0px, 1.7441860465vw, 30px);
}
.aboutus_list > .qualification > h3{
  font-size: var(--font-16);
  text-align: center;
  font-weight: bold;
  position: relative;
  bottom: 1em;
}

@media (max-width:1350px) {
  .aboutus_wrap > .aboutus_profile{
    width: 100%;
  }
}
@media (max-width:1096px) {
  .aboutus_wrap{
    gap: 1.5em;
  }
}
@media (max-width:995px) {
  .aboutus_wrap{
    flex-wrap: wrap;
  }
  .aboutus_list > .profile{
    padding: 0 30px 30px;
  }
  .aboutus_list > .qualification{
    padding: 0 30px 30px;
  }
  .aboutus_list{
    font-size: 16px;
  }
}
@media (max-width:900px) {
  .aboutus_list{
    flex-wrap: wrap;
    justify-content: center;
    font-size: var(--font-20);
    gap: 3em;
  }
  .aboutus_list > .profile{
    width: 90%;
    padding: 0 clamp(0px, 11.1111111111vw, 100px) 30px clamp(0px, 11.1111111111vw, 100px);
  }
  .aboutus_list > .profile > h3{
    font-size: var(--font-30);
  }
  .aboutus_list > .qualification{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
	  padding: 0 clamp(0px, 11.1111111111vw, 100px) 30px clamp(0px, 11.1111111111vw, 100px);
  }
  .aboutus_list > .profile th{
    text-align: right;
    padding-right: 2em;
  }
  .aboutus_list > .qualification > h3{
    font-size: var(--font-30);
  }
}
@media (max-width:767px) {
  .aboutus{
    padding: 0 clamp(0px, 4.6511627907vw, 80px);
  }
  .aboutus_list{
    font-size: 16px;
  }
  .aboutus_list > .profile{
    padding: 0 .5em 2em;
  }
  .aboutus_list > .profile th{
    padding-right: 1em;
  }
  .aboutus_list > .qualification{
    padding: 0 1em 30px;
  }
}

.leaves-container{
  padding-top: clamp(30px, 4.6511627907vw, 80px);
  background: var(--color-brown-light);
  position: relative;
  width: 100%; /* コンテナの横幅 */
}
.thought_txt{
  text-align: center;
}
.thought_txt > h2{
  font-size: var(--font-30);
  font-weight: bold;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media (max-width:767px) {
  .thought_txt > h2{
    font-size: var(--font-40);
  }
}
.thought_txt > h2::after{
  content: "";
  border-bottom: 10px solid var(--color-yellow);
  width: 100%;
  display: block;
  position: relative;
  bottom: 25px;
  z-index: -1;
}
.thought_txt > h2::before{
  content: attr(data-text);
  display: block;
  font-size: var(--font-18);
  position: relative;
  top: 0.7em;
  opacity: .6;
}
.thought_txt > p{
  font-size: var(--font-20);
}
.thought_item{
  display: flex;
  justify-content: center;
  gap: 2em;
  position: relative;
  top: clamp(30px, 3.488372093vw, 60px);
}
.thought_img > img{
  border-radius: 10px;
}

/* 花びらの共通スタイル */
.leaf {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  animation: animate-leaf 8s linear;
}
.leaf_01 {
  background-image: url('https://kanon.rest/wp-content/themes/kanon/assets/img/leaf_01.svg'); 
}
/* .leaf_02 {
  background-image: url('https://kanon.rest/wp-content/themes/kanon/assets/img/leaf_02.svg'); 
}
.leaf_03 {
  background-image: url('https://kanon.rest/wp-content/themes/kanon/assets/img/leaf_03.svg'); 
} */
@keyframes animate-leaf {
  0% {
    opacity: 0;
    top: 0;
    transform: rotate(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: 100vh;
    transform: rotate(1080deg);
  }
}
@media (max-width:560px) {
  .thought_item{
    gap: .5em;
  }
  .thought_txt > p{
    font-size: 16px;
    text-align: left;
  }
}

.facility{
  padding-top: clamp(80px, 11.6279069767vw, 200px);
  margin-bottom: clamp(30px, 6.976744186vw, 120px);
}
.facility_content{
  margin-top: clamp(30px, 3.488372093vw, 60px);
}
.facility_item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3.488372093vw, 60px);
}
.facility_item.-reverse{
  flex-direction:row-reverse;
  margin-top: 50px;
}
.facility_item > img{
  border-radius: 10px;
  width: 50%;
}
.facility_item--txt{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
}
.facility_item--txt> h2{
  font-size: 25px;
  font-weight: bold;
}

@media (max-width:590px) {
  .facility_item,
  .facility_item.-reverse{
    flex-direction: column;
  }
  .facility_item > img{
    width: 100%;
  }
  .facility_item--txt{
    width: 100%;
  }
}

.guidance{
  padding-top: clamp(30px, 6.976744186vw, 120px);
  background: var(--color-brown-light);
}
.guidance_img{
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.7441860465vw, 30px);
}
.guidance_img.-sp{
  display: none;
}
.guidance_img--item > h3{
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.guidance_img--item > img{
  border-radius: 10px;
}
.guidance_img--content{
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  top: 40px;
  max-width: 1290px;
  margin: 0 auto;
}
.guidance_img--content > img{
  width: 25%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width:560px) {
  .guidance_img.-pc{
    display: none;
  }
  .guidance_img.-sp{
    display: block;
  }
  .guidance_img.-sp > .guidance_img--item >img{
    margin-bottom: 1em;
  }
  .guidance_img--content.-pc{
    display: none;
  }
  .guidance_img--item.-topMarg{
    margin-top: 3em;
  }
}

.overview{
  padding-top: clamp(30px, 6.976744186vw, 120px);
}
.overview_list{
  max-width: 680px;
  margin: 0 auto;
}
.overview_list table tr{
  border-bottom: 1.5px dotted var(--color-brown);
}
.overview_list table th{
  width: 20%;
  font-weight: normal;
  padding: 10px 0 10px 1em;
}
.overview_list table td{
  padding: 10px 0 10px 1em;
  line-height: 1.6;
}
.overview_list > p{
  margin-top: clamp(10px, 1.7441860465vw, 30px);
  /* font-size: var(--font-16); */
}
.overview_btn{
  display: flex;
  justify-content: center;
  gap: clamp(30px, 3.488372093vw, 60px);
  margin-top: clamp(30px, 3.488372093vw, 60px);
}
.overview_tel--action,
.overview_map--action{
  margin-top: 0;
}
.overview_tel--action > a{
  background: var(--color-brown);
  color: var(--color-white);
  border-radius: 50px;
  padding: 15px 80px;
  font-weight: 700;
  transition: all .3s;
}
.overview_tel--action > a:hover{
  opacity: 1;
  transform: translateY(2px);
}
.overview_map--action > a{
  border-radius: 50px;
  padding: 15px 28px;
  font-weight: 700;
  transition: all .3s;
}
.overview_map--action > a:hover{
  opacity: 1;
  transform: translateY(2px);
}

@media (max-width:560px) {
  .overview_btn{
    flex-direction: column;
    align-items: center;
  }
}
.about_bnr{
  padding-top: 50px;
}
.bnr_wrap{
  text-align: center;
}
.bnr_wrap--item{
  position: relative;
}
.btn_anim > img{
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 65%;
  z-index: 10;
}
.bnr_wrap--item.-column > .btn_anim > img{
  left: 69%;
}
@media (max-width:767px) {
  .btn_anim > img{
    left: 58;
  }
  .bnr_wrap--item.-column > .btn_anim > img{
    left: 63%;
  }
}
.bnr_wrap--item > a{
  padding: 49px clamp(168px, 11.9186046512vw, 205px) 49px clamp(60px, 10.8720930233vw, 187px);
  font-size: var(--font-20);
  font-weight: bold;
}
.bnr_wrap--item > a.btn_anim{
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: .3s;
}
.bnr_wrap--item > a.btn_anim::before{
  content: "";
  width: 120%;
  height: 200%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background: #f2eeed;
  /* border-radius: 0 100% 100% 0; */
  transform: translateX(-100%);
  transition: transform ease .4s;
}
.bnr_wrap--item > a.btn_anim:hover{
  opacity: 1;
}
.bnr_wrap--item > a.btn_anim:hover:before{
  transform: translateX(10%);
}

.bnr_wrap--item.-column > a{
  padding: 49px clamp(166px, 11.2790697674vw, 194px) 49px clamp(50px, 10.1162790698vw, 174px);
}


/* スマホ時ホバーなし */
@media (max-width:767px) {
  
  .overview_tel--action > a:hover{
    opacity: 1;
    transform: translateY(0px);
  }
  .overview_map--action > a:hover{
    opacity: 1;
    transform: translateY(0px);
  }
  .bnr_wrap--item > a.btn_anim:hover{
    opacity: 1;
  }
  .bnr_wrap--item > a.btn_anim:hover:before{
    transform: translateX(-100%);
  }
  .sns_icon li > a> img:hover{
    width: 38px;
  }
}

/* フェード */
.c-fadein {
  --c-fadein-transform-translate-length: clamp(10px, 1.2121212121vw, 16px);
  --c-fadein-transition-duration: 1s;
  --c-fadein-transition-timing-function: ease;
  --c-fadein-transition-delay: 0s;
}

.c-fadein {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: var(--c-fadein-transition-duration);
  transition-timing-function: var(--c-fadein-transition-timing-function);
  transition-delay: var(--c-fadein-transition-delay);
  animation-duration: var(--c-fadein-transition-duration);
}

.c-fadein.-toLeft {
  transform: translateX(var(--c-fadein-transform-translate-length));
}
.c-fadein.-toRight {
  transform: translateX(calc(var(--c-fadein-transform-translate-length) * -1));
}
.c-fadein.-up {
  transform: translateY(var(--c-fadein-transform-translate-length));
}
.c-fadein.-down {
  transform: translateY(calc(var(--c-fadein-transform-translate-length) * -1));
}

.c-fadein.-is-active {
  opacity: 1;
  transform: translateX(0);
}

.c-fadein.-delay-1 {
  --c-fadein-transition-delay: .3s;
}
.c-fadein.-delay-2 {
  --c-fadein-transition-delay: .6s;
}
.c-fadein.-delay-3 {
  --c-fadein-transition-delay: .9s;
}
.c-fadein.-bounce.-is-active {
  animation-name: c-fadein-bounce;
}

@keyframes c-fadein-bounce {
  0% {
    transform: scale3d(0, 0, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.1, 0.9, 1);
  }
  65% {
    transform: scale3d(0.9, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@media (max-width: 959px) {
  .c-fadein.-home-items.-delay-1, .c-fadein.-home-items.-delay-2, .c-fadein.-home-items.-delay-3 {
    --c-fadein-transition-delay: 0s;
  }
}


/* サービス・料金 */
.page-container > .title > .heading.-service::after{
  content: "SERVICE";
  display: block;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-en);
  position: relative;
  bottom: 4em;
}
.service_price{
  padding: 0 1em;
}
.price_item{
  text-align: center;
  border: 1px dotted #707070;
  max-width: 500px;
  width: 100%;
  margin: 1em auto 0;
  padding: 40px 0;
}
.price_item > p{
  font-size: 20px;
}
.price_item > p > span{
  font-size: 24px;
  font-weight: bold;
}
.service_acupuncture{
  position: relative;
}
.service_acupuncture::before{
  position: absolute;
  content: "";
  left: 0;
  top: 250px;
  background: var(--color-brown-light);
  width: 100%;
  height: 85%;
  z-index: -1;
}
.service_acupuncture.-content02{
  position: relative;
}
.service_acupuncture.-content02::before{
  position: absolute;
  content: "";
  left: 0;
  top: 250px;
  background: var(--color-brown-light);
  width: 100%;
  height: 80%;
  z-index: -1;
}
.service_acupuncture.-content03{
  position: relative;
}
.service_acupuncture.-content03::before{
  position: absolute;
  content: "";
  left: 0;
  top: 250px;
  background: var(--color-brown-light);
  width: 100%;
  height: 80%;
  z-index: -1;
}
.service_acupuncture--imgCenter{
  margin: 1em auto 0;
  max-width: 100%;
  object-fit: cover;
}
.acupuncture_content{
  text-align: center;
  padding: 0 1em;
  margin-top: 30px;
}
.service_acupuncture--wrap{
  margin-top: 80px;
}
.service_acupuncture--wrap.-content02{
  margin-top: 180px;
}
.acupuncture_item{
  max-width: 760px;
  width: 100%;
  background: var(--color-white);
  padding: clamp(20px, 1.7441860465vw, 30px) 1em clamp(25px, 2.9069767442vw, 50px);
  margin: 30px auto 0;
}
.acupuncture_item > h2{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.acupuncture_item > p{
  text-align: center;
  margin-bottom: clamp(10px, 1.7441860465vw, 30px);
  line-height: 1.5;
}
.acupuncture_item > p > span{
  display: inline-block;
  position: relative;
  z-index: 1;
}
.acupuncture_item > p > span::after{
  content: "";
  border-bottom: 10px solid var(--color-yellow);
  width: 100%;
  display: block;
  position: relative;
  bottom: 10px;
  z-index: -1;
  border-radius: 10px;
}
.acupuncture_item--list > li{
  list-style: none;
  margin: 0;
  padding: 0;
}
.acupuncture_item--list > li::before{
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: var(--color-yellow);
  border-radius: 50%;
  margin-right: 10px;
}
.acupuncture_item--list > li span{
  padding-left: 60px;
}
.acupuncture_item--list > li span.price_marg{
  padding-left: 50px;
}
.acupuncture_item--list > li span.price_marg02{
  padding-left: 40px;
}
.acupuncture_item--txt{
  margin-top: 30px;
}
.acupuncture_item--txt > p{
  text-align: left;
  line-height: 1.7;
  margin-left:1em;
  text-indent:-1em;
}
.acupuncture_item--txt > p + p {
  padding-top: 10px;
}
.acupuncture_item--txt > p > span{
  display: inline-block;
  position: relative;
  z-index: 1;
  left: 1em;
  margin-right: 1em;
}
.acupuncture_item--txt > p > span::after{
  content: "";
  border-bottom: 10px solid var(--color-yellow);
  width: 100%;
  display: block;
  position: relative;
  bottom: 10px;
  z-index: -1;
  border-radius: 10px;
}
@media (max-width:767px) {
  .acupuncture_item > p{
    text-align: left;
  }
  .service_acupuncture--imgCenter{
    height: 30vh;
  }
  .service_acupuncture--imgCenter.-height_img{
    height: 50vh;
  }
  .service_acupuncture::before{
    height: 80%;
  }
  .service_acupuncture--wrap.-content02{
    margin-top: 90px;
  }
  .service_acupuncture.-content02::before{
    height: 70%;
  }
  .service_acupuncture.-content03::before{
    height: 75%;
  }
  .service_acupuncture.-content02{
    position: relative;
  }
  .acupuncture_content > p{
    text-align: left;
  }
}

.service_menu{
  margin-top: 180px;
  padding: 0 1em;
}
.service_menu--list{
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
.service_menu--list.-commission{
  margin-top: clamp(50px, 6.976744186vw, 120px);
}
.service_menu--list.-commission > h2{
  background-color: var(--color-brown);
}
.service_menu--list > h2{
  text-align: center;
  background-color: var(--color-brown-b);
  color: var(--color-white);
  font-size: 30px;
}
.service_menu--list > .menu_txt > p:first-of-type{
  padding-top: 30px;
}
.service_menu--list > .menu_txt > p:last-of-type{
  padding-bottom: 30px;
}
.service_menu--list > .menu_txt > p{
  background-color: var(--color-gray-light);
  padding: 0 clamp(10px, 6.976744186vw, 120px);
}
.service_menu--list > .menu_txt > p > span{
  display: inline-block;
  position: relative;
  z-index: 1;
}
.service_menu--list > .menu_txt > p > span::after{
  content: "";
  border-bottom: 10px solid var(--color-yellow);
  width: 100%;
  display: block;
  position: relative;
  bottom: 15px;
  z-index: -1;
  border-radius: 10px;
}
.service_menu--list.-commission > .menu_txt > p:first-of-type{
  text-decoration: underline 10px;
  text-decoration-color: var(--color-yellow);
  text-underline-offset: -3px;
  text-decoration-skip-ink: none;
}
@media (max-width:767px) {
  .service_menu--list > .menu_txt > p{
    padding: 0 1em;
  }
  .service_menu{
    margin-top: 120px;
  }
}

/* 	よくあるご質問 */
.page-container > .title > .heading.-faq::after{
  content: "Q&A";
  display: block;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-en);
  position: relative;
  bottom: 4em;
}
.accordion-area{
  list-style: none;
  width: 95%;
  max-width: 960px;
  margin:0 auto;
}
.accordion-area p.faq_txt{
  text-align: center;
  margin-bottom: 80px;
  font-size: 20px;
}
@media (max-width:767px) {
  .accordion-area p.faq_txt{
    font-size: 18px;
    text-align: left;
    margin-bottom: 50px;
  }

}
.accordion-area li{
  margin: 10px 0;
}
.accordion-area section {
border: 1px solid var(--color-brown);
}
/*アコーディオンタイトル*/
.faq_title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size:1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
  font-size: 18px;
  font-weight: bold;
}
/*アイコンの＋と×*/
.faq_title::before,
.faq_title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #c97488;
}
.faq_title::before{
  top:48%;
  left: 15px;
  transform: rotate(0deg);
}
.faq_title::after{    
  top:48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.faq_title.close::before{
transform: rotate(45deg);
}
.faq_title.close::after{
transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.faq_box {
  display: none;/*はじめは非表示*/
  background: var(--color-brown-light);
  margin:0 3% 3% 3%;
  padding: 3%;
  color: #333;
}


/* 404ページ */
.page-container > .title > .heading.-notfound::after{
  content: "NOT FOUND";
  display: block;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-en);
  position: relative;
  bottom: 4em;
}
.notfound-container {
  max-width: var(--content-size-medium);
  margin: 0 auto;
}
.notfound-container > .text {
  font-size: var(--font-16);
  line-height: 2.25;
  text-align: justify;
  word-break: break-all;
}
@media (min-width: 560px) {
  .notfound-container > .text {
    text-align: center;
  }
}
.notfound-container > .action {
  margin-top: clamp(31px, 3.6764705882vw, 50px);
  text-align: center;
}
@media (max-width:368px) {
  .action > .btn{
      padding: 10px 70px !important;
  }
  
}

/* ご予約・お問い合わせ */
.page-container > .title > .heading.-contact::after{
  content: "CONTACT";
  display: block;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-en);
  position: relative;
  bottom: 4em;
}
div.contact_guidance .frame{
	width:80%;
	max-width:1000px;
	margin: 0 auto 60px;
	border:1px solid var(--color-red-b);
	border-radius:10px;
	padding:36px 10px 32px 10px;
	box-sizing:border-box;
	text-align:center;		
}
@media screen and (max-width:1000px){
	div.contact_guidance .frame{
		width:94%;
	}
}
@media screen and (max-width:768px){
	div.contact_guidance .frame{
		width:96%;
    padding: 30px 1em;
		text-align:left;		
	}
}	
div.contact_guidance .question span{
	font-weight:600;		
}
div.contact_guidance .tel{
	text-align:center;
}
div.contact_guidance .tel a{
  font-weight: bold;
  font-size: 42px;
	color:#4A390F;
}
div.contact_guidance .tel a:before{
  content: url(../img/footer_telicon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 1em;
}
@media screen and (max-width:560px){
	div.contact_guidance .tel a{
		font-size:32px;
	}
}
div.contact_guidance .tel:hover,
div.contact_guidance .tel:hover::before{
  color:#EEB73A;
}	
div.contact_guidance .reception{
  font-size:15px;
	margin:10px auto;
	line-height:1.7;
	text-align:center;	
}	
div.page-content{
	width:100%;
	margin:0 auto;
	margin-bottom:100px;
}
div.mes{
	box-sizing:border-box;
	margin-bottom:40px;
}
div.mes h3{
	color:#c36;
	font-size:18px;
	font-weight:bold;
}	
#contact{
  max-width:var(--content-size-medium);
  background-color:#fff;
  padding:60px 80px;
  box-sizing:border-box;
  border:2px solid var(--color-brown-b);
  border-radius:10px;
  margin: 0 auto;
}
@media screen and (max-width:1380px){
	#contact{
    max-width: 95%;
    padding: 60px 2em;
	}
}	
@media screen and (max-width:767px){
	#contact{
    padding: 60px 1em;
	}
}	

#contact .contact-flow {
  max-width: 400px;
  position: relative;
  box-sizing: border-box;
  margin: 10px auto 40px auto;
}
#contact .contact-flow:before {
  content: "";
  width: calc(100% - 50px);
  height: 2px;
  background-color: #d5cdcd;
  position: absolute;
  top: 7px;
  left: 25px;
  z-index: 0;
}
#contact .contact-flow ul.flow-list {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  margin: 0;
  justify-content: space-between;
  align-items: center;
	padding: 0;
}
#contact .contact-flow ul.flow-list li {
	list-style: none;
}
#contact .contact-flow ul.flow-list > li.flow-list-item {
  width: 60px;
  position: relative;
  top: 3px;
  z-index: 1;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: var(--color-brown);
}
#contact .contact-flow ul.flow-list > li.flow-list-item.active {
  color: var(--color-brown);
}
#contact .contact-flow ul.flow-list > li.flow-list-item:before {
  position: static;
  content: "";
  width: 10px;
  height: 10px;
  margin: 0 auto;
  margin-bottom: 20px;
  display: block;
  background-color: #d5cdcd;
  border-radius: 50%;
  box-shadow: none;
}
#contact .contact-flow ul.flow-list > li.flow-list-item.active:before {
  background-color: #3b2929;
}	
.contact-form {
  margin-top: clamp(47px, 6.27090301vw, 75px);
}
.contact-form > div + div {
  margin-top: clamp(19px, 2.508361204vw, 30px);
}
.contact-form > div > dt {
  font-size: 16px;
  line-height: 1.625;
}
.contact-form > div > dd {
  flex: 1 1 0%;
  margin-top: clamp(5px, 0.6688963211vw, 8px);
  font-size: 15px;
  line-height: 1.5;
}
.contact-form > .privacy {
  margin-top: clamp(38px, 5.016722408vw, 60px);
  text-align: center;
}
@media (max-width:767px) {
  .contact-form > .privacy{
    text-align: left;
  }
}
.mw_wp_form_confirm .contact-form > .privacy > dd, .mw_wp_form_preview .contact-form > .privacy > dd {
  display: none;
}
.contact-form > .submit > dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
@media (min-width: 560px) {
  .contact-form > .submit > dd {
    flex-direction: row-reverse;
    gap: clamp(13px, 1.6722408027vw, 20px);
  }
}
.contact-form a {
  color: var(--color-red);
  text-decoration: underline;
}
.contact-form .required {
  margin-left: 0.25em;
  color: var(--color-red);
}
.c-form-control {
  --c-form-control-border: 1px solid var(--color-gray-light);
  --c-form-control-border-radius: 5px;
  --c-form-control-padding: .75em 1em;
  --c-form-control-background: var(--color-gray-pale);
  --c-form-control-line-height: 1.625;
  --c-form-control-font-size: 16px;
  --c-form-control-font-color: inherit;
  --c-form-control-textarea-padding: 1em;
}
@media (min-width: 768px) {
  .c-form-control {
    --c-form-control-padding: 1.125em;
    --c-form-control-font-size: 17px;
  }
}
.c-form-control {
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin: 0;
  padding: var(--c-form-control-padding, 0);
  border: var(--c-form-control-border, none);
  border-radius: var(--c-form-control-border-radius, 0);
  background: var(--c-form-control-background, transparent);
  font: inherit;
  font-size: var(--c-form-control-font-size, inherit);
  line-height: var(--c-form-control-line-height, inherit);
  color: var(--c-form-control-font-color, inherit);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-form-control:disabled {
  cursor: not-allowed;
}
textarea.c-form-control {
  padding: var(--c-form-control-textarea-padding, 0);
  resize: vertical;
}

select.c-form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='22' viewBox='0 0 30 22'%3e%3cpath fill='%23343a40' d='M15 22L0 0h30z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: calc(100% - 0.75em) 50%;
  background-size: 0.5em auto;
}
select.c-form-control[multiple], select.c-form-control[size]:not([size="1"]) {
  background-image: none;
}

.c-form-control.-auto {
  display: inline-block;
  width: auto;
}

.c-btn.-contactAction {
  justify-content: center;
  min-width: clamp(175px, 23.4113712375vw, 280px);
  padding: 1.125em 3.25em;
  font-size: 16px;
  text-align: center;
}
.c-btn.-contactAction.-submit {
  background: var(--color-red-b);
  border: 3px solid var(--color-red-b);
  color: var(--color-white);
  transition: all .4s;
}
.c-btn.-contactAction.-submit:hover{
  transition: all .4s;
  background: var(--color-white);
  border: 3px solid var(--color-red-b);
  color: var(--color-red-b);
}
.c-btn.-contactAction.-back {
  background: var(--color-brown);
  border: 3px solid var(--color-brown);
  color: var(--color-white);
  transition: all .4s;
}
.c-btn.-contactAction.-back:hover{
  transition: all .4s;
  background: var(--color-white);
  border: 3px solid var(--color-brown);
  color: var(--color-brown);
  
}
@media (max-width:767px) {
  .c-btn.-contactAction.-submit:hover{
    opacity: 1;
  }
  .c-btn.-contactAction.-back:hover{
    opacity: 1;
  }
}
.contact-captcha{
  text-align: center;
  margin: 30px 0;
  font-size: 15px;
}
.contact-captcha > img{
  margin: 0 auto;
}
.contact-captcha > input{
  padding: 2px 16px;
}

/* エラー */
.page-container > .title > .heading.-contact_err::after{
  content: "CONTACT ERR";
  display: block;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-en);
  position: relative;
  bottom: 4em;
}
/* 確認 */
.page-container > .title > .heading.-contact_confirm::after{
  content: "CONTACT CONFIRM";
  display: block;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-en);
  position: relative;
  bottom: 4em;
}
/* 完了 */
.page-container > .title > .heading.-contact_complete::after{
  content: "CONTACT COMPLETE";
  display: block;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-en);
  position: relative;
  bottom: 4em;
}

.contact_action{
  text-align: center;
}

/* プライバシーポリシー */
.privacy_container {
  max-width: var(--content-size-medium);
  margin: 0 auto;
  padding: 0 10px 0;
  font-size: 16px;
  text-align: justify;
  word-break: break-all;
}
@media (max-width:767px) {
  .privacy_container {
    padding: 0;
  }
}
.privacy_container--h2{
  margin: 2.25em 0 0.75em;
}
.privacy_container p,
.privacy_container ol {
  margin-bottom: 1em;
}
.privacy_container--h2{
  position: relative;
  font: inherit;
  line-height: 1;
}
.privacy_container--h2.-bb {
  padding-bottom: 0.25em;
  border-bottom: 0.25em solid var(--color-red-b);
  font-size: 25px;
  font-weight: bold;
  text-align: justify;
  word-break: break-all;
  line-height: 1.5;
}


/* 投稿 */
.c-typography {
  --c-typography-font-size: 16px;
  --c-typography-font-family: inherit;
  --c-typography-font-weight: inherit;
  --c-typography-line-height: 2.125;
  --c-typography-color: inherit;
  --c-typography-space: 1.75em;
  --c-typography-h-margin-top: 2.5em;
  --c-typography-h-margin-bottom: 0;
  --c-typography-h-font-weight: bold;
  --c-typography-h-font-family: inherit;
  --c-typography-h-line-height: 1.5;
  --c-typography-h-color: inherit;
  --c-typography-h1-font-size: 1em;
  --c-typography-h2-font-size: 1.5em;
  --c-typography-h3-font-size: 1.25em;
  --c-typography-h4-font-size: 1.125em;
  --c-typography-h5-font-size: 1em;
  --c-typography-h6-font-size: 1em;
  --c-typography-table-line-height: 1.75;
  --c-typography-table-font-size: .9em;
  --c-typography-list-line-height: 1.75;
  --c-typography-list-li-margin-bottom: .375em;
  --c-typography-dt-font-weight: inherit;
  --c-typography-dt-font-family: inherit;
  --c-typography-strong-font-weight: bold;
  --c-typography-strong-font-family: inherit;
  --c-typography-a-color: var(--color-red);
  }
  
  .c-typography {
  font-size: var(--c-typography-font-size);
  font-family: var(--c-typography-font-family);
  font-weight: var(--c-typography-font-weight);
  line-height: var(--c-typography-line-height);
  color: var(--c-typography-color);
  text-align: justify;
  word-break: break-all;
  }
  .c-typography h1,
  .c-typography h2,
  .c-typography h3,
  .c-typography h4,
  .c-typography h5,
  .c-typography h6 {
  margin: var(--c-typography-h-margin-top) 0 var(--c-typography-h-margin-bottom);
  font-weight: var(--c-typography-h-font-weight);
  font-family: var(--c-typography-h-font-family);
  line-height: var(--c-typography-h-line-height);
  }
  .c-typography h1:first-child,
  .c-typography h2:first-child,
  .c-typography h3:first-child,
  .c-typography h4:first-child,
  .c-typography h5:first-child,
  .c-typography h6:first-child {
  margin-top: 0;
  }
  .c-typography h1:last-child,
  .c-typography h2:last-child,
  .c-typography h3:last-child,
  .c-typography h4:last-child,
  .c-typography h5:last-child,
  .c-typography h6:last-child {
  margin-bottom: 0;
  }
  .c-typography :is(h1, h2, h3, h4, h5, h6) + :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 0;
  }
  .c-typography h1 {
  font-size: var(--c-typography-h1-font-size);
  }
  .c-typography h2 {
  font-size: var(--c-typography-h2-font-size);
  }
  .c-typography h3 {
  font-size: var(--c-typography-h3-font-size);
  }
  .c-typography h4 {
  font-size: var(--c-typography-h4-font-size);
  }
  .c-typography h5 {
  font-size: var(--c-typography-h5-font-size);
  }
  .c-typography h6 {
  font-size: var(--c-typography-h6-font-size);
  }
  .c-typography p,
  .c-typography dl,
  .c-typography ol,
  .c-typography ul,
  .c-typography blockquote,
  .c-typography pre,
  .c-typography table,
  .c-typography figure,
  .c-typography hr,
  .c-typography .c-embed,
  .c-typography .wp-block-image,
  .c-typography .wp-block-embed {
  margin-top: var(--c-typography-space);
  }
  .c-typography p:first-child,
  .c-typography dl:first-child,
  .c-typography ol:first-child,
  .c-typography ul:first-child,
  .c-typography blockquote:first-child,
  .c-typography pre:first-child,
  .c-typography table:first-child,
  .c-typography figure:first-child,
  .c-typography hr:first-child,
  .c-typography .c-embed:first-child,
  .c-typography .wp-block-image:first-child,
  .c-typography .wp-block-embed:first-child {
  margin-top: 0;
  }
  .c-typography ol:first-of-type, .c-typography ul:first-of-type {
  margin-top: var(--c-typography-list-li-margin-bottom);
  }
  .c-typography :is(ol, ul) + :is(ol, ul) {
  margin: 0;
  }
  .c-typography table {
  line-height: var(--c-typography-table-line-height);
  font-size: var(--c-typography-table-font-size);
  }
  .c-typography dt {
  font-weight: var(--c-typography-dt-font-weight);
  font-family: var(--c-typography-dt-font-family);
  }
  .c-typography dd {
  line-height: var(--c-typography-list-line-height);
  }
  .c-typography ul, .c-typography ol {
  padding-left: 1.25em;
  line-height: var(--c-typography-list-line-height);
  }
  .c-typography ul {
  list-style: disc;
  }
  .c-typography ol {
  list-style: decimal;
  }
  .c-typography li {
  margin: 0 0 var(--c-typography-list-li-margin-bottom);
  }
  .c-typography strong {
  font-weight: var(--c-typography-strong-font-weight);
  font-family: var(--c-typography-strong-font-family);
  }
  .c-typography a:not(.c-btn) {
  text-decoration: underline;
  color: blue;
  }