/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

:root {
  --color-primary: #019AF0;
  --color-secondary: #EC407A;
  --color-white: #fff;
  --color-black: #000;
  --color-text: #333;
  --color-gray: #EEE;
  --color-lightgray: #fbfbfb;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: var(--color-black);
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: var(--color-black);
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/******************* リセットcssここまで **********************/
@font-face {
  font-family: "ZillaSlabHighlight";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ZillaSlabHighlight-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "NotosansJP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "NotosansJP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
}

/*********************** 共通 ******************************/
html {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'NotoSansJP', sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: var(--color-text);
  line-height: 2;
  letter-spacing: 0.1em;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.6s ease;
}

a:hover {
  transition: all 0.6s ease;
}

.content-wrapper {
  width: 95%;
  margin: 0 auto;
  max-width: 1400px;
}

/* ボタンパーツ */
.btn-parts {
  margin-top: 80px;
}

.btn-parts p {
  text-align: center;
  margin-bottom: 20px;
}

/* ボタンパーツ共通 */
.button {
  display: inline-block;
  width: 180px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  line-height: 50px;
  outline: none;
  font-size: 14px;
  color: var(--color-white);
  white-space: nowrap;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.button,
.button::before,
.button::after {
  -webkit-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
}

img {
  width: 100%;
  vertical-align: bottom;
}

* {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-white);
}

/*********************** 共通 ここまで******************************/
main {
  position: relative;
  z-index: 0;
}

header {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
}

.site-logo {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
}

.site-logo img {
  width: 48px;
  height: 48px;
  margin-right: 5px;
}

.site-logo-txt {
  padding-left: 10px;
}

.sp-nav-btn,
.sp-nav {
  display: none;
}

.header-wrapper {
  display: flex;
  align-items: center;
  padding: 1% 3vw;
  transition: ease-in 0.3s;
  height: 60px;
}

.header-wrapper__color {
  background: var(--color-primary);
}

.button {
  padding: 0 20px;
  position: relative;
}

.fa-chevron-right {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.header-wrapper .btn-wrapper .button {
  border-radius: 50px;
  font-size: 14px;
  width: 160px;
  white-space: nowrap;
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.header-wrapper .btn-wrapper {
  transition: ease-in 0.3s;
  border-radius: 50px;
}

.header-wrapper .btn-wrapper .button:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.button {
  display: inline-block;
  vertical-align: middle;
  padding: 0 12px;
}

.pc-nav ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 18px;
}

.pc-nav {
  margin-left: auto;
}

.pc-nav-parent {
  position: relative;

  .pc-nav-child {
    position: absolute;
    display: none;
    min-width: 230px;
    background-color: #0198f0d4;

    a {
      display: block;
    }
  }

  &:hover {
    .pc-nav-child {
      display: block;
    }
  }
}


.hover-under-line a {
  position: relative;
  display: inline-block;
  margin: 10px 0;
  font-size: 14px;
  color: var(--color-white);
}

.footer-under-line a {
  color: #var(--color-white);
}

.hover-under-line a:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.footer-under-line a:after {
  background: var(--color-white);
}

.footer-under-line a:after {
  bottom: -8px;
}

.hover-under-line a:hover:after {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.footer-under-line a:hover:after {
  bottom: -4px;
}

/* メインビジュアル */
.mv img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.9);
}

.mv {
  position: relative;
  z-index: -1;
}

.mv:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: rgb(116, 169, 239);
  background: -moz-linear-gradient(90deg, rgba(116, 169, 239, 0.500437675070028) 0%, rgba(114, 213, 242, 0.46682422969187676) 100%);
  background: -webkit-linear-gradient(90deg, rgba(116, 169, 239, 0.500437675070028) 0%, rgba(114, 213, 242, 0.46682422969187676) 100%);
  background: linear-gradient(90deg, rgba(116, 169, 239, 0.500437675070028) 0%, rgba(114, 213, 242, 0.46682422969187676) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#74a9ef", endColorstr="#72d5f2", GradientType=1);
  z-index: 1;
}

.mv__copy {
  position: absolute;
  top: 30%;
  left: 10%;
  color: var(--color-white);
  font-size: 64px;
  line-height: 1.5;
  z-index: 1;
  font-weight: 700;
  text-shadow: 0 0 1px #e9f1f6;

}

.mv__copy span {
  display: inline-block;
}

.mv_other img {
  height: 600px;
  filter: brightness(0.9);
}

.mv_other h2 {
  text-align: center;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.15em;
  text-shadow: 0 0 1px #e9f1f6;
}

.mv_other span {
  font-size: 17px;
  display: block;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 10px;
}

.mv .tel_number {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 18px;
}

.mv .tel_number>a>i {
  display: none;
}

.mv .tel_number .tel {
  display: block;
  font-size: 32px;
}
@media (width <= 767.98px) {
  
  .mv__copy {
    top: 40%;
    left: 5%;
    font-size: 30px;
  }

  .mv__en {
    font-size: 12px;
  }

  .mv img {
    height: 95vh;
  }

  .mv_other h2 {
    font-size: 22px;
    width: 100%;
    left: 50%;
  }

  .mv .tel_number {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    line-height: 2;
    font-size: 18px;
  }

  .mv .tel_number span {
    font-size: 11px;
    display: block;
  }

  .mv .tel_number .tel {
    display: none;
  }

}

/* メインビジュアル */

/* スクロール後ヘッダー背景色 */
.header-wrapper.addColor {
  background: none;
  transition: ease-in 0.3s;
  background: #0198f0d4;
}

/* スクロール後ヘッダー背景色 */

/******************** index.html headerここまで *************************/

.content-wrapper {
  width: 95%;
  margin: 0 auto;
  max-width: 1400px;
}

.form-container {
  width: 95%;
  margin: 0 auto;
  max-width: 1000px;
  padding-bottom:60px ;
}
.narrow-container {
  width: 95%;
  margin: 0 auto;
  max-width: 1000px;
  padding-bottom:60px ;
}

.btn {
  display: flex;
  justify-content: center;
}

.btn .button {
  position: relative;
  background: #2ca6ea;
  color: #var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}



.btn .button:after {
  position: absolute;
  height: 1px;
  width: 20%;
  background-color: var(--color-white);
  right: 0;
  top: 50%;
  z-index: 1;
}

.btn .button:hover {
  border: 1px solid #5277c9;
  background-color: #var(--color-white);
  color: #5277c9;
}

.btn .button:hover:after {
  right: -20px;
  background-color: #5277c9;
}

.page-title {
  font-size: 60px;
  text-align: center;
  color: var(--color-primary);
  font-style: normal;
  font-weight: 700;
  margin: 20px auto 40px;
}

.section-title {
  text-align: center;
  font-size: 40px;
  position: relative;
  padding: 20px;
  margin-bottom: 10px;
  font-style: normal;
  color: var(--color-primary);
  line-height: 1.25;
  word-break: keep-all;
  overflow-wrap: break-word ;
}

.section-title:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: calc(50% - 30px);
  width: 50px;
  height: 3px;
  background: var(--color-primary);
}

.sub-text {
  font-size: 14px;
  color: #4c4c4c;
  display: block;
  letter-spacing: 0.2em;
  font-weight: 700;
}

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

  .page-title {
    font-size: 32px;
    margin: 20px auto 20px;
  }

  .section-title {
    font-size: 22px;
  }

  .sub-text {
    font-size: 12px;
  }
}

