@charset "UTF-8";
/* =====================================================
  0.0 - Foundation
===================================================== */
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
/*
i-functions
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

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

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  line-height: 2.1;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: clamp(0.875rem, 0.34vw + 0.79375rem, 1rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

video {
  max-width: 100%;
  height: auto;
}

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:active,
a:hover {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
li {
  list-style-type: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
  line-height: 2.1;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

img {
  width: 100%;
  max-width: 100%; /* 1 */
  height: auto; /* 1 */
  vertical-align: middle; /* 2 */
  font-style: italic; /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover; /* 4 */
  shape-margin: 0.75rem; /* 5 */
  display: block;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

button {
  border: none;
  font: inherit;
  line-height: inherit;
  background: none;
  margin: 0;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

/* Google reCAPTCHAバッジを消す */
.grecaptcha-badge {
  visibility: hidden;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

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

body {
  line-height: 1;
  width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  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: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  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;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

* {
  box-sizing: border-box;
}

em {
  font-weight: normal;
}

/* =====================================================
  1.0 - inc
===================================================== */
/* =====================================================
  2.0 - Layout
===================================================== */
html {
  scroll-behavior: smooth;
}

/*
body
-----------------------------------------------------*/
body {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: 400;
  color: #333333;
  background-color: #fafafa;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.12em;
}

/*
spacer
-----------------------------------------------------*/
.l-spacer.-large {
  margin-bottom: clamp(120px, 20.36vw + 43.6px, 200px);
}
.l-spacer.-medium {
  margin-bottom: clamp(80px, 10.18vw + 41.8px, 120px);
}
.l-spacer.-small {
  margin-bottom: clamp(60px, 5.09vw + 40.9px, 80px);
}
.l-spacer.-sp_none {
  margin-bottom: clamp(30px, 22.9vw - 55.9px, 120px);
}

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

.l-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-pc {
    display: block;
  }
}

/*
 header
-----------------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 90px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 90px;
  }
}
.l-header-logo {
  width: 180px;
  height: 38px;
  line-height: 0;
  position: absolute;
  top: 30px;
  left: 6%;
}
@media screen and (min-width: 768px) {
  .l-header-logo {
    top: 30px;
    left: 4.4%;
  }
}
.l-header-logo img {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
  font-size: 0;
}
.l-header-logo img.-before {
  display: block;
}
.l-header-logo img.-after {
  display: none;
}
.l-header-pcnav {
  display: none;
}
@media screen and (min-width: 1280px) {
  .l-header-pcnav {
    display: flex;
    position: absolute;
    width: auto;
    height: 40px;
    top: 28px;
    left: calc(9% + 180px);
    font-size: 17px;
    line-height: 40px;
    font-weight: 400;
  }
}
.l-header-pcnav li {
  margin: 0 1em 0 0;
}
.l-header-pcnav li a {
  color: #fff;
}
.l-header.header-scroll {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.l-header.header-scroll img.-before {
  display: none;
}
.l-header.header-scroll img.-after {
  display: block;
}
.l-header.header-scroll .l-header-pcnav a {
  color: #1b284e;
}
.l-header-contact {
  display: none;
  position: absolute;
  width: 138px;
  height: 40px;
  top: 28px;
  right: calc(4.5% + 123px);
  font-size: 14px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .l-header-contact {
    display: block;
  }
}
.l-header-contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #1b284e;
  transition: 0.3s all;
}
.l-header-contact a span {
  color: #1b284e;
  font-weight: 600;
  transition: 0.3s all;
}
.l-header-contact a span i {
  width: 1em;
  height: 1em;
  margin-right: 0.5rem;
  display: inline-block;
  background: url(../img/common/icn_mail01_b.svg) no-repeat 50% 50%/contain;
  transition: 0.3s all;
}
.l-header-contact a:hover {
  background-color: #1b284e;
}
.l-header-contact a:hover span {
  color: #fff;
}
.l-header-contact a:hover span i {
  background-image: url(../img/common/icn_mail01_w.svg);
}
.l-header-hamburger {
  display: flex !important;
  right: 4.5%;
  position: fixed;
  z-index: 21;
  top: 32px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-header-hamburger {
    right: 3.8%;
  }
}
.l-header-hamburger .icon {
  transition: 0.4s;
  width: 54px;
  height: 30px;
  top: 50%;
}
.l-header-hamburger .icon span {
  transition: 0.4s;
  width: 100%;
  height: 1px;
  background: #707070;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.l-header-hamburger .icon::before {
  transition: 0.4s;
  content: "";
  width: 100%;
  height: 1px;
  background: #707070;
  display: block;
  position: absolute;
  left: 0;
  top: 0px;
  transform: translateY(100%);
}
.l-header-hamburger .icon::after {
  transition: 0.4s;
  content: "";
  width: 100%;
  height: 1px;
  background: #707070;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0px;
  transform: translateY(-100%);
}
.l-header-hamburger-bg {
  transition: 0.4s;
  opacity: 0;
  background: #363636;
  position: fixed;
  z-index: -10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -10;
}
.l-header-hamburger-bg.-open {
  opacity: 1;
}
.l-header-hamburger-bg .-scroll {
  overflow-y: scroll;
  height: 100vh;
  padding-bottom: 100px;
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-bg .-scroll {
    overflow: unset;
    height: auto;
    padding: 0;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1280px) {
  .l-header-hamburger-bg .-scroll {
    background: #333333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.l-header-hamburger-logo {
  display: none;
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-logo {
    transition: 0.4s;
    opacity: 0;
    width: calc(100% - 900px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -50vh;
  }
  .l-header-hamburger-logo img {
    width: 100%;
    max-width: 236px;
  }
  .l-header-hamburger-logo.-open {
    opacity: 1;
  }
}
.l-header-hamburger-nav {
  transition: 0.4s;
  opacity: 0;
  padding-top: 96px;
  color: #fff;
}
.l-header-hamburger-nav.-open {
  opacity: 1;
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav {
    color: #000;
    background: #fff;
    width: 900px;
    height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav ul.-parent li + li {
    margin-top: 1.5rem;
  }
}
.l-header-hamburger-nav ul.-parent li {
  font-size: 20px;
  border-bottom: 1px solid #717171;
}
.l-header-hamburger-nav ul.-parent li i {
  margin-left: 0.5rem;
  font-size: 0.75rem;
}
.l-header-hamburger-nav ul.-parent li a {
  padding: 1rem 8%;
  display: block;
  font-weight: 600;
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav ul.-parent li a {
    padding: 0;
  }
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav ul.-parent li {
    font-size: 20px;
    border: none;
    padding: 0;
  }
}
.l-header-hamburger-nav ul.-parent li .accordion {
  position: relative;
  display: none;
  width: 84%;
  margin: 1rem auto;
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav ul.-parent li .accordion {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav ul.-parent li .accordion {
    margin: 1.5rem 0 0 0;
    width: 100%;
  }
}
.l-header-hamburger-nav ul.-parent li .accordion li.-hyphen {
  font-size: 16px;
  border-bottom: none;
  position: relative;
}
.l-header-hamburger-nav ul.-parent li .accordion li.-hyphen a {
  padding: 0.6rem 0 0.6rem 2rem;
  display: block;
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav ul.-parent li .accordion li.-hyphen a {
    padding: 0.6rem 0 0.6rem 0rem;
  }
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav ul.-parent li .accordion li.-hyphen {
    font-size: 20px;
    padding-left: 2rem;
  }
}
.l-header-hamburger-nav ul.-parent li .accordion li.-hyphen::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0.2rem;
  transform: translate(0%, -50%);
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav ul.-parent li .accordion li.-hyphen::before {
    background: #000;
  }
}
.l-header-hamburger-nav ul.-parent li .accordion li + li {
  margin-top: 0.5rem;
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav ul.-parent li.-small {
    display: block;
    font-size: 16px;
  }
  .l-header-hamburger-nav ul.-parent li.-small.-first {
    margin-top: 3rem;
  }
}
.l-header-hamburger-nav ul.-parent .accordion-title.-plus {
  position: relative;
}
.l-header-hamburger-nav ul.-parent .accordion-title.-plus:before {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 5.5px;
  transform: translate(-50%, -50%);
}
.l-header-hamburger-nav ul.-parent .accordion-title.-plus:after {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translate(-50%, -50%);
  transform: rotate(90deg);
  transition: 0.2s ease-in-out;
}
.l-header-hamburger-nav ul.-parent .accordion-title.-plus.-open:after {
  transform: rotate(0deg);
}
.l-header-hamburger-nav .-contact {
  font-weight: 600;
  padding: 40px 8% 0;
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav .-contact {
    padding: 3rem 5rem 0 0;
  }
}
.l-header-hamburger-nav .-contact h2 {
  font-size: 20px;
  line-height: 1;
  margin: 0 0 20px;
  padding: 0;
}
.l-header-hamburger-nav .-contact .-txt {
  margin-top: 32px;
  font-size: 16px;
}
.l-header-hamburger-nav .-contact .-txt a {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin: 16px 0;
}
.l-header-hamburger-nav .-contact .-txt span {
  display: block;
  font-size: 14px;
}
.l-header-hamburger-nav .-mail {
  padding: 28px 8% 0;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 1280px) {
  .l-header-hamburger-nav .-mail {
    padding: 0;
  }
  .l-header-hamburger-nav .-mail a span {
    color: #fff;
  }
}
.l-header-hamburger-nav .-mail a {
  display: block;
  border: 1px solid #707070;
  background: #fff;
  width: 100%;
  height: 60px;
  transition: 0.3s all;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-header-hamburger-nav .-mail a span {
  color: #000;
  font-size: 16px;
  position: relative;
}
.l-header-hamburger-nav .-mail a span:before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: url(../img/common/icn_mail01_bk.svg) no-repeat 50% 50%/contain;
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translate(0%, -50%);
}
.l-header-hamburger-nav .-mail a span:after {
  content: "";
  width: 36px;
  height: 11px;
  display: block;
  background: url(../img/common/arw_m.svg) no-repeat 40% 50%/50%;
  position: absolute;
  top: 50%;
  right: -46px;
  margin-top: -5px;
}
.l-header-hamburger-nav .-mail a:hover {
  background: #000;
}
.l-header-hamburger-nav .-mail a:hover span {
  color: #fff;
}
.l-header-hamburger-nav .-mail a:hover span:before {
  background-image: url(../img/common/icn_mail01_w.svg);
}
.l-header-hamburger-nav .-mail a:hover span:after {
  background-image: url(../img/common/arw_m_w.svg);
}

@media screen and (min-width: 1280px) {
  .-grid {
    display: grid;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .-grid .div1 {
    grid-area: 1/1/2/2;
  }
  .-grid .div2 {
    grid-area: 1/2/2/3;
  }
  .-grid .div3 {
    grid-area: 2/1/3/2;
  }
  .-grid .div4 {
    grid-area: 2/2/3/3;
    width: 15em;
  }
}
.l-header-hamburger.-open .icon span {
  width: 0;
  top: 50%;
}

.l-header-hamburger.-open .icon::before {
  transform: rotate(-30deg);
  top: 50%;
}

.l-header-hamburger.-open .icon::after {
  transform: rotate(30deg);
  top: 50%;
}

/*
footer
-----------------------------------------------------*/
.l-footer {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  background: #1b284e;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-bottom: 64px;
  }
}
.l-footer--zeostyle {
  padding: 54px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-footer--zeostyle .-L {
  width: 100;
}
@media screen and (min-width: 768px) {
  .l-footer--zeostyle .-L {
    width: 340px;
  }
}
.l-footer--zeostyle .-L img {
  width: 220px;
  height: auto;
  margin-bottom: 36px;
}
.l-footer--zeostyle .-L address {
  font-style: normal;
  font-size: 14px;
  color: #333333;
  line-height: 1.8;
}
.l-footer--zeostyle .-R {
  display: none;
  width: calc(100% - 340px);
}
@media screen and (min-width: 768px) {
  .l-footer--zeostyle .-R {
    display: block;
    display: flex;
    justify-content: space-between;
  }
}
.l-footer--zeostyle .-R ul li.-hyphen {
  padding-left: 2rem;
  position: relative;
}
.l-footer--zeostyle .-R ul li.-hyphen::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0.2rem;
  transform: translate(0%, -50%);
}
.l-footer--zeostyle .-R ul li i {
  font-size: 0.75rem;
  margin-left: 0.5rem;
}
.l-footer--zeostyle .-R ul li + li {
  margin-top: 1.2rem;
}
.l-footer__group {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  color: #fff;
  padding: 40px 0 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .l-footer__group {
    padding: 64px 32px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.l-footer__group .-L {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer__group .-L {
    width: 48%;
  }
}
.l-footer__group .-L img {
  width: 250px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-footer__group .-L img {
    margin: 0 0 36px;
  }
}
.l-footer__group .-L p {
  display: none;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .l-footer__group .-L p {
    display: block;
  }
}
.l-footer__group .-R {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer__group .-R {
    width: 48%;
  }
}
.l-footer__group .-R dl {
  display: none;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer__group .-R dl {
    display: block;
  }
}
.l-footer__group .-R dl div dt {
  font-weight: 600;
  line-height: 1;
}
.l-footer__group .-R dl div dd {
  line-height: 1;
  margin-top: 0.8rem;
}
.l-footer__group .-R dl div + div {
  margin-top: 36px;
}
.l-footer--sns {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.8rem;
  margin-top: 40px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer--sns {
    justify-content: left;
    margin-top: 64px;
  }
}
.l-footer--sns a {
  display: block;
  width: 32px;
  height: auto;
  line-height: 1;
}
.l-footer__copyright {
  text-align: center;
  font-size: 10px;
  color: #fff;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    text-align: left;
    padding-left: 32px;
    margin-top: -10px;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer__copyright {
    padding-left: 3.2%;
  }
}

.c-bg {
  background: #fafafa;
}
.c-bg.-wht {
  background: #fff;
}
.c-bg.-blu {
  background: #1b284e;
}

/*container
-----------------------------------------------------*/
.l-container--primary {
  width: 100%;
  max-width: calc(1004px + 8%);
  margin: 0 auto;
  padding: 0 4%;
}
.l-container--primary.-right0 {
  padding: 0;
}
@media screen and (min-width: 1080px) {
  .l-container--primary.-right0 {
    max-width: unset;
    padding: 0;
    padding-left: calc(50% - 502px);
    margin: 0;
  }
}
.l-container--primary.-right0 h2,
.l-container--primary.-right0 .-txt {
  padding: 0 4%;
}
@media screen and (min-width: 1080px) {
  .l-container--primary.-right0 h2,
  .l-container--primary.-right0 .-txt {
    padding: 0;
  }
}
/*
main
-----------------------------------------------------*/
/*
CTA
-----------------------------------------------------*/
.l-cta--grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media screen and (min-width: 1080px) {
  .l-cta--grid {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
.l-cta--grid .div1 {
  grid-area: 1/1/2/2;
  padding: 1rem;
}
@media screen and (min-width: 1080px) {
  .l-cta--grid .div1 {
    grid-area: 1/1/2/2;
  }
}
.l-cta--grid .div2 {
  grid-area: 2/1/3/2;
  padding: 3rem 2rem;
  font-size: 14px;
}
@media screen and (min-width: 1080px) {
  .l-cta--grid .div2 {
    grid-area: 2/1/3/2;
  }
}
.l-cta--grid .div2 a {
  font-size: 32px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.l-cta--grid .div3 {
  grid-area: 3/1/4/2;
  padding: 1rem;
}
@media screen and (min-width: 1080px) {
  .l-cta--grid .div3 {
    grid-area: 1/2/2/3;
  }
}
.l-cta--grid .div4 {
  grid-area: 4/1/5/2;
  padding: 3rem 2rem;
}
@media screen and (min-width: 1080px) {
  .l-cta--grid .div4 {
    grid-area: 2/2/3/3;
  }
}
.l-cta--grid .div4 a {
  display: block;
  border: 1px solid #707070;
  background: #fff;
  width: 100%;
  height: 60px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-cta--grid .div4 a span {
  color: #000;
  font-size: 16px;
  position: relative;
}
.l-cta--grid .div4 a span:before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: url(../img/common/icn_mail01_bk.svg) no-repeat 50% 50%/contain;
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translate(0%, -50%);
}
.l-cta--grid .div4 a span:after {
  content: "";
  width: 36px;
  height: 11px;
  display: block;
  background: url(../img/common/arw_m.svg) no-repeat 50% 50%/contain;
  position: absolute;
  top: 50%;
  right: -46px;
  margin-top: -5px;
}
.l-cta--grid .div4 a:hover {
  background: #333333;
}
.l-cta--grid .div4 a:hover span {
  color: #fff;
}
.l-cta--grid .div4 a:hover span:before {
  background-image: url(../img/common/icn_mail01_w.svg);
}
.l-cta--grid .div4 a:hover span:after {
  background-image: url(../img/common/arw_m_w.svg);
}
.l-cta--grid div {
  border: 1px solid #ededed;
  background: #fff;
  text-align: center;
}
.l-cta--grid div:not(:first-of-type) {
  border-top: 0;
}
@media screen and (min-width: 1080px) {
  .l-cta--grid div:not(:first-of-type) {
    border-top: 1px solid #ededed;
  }
}
@media screen and (min-width: 1080px) {
  .l-cta--grid div.div2, .l-cta--grid div.div4 {
    border-top: 0;
  }
}
@media screen and (min-width: 1080px) {
  .l-cta--grid div.div3, .l-cta--grid div.div4 {
    border-left: 0;
  }
}

.l-group__cards {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 1080px) {
  .l-group__cards {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: unset;
    gap: clamp(1rem, 1.86vw + 0.10625rem, 2rem);
  }
}
.l-group__card a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border: 1px solid #ededed;
}
@media screen and (min-width: 768px) {
  .l-group__card a {
    display: block;
    height: 100%;
  }
}
.l-group__card a .-main {
  min-height: 130px;
  width: 50%;
}
@media screen and (min-width: 1080px) {
  .l-group__card a .-main {
    width: 100%;
  }
}
.l-group__card a div {
  width: 50%;
  text-align: center;
  font-size: clamp(0.625rem, 0.89vw + 0.45rem, 0.875rem);
}
@media screen and (min-width: 1080px) {
  .l-group__card a div {
    width: 100%;
    padding: 2rem 1rem;
  }
}
.l-group__card a div h2 img {
  width: 80%;
  height: auto;
  margin: 0 auto 2em;
}
.l-group__card a div p {
  line-height: 2;
}

/*
elevator
-----------------------------------------------------*/
.l-elevator {
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 4;
}
@media screen and (min-width: 1080px) {
  .l-elevator {
    position: fixed;
    width: auto;
    top: 50%;
    bottom: 50%;
    transform: translateY(-50%);
    font-size: clamp(12px, 0.51vw + 10.1px, 14px);
  }
}
.l-elevator .-nav {
  display: flex;
  justify-content: space-between;
  background: rgba(67, 67, 67, 0.5411764706);
  padding: 8px;
  margin-bottom: 0;
}
@media screen and (min-width: 1080px) {
  .l-elevator .-nav {
    display: block;
    background: transparent;
    padding: 0;
  }
}
.l-elevator .-nav li {
  position: relative;
  display: block;
  width: 49.5%;
  line-height: 1;
  padding: 0;
}
.l-elevator .-nav li::before {
  content: none;
}
.l-elevator .-nav li a {
  display: block;
  color: #fff;
  background: #1b284e;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: 600;
  padding: 0.5em;
  text-align: center;
  height: 100%;
}
@media screen and (min-width: 1080px) {
  .l-elevator .-nav li a {
    width: auto;
    border-radius: 0;
    padding: 1.5em 1em 1em 1em;
    letter-spacing: 0.5em;
    writing-mode: vertical-rl;
    height: auto;
  }
}
.l-elevator .-nav li a i {
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-right: 0.5em;
}
@media screen and (min-width: 1080px) {
  .l-elevator .-nav li a i {
    margin: 0 0 0.5em;
  }
}
.l-elevator .-nav li:nth-child(1) a {
  background: #000;
}
@media screen and (min-width: 1080px) {
  .l-elevator .-nav li:nth-child(1) a {
    background: #1b284e;
  }
}
.l-elevator .-nav li:nth-child(1) i {
  background: url(../img/common/icn_mail01_w.svg) no-repeat 50% 50%/contain;
}
@media screen and (min-width: 1080px) {
  .l-elevator .-nav li:nth-child(2) {
    display: none;
  }
}
.l-elevator .-nav li:nth-child(2) a {
  background: #000;
}
.l-elevator .-nav li:nth-child(2) i {
  background: url(../img/common/icn_tel.svg) no-repeat 50% 50%/contain;
}
.l-elevator .-nav li:nth-child(3) {
  display: none;
}
@media screen and (min-width: 1080px) {
  .l-elevator .-nav li:nth-child(3) {
    display: block;
    margin-top: 3px;
  }
}
.l-elevator .-nav li:nth-child(3) a {
  background: #1b284e;
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
/*
section
-----------------------------------------------------*/
.c-section__wrap {
  width: 100%;
  max-width: calc(1004px + 8%);
  margin: 0 auto;
  padding: 0 4%;
}
.c-section__wrap.-right0, .c-section__wrap.-left0 {
  padding: 0;
}
@media screen and (min-width: 1080px) {
  .c-section__wrap.-right0, .c-section__wrap.-left0 {
    max-width: unset;
    padding: 0;
    margin: 0;
  }
}
@media screen and (min-width: 1080px) {
  .c-section__wrap.-right0 {
    padding-left: calc(50% - 502px);
  }
}
@media screen and (min-width: 1080px) {
  .c-section__wrap.-left0 {
    padding-right: calc(50% - 502px);
  }
}
@media screen and (min-width: 1080px) {
  .c-section__wrap .-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1080px) {
  .c-section__wrap .-layout .-txt {
    width: 43%;
  }
}
.c-section__wrap .-layout .-img {
  width: 100%;
  margin-top: 5em;
}
@media screen and (min-width: 1080px) {
  .c-section__wrap .-layout .-img {
    width: 53%;
    margin: 0;
  }
}
.c-section__wrap .-layout .-img img {
  width: 100%;
  display: block;
}
.c-section__wrap .-map iframe {
  aspect-ratio: 16/9;
  width: 100%;
}
.c-section__wrap .-table table {
  width: 100%;
  border-collapse: collapse;
  empty-cells: show;
  line-height: 1.5;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
}
.c-section__wrap .-table table tbody tr th,
.c-section__wrap .-table table tbody tr td {
  border: 1px solid #ddd;
  padding: 4%;
  display: block;
  margin-top: -1px;
}
@media screen and (min-width: 1080px) {
  .c-section__wrap .-table table tbody tr th,
  .c-section__wrap .-table table tbody tr td {
    display: table-cell;
    padding: 1em 2em;
    margin: 0;
  }
}
.c-section__wrap .-table table tbody tr th {
  min-width: 12em;
  background: #ededed;
}
.c-section__wrap .-table table tbody tr td {
  background: #fff;
}

body.post-type-archive-reform .c-section__wrap,
body.post-type-archive-reform .c-section__wrap {
  max-width: calc(948px + 8%);
}

/*
title
-----------------------------------------------------*/
.c-title-pageTitle {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.875rem, 8.38vw + 0.9125rem, 5.9375rem);
  color: #fff;
}
.c-title-pageTitle span {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  display: block;
  font-size: clamp(1.125rem, 1.88vw + 0.6875rem, 1.8125rem);
  margin-top: 0.5em;
}

.c-title-ex-large {
  font-size: clamp(2.5rem, 8.4vw + 0.53125rem, 4.5625rem);
  margin-bottom: clamp(38px, 4.58vw + 20.8px, 56px);
  color: #666666;
  line-height: 1.2;
}
.c-title-ex-large span {
  font-size: 18px;
  display: block;
  font-weight: 600;
  line-height: 3;
}

.c-title-large {
  font-size: clamp(3.125rem, 0vw + 3.125rem, 3.125rem);
  color: #666666;
  line-height: 1.2;
  font-weight: 600;
}
.c-title-large span {
  font-size: 18px;
  display: block;
  font-weight: 600;
  line-height: 3;
}

.c-title-medium {
  font-size: clamp(1.625rem, 1.54vw + 1.2625rem, 2.1875rem);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.6em;
}
.c-title-medium.-center {
  text-align: center;
}

.c-title-small {
  font-size: clamp(1.375rem, 1.03vw + 1.13125rem, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.6em;
}
.c-title-small.-center {
  text-align: center;
}

.c-title_thumb {
  font-size: clamp(1rem, 0.68vw + 0.84375rem, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
}

.c-title_price {
  font-size: clamp(1.375rem, 1.03vw + 1.13125rem, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5em;
  color: #6b3d0f;
}
.c-title_price span {
  font-size: clamp(0.875rem, 0.34vw + 0.79375rem, 1rem);
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
}

.c-title_thumb_txt {
  font-size: clamp(1rem, 0.34vw + 0.91875rem, 1.125rem);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
  color: #666666;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

/*
c-herohead
-----------------------------------------------------*/
.c-herohead {
  overflow-y: hidden;
  position: relative;
  width: 100vw;
  height: 100vw;
  margin: 0 auto;
  margin-bottom: clamp(80px, 10.18vw + 41.8px, 120px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-herohead {
    height: 60vh;
  }
}
.c-herohead:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}
.c-herohead:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.c-herohead h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  z-index: 2;
  text-align: center;
}

body.page-template-concept .c-herohead:before {
  background-image: url(../img/herohead/concept.webp);
}

body.post-type-archive-reform .c-herohead:before,
body.term-kitchen .c-herohead:before {
  background-image: url(../img/herohead/kitchen.webp);
}

body.term-bath .c-herohead:before {
  background-image: url(../img/herohead/bath.webp);
}

body.term-toilet .c-herohead:before {
  background-image: url(../img/herohead/toilet.webp);
}

body.term-washroom .c-herohead:before {
  background-image: url(../img/herohead/washroom.webp);
}

body.page-template-renovation .c-herohead:before {
  background-image: url(../img/herohead/renovation.webp);
}

body.page-template-store .c-herohead:before {
  background-image: url(../img/herohead/store.webp);
}

body.post-type-archive-works .c-herohead:before,
body.tax-cat_works .c-herohead:before,
body.single-works .c-herohead:before {
  background-image: url(../img/herohead/works.webp);
}

/*
c-pagehead
-----------------------------------------------------*/
.c-pagehead {
  text-align: center;
  padding: 1em 0;
}
.c-pagehead h1 {
  font-size: clamp(1.875rem, 1.71vw + 1.475rem, 2.5rem);
  color: #666666;
}

body.page-template .c-pagehead,
body.post-type-archive-topics .c-pagehead,
body.tax-topics .c-pagehead,
body.single-topics .c-pagehead,
body.post-type-archive-news .c-pagehead,
body.tax-cat_news .c-pagehead,
body.single-news .c-pagehead,
body.error404 .c-pagehead {
  padding-top: calc(2em + 92px);
  font-weight: 600;
}

body.page-template .c-pagehead,
body.page-template-stove-maintenance .c-pagehead,
body.page-template-garden .c-pagehead,
body.page-template-repair .c-pagehead,
body.page-template-firewood .c-pagehead {
  padding: 0;
  padding-top: 92px;
}
body.page-template .c-pagehead h1,
body.page-template-stove-maintenance .c-pagehead h1,
body.page-template-garden .c-pagehead h1,
body.page-template-repair .c-pagehead h1,
body.page-template-firewood .c-pagehead h1 {
  color: #fff;
  background: #363636;
  padding: 2em 0;
  font-weight: 600;
}

/*
button
-----------------------------------------------------*/
.c-btn a {
  color: #fff;
  display: inline-block;
  border: 1px solid #707070;
  background: #333333 url("../img/common/arw_m.svg") no-repeat 97% 50%/7%;
  padding: 1em 3em;
  text-align: center;
  transition: all 0.3s;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-btn a {
    padding: 1em 5em;
    width: 30em;
    background: #333333 url("../img/common/arw_m.svg") no-repeat 90% 50%;
  }
}
.c-btn a:hover {
  color: #333333;
  background-color: #fff;
  background-image: url("../img/common/arw_m_w.svg");
}
.c-btn.-w100 a {
  width: 100%;
}
.c-btn.-w300 a {
  width: 100%;
  margin-top: 2em;
}
@media screen and (min-width: 1080px) {
  .c-btn.-w300 a {
    width: 300px;
  }
}
.c-btn.-w600 a {
  width: 100%;
  margin-top: 2em;
}
@media screen and (min-width: 1080px) {
  .c-btn.-w600 a {
    width: 600px;
  }
}
.c-btn.-right {
  text-align: right;
}
.c-btn.-center {
  text-align: center;
}
.c-btn.-red a {
  border: 1px solid #ea1043;
  background-image: url("../img/common/arw_m_r.svg");
}
.c-btn.-red a img {
  display: block;
  width: 60%;
  margin: 0 auto 0.5em;
}
.c-btn.-red a span {
  display: block;
}
.c-btn.-txt_left a {
  text-align: left;
}
.c-btn.-font28 a {
  font-size: clamp(20px, 2.04vw + 12.3px, 28px);
  padding: 2em;
  background-position: 95% 50%;
  font-weight: 600;
}

/*
text
-----------------------------------------------------*/
/*
breadcrumb
-----------------------------------------------------*/
.c-breadcrumb {
  background: #fff;
  padding: 0.8em 4%;
  font-size: clamp(0.75rem, 0vw + 0.75rem, 0.75rem);
}

/*
p-pagenav
-----------------------------------------------------*/
.wp-pagenavi {
  display: flex;
  gap: 0.5rem;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 48px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    width: 96%;
    padding-top: 0;
    margin-top: clamp(60px, 8.93vw - 8.6px, 120px);
  }
}
@media screen and (min-width: 620px) {
  .wp-pagenavi {
    gap: 1rem;
  }
}
.wp-pagenavi .current,
.wp-pagenavi .page {
  background: #fff;
  color: #000;
  transition: 0.5s;
  text-decoration: none !important;
  border: 1px solid #000;
  display: inline-block;
  width: 3em;
  height: 2em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi .current.current,
.wp-pagenavi .page.current {
  background: #000;
  color: #fff;
}
.wp-pagenavi .current:hover,
.wp-pagenavi .page:hover {
  background: #000;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .current,
  .wp-pagenavi .page {
    width: 5em;
    height: 3em;
  }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: #000;
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/common/icon_arrow_left_bk.svg) no-repeat 0% 50%/16px 9px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    background-position: 50% 50%;
  }
  .wp-pagenavi .previouspostslink:before,
  .wp-pagenavi .nextpostslink:before {
    content: "prev";
    display: block;
    font-size: 16px;
    font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif, serif;
    letter-spacing: 0.25rem;
    font-weight: 600;
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translate(0%, -57%);
  }
}
.wp-pagenavi .nextpostslink {
  background: url(../img/common/icon_arrow_right_bk.svg) no-repeat 100% 50%/16px 9px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .nextpostslink {
    background-position: 50% 50%;
  }
  .wp-pagenavi .nextpostslink:before {
    content: "next";
    left: auto;
    font-size: 16px;
    font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif, serif;
    letter-spacing: 0.25rem;
    font-weight: 600;
    right: 45px;
    top: 50%;
    transform: translate(0%, -53%);
  }
}
.wp-pagenavi .previouspostslink {
  left: 0;
}
.wp-pagenavi .nextpostslink {
  right: 0;
}

/*
c-lineup
-----------------------------------------------------*/
.c-lineup {
  overflow: hidden;
}
.c-lineup .-inner {
  margin: 0 auto;
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 1080px) {
  .c-lineup .-inner {
    padding-left: calc(50% - 502px);
    padding-right: calc(50% - 502px);
  }
}
.c-lineup .-box {
  position: relative;
}
.c-lineup .-carousel li {
  text-align: center;
  margin-right: 30px;
}
.c-lineup .-carousel li a figure {
  overflow: hidden;
  aspect-ratio: 1;
  background-color: #333333;
}
.c-lineup .-carousel li a figure img {
  transition: 0.3s all;
  display: block;
  margin-bottom: 1em;
  width: auto;
  height: 100%;
  opacity: 0.6;
}
.c-lineup .-carousel li a p {
  margin: 0.75em 0;
  font-size: clamp(12px, 0.51vw + 10.1px, 14px);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.c-lineup .-carousel li a p span {
  display: block;
  font-size: clamp(12px, 0.51vw + 10.1px, 14px);
  color: #e0e0e0;
}
.c-lineup .-carousel li a:hover figure img {
  opacity: 1;
  transform: scale(1.1);
  transition: 0.3s all;
}
.c-lineup.-topics .-carousel li a figure {
  aspect-ratio: 140/69;
  margin-bottom: 1rem;
}
.c-lineup.-topics .-carousel li a figure img {
  width: 100%;
  height: auto;
}
.c-lineup.-topics .-carousel li a span {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: clamp(14px, 0vw + 14px, 14px);
}
.c-lineup.-topics .-carousel li a span time {
  margin-right: 1em;
  color: #8e8e8e;
}
.c-lineup.-topics .-carousel li a p {
  font-size: clamp(16px, 0vw + 16px, 16px);
  margin: 0;
}
.c-lineup.-works .-carousel li a figure {
  aspect-ratio: 738/614;
}
.c-lineup.-reform .-carousel li a {
  display: block;
  padding: 4%;
  background-color: #fff;
}
@media screen and (min-width: 1080px) {
  .c-lineup.-reform .-carousel li a {
    padding: 4%;
  }
}
.c-lineup.-reform .-carousel li a figure {
  aspect-ratio: 352/243;
  margin-bottom: 0.8em;
}
.c-lineup.-reform .-carousel li a h3 {
  text-align: left;
}
.c-lineup.-reform .-carousel li a .-price {
  color: #6b3d0f;
  font-size: clamp(1.375rem, 1.03vw + 1.13125rem, 1.75rem);
}
.c-lineup.-reform .-carousel li a .-price span {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: clamp(0.75rem, 0.34vw + 0.66875rem, 0.875rem);
  display: inline;
  color: #6b3d0f;
}
.c-lineup .slick-list {
  overflow: visible;
}

/*
c-thumbnails
-----------------------------------------------------*/
.c-thumbnails ul {
  margin-top: clamp(40px, 12.72vw - 7.7px, 90px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (min-width: 620px) {
  .c-thumbnails ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.c-thumbnails ul li {
  width: 46.7%;
  margin-bottom: 3.5em;
}
@media screen and (min-width: 620px) {
  .c-thumbnails ul li {
    width: 46.7%;
  }
}
.c-thumbnails ul li a {
  display: block;
  padding: 4%;
  background: #fff;
  height: 100%;
}
@media screen and (min-width: 620px) {
  .c-thumbnails ul li a {
    padding: 4%;
  }
}
.c-thumbnails ul li a figure {
  overflow: hidden;
  aspect-ratio: 800/420;
  background-color: #333333;
  margin-bottom: 0.8em;
  position: relative;
}
.c-thumbnails ul li a figure img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
  display: block;
  margin-bottom: 1em;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.c-thumbnails ul li a:hover figure img {
  opacity: 1;
  transform: scale(1.1);
  transition: 0.3s all;
}
.c-thumbnails ul li a .-time {
  font-size: clamp(10px, 1.02vw + 6.2px, 14px);
  line-height: 1.3;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 0.6em;
}
.c-thumbnails ul li a .-title {
  font-size: clamp(0.875rem, 2.39vw + 0.31875rem, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
}
.c-thumbnails.-works .-carousel li a figure {
  aspect-ratio: 738/614;
}
.c-thumbnails .slick-list {
  overflow: visible;
}
.c-thumbnails.-top ul {
  flex-direction: column;
}
@media screen and (min-width: 620px) {
  .c-thumbnails.-top ul {
    flex-direction: row;
  }
}
.c-thumbnails.-top ul li {
  width: 100%;
  margin-bottom: 2.5em;
}
@media screen and (min-width: 620px) {
  .c-thumbnails.-top ul li {
    width: 46.7%;
    margin-bottom: 3.5em;
  }
}
.c-thumbnails.-top ul li a {
  padding: 0;
  background: #fff;
  border: 1px solid #ededed;
}
@media screen and (min-width: 620px) {
  .c-thumbnails.-top ul li a {
    padding: 0;
  }
}
.c-thumbnails.-top ul li a figure img {
  margin: 0;
}
.c-thumbnails.-top ul li a p {
  padding: 4%;
  font-size: clamp(1rem, 0.68vw + 0.84375rem, 1.25rem);
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (min-width: 620px) {
  .c-thumbnails.-top ul li a p {
    padding: 1rem 2rem;
  }
}
.c-thumbnails.-top ul li a p span {
  display: block;
  color: #6b3d0f;
  font-weight: 600;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: clamp(0.875rem, 0.34vw + 0.79375rem, 1rem);
}
.c-thumbnails.-top ul li a p span i {
  font-style: normal;
  font-weight: 900;
  font-size: clamp(1.125rem, 0.34vw + 1.04375rem, 1.25rem);
}

/*
form
-----------------------------------------------------*/
.c-form {
  padding: 2em 4%;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .c-form {
    padding: 12%;
  }
}
.c-form .-table {
  margin-bottom: 5rem;
}
.c-form .-table table th {
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-form .-table table th {
    width: 12em;
  }
}
.c-form .-table table p {
  margin: 0;
}
.c-form .-select {
  position: relative;
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.c-form .-select:after {
  position: absolute;
  right: 1em;
  width: 10px;
  height: 7px;
  background-color: #ddd;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.c-form .-select select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: none;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
  border: 1px solid #ddd;
}
.c-form .-link {
  color: #0000ee;
}
.c-form ul {
  margin: 0;
  padding: 0;
}
.c-form ul li {
  display: block;
}
.c-form ul li label {
  width: auto;
}
.c-form input[type=text], .c-form input[type=email], .c-form input[type=tel], .c-form input[type=datetime], .c-form input[type=date], .c-form input[type=month], .c-form input[type=week], .c-form input[type=time], .c-form input[type=datetime-local], .c-form input[type=tel], .c-form input[type=serch], .c-form input[type=url], .c-form input[type=password], .c-form input[type=number], .c-form input[type=range], .c-form input[type=color], .c-form input[type=file], .c-form input[type=image] {
  width: 100%;
  font-size: clamp(1rem, 0.34vw + 0.91875rem, 1.125rem);
  padding: 0.5em;
  border: transparent;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
}
.c-form input[type=radio], .c-form input[type=checkbox] {
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 0.3em;
}
.c-form input.zipcode {
  width: calc(100% - 2em);
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-form input.zipcode {
    width: 8em;
  }
}
.c-form textarea {
  width: 100%;
  font-size: clamp(1rem, 0.34vw + 0.91875rem, 1.125rem);
  padding: 0.8em;
  border: transparent;
  box-sizing: border-box;
  height: 10em;
  background: #fff;
  border: 1px solid #ddd;
}
.c-form input[type=submit], .c-form input[type=button],
.c-form button[type=submit],
.c-form button[type=button] {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  color: #333333;
  font-size: clamp(1rem, 0.34vw + 0.91875rem, 1.125rem);
  font-weight: 600;
  padding: 1em 0;
  border: 1px solid #707070;
  background: #fff url("../img/common/arw_m.svg") no-repeat 90% 50%;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-form input[type=submit], .c-form input[type=button],
  .c-form button[type=submit],
  .c-form button[type=button] {
    width: auto;
    padding: 1em 5em;
  }
}
@media (hover: hover) {
  .c-form input[type=submit]:hover, .c-form input[type=button]:hover,
  .c-form button[type=submit]:hover,
  .c-form button[type=button]:hover {
    color: #fff;
    background-color: #333333;
    background-image: url("../img/common/arw_m_w.svg");
  }
}
.c-form .-submit {
  text-align: center;
}
.c-form.comfirm dl {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-form.comfirm dl {
    flex-direction: row;
  }
}
.c-form.comfirm dl dt {
  font-weight: bold;
  width: 100%;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .c-form.comfirm dl dt {
    width: 10em;
    margin: 0 1rem 0;
  }
}
.c-form.comfirm dl dd {
  width: auto;
}

/*
img anker
-----------------------------------------------------*/
a img {
  transition: 0.3s;
}
a img:hover {
  opacity: 0.6;
}
.slider a img {
  transition: none;
}
.slider a img:hover {
  opacity: 1;
}

/*
c-banners
-----------------------------------------------------*/
.c-banners {
  width: 100%;
  max-width: 1280px;
}
.c-banners ul {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .c-banners ul {
    flex-direction: row;
  }
}
.c-banners ul li {
  width: 100%;
  background: #ddd;
  margin-bottom: 1rem;
  padding-left: 0 !important;
}
@media screen and (min-width: 768px) {
  .c-banners ul li {
    width: 48%;
  }
}
.c-banners ul li::before {
  content: none !important;
}
.c-banners ul li a {
  display: block;
}
.c-banners ul li a .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  gap: 5%;
}
.c-banners ul li a .inner figure {
  flex: 2;
  margin: 0;
}
.c-banners ul li a .inner figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
.c-banners ul li a .inner > div {
  flex: 4;
  padding: 0.75rem 1.5rem;
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.c-banners ul li a .inner > div h4 {
  font-size: clamp(12px, 1.02vw + 8.2px, 16px);
  font-weight: 900;
}
.c-banners ul li a .inner > div p {
  font-size: clamp(10px, 1.02vw + 6.2px, 14px);
}

/*
  3.2 - Project
-----------------------------------------------------*/
/*
home
-----------------------------------------------------*/
body.home .l-header {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
body.home .l-header-logo img.-before {
  display: none;
}
body.home .l-header-logo img.-after {
  display: block;
}
body.home .l-header-pcnav a {
  color: #333333;
}

.p-home {
  margin-top: 5%;
}
.p-home .l-main {
  background: url(../img/top/bg_sp.png) no-repeat 0 0/100%;
}
@media screen and (min-width: 1080px) {
  .p-home .l-main {
    background: url(../img/top/bg.png) no-repeat 0 0/100%;
  }
}
@media screen and (min-width: 1080px) {
  .p-home--kv {
    padding-top: 90px;
  }
}
.p-home--banner {
  padding-top: clamp(50px, 0vw + 50px, 50px);
}
@media screen and (min-width: 1080px) {
  .p-home--banner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.p-home--banner ul li {
  padding-left: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 1080px) {
  .p-home--banner ul li {
    margin-bottom: 0;
  }
  .p-home--banner ul li:nth-child(1) {
    width: 49%;
  }
  .p-home--banner ul li:nth-child(2) {
    width: 49%;
  }
  .p-home--banner ul li:nth-child(3) {
    width: 100%;
    margin-top: 30px;
  }
}
.p-home--banner ul li:before {
  display: none;
}
@media screen and (min-width: 1080px) {
  .p-home--news {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1080px) {
  .p-home--news h2 {
    width: 30%;
  }
}
.p-home--news dl {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  margin-top: 32px;
}
@media screen and (min-width: 1080px) {
  .p-home--news dl {
    width: 65%;
    margin-top: 10px;
  }
}
.p-home--news dl a {
  display: block;
  width: 100vw;
  margin-left: -4%;
  border-bottom: 1px solid #ededed;
  padding: 0.8rem 96px 0.8rem 0;
}
@media screen and (min-width: 1080px) {
  .p-home--news dl a {
    width: calc((100vw - 1004px) / 2 + 100%);
    margin: 0;
  }
}
@media screen and (min-width: 1080px) {
  .p-home--news dl a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 2rem;
    padding: 0.6rem 138px 0.6rem 0;
  }
}
.p-home--news dl a dt {
  padding-left: 4%;
  font-size: 12px;
  line-height: 1.8;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (min-width: 1080px) {
  .p-home--news dl a dt {
    padding: 0;
    font-size: 14px;
    width: 12em;
  }
}
.p-home--news dl a dt .-date {
  width: 3.8rem;
  color: #666666;
}
@media screen and (min-width: 1080px) {
  .p-home--news dl a dt .-date {
    width: 4.5rem;
  }
}
.p-home--news dl a dd {
  padding-left: 4%;
  padding-top: 8px;
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (min-width: 1080px) {
  .p-home--news dl a dd {
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 13em);
  }
}
.p-home--news dl a:after {
  content: "";
  width: 36px;
  height: 11px;
  display: block;
  background: url(../img/common/arw_m.svg) no-repeat 50% 50%/contain;
  position: absolute;
  right: 40px;
  margin-top: -16px;
}
@media screen and (min-width: 1080px) {
  .p-home--news dl a:after {
    margin-top: 3px;
  }
}
.p-home--concept {
  position: relative;
}
.p-home--concept .-img-sp {
  width: 100vw;
  margin-left: -4%;
  margin-bottom: 3em;
}
@media screen and (min-width: 1080px) {
  .p-home--concept .-img-sp {
    display: none;
  }
}
.p-home--concept .-img {
  display: none;
}
@media screen and (min-width: 1080px) {
  .p-home--concept .-img {
    display: block;
    position: absolute;
    width: 23%;
  }
  .p-home--concept .-img:nth-of-type(1) {
    top: 0;
    right: 0;
  }
  .p-home--concept .-img:nth-of-type(2) {
    left: 0;
  }
  .p-home--concept .-img:nth-of-type(3) {
    left: 14%;
    bottom: 23%;
  }
  .p-home--concept .-img:nth-of-type(4) {
    right: 11%;
    bottom: 38%;
    width: 18%;
  }
}
@media screen and (min-width: 1080px) {
  .p-home--concept .-txt {
    height: calc(72vw - 80px);
    padding-left: 22%;
    width: 65%;
  }
}
.p-home--concept .-txt h2 {
  text-align: center;
  font-size: clamp(36px, 3.05vw + 24.6px, 48px);
  font-weight: 600;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 1080px) {
  .p-home--concept .-txt h2 {
    text-align: left;
  }
}
.p-home--concept .-txt h3 {
  font-size: clamp(24px, 1.02vw + 20.2px, 28px);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 1em;
}
.p-home--concept .-txt .c-btn {
  margin-top: 5em;
}
@media screen and (min-width: 1080px) {
  .p-home .-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1080px) {
  .p-home .-layout .-txt {
    width: 28%;
  }
}
.p-home .-layout .-img {
  width: 100%;
  margin-top: 6em;
}
@media screen and (min-width: 1080px) {
  .p-home .-layout .-img {
    width: 64%;
    margin: 0;
  }
}
.p-home .-layout .-img img {
  width: 100%;
  display: block;
}
.p-home .-scrolldown {
  width: 100vw;
  height: 80px;
  border-bottom: 1px solid #707070;
  position: relative;
  margin-top: clamp(80px, 10.18vw + 41.8px, 120px);
  /* 丸の描写 */
  /* 線の描写 */
}
.p-home .-scrolldown span {
  position: absolute;
  left: 52%;
  bottom: calc(50% - 0.6em);
  /*テキストの形状*/
  color: #707070;
  font-size: clamp(12px, 0.51vw + 10.1px, 14px);
  line-height: 1.2;
  z-index: 0;
}
.p-home .-scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: calc(50% - 5px);
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #707070;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  z-index: 0;
}
.p-home .-scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  /*線の形状*/
  width: 1px;
  height: 80px;
  background: #707070;
  z-index: 0;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 75px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* dotsを丸くカスタマイズするCSS */
.slick-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 2%;
  left: 50%;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.5215686275);
  border-radius: 50%;
  cursor: pointer;
}

.slick-dots li:hover,
.slick-dots li.slick-active {
  background: rgb(31, 8, 0);
}

.slick-dots li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

/*
concept
-----------------------------------------------------*/
.p-concept {
  padding-top: clamp(30px, 5.09vw + 10.9px, 50px);
  background: url(../img/common/bg02.png) no-repeat 0 0/500%;
}
@media screen and (min-width: 1080px) {
  .p-concept {
    background: url(../img/common/bg02.png) no-repeat 0 0/100%;
  }
}
.p-concept .c-section__wrap .-txt {
  padding: 0 4%;
}
@media screen and (min-width: 1080px) {
  .p-concept .c-section__wrap .-txt {
    padding: 0;
  }
}
.p-concept .c-section__wrap.-right0 {
  padding: 0;
}
@media screen and (min-width: 1080px) {
  .p-concept .c-section__wrap.-right0 {
    max-width: unset;
    padding: 0;
    padding-left: calc(50% - 512px);
    margin: 0;
  }
}
.p-concept .c-section__wrap.-s .-txt {
  padding: 0 4%;
}
@media screen and (min-width: 1080px) {
  .p-concept .c-section__wrap.-s .-txt {
    padding: 0;
  }
}
@media screen and (min-width: 1080px) {
  .p-concept .c-section__wrap.-s.-right0 {
    padding-left: calc(50% - 454px);
  }
}
@media screen and (min-width: 1080px) {
  .p-concept .c-section__wrap.-s.-left0 {
    padding-right: calc(50% - 454px);
  }
}
@media screen and (min-width: 1080px) {
  .p-concept .c-section .-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1080px) {
  .p-concept .c-section .-layout .-txt {
    width: 43%;
  }
}
.p-concept .c-section .-layout .-img {
  width: 100%;
  margin-top: 5em;
}
@media screen and (min-width: 1080px) {
  .p-concept .c-section .-layout .-img {
    width: 53%;
    margin: 0;
  }
}
.p-concept .c-section .-layout .-img img {
  width: 100%;
  display: block;
}
.p-concept .c-section h2 {
  font-size: clamp(38px, 4.33vw + 21.7px, 55px);
  font-weight: 400;
  margin-bottom: 1.5em;
}
.p-concept .c-section h3 {
  font-size: clamp(24px, 1.02vw + 20.2px, 28px);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1em;
}
@media screen and (min-width: 1080px) {
  .p-concept .c-section:nth-of-type(even) .-txt {
    order: 2;
  }
  .p-concept .c-section:nth-of-type(even) .-img {
    order: 1;
  }
  .p-concept .c-section .-s p {
    position: relative;
    padding-top: 16em;
  }
  .p-concept .c-section .-s p:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 15em;
    background-color: #707070;
  }
}

/*
renovation
-----------------------------------------------------*/
.p-renovation {
  background: url(../img/common/bg02.png) no-repeat 0 0/500%;
  counter-reset: mycounter;
}
@media screen and (min-width: 1080px) {
  .p-renovation {
    background: url(../img/common/bg02.png) no-repeat 0 0/100%;
  }
}
.p-renovation .c-section__wrap {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-renovation .c-section .-layout .-txt {
    width: 44%;
  }
}
@media screen and (min-width: 1080px) {
  .p-renovation .c-section .-layout .-img {
    width: 46%;
  }
}
.p-renovation .c-section .-merit {
  background: #4e4e4e;
  color: #fff;
}
.p-renovation .c-section .-merit:nth-of-type(2) {
  background: #808080;
}
.p-renovation .c-section .-merit .c-section__wrap .-layout {
  align-items: center;
}
.p-renovation .c-section .-merit .c-section__wrap .-txt {
  padding: 2em 4%;
}
@media screen and (min-width: 1080px) {
  .p-renovation .c-section .-merit .c-section__wrap .-txt {
    width: 38%;
    padding: 0;
  }
}
.p-renovation .c-section .-merit .c-section__wrap .-txt h3 {
  position: relative;
  padding-left: 3.5em;
}
.p-renovation .c-section .-merit .c-section__wrap .-txt h3::before {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(3.125rem, 3.82vw + 2.23125rem, 4.0625rem);
  line-height: 1.3;
  counter-increment: mycounter; /* h3カウンターの値に1を加算 */
  content: counter(mycounter, decimal-leading-zero); /* h3カウンターの値を表示 */
}
.p-renovation .c-section .-merit .c-section__wrap .-img {
  margin-top: 0;
}
@media screen and (min-width: 1080px) {
  .p-renovation .c-section .-merit .c-section__wrap .-img {
    width: 47vw;
  }
}

/*
store
-----------------------------------------------------*/
.p-store {
  background: url(../img/common/bg.png) no-repeat 0 0/500%;
}
@media screen and (min-width: 1080px) {
  .p-store {
    background: url(../img/common/bg.png) no-repeat 0 0/100%;
  }
}
.p-store .c-section.-s .-layout {
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .p-store .c-section.-s:nth-of-type(even) .-txt {
    order: 2;
  }
  .p-store .c-section.-s:nth-of-type(even) .-img {
    order: 1;
    width: 46%;
  }
}

/*
store
-----------------------------------------------------*/
.p-works .c-section #slider {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-works .c-section #slider {
    margin-bottom: 3rem;
  }
}
.p-works .c-section #thumbs li {
  opacity: 0.3;
  transition: opacity 0.3s linear;
}
.p-works .c-section #thumbs .slick-current {
  opacity: 1;
}
.p-works .c-section .-cat {
  color: #666666;
  font-size: 0.875rem;
  display: inline-block;
  margin-right: 0.75rem;
}
.p-works .c-section .-time {
  color: #666666;
  font-size: 0.875rem;
  display: inline-block;
  margin-right: 1.75rem;
}
.p-works .c-section .-content p {
  margin-bottom: 3rem;
}
.p-works .c-section .-content figure {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 3rem;
}
@media screen and (min-width: 768px) {
  .p-works .c-section .-content figure {
    width: auto;
    margin: 0 auto 3rem;
  }
}
.p-works .c-section .-content h2,
.p-works .c-section .-content h3,
.p-works .c-section .-content h4,
.p-works .c-section .-content h5 {
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.6em;
}
.p-works .c-section .-content h2 {
  font-size: clamp(1.375rem, 1.03vw + 1.13125rem, 1.75rem);
}
.p-works .c-section .-content h3 {
  font-size: clamp(1.25rem, 0.85vw + 1.05rem, 1.5625rem);
}
.p-works .c-section .-content h4 {
  font-size: clamp(1.125rem, 0.68vw + 0.96875rem, 1.375rem);
}
.p-works .c-section .-content h5 {
  font-size: clamp(1rem, 0.34vw + 0.91875rem, 1.125rem);
}
.p-works .c-section .-content h6 {
  font-size: clamp(0.875rem, 0.34vw + 0.79375rem, 1rem);
}

/*
store
-----------------------------------------------------*/
body.tax-cat_reform {
  background: #fafafa;
}

.p-reform.-post .c-article {
  width: 100%;
  margin: 0 auto 5rem;
}
@media screen and (min-width: 620px) {
  .p-reform.-post .c-article {
    width: 80%;
  }
}
.p-reform.-post .c-article .-tag {
  display: flex;
  flex-direction: row;
  gap: 5px 5px;
  margin-bottom: 1.5rem;
}
.p-reform.-post .c-article .-tag a {
  color: #707070;
  font-size: 13px;
  font-weight: 600;
  padding: 0.25em 0.6em;
  border: 1px solid #ddd;
  background: #fff;
}
.p-reform.-post .c-article .-title {
  margin-bottom: 1.5rem;
}
.p-reform.-post .c-article .-blandlogo {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
}
.p-reform.-post .c-article .-blandlogo img {
  width: auto;
  height: 40px;
  padding: 5px;
  border: 1px solid #ddd;
  background: #fff;
}
.p-reform.-post .c-article .-slider {
  margin-bottom: 1rem;
}
.p-reform.-post .c-article .-thumb {
  margin-bottom: 3rem;
}
.p-reform.-post .c-article .-thumb .slick-active {
  opacity: 0.5;
}
.p-reform.-post .c-article .-thumb .slick-current {
  opacity: 1;
}
.p-reform.-post .c-article .-pricetitle {
  color: #666666;
  display: inline-block;
  background: #fff;
  font-size: clamp(0.8125rem, 0.17vw + 0.775rem, 0.875rem);
  font-weight: 600;
  padding: 0.25em 0.6em;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
}
.p-reform.-post .c-article .-price {
  color: #6b3d0f;
  font-size: clamp(1.125rem, 0.68vw + 0.96875rem, 1.375rem);
  font-weight: 600;
  margin-bottom: 2rem;
}
@media screen and (min-width: 620px) {
  .p-reform.-post .c-article .-price {
    margin-bottom: 4rem;
  }
}
.p-reform.-post .c-article .-price em {
  font-size: clamp(1.875rem, 1.03vw + 1.63125rem, 2.25rem);
  font-weight: 600;
}
.p-reform.-post .c-article .-price span {
  display: block;
  line-height: 2;
}
@media screen and (min-width: 620px) {
  .p-reform.-post .c-article .-price span {
    margin-left: 1rem;
    display: inline;
  }
}
.p-reform.-post .c-article .-spec {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px 5px;
  margin-bottom: 3rem;
}
.p-reform.-post .c-article .-spec li {
  width: 48%;
  display: inline-block;
  color: #fff;
  font-size: clamp(0.75rem, 0.68vw + 0.59375rem, 1rem);
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 1em 0 0.8em 0.8em;
  background: #423b2c;
}
@media screen and (min-width: 1080px) {
  .p-reform.-post .c-article .-spec li {
    width: auto;
    padding: 0.25em 0.6em 0.3em;
  }
}
.p-reform.-post .c-article .-body {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  color: #707070;
  padding: 5%;
  background: #fff;
  margin-bottom: 3rem;
}
.p-reform.-card {
  margin-top: 10rem;
}
.p-reform.-card h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/*
kv
-----------------------------------------------------*/
.p-home--kv {
  position: relative;
  margin-bottom: 50px;
}
.p-home--kv .slider {
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100vw;
  height: 90vh;
}
@media screen and (min-width: 1080px) {
  .p-home--kv .slider {
    height: auto;
  }
}
.p-home--kv .slick-img img {
  width: 100%;
}
.p-home--kv .slick-img img:hover {
  opacity: 1;
}
@keyframes zoomUp {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(1.05) translateX(-3%);
  }
}
.p-home--kv .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
.p-home--kv:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: 100%;
  height: 50%;
  background: url(../img/common/grade.png) repeat-x 0 0/cover;
}
.p-home--kv .-title {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  max-width: 1153px;
  margin: 0 auto;
}
.p-home--kv .-txt-content {
  position: absolute;
  background: rgba(51, 51, 51, 0.4);
  width: 400px;
  bottom: 0;
  right: 0;
  z-index: 4;
  /* シャッター部分 */
  /* アニメーション開始後のシャッター開き状態 */
  /* アニメーション開始後のテキスト表示 */
}
.p-home--kv .-txt-content .caption-box {
  position: relative;
  padding: 1.5rem 2rem;
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
}
.p-home--kv .-txt-content .shutter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333333;
  z-index: 5;
  transform: translateX(0%);
  transition: transform 0.6s ease;
}
.p-home--kv .-txt-content .caption-box.animate .shutter {
  transform: translateX(-100%);
}
.p-home--kv .-txt-content .caption-box.animate .shutter {
  transform: translateX(-100%) !important;
}

/*
page
-----------------------------------------------------*/
body.error404 .l-header,
body.page-template-flow .l-header,
body.page-template-contact .l-header,
body.page-template-reservation .l-header,
body.page-template-subsidy .l-header,
body.page-template-company .l-header,
body.page-template-privacypolicy .l-header,
body.page-template-stove-maintenance .l-header,
body.page-template-garden .l-header,
body.page-template-repair .l-header,
body.page-template-firewood .l-header,
body.page-template-kitchen-lineup .l-header,
body.page-template-bath-lineup .l-header,
body.page-template-toilet-lineup .l-header,
body.page-template-washroom-lineup .l-header,
body.page-template-reform-brand .l-header,
body.page-template-staff .l-header,
body.post-type-archive-news .l-header,
body.tax-cat_news .l-header,
body.single-news .l-header,
body.post-type-archive-topics .l-header,
body.tax-cat_topics .l-header,
body.single-topics .l-header {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
body.error404 .l-header img.-before,
body.page-template-flow .l-header img.-before,
body.page-template-contact .l-header img.-before,
body.page-template-reservation .l-header img.-before,
body.page-template-subsidy .l-header img.-before,
body.page-template-company .l-header img.-before,
body.page-template-privacypolicy .l-header img.-before,
body.page-template-stove-maintenance .l-header img.-before,
body.page-template-garden .l-header img.-before,
body.page-template-repair .l-header img.-before,
body.page-template-firewood .l-header img.-before,
body.page-template-kitchen-lineup .l-header img.-before,
body.page-template-bath-lineup .l-header img.-before,
body.page-template-toilet-lineup .l-header img.-before,
body.page-template-washroom-lineup .l-header img.-before,
body.page-template-reform-brand .l-header img.-before,
body.page-template-staff .l-header img.-before,
body.post-type-archive-news .l-header img.-before,
body.tax-cat_news .l-header img.-before,
body.single-news .l-header img.-before,
body.post-type-archive-topics .l-header img.-before,
body.tax-cat_topics .l-header img.-before,
body.single-topics .l-header img.-before {
  display: none;
}
body.error404 .l-header img.-after,
body.page-template-flow .l-header img.-after,
body.page-template-contact .l-header img.-after,
body.page-template-reservation .l-header img.-after,
body.page-template-subsidy .l-header img.-after,
body.page-template-company .l-header img.-after,
body.page-template-privacypolicy .l-header img.-after,
body.page-template-stove-maintenance .l-header img.-after,
body.page-template-garden .l-header img.-after,
body.page-template-repair .l-header img.-after,
body.page-template-firewood .l-header img.-after,
body.page-template-kitchen-lineup .l-header img.-after,
body.page-template-bath-lineup .l-header img.-after,
body.page-template-toilet-lineup .l-header img.-after,
body.page-template-washroom-lineup .l-header img.-after,
body.page-template-reform-brand .l-header img.-after,
body.page-template-staff .l-header img.-after,
body.post-type-archive-news .l-header img.-after,
body.tax-cat_news .l-header img.-after,
body.single-news .l-header img.-after,
body.post-type-archive-topics .l-header img.-after,
body.tax-cat_topics .l-header img.-after,
body.single-topics .l-header img.-after {
  display: block;
}
body.error404 .l-header-pcnav a,
body.page-template-flow .l-header-pcnav a,
body.page-template-contact .l-header-pcnav a,
body.page-template-reservation .l-header-pcnav a,
body.page-template-subsidy .l-header-pcnav a,
body.page-template-company .l-header-pcnav a,
body.page-template-privacypolicy .l-header-pcnav a,
body.page-template-stove-maintenance .l-header-pcnav a,
body.page-template-garden .l-header-pcnav a,
body.page-template-repair .l-header-pcnav a,
body.page-template-firewood .l-header-pcnav a,
body.page-template-kitchen-lineup .l-header-pcnav a,
body.page-template-bath-lineup .l-header-pcnav a,
body.page-template-toilet-lineup .l-header-pcnav a,
body.page-template-washroom-lineup .l-header-pcnav a,
body.page-template-reform-brand .l-header-pcnav a,
body.page-template-staff .l-header-pcnav a,
body.post-type-archive-news .l-header-pcnav a,
body.tax-cat_news .l-header-pcnav a,
body.single-news .l-header-pcnav a,
body.post-type-archive-topics .l-header-pcnav a,
body.tax-cat_topics .l-header-pcnav a,
body.single-topics .l-header-pcnav a {
  color: #1b284e;
}

.p-page {
  padding-top: clamp(50px, 12.72vw + 2.3px, 100px);
}
.p-page h2 {
  font-size: clamp(18px, 1.53vw + 12.2px, 24px);
  font-weight: 600;
  margin-bottom: 2em;
}
.p-page h2.-center {
  text-align: center;
}
.p-page h2.-obi {
  color: #fff;
  background: #363636;
  font-size: clamp(18px, 1.53vw + 12.2px, 24px);
  padding: 0.5rem 1.5rem;
}
.p-page h3 {
  font-size: clamp(18px, 0.51vw + 16.1px, 20px);
  font-weight: 600;
  margin-bottom: 1em;
}
.p-page p {
  margin-bottom: 1.8em;
}
.p-page p.-red {
  color: #ea1043;
  font-weight: 600;
}
.p-page ul {
  margin-bottom: 1.8em;
}
.p-page ul li {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.75;
}
.p-page ul li:before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #333333;
}
.p-page .-flow {
  counter-reset: flownum 0;
}
.p-page .-flow div {
  position: relative;
  padding: 1.5em 4%;
  padding-left: calc(4% + 3em);
  background: #fff;
}
@media screen and (min-width: 1080px) {
  .p-page .-flow div {
    padding: 2em 3rem;
    padding-left: 8em;
  }
}
.p-page .-flow div:before, .p-page .-flow div:after {
  position: absolute;
  content: "";
}
.p-page .-flow div:before {
  top: 0.5em;
  left: 4%;
  font-size: clamp(40px, 4.07vw + 24.7px, 56px);
  color: #d6a948;
  counter-increment: flownum 1;
  content: counter(flownum) " ";
}
@media screen and (min-width: 1080px) {
  .p-page .-flow div:before {
    top: 2rem;
    left: 1.3em;
  }
}
.p-page .-flow div:not(:first-of-type) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-page .-flow div:not(:first-of-type) {
    margin-top: 100px;
  }
}
.p-page .-flow div:not(:first-of-type):after {
  top: -60px;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 60px;
  background: #d6a948;
}
@media screen and (min-width: 768px) {
  .p-page .-flow div:not(:first-of-type):after {
    top: -100px;
    height: 100px;
  }
}
.p-page .-flow div dt {
  font-size: clamp(20px, 0.51vw + 18.1px, 22px);
  font-weight: 600;
  margin-bottom: 0.5em;
}
.p-page .-flow div dd {
  line-height: 1.75;
}
@media screen and (min-width: 1080px) {
  .p-page .-staff ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.p-page .-staff ul li {
  position: static;
  padding-left: 0 !important;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1080px) {
  .p-page .-staff ul li {
    width: 47%;
  }
}
.p-page .-staff ul li:before {
  display: none;
}
.p-page .-staff ul li figure {
  margin-bottom: 1.5rem;
}
.p-page .-staff ul li figure img {
  display: block;
}
.p-page .-staff ul li .-position {
  font-size: clamp(10px, 0.51vw + 8.1px, 12px);
  margin-bottom: 1.75em;
}
.p-page .-staff ul li .-name {
  margin-bottom: 1.75em;
}
.p-page .-visual {
  margin-bottom: 3em;
}
.p-page .-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.p-page .-table tr th,
.p-page .-table tr td {
  width: 50%;
  padding: 1rem;
  font-size: clamp(16px, 0.25vw + 15.1px, 17px);
  border: 1px solid #ddd;
}
.p-page .-table tr th span,
.p-page .-table tr td span {
  font-size: clamp(12px, 0vw + 12px, 12px);
  display: block;
  margin-bottom: 0.5rem;
}
.p-page .-table tr td {
  text-align: center;
  line-height: 2;
}
.p-page .-table--scroll {
  overflow-x: scroll;
}
.p-page .-table--scroll table {
  white-space: nowrap;
}
.p-page .-table--scroll table th {
  font-weight: 600;
  background: #1b284e;
  color: #fff;
  vertical-align: middle;
}
.p-page .-table--scroll table tr td {
  text-align: left;
}
.p-page .-table--scroll table a {
  color: #0000ee;
}
.p-page .-price {
  color: #6b3d0f;
  font-weight: 600;
}

/*
page
-----------------------------------------------------*/
body.topics .l-header {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
body.topics .l-header img.-before {
  display: none;
}
body.topics .l-header img.-after {
  display: block;
}

.p-topics {
  padding-top: clamp(50px, 12.72vw + 2.3px, 100px);
}
.p-topics .-lists {
  padding: 2em 4%;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-topics .-lists {
    padding: 12%;
  }
}
.p-topics .-lists ul {
  line-height: 1.5;
}
.p-topics .-lists ul li {
  border-bottom: 1px solid #ededed !important;
  padding: 0;
}
.p-topics .-lists ul li:before {
  display: none !important;
}
.p-topics .-lists ul li a {
  display: block;
  padding: 1.5em 0;
}
@media screen and (min-width: 1080px) {
  .p-topics .-lists ul li a {
    display: flex;
    justify-content: space-between;
  }
}
.p-topics .-lists ul li figure {
  width: 29%;
}
.p-topics .-lists ul li figure img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-topics .-lists ul li div {
  width: 66%;
}
.p-topics .-lists ul li span {
  display: block;
}
.p-topics .-lists ul li span.-date, .p-topics .-lists ul li span.-cat {
  font-size: clamp(12px, 0.51vw + 10.1px, 14px);
}
.p-topics .-lists ul li span.-title {
  font-size: clamp(14px, 0.51vw + 12.1px, 16px);
}
.p-topics .-article {
  padding: 2em 4%;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-topics .-article {
    padding: 12%;
  }
}
.p-topics .-article .-date {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: clamp(12px, 0.51vw + 10.1px, 14px);
  color: #959595;
  margin-bottom: 1em;
}
.p-topics .-article .-cat {
  margin-left: 1em;
}
.p-topics .-article .-title {
  font-size: clamp(24px, 1.02vw + 20.2px, 28px);
  line-height: 1.5;
  font-weight: 600;
  padding-bottom: 2em;
  border-bottom: 1px solid #cecece;
  margin-bottom: 2em;
}
.p-topics .-article .-eyechatch {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .p-topics .-article .-eyechatch {
    width: 60%;
    margin: 0 auto 2em;
  }
}
.p-topics .-article .-body h2 {
  font-size: clamp(20px, 1.02vw + 16.2px, 24px);
  font-weight: 600;
  margin-bottom: 1em;
}
.p-topics .-article .-body p:not(:last-of-type) {
  margin-bottom: 2em;
}
.p-topics .-article .c-btn {
  margin-top: 5em;
}
@media screen and (min-width: 768px) {
  .p-topics .-article .c-btn {
    margin-top: 8em;
  }
}

/*
page
-----------------------------------------------------*/
body.news .l-header {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
body.news .l-header img.-before {
  display: none;
}
body.news .l-header img.-after {
  display: block;
}

.p-news {
  padding-top: clamp(50px, 12.72vw + 2.3px, 100px);
}
.p-news .-lists {
  padding: 2em 4%;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-news .-lists {
    padding: 12%;
  }
}
.p-news .-lists dl {
  line-height: 1.5;
}
.p-news .-lists dl div {
  border-bottom: 1px solid #ededed;
}
.p-news .-lists dl div a {
  display: block;
  padding: 1.5em 0;
}
@media screen and (min-width: 1080px) {
  .p-news .-lists dl div a {
    display: flex;
    justify-content: space-between;
  }
}
.p-news .-lists dl div dt {
  margin-bottom: 0.8em;
}
@media screen and (min-width: 1080px) {
  .p-news .-lists dl div dt {
    width: 12em;
    margin-bottom: 0;
  }
}
.p-news .-lists dl div dt .-date {
  display: inline-block;
  width: 6rem;
}
@media screen and (min-width: 1080px) {
  .p-news .-lists dl div dd {
    width: calc(100% - 12em);
  }
}
.p-news .-article {
  padding: 2em 4%;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-news .-article {
    padding: 12%;
  }
}
.p-news .-article .-date {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: clamp(12px, 0.51vw + 10.1px, 14px);
  color: #959595;
  margin-bottom: 1em;
}
.p-news .-article .-title {
  font-size: clamp(24px, 1.02vw + 20.2px, 28px);
  line-height: 1.5;
  font-weight: 600;
  padding-bottom: 2em;
  border-bottom: 1px solid #cecece;
  margin-bottom: 2em;
}
.p-news .-article .-body h2 {
  font-size: clamp(20px, 1.02vw + 16.2px, 24px);
  font-weight: 600;
  margin-bottom: 1em;
}
.p-news .-article .-body p:not(:last-of-type) {
  margin-bottom: 2em;
}
.p-news .-article .c-btn {
  margin-top: 5em;
}
@media screen and (min-width: 768px) {
  .p-news .-article .c-btn {
    margin-top: 8em;
  }
}

/*
post
-----------------------------------------------------*/
/*
contact
-----------------------------------------------------*/
/*
carousel
-----------------------------------------------------*/
.p-carousel .c-swiper-container {
  margin: 0 4%;
  margin: 0;
}
@media screen and (min-width: 520px) {
  .p-carousel .c-swiper-container {
    margin: 0 0 0 4%;
  }
}
@media screen and (min-width: 768px) {
  .p-carousel .c-swiper-container {
    margin: 0 0 0 4.8%;
  }
}
@media screen and (min-width: 960px) {
  .p-carousel .c-swiper-container {
    margin: 0 0 0 4.8%;
  }
}
@media screen and (min-width: 1630px) {
  .p-carousel .c-swiper-container {
    margin-left: calc((100% - 1500px) / 2 + 4%);
    padding: 0;
  }
}
.p-carousel .p-carousel__carousel .c-swipe-nav {
  width: 100%;
  display: flex;
  justify-content: center;
}
.p-carousel .p-carousel__carousel .c-swipe-nav .swipe-arr {
  height: 4vw;
  width: auto;
}
.p-carousel .p-carousel__carousel .c-swipe-nav .swipe-arr.-right {
  padding-left: 1rem;
}
.p-carousel .p-carousel__carousel .c-swipe-nav .swipe-arr.-left {
  padding-right: 1rem;
}
.p-carousel .p-carousel__carousel .c-swipe-nav .swipe-arr img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-carousel .p-carousel__carousel .c-swipe-nav .swipe-arr {
    height: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .p-carousel .p-carousel__carousel .c-swipe-nav {
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 0.5vw;
    width: 100%;
  }
  .p-carousel .p-carousel__carousel .c-swipe-nav .swipe-arr {
    cursor: pointer;
  }
  .p-carousel .p-carousel__carousel .c-swipe-nav .swipe-arr.-right {
    transform: translateX(50%);
  }
  .p-carousel .p-carousel__carousel .c-swipe-nav .swipe-arr.-left {
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 960px) {
  .p-carousel .p-carousel__carousel .c-swipe-nav .swipe-arr {
    height: 2vw;
    width: auto;
  }
}

.swiper-slide {
  height: auto;
}

.p-carousel-card {
  height: 100%;
}

.p-carousel-card {
  transition: all 0.3s;
  position: relative;
  background: #fff;
  border-radius: 0.8rem;
  display: flex;
  padding: clamp(30px, 2.54vw + 20.5px, 40px);
}
@media screen and (min-width: 768px) {
  .p-carousel-card {
    border-radius: 1.5rem;
  }
}
.p-carousel-card.-projects {
  height: 100%;
  width: 100%;
  gap: 1rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-carousel-card.-projects {
    gap: 0;
    flex-direction: column;
  }
}
.p-carousel-card.-projects.-unset {
  height: auto !important;
  flex-direction: unset;
}
@media screen and (min-width: 768px) {
  .p-carousel-card.-projects.-unset {
    flex-direction: column;
  }
}
.p-carousel-card__text {
  padding-top: clamp(10px, 0.51vw + 8.1px, 12px);
  padding-bottom: clamp(16px, 0vw + 16px, 16px);
}
@media screen and (min-width: 768px) {
  .p-carousel-card__text.-column {
    flex-grow: 1;
  }
}
.p-carousel-card__text.-projects {
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .p-carousel-card.-column {
    flex-direction: column;
  }
}
.p-carousel-card__cat {
  max-width: 100%; /* 省略せずに表示するサイズを指定 */
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
}
.p-carousel-card__title {
  padding-top: clamp(16px, 0vw + 16px, 16px);
  font-size: clamp(0.875rem, 0.51vw + 0.75625rem, 1rem);
  font-weight: 600;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
}
.p-carousel-card__title.--projects {
  padding-top: clamp(0px, 0vw + 0px, 0px);
}
.p-carousel-card__title.-column {
  padding-top: 4px;
}
@media screen and (min-width: 768px) {
  .p-carousel-card__title.-column {
    padding-top: clamp(16px, 0vw + 16px, 16px);
  }
}
.p-carousel-card__cop {
  font-size: clamp(0.8125rem, 0.25vw + 0.75625rem, 0.875rem);
  color: #707070;
  line-height: 1.6;
}
.p-carousel-card__title2 {
  padding-top: clamp(4px, 0vw + 4px, 4px);
  font-size: clamp(1rem, 0.51vw + 0.88125rem, 1.125rem);
  font-weight: 500;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
}
.p-carousel-card__tag {
  padding-right: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.p-carousel-card__date {
  font-size: 14px;
  line-height: 1;
  padding-top: clamp(24px, 4.07vw + 8.7px, 40px);
}
.p-carousel-card__cname {
  font-size: clamp(1rem, 0.51vw + 0.88125rem, 1.125rem);
  color: #707070;
  font-size: clamp(0.75rem, 0.51vw + 0.63125rem, 0.875rem);
}
.p-carousel-card .p-carousel-card__img {
  width: 100%;
  display: block;
  overflow: hidden;
  border: 1px solid #707070;
  aspect-ratio: 233/132;
}
.p-carousel-card .p-carousel-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
  aspect-ratio: 233/132;
}
.p-carousel-card .-arw-s {
  position: absolute;
  bottom: 2.2rem;
  right: 10.5%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000;
  transition: all 0.5s ease;
  z-index: 2;
}
.p-carousel-card .-arw-s .c-arrow-link--icon {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 6px;
  margin: auto 0;
  line-height: 1;
}
.p-carousel-card .-arw-s .c-arrow-link--icon:before,
.p-carousel-card .-arw-s .c-arrow-link--icon:after {
  content: "";
  width: 10px;
  height: 6px;
  background: url(../img/common/icon_arrow_right_wh.svg) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  animation-fill-mode: both;
  animation-duration: 0.6s;
}
.p-carousel-card .-arw-s .c-arrow-link--icon:after {
  transform: translateX(-100%);
}
@media (hover: hover) and (pointer: fine) {
  .p-carousel-card:hover {
    transform: scale(0.98);
  }
  .p-carousel-card:hover .-arw-s {
    background: #707070;
  }
}
.p-carousel-card.is-hover .c-arrow-link--icon:before {
  animation-name: transformLeftRight2;
  animation-delay: 0.3s;
}
.p-carousel-card.is-hover .c-arrow-link--icon:after {
  animation-name: transformRightLeft2;
}
@media (hover: hover) and (pointer: fine) {
  .p-carousel-card.is-hover:hover .c-arrow-link--icon:before {
    animation-name: transformRightLeft2;
    animation-delay: 0s;
  }
  .p-carousel-card.is-hover:hover .c-arrow-link--icon:after {
    animation-name: transformLeftRight2;
    animation-delay: 0.3s;
  }
}
@keyframes transformLeftRight2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.c-swipe {
  position: relative;
}
.c-swipe-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  gap: 0 10px;
}
.c-swipe-btn {
  width: 110px;
  padding-top: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-swipe-btn {
    padding-top: 5px;
  }
}
.c-swipe-link {
  width: calc(100% - 120px);
  max-width: 260px;
}
.c-swipe-link .-btn {
  width: 100% !important;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .c-swipe-link .-btn {
    height: 60px;
  }
}

.swipe-arr {
  display: block;
  position: relative !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
  width: 50px !important;
  height: 50px !important;
  margin: 0 !important;
  border-radius: 50%;
  cursor: pointer;
  background: #000;
  transition: all 0.5s ease;
}
.swipe-arr:after {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .swipe-arr:hover {
    background: #707070;
  }
}
.swipe-arr .c-arrow-link--icon {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 10px;
  margin: auto 0;
  line-height: 1;
}
.swipe-arr.-left .c-arrow-link--icon:before, .swipe-arr.-left .c-arrow-link--icon:after {
  content: "";
  width: 16px;
  height: 10px;
  background: url(../img/common/icon_arrow_left_wh.svg) no-repeat 50% 50%;
  position: absolute;
  animation-fill-mode: both;
  animation-duration: 0.6s;
}
.swipe-arr.-left .c-arrow-link--icon:after {
  transform: translateX(100%);
}
.swipe-arr.-left.is-hover .c-arrow-link--icon:before {
  animation-name: transformLeftRight3;
  animation-delay: 0.3s;
}
.swipe-arr.-left.is-hover .c-arrow-link--icon:after {
  animation-name: transformRightLeft3;
}
@media (hover: hover) and (pointer: fine) {
  .swipe-arr.-left.is-hover:hover .c-arrow-link--icon:before {
    animation-name: transformRightLeft3;
    animation-delay: 0s;
  }
  .swipe-arr.-left.is-hover:hover .c-arrow-link--icon:after {
    animation-name: transformLeftRight3;
    animation-delay: 0.3s;
  }
}
@keyframes transformLeftRight3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes transformRightLeft3 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.swipe-arr.-right .c-arrow-link--icon:before, .swipe-arr.-right .c-arrow-link--icon:after {
  content: "";
  width: 16px;
  height: 10px;
  background: url(../img/common/icon_arrow_right_wh.svg) no-repeat 50% 50%;
  position: absolute;
  animation-fill-mode: both;
  animation-duration: 0.6s;
}
.swipe-arr.-right .c-arrow-link--icon:after {
  transform: translateX(-100%);
}
.swipe-arr.-right.is-hover .c-arrow-link--icon:before {
  animation-name: transformLeftRight4;
  animation-delay: 0.3s;
}
.swipe-arr.-right.is-hover .c-arrow-link--icon:after {
  animation-name: transformRightLeft4;
}
@media (hover: hover) and (pointer: fine) {
  .swipe-arr.-right.is-hover:hover .c-arrow-link--icon:before {
    animation-name: transformRightLeft4;
    animation-delay: 0s;
  }
  .swipe-arr.-right.is-hover:hover .c-arrow-link--icon:after {
    animation-name: transformLeftRight4;
    animation-delay: 0.3s;
  }
}
@keyframes transformLeftRight4 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft4 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.swiper-slide {
  height: 100% !important;
}/*# sourceMappingURL=common.css.map */