.about {
  padding: 80px 0;
  background: var(--color-primary);
}

.about .section-title {
  color: var(--color-white);
}

.about .section-title:before {
  background-color: var(--color-white);
}

.about__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  margin: 80px 0;
  color: var(--color-white);
}

.about__item {
  width: 33%;
  font-size: 32px;
}

.about__item i {
  font-size: 72px;
  display: block;
}

.about__item p:nth-child(2) {
  position: relative;
  display: inline-block;
  line-height: 1.5;
}

.about__item p:nth-child(2)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background: var(--color-white);
  transition: all 0.8s;
}

.about__item p:nth-child(2).isActive:after {
  width: 100%;
}

.about__item p:last-child {
  font-size: 16px;
}

@media screen and (max-width:768px) {
  .about {
    padding: 40px 0;
    background: var(--color-primary);
  }

  .about__list {
    margin: 0;
  }

  .about__item i {
    font-size: 36px;
    display: block;
  }

  .about__item {
    width: 100%;
    font-size: 24px;
    margin: 24px 0;
  }

}

.discount {
  padding: 80px 0;
  background: url(../img/aircon.jpg) no-repeat;
  background-size: cover;
  background-color: #ffffffe8;
  background-blend-mode: lighten;
}

.discount i {
  margin-right: 5px;
}

.discount__wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.discount__textbox {
  line-height: 1.75;
}

.discount__textbox img {
  margin: 20px 20px 0 0;
}

.discount__textbox a {
  color: var(--color-text);
  position: relative;
  display: inline-block;
  transition: 0.6s;
  color: rgb(204, 190, 39);
  font-size: 32px;
}

.discount__textbox a:hover::after {
  width: 100%;
}

.discount__textbox a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background-color: rgb(204, 190, 39);
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.discount__textbox p:first-of-type {
  font-size: 48px;
  font-weight: 700;
  position: relative;
  margin-bottom: 40px;
}

.discount__textbox p:first-of-type:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  background-image: -webkit-repeating-linear-gradient(135deg,
      var(--color-black),
      var(--color-black) 1px,
      transparent 2px,
      transparent 5px);
  background-image: repeating-linear-gradient(-45deg,
      var(--color-black),
      var(--color-black) 1px,
      transparent 2px,
      transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.discount__textbox p:nth-of-type(3) {
  font-family: "ZillaSlabHighlight", cursive;
  font-size: 72px;
  color: var(--color-secondary);
  box-shadow: 5px 5px 5px 2px #cecece;
}

.discount__textbox p:nth-of-type(4) {
  text-align: right;
}

.discount__wrapper img {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .discount__textbox p:first-of-type:after {
    bottom: -10px;
  }

  .discount__wrapper {
    flex-direction: column-reverse;
  }

  .discount__textbox {
    text-align: center;
  }

  .discount__textbox p:nth-of-type(4) {
    text-align: center;
  }

  .discount__wrapper img {
    width: 100%;
  }

  .discount__textbox p:first-of-type {
    font-size: 24px;
  }

  .discount__textbox p:nth-of-type(3) {
    font-size: 48px;
  }

  .discount__textbox a {
    font-size: 16px;
    margin: 20px 0;
  }
}

.loan {
  padding: 80px 0;
  position: relative;
}

.loan .fa-caret-down {
  position: absolute;
  left: 50%;
  top: -6%;
  transform: translateX(-50%);
  font-size: 120px;
}

.loan .section-title {
  font-size: 40px;
  margin-bottom: 80px;
}

.loan__list__wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
}

.loan__list {
  font-size: 32px;
}

.loan__list__wrapper img {
  width: 50%;
  height: 500px;
  object-fit: contain;
}

.fa-check {
  margin-right: 8px;
}

.loan .loan_bottom_arrow {
  position: relative;
}

.tel_wrap {
  margin: 40px 0;
  text-align: center;
  font-size: 40px;
  color: var(--color-secondary);
  line-height: 1.5;
}

.tel_wrap span {
  display: inline-block;
}

.tel_wrap a {
  color: var(--color-white);
}

.tel_number {
  background: var(--color-secondary);
  color: var(--color-white);
  display: inline-block;
  padding: 10px;
  border-radius: 8px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .loan {
    padding: 40px 0;
  }

  .loan__list__wrapper {
    flex-flow: column-reverse;
  }

  .loan__list__wrapper img {
    width: 100%;
    height: auto;
  }

  .loan .section-title {
    font-size: 24px;
  }

  .loan__list {
    margin-top: 16px;
    font-size: 18px;
  }

  .tel_wrap {
    font-size: 24px;
  }
}

.service {
  padding: 80px 0;
  background-color: rgb(238, 238, 238);
}

.service__image-box {
  display: flex;
  justify-content: center;
  position: relative;
}

.service__image-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: #4a463d;
}

.service__image-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  max-width: 480px;
}

.service .inner__text {
  text-align: center;
  margin-top: 56px;
  font-size: 24px;
}

.service__image-wrapper {
  margin: 5%;
}


@media screen and (max-width: 768px) {
  .service {
    padding: 40px 0;
  }

  .service .inner__text {
    font-size: 18px;
  }

  .service__image-box {
    flex-direction: column;
  }

  .service__image-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .service__image-box i {
    font-size: 40px;
  }

}


.price_table {
  font-family: "Heebo", sans-serif;
}

.price_table span {
  display: inline-block;
}

.price_table p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}
.price_table .tax {
  writing-mode: vertical-lr;
  font-size: .45em;
  /* vertical-align: middle; */
  margin-right: -15px;
  white-space: pre;
}

.price_table .price_color {
  color: var(--color-secondary);
  letter-spacing: 0em;
  font-size: 46px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: center;
}

.price_table table.vl-2col {
  width: 100%;
  margin: 0 auto 2em auto;
  border-spacing: 10px;
  border-collapse: separate;
  position: relative;
}

.price_table table.vl-2col th {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 20px;
  width: 300px;
  line-height: 1.5em;
  font-weight: 400;
  text-align: center;
  font-size: 24px;
  border-radius: 50px 0 0 0;
}

.price_table table.vl-2col td {
  padding: 20px;
  background-color: #f7f7f7;
  line-height: 1.5em;
  font-size: 32px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.price_table table.vl-2col td i {
  margin: 0 4px;
}

.price_table table.vl-2col td .total {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 48px;
  vertical-align: middle;
  margin-left: -2px;
}

@media screen and (max-width: 768px) {
  .price_table table.vl-2col {
    width: 100%;
    min-width: auto;
    margin: 0 auto 2em auto;
  }

  .price_table table.vl-2col th {
    display: block;
    width: 100%;
  }

  .price_table table.vl-2col td {
    width: 100%;
  }

  .price_table p {
    font-size: 18px;
  }

  .price_table table.vl-2col td {
    padding: 20px 5px;
    background-color: #f7f7f7;
    line-height: 1.5em;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.005em;
  }
  .price_table table.vl-2col td .fa-arrow-right {
margin-left: -2px;
  }

  .price_table table.vl-2col td .total {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    /* vertical-align: middle; */
  }

  .price_table table.vl-2col th {
    padding: 10px;
  }
}

/* after-servce */


.p-top-blog {
  padding: 60px 0;
  background-color: var(--color-white);
  .inner__text {
    text-align: center;
    margin: 10px ;
    word-break: keep-all;

  }
}
@media screen and (max-width: 767.98px) {
  .p-top-blog {
    padding: 45px 0;
  }
}
.p-top-blog-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.p-top-blog__container {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .p-top-blog__container {
    display: contents;
  }
}

.p-top-blog-item a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5em;
}

.p-top-blog__body {
  width: 50%;
}

.p-top-blog__thumbnail {
  max-width: 157px;
  max-height: 93px;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 598.98px) {
  .p-top-blog__thumbnail {
    max-width: 100px;
    max-height: 59px;
  }
}

.p-top-blog__thumbnail img {
  max-width: 157px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}


.p-top-blog-list {
  background-color: var(--color-lightgray);
  padding: 2.2em 4em;
  width: 90%;
  /* max-width: 580px; */
  margin: 0 auto 15px;
}
@media screen and (max-width: 767.98px) {
  .p-top-blog-list {
    padding: 0.5em 1em;
    width: 95%;
    margin: 0 auto 65px;
  }
}

.p-top-blog-item__date {

  color: var(--color-text);
}
.p-top-blog-item__title {
  color: #333333;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.028rem + 0.4vw, 1.375rem);
}
.p-top-blog-item:not(:last-child) {
  border-bottom: 1px solid var(--color-primary);
}
.p-top-blog-item:not(:first-child) {
  margin-top: 2em;
  margin-bottom: 1em;
}
.p-top-blog-item a:hover {
  opacity: 0.8;
}
.p-top-blog-item a:hover .p-top-blog-item__title,
.p-top-blog-item a:hover .p-top-blog-item__date {
  color: var(--color-primary);
}

/* reason */
.after-service__page {
  padding: 60px 0;
}

.p-after-service__number {
  font-size: clamp(2.625rem, 2.02rem + 2.48vw, 5rem);
  font-weight: 700;
  color: var(--color-primary);
}

/* sale */
/* reason */
.sale__page {
  padding: 60px 0;
  .btn {
    margin-top: 30px;
  }
}

.p-sale__number {
  font-size: clamp(2.625rem, 2.02rem + 2.48vw, 5rem);
  font-weight: 700;
  color: var(--color-primary);
}


.p-sale__list__wrapper {
  padding: 40px 0;
}

.p-sale__list__wrapper h3 {
  background-color: var(--color-white);
  display: inline-block;
  color: var(--color-primary);
}

.p-sale__list {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #78c0e9;
  border-radius: 8px;
  padding: 16px;
  margin-top: -16px;
  margin-bottom: 24px;
}

.p-sale__item {
  width: 25%;
  padding: 0 16px;
}

@media screen and (max-width: 768px) {
  .p-sale__item {
    width: 50%;
    margin: 16px 0;
  }

  .p-sale__page {
    padding: 80px 0 40px;
  }

  .p-sale__list__wrapper {
    padding: 40px 0;
  }
}

@media screen and (max-width: 599px) {
  .p-sale__item {
    width: 100%;
    margin: 8px 0;
  }
}

/* repair */
.repair__page {
  padding: 60px 0;
  .btn {
    margin-top: 30px;
  }
}

.p-repair__cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: repeat(2,1fr);
  gap: 15px;
  margin-top: 40px;
}
@media (width <= 767.98px) {
.p-repair__cards {
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(4,1fr);
  gap: 10px;
}
}

.p-repair__card {
  text-align: center;
  box-shadow: 0px 5px 2px #cecece;
  padding: 1em .625em;
}

.p-repair__img  {
  img {
    width: 100%;
  }
}

.p-repair__body {
  p {
    color: var(--color-primary);
  }
  h3 {
    font-weight: bold;
    font-size: clamp(1.125rem, 1.029rem + 0.39vw, 1.5rem);
    word-break: keep-all;
  }
}

.p-repair__message {
  font-size:clamp(1.125rem, 1.029rem + 0.39vw, 1.5rem);
  color: var(--color-secondary);
  text-align: center;
  margin: 40px auto;
  position: relative;
  max-width: 500px;
  &::before {
    display: block;
    content: "";
    background-color: var(--color-secondary);
    width: 2px ;
    height: 1.4em;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%) rotate(-30deg);
  }
  &::after {
    display: block;
    content: "";
    background-color: var(--color-secondary);
    width: 2px ;
    height: 1.4em;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%) rotate(30deg);
  }
}


/* reason */
.installation__page {
  padding: 60px 0;
  .btn {
    margin-top: 30px;
  }
}

.p-installation__number {
  font-size: clamp(2.625rem, 2.02rem + 2.48vw, 5rem);
  font-weight: 700;
  color: var(--color-primary);
}

/* cleaning */
.cleaning__page {
  padding: 60px 0;
  .btn {
    margin-top: 30px;
  }
}

.cleaning-ba__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/*  */


.bg-btn {
  display: flex;
}

.bg-btn section {
  width: 50%;
  background-image: url(../img/area_image.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 500px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bg-btn section:before {
  content: "";
  background: inherit;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  background-color: rgba(52, 52, 52, 0.3);
  background-blend-mode: darken;
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: 0;
}

.bg-btn section:after {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid var(--color-white);
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-btn section:last-child {
  width: 50%;
  background-image: url(../img/width >=  s_image.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 500px;
  position: relative;
}

.bg-btn p {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin: 0;
}

.bg-btn .bg-innertext {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin: 0;
  color: #var(--color-white);
  font-size: 32px;
}

.bg-btn .button {
  display: block;
  color: var(--color-text);
  width: 250px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--color-white);
}

.bg-btn .btn .button:after {
  background-color: #2ca6ea;
}

.bg-btn a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .bg-btn {
    display: block;
  }

  .bg-btn section,
  .bg-btn section:last-child {
    width: 100%;
    height: 300px;
  }
}

.company {
  padding: 80px 0;
  text-align: center;
  background: url(../img/pichon_all.jpg) no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
}

@media screen and (max-width:768px) {
  .company {
    padding: 40px 0;
  }
}

.company .company__text {
  margin: 40px 0;
}



.compnay .btn {
  margin: 40px auto;
}

.top_contact_parts02 section {
  padding: 80px 0;
  background: rgb(238 238 238);
  text-align: center;
}

.top_contact_parts02 .inner {
  max-width: 1200px;
  padding-right: 3rem;
  padding-left: 3rem;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top_contact_parts02 .flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top_contact_parts02 .inner>div {
  width: 48%;
  background: var(--color-white);
  padding: 4rem;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.top_contact_parts02 .inner .title-box {
  margin-bottom: 15px;
}

.top_contact_parts02 .inner .button-box p {
  font-weight: 700;
}

.top_contact_parts02 .inner .title-en {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
}

.top_contact_parts02 .inner .contact-wrap h5,
.top_contact_parts02 .inner .download-wrap h5 {
  font-size: 1rem;
  font-weight: 400;
  color: #a1abb7;
  margin-bottom: 20px;
}

.top_contact_parts02 .inner .contact-wrap .title-box p {
  font-size: 0.875rem;
  line-height: 1.5;
}


.top_contact_parts02 .inner .tel-box {
  margin-bottom: 20px;
}

.top_contact_parts02 .inner .tel-box .tel {
  font-size: 1.75rem;
}

.top_contact_parts02 .inner .tel-box .tel a {
  color: var(--color-secondary);
  font-weight: 700;
}

.top_contact_parts02 .inner .tel-box p.hour {
  font-size: 0.75rem;
}

.top_contact_parts02 .inner .button-box a.button {
  background-color: #2ca6ea;
  border: 1px solid #2ca6ea;
  color: var(--color-white);
}

.top_contact_parts02 .inner .button-box a.button:hover {
  background-color: var(--color-white);
  border-color: #2ca6ea;
  color: #2ca6ea;
}

@media screen and (max-width: 768px) {
  .top_contact_parts02 .inner {
    display: block;
  }

  .top_contact_parts02 section {
    padding: 40px 0;
  }

  .top_contact_parts02 .inner>div {
    width: 100%;
    padding: 4rem 3rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .top_contact_parts02 .inner .contact-wrap {
    margin-bottom: 40px;
  }

  .top_contact_parts02 .inner .title-box {
    width: 100%;
  }

  .top_contact_parts02 .inner .tel-box {
    width: 50%;
  }

  .top_contact_parts02 .inner .button-box {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .top_contact_parts02 .inner .download-wrap p {
    width: 100%;
    margin-bottom: 20px;
  }

  .top_contact_parts02 .inner .download-wrap .button-box {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .top_contact_parts02 .inner .tel-box {
    width: 100%;
  }

  .top_contact_parts02 .inner .button-box {
    width: 100%;
  }
}

@media screen and (max-width: 499px) {
  .top_contact_parts02 .inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .top_contact_parts02 .inner .title-en {
    font-size: 2rem;
  }

  .top_contact_parts02 .inner .tel-box .tel {
    font-size: 1.25rem;
  }

  .top_contact_parts02 .inner .contact-wrap .title-box p {
    font-size: 0.75rem;
  }

  .top_contact_parts02 .inner .contact-wrap .title-box p br {
    display: none;
  }

  .top_contact_parts02 .inner .tel-box p.hour {
    font-size: 0.5rem;
  }

  .top_contact_parts02 .inner .button-box a.button {
    font-size: 0.75rem;
  }

  .top_contact_parts02 .inner .download-wrap p {
    font-size: 0.75rem;
  }

  .top_contact_parts02 .inner .download-wrap p br {
    display: none;
  }
}

/************************* index.htmlここまで ************************/

.service__before-after {
  padding: 160px 0;
  /* background: rgb(238 238 238); */
}

.service__before-after .inner__text {
  text-align: center;
  font-size: 32px;
  margin-top: 40px;
}

.service__image-box h3 {
  position: absolute;
  left: 10%;
  font-size: 18px;
  padding: 8px;
  border-left: 6px double var(--color-primary);
  color: var(--color-primary);
}

.service__image-box {
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .service__image-box h3 {
    top: 0;
    left: 5%;
  }

  .service__before-after {
    padding: 80px 0 40px;
  }

  .service__before-after .inner__text {
    text-align: center;
    font-size: 24px;
    margin-top: 40px;
  }
}

.energy {
  padding: 80px 0;
  text-align: center;
}

.enegy__innertext {
  display: block;
  margin: 40px 0;
}

.energy .section-title {
  border-bottom: dotted 2px #87cefa;
  display: inline-block;
}

.energy .section-title:before {
  background: none;
}

@media screen and (max-width: 768px) {
  .energy {
    padding: 40px 0;
  }

  .enegy__innertext {
    margin: 16px 0;
  }
}

/**************************** service.htmlここまで ****************************/

/* reason */
.reason__page {
  padding: 60px 0;
}

.p-reason__number {
  font-size: clamp(2.625rem, 2.02rem + 2.48vw, 5rem);
  font-weight: 700;
  color: var(--color-primary);
}

.c-col2__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 3em;
  margin: 50px 0;
}
.c-col2__container.-fd-r {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767.98px) {
  .c-col2__container.-fd-r {
    flex-direction: column;
  }
}
@media screen and (max-width: 767.98px) {
  .c-col2__container {
    flex-direction: column;
  }
}
.c-col2__text {
  width: 50%;
  max-width: 600px;
}
@media screen and (max-width: 767.98px) {
  .c-col2__text {
    width: 95%;
    margin: 40px auto 0;
  }
}
.c-col2__heading {
  font-size: clamp(1.5rem, 1.373rem + 0.52vw, 2rem);
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: break-word ;
  line-height: 1.7;
}
.c-col2__desc {
  margin-top: 20px;
}
.c-col2__img {
  width: 50%;
  max-width: 600px;
}
.c-col2__img img {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .c-col2__img {
    width: 95%;
    margin: 0 auto;
  }
}

/* pro-shop */
.pro-shop {
  padding: 60px 0 ;
  background: url(../img/pichon_all.jpg) no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
}

.pro-shop__text {
  width: 95%;
  max-width: 1000px;
  margin: 20px auto;
  padding: 10px ;
  background-color: var(--color-white);
}

.pro-shop__list {
  background-color: var(--color-white);
  width: 95%;
  max-width: 1000px;
  margin: 20px auto;
  padding: 10px ;
}

.pro-shop__item {
  list-style-type: disc;
  color: var(--color-primary);
  margin-left: 35px;
  .text {
    color: var(--color-black);
  }
}

.pro-shop__headline {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.375rem, 1.343rem + 0.13vw, 1.5rem);
}

/* flow */

.flow__page {
  padding: 60px 0;
}
.flow_design10 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.flow10 {
  padding-left: 0;
  width: 100%;
  max-width: 1000px;

}

.flow10 > li {
  list-style-type: none;
  border: 2px solid var(--color-primary);
  padding: 20px;
  border-radius: 20px;
}

.flow10 > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.flow10 > li:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: var(--color-primary);
}

.flow10 > li dl dt {
  font-size: 1.5em;
  font-weight: bold;
  border-bottom: 2pt dashed #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 900px;
width: ;
  align-items: center;
  img {
    width: 70%;
    max-width: 400px;
  }
}

@media (width <= 598.98px) {
  .flow10 > li dl dt {
    flex-direction: column;
    img {
      width: 100%;
      max-width: 400px;
    }
  }
}

.flow10 > li .icon10 {
  color: var(--color-primary);
  margin-right: 0.5em;
}

.flow10 > li dl dd {
  margin: 0;
  padding-inline:1.4em;
}

@media (width <= 598.98px) {
  
.flow10 > li dl dd {
  padding-inline:.625em;
}
}

.area__box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 40px 0;
  text-align: center;
}

.area__box img {
  width: 45%;
  max-width: 500px;
}

.area__page {
  padding: 60px 0;
}

.area__page .inner__text {
  text-align: center;
  font-size: 32px;
}

.area__box p {
  font-size: 24px;
  width: 45%;
}

.area__box span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .area__box {
    display: block;
  }

  .area__box p,
  .area__box img {
    width: 100%;
  }

  .area__box p {
    margin-top: 24px;
    font-size: 16px;
  }

  .area__page {
    padding: 80px 0 40px;
  }

  .area__page .inner__text {
    font-size: 18px;
  }
}

/*********************** area.htmlここまで ******************/

.work__page {
  padding: 60px 0;
}

.work__list__wrapper {
  padding: 80px 0;
}

.work__list__wrapper h3 {
  background-color: var(--color-white);
  display: inline-block;
  color: var(--color-primary);
}

.work__list {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #78c0e9;
  border-radius: 8px;
  padding: 16px;
  margin-top: -16px;
  margin-bottom: 24px;
}

.work__item {
  width: 25%;
  padding: 0 16px;
}

@media screen and (max-width: 768px) {
  .work__item {
    width: 50%;
    margin: 16px 0;
  }

  .work__page {
    padding: 80px 0 40px;
  }

  .work__list__wrapper {
    padding: 40px 0;
  }
}

@media screen and (max-width: 599px) {
  .work__item {
    width: 100%;
    margin: 8px 0;
  }
}

.work__gallery {
  padding: 60px 0 80px;
}


/* 
.work__gallery__list {
  display: flex;
  flex-wrap: wrap;
  padding: 80px 0;
  gap: 30px;
}

.work__gallery__item {
  padding: 30px;
  width: calc((100% - 30px * 2) / 3);
  background: var(--color-white);
}

@media screen and (max-width:768px) {
  .work__gallery__item {
    width: 100%;
  }

  .work__gallery__list {
    padding: 40px 0;
  }
} */

/****************** width >=  s.htmlここまで ******************/

.philosophy {
  padding: 60px 0;
  text-align: center;
}

.philosophy__list {
  margin: 40px 0;
  display: inline-block;
  text-align: left;
}

.philosophy__item {
  position: relative;
  padding-left: 20px;
  font-size: 24px;
}

.philosophy__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 23px;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--color-black);
}

.philosophy-wrapper {
  font-family: "Shippori Mincho B1", serif;
}

.president-wrapper {
  text-align: right;
}

.overview {
  padding: 40px 0;
  background: rgb(238 238 238);
}

.overview table {
  width: 100%;
}

.overview table tr {
  border-bottom: 1px solid #dcdcdc;
}

.overview table tr th {
  padding: 30px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  width: 300px;
}

.overview table tr td {
  padding-left: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .philosophy {
    padding: 80px 0;
  }

  .philosophy__item {
    font-size: 16px;
  }

  .overview {
    padding: 40px 0;
  }

  .overview table tr th {
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 0;
    padding: 15px 20px 0 20px;
  }

  .overview table tr td {
    display: block;
    width: 100%;
    padding: 15px 0 15px 20px;
  }

}

.map {
  position: relative;
  width: 100%;
  padding-top: 50%;
  /* = height ÷ width × 100 */
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overview_secondary {
  padding: 80px 0;
}

.overview_secondary table {
  width: 100%;
}

.overview_secondary p {
  text-align: right;
}

.overview_secondary table tr th {
  position: relative;
  padding-right: 5%;
  width: 45%;
  font-weight: 700;
  color: #232323;
  padding: 30px 0;
}

.overview_secondary table tr th::before {
  content: "";
  position: absolute;
  top: 33px;
  right: 20%;
  bottom: 34px;
  border-left: 1px solid #dfdfdf;
}

.overview_secondary table tr td {
  padding: 30px 0;
  line-height: 2;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .overview_secondary {
    padding: 40px 0;
  }

  .overview_secondary table tr th {
    display: block;
    margin-bottom: 0;
    padding: 10px 0 15px 20px;
    width: auto;
    border-bottom: 1px solid #dfdfdf;
    text-align: left;
  }

  .overview_secondary table tr td {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 30px;
  }
}
/* faq */

.faq__page {
  padding: 60px 0;
}
.qa-8 dt {
  margin-bottom: 1em;
  color: var(--color-black);
  font-weight: 600;
  margin-top: 30px;
}

.qa-8 dt::before,
.qa-8 dd::before {
  margin-right: .4em;
}

.qa-8 dt::before {
  content: "Q.";
  color: var(--color-primary);
}

.qa-8 dd {
  margin: 0 0 2.5em;
  padding: 1em 1.5em;
  background-color: var(--color-gray);
  color: var(--color-black);
}

.qa-8 dd::before {
  content: "A.";
  color: var(--color-secondary);
}

/* voice */
.voice__page {
  padding: 60px 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  grid-gap: 1em;
  margin-top: 30px;
}

.card {
  border: var(--color-gray) solid 1px;
  padding: 1em;
}
.card__heading {
  text-align: center;
 h3 {
  font-size: clamp(1.375rem, 1.311rem + 0.26vw, 1.625rem);
  position: relative;
  margin-bottom: 15px;
  &::after {
    position: absolute;
    background-color: var(--color-primary);
    width: 30px;
    height: 2px;
    display: block;
    content: "";
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
  }
}
}
.card__body {
  .card__name {
    display: block;
    font-size: 15px;
    font-weight: 400;
  }
}


/****************** company.htmlここまで ******************/

footer {
  background: var(--color-primary);
  color: white;
  padding: 80px 0;
}

.footer-right {
  width: 100%;
  height: auto;
}

.footer-right ul {
  display: flex;
  justify-content: flex-end;
  align-items: top;
  height: 100%;
  gap: 0 30px;
}

.footer-nav-child {
  flex-direction: column;
  justify-content: flex-start !important;

  li {
    margin-left: 18px;

    a {
      position: relative;

      &::before {
        position: absolute;
        display: block;
        content: "";
        width: 10px;
        height: 1px;
        background-color: var(--color-white);
        /* color:var(--color-primary); */
        top: 50%;
        left: -16px;
        transform: translateY(-50%);
      }
    }
  }
}


.footer__last {
  font-size: 12px;
}

.footer-logo {
  color: var(--color-white);
}

.copyright {
  font-family: Verdana, “Droid Sans”;
}

.flex {
  display: flex;
}

footer .img-text-1col {
  width: 20%;
}

@media screen and (max-width: 768px) {
  /* .footer-right li:last-child {
    margin: 0;
  } */

  footer {
    padding: 35px 0;
  }

  footer .img-text-1col {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .flex {
    flex-direction: column-reverse;
  }

  .footer-right {
    margin-bottom: 30px;
  }

  .footer-right ul {
    flex-direction: column;
  }
}

/***************************** company.htmlここまで *****************************/
.main_contact {
  padding: 60px 0;
}

.coming-soon {
  padding: 20px 0px 80px 0px;
  font-size: 22px;
  text-align: center;
  color: #1280bd;
}

.coming-soon span {
  padding: 140px 0px 80px 0px;
  font-size: 18px;
  text-align: center;
  color: #1280bd;
}

/***************************** contact.htmlここまで *****************************/

/* パンくず */
.l-breadcrumb__container  {
  width: 95%;
  margin-inline: auto;
  padding-top: 70px;
  text-align: left;
}

.l-breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 2;
}

.l-breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
}

.l-breadcrumb li:after {
  /* >を表示*/
  content: ">";
  padding: 0 0.1em;
  color: var(--color-black);
}

.l-breadcrumb li:last-child:after {
  content: "";
}

.l-breadcrumb li a {
  font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);

  color: var(--color-black);
  transition: 0.2s ease-out;
}

.l-breadcrumb li a:hover {
  color: var(--color-primary);
}


/* blog */

.l-col2 {
  display: flex;
  justify-content: space-between;
  align-items: top;
  width: 95%;
  margin: 130px auto;
  max-width: 1250px;
  gap: 0 2em;
}

@media screen and (max-width: 1023.98px) {
  .l-col2 {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 767.98px) {
  .l-col2 {
    margin: 90px auto;
  }
}

.l-archive-main {
  max-width: 800px;
  width: 98%;
}

.l-archive-main .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1em;
  margin: 70px 0;
}

@media screen and (max-width: 767.98px) {
  .l-archive-main .nav-links {
    margin: 50px;
  }
}

.l-archive-main .nav-links .page-numbers {
  width: 2.4em;
  height: 2.4em;
  color: var(--color-primary);
  aspect-ratio: 1/1;
  text-align: center;
  line-height: 2.4em;
  border-radius: 50%;
  background-color: var(--color-white);
  transition: 0.2s ease-out;
}

.l-archive-main .nav-links .page-numbers:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.l-archive-main .nav-links .page-numbers.current {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.p-blog {
  padding: 60px 0 230px;
  background-color: #F6EFE7;
}

@media screen and (max-width: 767.98px) {
  .p-blog {
    padding: 70px 0;
  }
}

.p-blog__container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 80px;
  background: url(../img/blog-bg.webp) no-repeat;
  background-size: contain;
  position: relative;
  height: 80svh;
  padding: 0 calc(50vw - 50%);
  /* インナー幅を維持する */
}

@media screen and (max-width: 767.98px) {
  .p-blog__container {
    display: contents;
  }
}

.p-blog .button-wrap {
  margin-bottom: -5%;
  z-index: 2;
}

.p-blog__bg {
  display: none;
  width: 95%;
  margin: 65px auto 0;
}

.p-blog__bg img {
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .p-blog__bg {
    display: block;
  }
}

.p-blog__thumbnail {
  max-width: 157px;
  max-height: 93px;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 598.98px) {
  .p-blog__thumbnail {
    max-width: 100px;
    max-height: 59px;
  }
}

.p-blog__thumbnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-blog__desc {
  width: 90%;
}

.p-blog-list {
  width: 100%;
}

.p-blog-item {
  list-style-type: none;
}

.p-blog-item a {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-bottom: 1em;
  gap: 0 9em;
}

@media screen and (max-width: 767.98px) {
  .p-blog-item a {
    gap: 0 2em;
  }
}

.p-blog-item__date {
  font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
  color: var(--color-black);
}

.p-blog-item__title {
  color: var(--color-black);
  font-weight: 700;
  margin-bottom: 0.5em;
  width: 100%;
}

.p-blog-item:not(:last-child) {
  border-bottom: 1px solid var(--color-primary);
}

.p-blog-item:not(:first-child) {
  margin-top: 2em;
  margin-bottom: 1em;
}

.p-blog-item a:hover {
  opacity: 0.8;
}

.p-blog-item a:hover .p-blog-item__title,
.p-blog-item a:hover .p-blog-item__date {
  color: var(--color-primary);
}

.l-single-main {
  max-width: 800px;
  width: 98%;
}

.p-single__cat li {
  background-color: var(--color-secondary);
  display: inline-block;
  padding: 0.2em 0.4em;
  color: var(--color-white);
  border-radius: 3px;
  font-size: clamp(0.875rem, 0.859rem + 0.07vw, 0.938rem);
}

.p-single__tag {
  a {
    color: var(--color-primary);
  }
}

.p-single__date {
  font-size: clamp(0.875rem, 0.859rem + 0.07vw, 0.938rem);
}

.p-single__title {
  font-size: clamp(1.375rem, 1.311rem + 0.26vw, 1.625rem);
  font-weight: 600;
}

.p-single__thumbnail {
  width: 100%;
  max-width: 800px;
  margin: 2em 0;
}

.p-single__thumbnail img {
  max-width: 100%;
  height: auto;
}

.p-single__content {
  padding: 1em;
}

.p-single__content h2 {
  font-size: clamp(1.25rem, 1.153rem + 0.4vw, 1.5rem);
  font-weight: 600;
  padding: 0.625em .875em;
  margin-bottom: 1em;
  color: var(--color-white);
  background: var(--color-primary);
}

.p-single__content h3 {
  font-size: clamp(1.125rem, 1.028rem + 0.4vw, 1.375rem);
  font-weight: 600;
  padding: 0.625em .875em;
  margin-bottom: 1em;
  border-left: 8px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.p-single__content h4 {
  font-size: clamp(1rem, 0.952rem + 0.2vw, 1.125rem);
  font-weight: 600;
  padding: 0.625em .875em;
  margin-bottom: 1em;
  border-bottom: 2px solid var(--color-primary);
}

.p-single__content h5 {
  font-size: clamp(1rem, 0.976rem + 0.1vw, 1.063rem);
  font-weight: 600;
  padding: 0.625em .875em;
  margin-bottom: 1em;
  border-bottom: 2px dotted var(--color-primary);
}

.p-single__content h6 {
  font-size: clamp(1rem, 0.976rem + 0.1vw, 1.063rem);
  font-weight: 600;
  padding: 0.3125em 1em;
  margin-bottom: 1em;
  border-left: 8px solid var(--color-primary);
}
/* 
.wp-block-button {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding:1em 2em ;
  border-radius: 50px;
  display: flex !important;
}

.wp-block-button a {
  display: inline-block;
}
.wp-block-buttons.is-content-justification-center {
  display: flex !important;
  justify-content: center !important;
} */


.p-single__content ul {
  margin-left: 1.1em;
}

.p-single__content ul li {
  list-style-type: disc;
}

.p-single__content ol {
  margin-left: 1.25em;
}

.p-single__content ol li {
  list-style-type: decimal;
}

.p-single__page-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2em;
  margin: 70px auto;
}

@media screen and (max-width: 767.98px) {
  .p-single__page-nav {
    margin: 50px 0;
  }
}

.p-single__page-nav_back a {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  padding: 0.625em;
  text-align: center;
  transition: 0.2s ease-out;
  font-size: clamp(0.875rem, 0.859rem + 0.07vw, 0.938rem);
}

.p-single__page-nav_back a:hover {
  color: var(--color-primary);
  background-color: var(--color-white);
}

.p-single__page-nav_prev a, .p-single__page-nav_next a {
  padding: 0.625em;
  border-radius: 50px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  transition: 0.2s ease-out;
  font-size: clamp(0.875rem, 0.859rem + 0.07vw, 0.938rem);
}

.p-single__page-nav_prev a:hover, .p-single__page-nav_next a:hover {
  color: var(--color-primary);
  background-color: var(--color-white);
}

.main-404 {
  height: 100svh;
  display: grid;
  place-items: center;
}

.main-404__container a {
  text-decoration: underline;
  color: var(--color-primary);
}

.l-sidebar {
  max-width: 400px;
  width: 100%;
/*   max-height: 100svh; */
/*   position: sticky; */
/*   top: 70px; */
}
@media (width <= 1024px) {
  .l-sidebar {
    max-height: none;
    position: static;
    top: initial;
  }
}

.l-sidebar__heading {
  font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
  color: var(--color-black);
  text-align: center;
  padding: 0.3125em 0;
  border-radius: 50px;
}

.l-sidebar__content {
  background-color: var(--color-lightgray);
}

.l-sidebar__content ul {
  padding: 1em;
}

.l-sidebar__content ul li {
  margin: 0.625em 0;
}

.l-sidebar__list li {
  border-bottom: 1px solid var(--color-primary);
}

.l-sidebar__list.l-sidebar__tags li {
  border-bottom: none;
}

.l-sidebar__content ul li a {
  transition: 0.2s ease-out;
  color: var(--color-black);
}

.l-sidebar__content ul li a:hover {
  color: var(--color-primary);
}

.l-sidebar__content ul li a time {
  display: block;
  font-size: 16px;
}

.l-sidebar__banner {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  margin-top: 70px;
}

.l-sidebar__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .24em;
}

.l-sidebar__tag {
  background-color: var(--color-primary);
  display: inline-block;
  padding: 0.2em 0.4em;
  color: var(--color-white) !important;
  border-radius: 3px;
  font-size: clamp(0.875rem, 0.859rem + 0.07vw, 0.938rem);
  border: 2px solid var(--color-primary);

  &:hover {
    background-color: var(--color-white);
    color: var(--color-primary) !important;
  }
}

@media screen and (max-width: 767.98px) {
  .l-sidebar__banner {
    margin-top: 50px;
  }
}

.l-sidebar__banner img {
  width: 100%;
  border-radius: 20px;
  transition: 0.2s ease-out;
}

.l-sidebar__banner:hover img {
  transform: scale(1.05, 1.05);
}



/***** ハンバーガー *****/
@media screen and (max-width: 768px) {

  .sp-nav-btn,
  .sp-nav {
    display: block;
  }

  .pc-nav {
    display: none;
  }

  .sp-nav__item {
    text-align: left;

    a {
      color: var(--color-text);
    }
  }

  /* ハンバーガーボタンの中身 */
  .sp-nav-btn {
    position: relative;
    width: 25px;
    height: 16px;
    margin: 5% 0 7% 0;
    z-index: 20;
    margin-left: auto;
    cursor: pointer;
  }

  /* ハンバーガーボタンの中身 */

  /* ハンバーガーボタンの背景色 */
  .sp-nav-btn:before {
    content: "menu";
    position: absolute;
    color: var(--color-white);
    width: 45px;
    height: 40px;
    font-size: 10px;
    top: -10px;
    right: -8px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0px;
    padding-top: 45px;
  }

  /* ハンバーガーボタンの背景色 */

  .pc-nav ul,
  .btn-wrapper {
    display: none;
  }

  /* ハンバーガーの３本線 */

  .sp-nav-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
  }

  .sp-nav-btn span:nth-of-type(1) {
    top: 0;
    right: 3px;
    transition: ease-in 0.3s;
  }

  .sp-nav-btn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
    right: 3px;
    transition: ease-in 0.3s;
  }

  .sp-nav-btn span:nth-of-type(3) {
    bottom: 0;
    right: 3px;
    transition: ease-in 0.3s;
  }

  /* ハンバーガーの３本線 */

  /* ハンバーガークリック後の線の動き */
  .sp-nav-btn.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
    transition: ease-in 0.3s;
    background-color: var(--color-text);
  }

  .sp-nav-btn.active span:nth-of-type(2) {
    opacity: 0;
    transition: ease-in 0.3s;
  }

  .sp-nav-btn.active span:nth-of-type(3) {
    transform: translateY(-4px) rotate(45deg);
    transition: ease-in 0.3s;
    background-color: var(--color-text);
  }

  .sp-nav-btn.active:before {
    opacity: 0;
    transition: ease-in 0.3s;
  }

  /* ハンバーガークリック後の線の動き */

  /* ハンバーガークリック後のメニュー */
  .sp-nav {
    display: block;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    transform: translateX(100%);
    transition: ease-in 0.3s;
    background: var(--color-white);

  }

  /* ハンバーガークリック後のメニュー */

  .sp-nav.active {
    transform: translateX(0);
  }

  /* ハンバーガークリック後メニュー中身 */
  .sp-nav__list {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 87%;
    height: 95svh;
    overflow-y: scroll;
    text-align: left;
    margin: 0 auto;
  }

  .sp-nav ul li {
    font-size: 16px;
    padding-top: 18px;
  }

  .sp-nav__parent {
    font-weight: 700;
    position: relative;
    margin-left: 18px;

    &::before {
      position: absolute;
      height: 8px;
      width: 8px;
      content: "";
      display: block;
      background-color: var(--color-primary);
      top: 50%;
      left: -14px;
      transform: translateY(-50%) rotate(45deg);
    }
  }

  .sp-nav__parent.-contact::before {
    position: absolute;
    height: 8px;
    width: 8px;
    content: "";
    display: block;
    background-color: var(--color-secondary);
    top: 50%;
    left: -14px;
    transform: translateY(-50%) rotate(45deg);
  }

  .sp-nav ul .sp-nav__child {
    li {
      a {
        margin-left: 30px;
        position: relative;

        &::before {
          position: absolute;
          display: block;
          content: "";
          width: 10px;
          height: 1px;
          background-color: var(--color-primary);
          /* color:var(--color-primary); */
          top: 50%;
          left: -16px;
          transform: translateY(-50%);
        }
      }
    }
  }

  .sp-btn-wrapper {
    height: 50px;
    line-height: 50px;
  }

  /* ハンバーガークリック後メニュー中身 */

  /***** ハンバーガーここまで *****/
}

.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 1%;
  right: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }

  50% {
    bottom: 3%;
  }

  100% {
    bottom: 1%;
  }
}

/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: var(--color-gray);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: var(--color-gray);
  transform: skewX(-31deg);
}

.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 50px;
  background: var(--color-gray);
}

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

a.under-line {
  text-decoration: underline;
  color: var(--color-secondary);
}

.pink {
  color:var(--color-secondary);
}

@media screen and (max-width:768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

@media screen and (min-width:769px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}