@charset "UTF-8";
/* || GENERAL STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 10px !important;
}
html:focus-within {
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px !important;
  }
}

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

strong,
b {
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 0rem;
}

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

body {
  min-height: 100vh;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 400;
  color: #433A3C;
  text-rendering: optimizeSpeed;
  background-color: #FCFCFD;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  width: 100%;
  padding: 1rem;
  background: #fff;
  color: #666463;
  border: none;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: black;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: black;
}

input,
button,
textarea,
select {
  font: inherit;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  margin: 0;
  vertical-align: middle;
  accent-color: #000000;
}

/* || UTILITIES */
.container {
  width: 100%;
  max-width: calc(128rem - 0rem);
  margin-right: auto;
  margin-left: auto;
  --bs-gutter-container-x: 6rem;
  --bs-gutter-container-m-x: 6rem;
  padding-right: calc(0.5 * var(--bs-gutter-container-x));
  padding-left: calc(0.5 * var(--bs-gutter-container-x));
}
@media screen and (max-width: 991.98px) {
  .container {
    max-width: calc(128rem - 0rem);
    padding-right: calc(0.5 * var(--bs-gutter-container-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-x));
  }
}
@media screen and (max-width: 575.98px) {
  .container {
    max-width: 100%;
    padding-right: calc(0.5 * var(--bs-gutter-container-m-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-m-x));
  }
}

.container-smaller {
  width: 100%;
  max-width: calc(128rem - 0rem);
  margin-right: auto;
  margin-left: auto;
  --bs-gutter-container-x: 6rem;
  --bs-gutter-container-m-x: 6rem;
  padding-right: calc(0.5 * var(--bs-gutter-container-x));
  padding-left: calc(0.5 * var(--bs-gutter-container-x));
}
@media screen and (max-width: 991.98px) {
  .container-smaller {
    max-width: calc(128rem - 0rem);
    padding-right: calc(0.5 * var(--bs-gutter-container-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-x));
  }
}
@media screen and (max-width: 575.98px) {
  .container-smaller {
    max-width: 100%;
    padding-right: calc(0.5 * var(--bs-gutter-container-m-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-m-x));
  }
}

/*--------------------------------------------------------------
//Components*/
#loader-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

#loader-container .loader {
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  place-items: center;
  transform: translate(-50%, -50%);
  width: 100%;
}

#loader-container .loader__logo {
  display: flex;
  justify-content: center;
}

#loader-container .loader__logo > span {
  animation: bounce-loader 0.6s infinite alternate;
  margin: 0 0.5rem;
  border-radius: 50%;
  background: #FCC800;
  width: 1.2rem;
  height: 1.2rem;
}

#loader-container .loader__logo > span:nth-child(2) {
  animation-delay: 0.15s;
}

#loader-container .loader__logo > span:nth-child(3) {
  animation-delay: 0.3s;
}

#loader-container .loader__logo > span:last-child {
  animation-delay: 0.45s;
}

#loader-container .loader__progress {
  display: none;
  position: relative;
  width: 100%;
}

#loader-container .loader__progress #progress-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  text-align: center;
}
@keyframes fade {
  to {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes bounce-loader {
  to {
    transform: translateY(-1rem);
    opacity: 0.1;
  }
}
.section-404 {
  padding: 0 0 3rem;
}
.section-404 .svg {
  width: 100%;
}
.section-404 .svg__character {
  fill: #FCC800;
}
.section-404 .svg__line {
  fill: none;
  stroke: #FCC800;
  stroke-dasharray: 6;
  stroke-width: 1;
  stroke-linejoin: round;
}
.section-404 .svg__dot {
  fill: #FCC800;
}
.section-404 .svg__plane {
  transform: translate(-6px, -11px) rotate(25deg);
  fill: #FCC800;
  opacity: 0;
}
.section-404 .svg__mask {
  fill: none;
  stroke: white;
  stroke-width: 10;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
}
.section-404 .btn {
  width: 100%;
  max-width: 30rem;
  padding: 1rem 0;
  background: #FCC800;
  color: #fff;
  margin: 0 auto;
}
.section-404 .btn:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
@media (min-width: 960px) {
  .-series-right .w-header {
    margin-left: 0px;
  }
  .-series .c-headLogo {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .-series .l-header__logo {
    margin-right: 0;
  }
}
@media not all and (min-width: 960px) {
  .-img .c-headLogo__link {
    padding: 0;
  }
}
.home #header {
  top: 0;
}
@media (max-width: 960px) {
  .home #header {
    top: 0;
  }
}

@media (max-width: 960px) {
  .-series .l-header__logo {
    padding: 15px 0 !important;
  }
}

.l-header__menuBtn.sp_ {
  margin-right: 0;
}
.l-header__menuBtn.sp_ i {
  font-size: 26px;
  color: #DC6B8E;
  font-weight: 700;
}

.l-header {
  z-index: 1111;
}

#header {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: all 0.3s ease;
}
#header .l-header__inner.l-container {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 960px) {
  #header .l-header__inner.l-container {
    padding: 0 30px;
  }
}
#header .l-header__inner.l-container {
  position: relative;
  max-width: calc(100% - 240px);
}
@media (max-width: 1260px) {
  #header .l-header__inner.l-container {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 960px) {
  #header .l-header__inner.l-container {
    max-width: 100%;
  }
}
#header.l-header {
  background: #fff;
}
#header.custom-box-shadow {
  position: sticky;
}
@media (max-width: 960px) {
  #header.custom-box-shadow .l-header__inner.l-container:before {
    display: block;
  }
}

.c-gnav {
  gap: 45px;
}
@media (max-width: 1000px) {
  .c-gnav {
    gap: 35px;
  }
}
.c-gnav .menu-item {
  position: relative;
}
.c-gnav .menu-item a {
  padding: 0;
}
.c-gnav .menu-item a span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #222222 !important;
  font-family: "Noto Sans JP";
}
.c-gnav .menu-item a:after {
  display: none;
}
.c-gnav .menu-item .sub-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 14px;
  top: 87%;
  width: 100%;
  background-color: transparent;
  padding: 20px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  transform: translateX(-50%);
  transition: none;
}
.c-gnav .menu-item .sub-menu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0px 6px 9px -6px #707070;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  z-index: -1;
}
.c-gnav .menu-item .sub-menu li a {
  white-space: nowrap;
  font-size: 14px !important;
  line-height: 20px;
  font-weight: 400;
  line-height: 1;
  color: #222222 !important;
  font-family: "Noto Sans JP";
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.c-gnav .menu-item .sub-menu li a .ttl {
  font-size: 14px !important;
  line-height: 19px;
}
.c-gnav .menu-item .sub-menu li a:hover {
  background-color: transparent;
}
.c-gnav .menu-item .sub-menu li a:hover .ttl {
  left: 0;
}
.c-gnav .menu-item .sub-menu li a::before {
  display: none;
}
.c-gnav .menu-item.menu-item-has-children .sub-menu.show {
  opacity: 1;
  visibility: visible;
}
.c-gnav .menu-item.current_page_item a .ttl, .c-gnav .menu-item.current_page_parent a .ttl {
  color: #D30500 !important;
}

#sp_menu {
  z-index: 1112;
}
#sp_menu .p-spMenu__body .c-widget__title.-spmenu {
  background: transparent;
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu .menu-item a {
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  color: #222222 !important;
  font-family: "Noto Sans JP";
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu .menu-item.current-menu-item a {
  color: #D30500 !important;
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu ul.sub-menu {
  display: block;
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu ul.sub-menu.show {
  display: none;
}

@media (min-width: 960px) {
  .-series .l-header__logo {
    padding: 19px 0 19px !important;
  }
}
#header.z-index-1 {
  z-index: 1;
}

.p-fixBtnWrap {
  bottom: 6.25em;
}
@media (max-width: 960px) {
  .p-fixBtnWrap {
    bottom: 6.25em;
  }
}
@media (max-width: 780px) {
  .p-fixBtnWrap {
    bottom: 8.25em;
  }
}
.p-fixBtnWrap.z-index-0 {
  z-index: 0;
}
.p-fixBtnWrap .c-fixBtn {
  background-color: #faedf1;
  color: #CC0000;
  border-color: #CC0000;
}
.p-fixBtnWrap .c-fixBtn:hover {
  background-color: #CC0000 !important;
  color: #faedf1 !important;
  border-color: #faedf1 !important;
}

.w-beforeFooter {
  margin: 0;
}

#before_footer_widget .box-infor {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  gap: 14px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  position: fixed;
  bottom: 11em;
  right: 2.5em;
  z-index: 9;
}
@media (max-width: 960px) {
  #before_footer_widget .box-infor {
    background-color: #CC0000;
    border-radius: 50px;
    padding: 10px 60px;
    min-width: 350px;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    color: #FFFFFF;
    gap: 5px;
  }
}
@media (max-width: 450px) {
  #before_footer_widget .box-infor {
    min-width: calc(100% - 30px);
    padding: 10px 20px;
  }
}
#before_footer_widget .box-infor.z-index-1 {
  z-index: 0;
}
#before_footer_widget .box-infor p.title-infor {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP";
  font-weight: 700;
  color: #cc0000;
  text-align: center;
}
@media (max-width: 960px) {
  #before_footer_widget .box-infor p.title-infor {
    color: #FFFFFF;
    white-space: nowrap;
    font-size: 14px;
  }
}
#before_footer_widget .box-infor .box-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
#before_footer_widget .box-infor .box-phone:hover {
  opacity: 0.7;
}
@media (max-width: 960px) {
  #before_footer_widget .box-infor .box-phone {
    gap: 11px;
  }
}
#before_footer_widget .box-infor .box-phone img {
  width: 21px;
  height: 21px;
}
@media (max-width: 960px) {
  #before_footer_widget .box-infor .box-phone img {
    width: 29px;
    height: 29px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(304deg) brightness(95%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(304deg) brightness(95%) contrast(100%);
  }
}
#before_footer_widget .box-infor .box-phone p {
  font-size: 21px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  color: #cc0000;
}
@media (max-width: 960px) {
  #before_footer_widget .box-infor .box-phone p {
    color: #FFFFFF;
    font-size: 20px;
  }
}
#before_footer_widget .box-infor span {
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #cc0000;
  text-align: center;
  line-height: 20px;
}

footer.l-footer {
  z-index: 1;
}
footer.z-index-0 {
  z-index: 0;
}
footer .l-footer__widgetArea {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  footer .l-footer__widgetArea {
    padding: 0 30px !important;
  }
}
footer .l-container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 76px 0 0;
  gap: 30px;
}
@media (max-width: 780px) {
  footer .l-container {
    flex-direction: column;
    padding: 50px 0 0;
    align-items: center;
  }
}
footer .w-footer__box {
  padding: 0;
}
footer .w-footer__box:nth-child(1) {
  display: flex;
  align-items: start;
  flex-direction: column;
}
@media (max-width: 780px) {
  footer .w-footer__box:nth-child(1) {
    align-items: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}
footer .w-footer__box:nth-child(1) #media_image-2 img {
  width: 250px;
  transition: all 0.3s ease;
}
footer .w-footer__box:nth-child(1) #media_image-2 a:hover img {
  opacity: 0.8;
}
footer .w-footer__box:nth-child(1) #custom_html-3 {
  margin-top: 52px;
}
@media (max-width: 780px) {
  footer .w-footer__box:nth-child(1) #custom_html-3 {
    margin-top: 30px;
    width: 100%;
  }
}
footer .w-footer__box:nth-child(1) #custom_html-3 p {
  font-size: 14px;
  line-height: 1;
  font-family: "Noto Sans JP";
  font-weight: 700;
  color: #F5F5F5;
}
footer .w-footer__box:nth-child(1) #custom_html-3 ul {
  margin: 0 0 17px 0;
  padding: 0;
}
@media (max-width: 780px) {
  footer .w-footer__box:nth-child(1) #custom_html-3 ul {
    margin: 0;
  }
}
footer .w-footer__box:nth-child(1) #custom_html-3 ul li {
  padding: 0;
  font-size: 12px;
  line-height: 20px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #C2C2C2;
}
footer .w-footer__box:nth-child(2) {
  max-width: 340px;
}
@media (max-width: 780px) {
  footer .w-footer__box:nth-child(2) {
    max-width: 100%;
    width: 100%;
  }
}
footer .w-footer__box:nth-child(2) p {
  font-size: 12px;
  line-height: 1;
  font-family: "Noto Sans JP";
  font-weight: 700;
  color: #F5F5F5;
}
footer .w-footer__box:nth-child(2) .box-img {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}
@media (max-width: 400px) {
  footer .w-footer__box:nth-child(2) .box-img {
    grid-template-columns: repeat(2, 1fr);
  }
}
footer .w-footer__box:nth-child(2) .box-img a {
  display: block;
  width: 100%;
}
footer .w-footer__box:nth-child(2) .box-img a img {
  width: 100%;
  transition: all 0.3s ease;
}
footer .w-footer__box:nth-child(2) .box-img a:hover img {
  opacity: 0.8;
}
footer .w-footer__box:nth-child(2) .box-img p {
  display: block;
  width: 100%;
}
footer .w-footer__box:nth-child(2) .box-img p img {
  width: 100%;
  transition: all 0.3s ease;
}
footer .l-footer__widgetArea {
  background: transparent !important;
}
footer .l-footer__foot,
footer .l-footer__widgetArea {
  padding: 0;
}
footer .l-footer__foot .l-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 300px 0 48px;
}
@media (max-width: 960px) {
  footer .l-footer__foot .l-container {
    padding: 150px 0 !important;
  }
}
footer .copyright {
  font-size: 11px !important;
  color: #C2C2C2;
  font-weight: 400;
  font-family: "Noto Sans JP";
}
footer .copyright span {
  display: none;
}

/*--------------------------------------------------------------


/*--------------------------------------------------------------
# Pages

--------------------------------------------------------------*/
body.overflow-hidden {
  overflow: hidden;
}

.hero {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.hero .cube {
  position: absolute;
  top: 10vh;
  left: 45vw;
  width: 15px;
  height: 15px;
  border: solid 1px #bd0000;
  border-radius: 10px;
  transform: scale(0) translate(0);
  animation: cube 15s ease-in-out forwards infinite;
  /*&:nth-child(6) {
    animation-delay: 7s;
    left: 50vw;
    top: 10vh;
  }
  &:nth-child(7) {
    animation-delay: 10s;
    left: 50vw;
    top: 50vh;
  }
  &:nth-child(8) {
    animation-delay: 9s;
    left: 30vw;
    top: 30vh;
  }*/
}
.hero .cube:nth-child(2n) {
  border-color: #e60000;
}
.hero .cube:nth-child(2) {
  animation-delay: 2s;
  left: 25vw;
  top: 70vh;
}
.hero .cube:nth-child(3) {
  animation-delay: 4s;
  left: 75vw;
  top: 50vh;
}
.hero .cube:nth-child(4) {
  animation-delay: 6s;
  left: 90vw;
  top: 10vh;
}
.hero .cube:nth-child(5) {
  animation-delay: 8s;
  left: 10vw;
  top: 85vh;
}

/*@keyframes cube {
from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);   
    opacity: 1;
}
to {
    transform: scale(15) rotate(960deg) translate(-50%, -50%); 
    opacity: 0;
}
}*/
@keyframes cube {
  from {
    transform: scale(0) translateY(0);
    opacity: 1;
    z-index: 1;
  }
  to {
    transform: scale(15) translateY(-50px);
    opacity: 0;
    z-index: 1;
  }
}
.wave {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: -1;
}

.breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 0;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 1260px) {
  .breadcrumb .container {
    padding: 0 30px;
  }
}
.breadcrumb a {
  font-size: 12px;
  font-weight: 400;
  color: #222222;
  font-family: "Noto Sans JP";
  transition: all 0.3s ease;
}
.breadcrumb a:hover {
  opacity: 0.8;
}
@media (max-width: 600px) {
  .breadcrumb {
    display: none;
  }
}

.drop-shadow-black {
  filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, 0.5215686275));
}

.box-sd-black {
  box-shadow: 0px 5px 3px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 5px 3px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 5px 3px 0px rgba(0, 0, 0, 0.75);
}

.p-ul-cus {
  text-indent: -15px;
  padding-left: 15px;
}

.modal-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
}
.modal-popup .wrap {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal-popup .modal__wrap {
  padding-top: 30px;
  width: 87%;
  height: 90vh;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 0;
  position: relative;
}
@media (max-width: 600px) {
  .modal-popup .modal__wrap {
    padding-top: 60px;
  }
}
.modal-popup .modal__wrap .modal__close {
  position: absolute;
  width: auto;
  height: auto;
  box-shadow: none;
  background: transparent;
  border: none;
  position: absolute;
  z-index: 1;
  top: 30px;
  right: -60px;
}
@media (max-width: 600px) {
  .modal-popup .modal__wrap .modal__close {
    top: 5px;
    right: -10px;
  }
}
.modal-popup .modal__wrap .modal__close img {
  width: 45px;
}
.modal-popup .modal__wrap .modal-body {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  max-height: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: auto;
  scrollbar-width: none;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  filter: drop-shadow(0px 4px 3px #000000);
}
.modal-popup .modal__wrap .modal-body::-webkit-scrollbar {
  display: none;
}
.modal-popup .modal__wrap .modal-body .content-popup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal-popup .modal__wrap .modal-body .content-popup .box-desc {
  margin-top: 22px;
}
.modal-popup .modal__wrap .modal-body .content-popup .box-desc .position {
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP";
  line-height: 14px;
  color: #444444;
  text-align: center;
}
.modal-popup .modal__wrap .modal-body .content-popup .box-desc .name {
  margin-top: 25px;
  font-size: 14px;
  font-weight: bold;
  font-family: "Noto Sans JP";
  line-height: 14px;
  color: #222222;
  text-align: center;
}
.modal-popup .modal__wrap .modal-body .content-popup .box-desc .description {
  margin-top: 25px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP";
  line-height: 20px;
  color: #222222;
  text-align: center;
}

.sub-form {
  max-width: 1000px;
  margin: 0 auto;
}
.sub-form .cf-field-container {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 0;
  row-gap: 20px;
  padding: 19px 0 !important;
  border: 0;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 0;
}
.sub-form .cf-field-container:first-child {
  border-top: 1px solid #D9D9D9;
}
.sub-form .cf-field-container label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: auto;
  min-width: 194px;
  row-gap: 10px;
  padding-top: 0 !important;
  padding-left: 0 !important;
  box-sizing: border-box;
  background-color: transparent;
  border-bottom: none;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container label {
    width: 100%;
    justify-content: flex-start;
  }
}
.sub-form .cf-field-container label .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #333333;
}
.sub-form .cf-field-container label .required-label {
  color: #fff;
  background: #DC6B8E;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  display: block;
  border-radius: 5px;
  padding: 5px 10px;
}
.sub-form .cf-field-container .cf-input-container, .sub-form .cf-field-container .input-container {
  width: calc(100% - 231px);
}
@media (max-width: 991px) {
  .sub-form .cf-field-container .cf-input-container, .sub-form .cf-field-container .input-container {
    border-left: 0;
    border-right: 0;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .sub-form .cf-field-container .cf-input-container, .sub-form .cf-field-container .input-container {
    width: 100%;
  }
}
.sub-form .cf-field-container .cf-input-container .name-inputs, .sub-form .cf-field-container .input-container .name-inputs {
  width: 100% !important;
}
.sub-form .cf-field-container .cf-input-container input, .sub-form .cf-field-container .cf-input-container textarea, .sub-form .cf-field-container .cf-input-container select, .sub-form .cf-field-container .input-container input, .sub-form .cf-field-container .input-container textarea, .sub-form .cf-field-container .input-container select {
  font-size: 14px !important;
  font-weight: 400;
  line-height: 28px !important;
  color: #333 !important;
  padding: 10px 14px !important;
  border: 1px solid #DC6B8E !important;
  border-radius: 5px !important;
  height: 48px;
  width: 100% !important;
  background-color: transparent !important;
  box-sizing: border-box;
  margin: 0 !important;
  font-family: "Zen Old Mincho";
}
.sub-form .cf-field-container .cf-input-container input::-moz-placeholder, .sub-form .cf-field-container .cf-input-container textarea::-moz-placeholder, .sub-form .cf-field-container .cf-input-container select::-moz-placeholder, .sub-form .cf-field-container .input-container input::-moz-placeholder, .sub-form .cf-field-container .input-container textarea::-moz-placeholder, .sub-form .cf-field-container .input-container select::-moz-placeholder {
  color: #9c9c9c !important;
}
.sub-form .cf-field-container .cf-input-container input::placeholder, .sub-form .cf-field-container .cf-input-container textarea::placeholder, .sub-form .cf-field-container .cf-input-container select::placeholder, .sub-form .cf-field-container .input-container input::placeholder, .sub-form .cf-field-container .input-container textarea::placeholder, .sub-form .cf-field-container .input-container select::placeholder {
  color: #9c9c9c !important;
}
.sub-form .cf-field-container .cf-input-container textarea, .sub-form .cf-field-container .input-container textarea {
  min-height: 150px;
}
.sub-form .cf-field-container .cf-input-container select, .sub-form .cf-field-container .input-container select {
  max-width: 293px;
}
.sub-form .cf-field-container .cf-input-container input[type=number]::-webkit-outer-spin-button,
.sub-form .cf-field-container .cf-input-container input[type=number]::-webkit-inner-spin-button, .sub-form .cf-field-container .input-container input[type=number]::-webkit-outer-spin-button,
.sub-form .cf-field-container .input-container input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input, .sub-form .cf-field-container .input-container:has(input[type=checkbox]) input {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox] + label, .sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox] + label {
  position: relative;
  padding-left: 25px;
  width: 100%;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox] + label::before, .sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox] + label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: none;
  background-color: #E9F3EE;
  position: absolute;
  top: 5px;
  left: -25px;
  border: 1px solid #DC6B8E;
  border-radius: 5px;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox] + label::after, .sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox] + label::after {
  content: "";
  width: 18px;
  height: 12px;
  border-left: 4px solid #DC6B8E !important;
  border-bottom: 4px solid #DC6B8E !important;
  transform: translate(-2px, 1px) scale(0.5) rotate(-45deg);
  position: absolute;
  top: 5px;
  left: -25px;
  opacity: 0;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::before, .sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::before {
  border: 1px solid #DC6B8E;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::after, .sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) label, .sub-form .cf-field-container .input-container:has(input[type=checkbox]) label {
  position: relative;
  display: flex;
  width: -moz-fit-content !important;
  width: fit-content !important;
  gap: 15px;
  flex-direction: column;
  font-size: 15px;
  font-weight: normal;
  line-height: 28px;
  color: #333333;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) label a, .sub-form .cf-field-container .input-container:has(input[type=checkbox]) label a {
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  color: #333333;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) label a:hover, .sub-form .cf-field-container .input-container:has(input[type=checkbox]) label a:hover {
  opacity: 0.7;
}
.sub-form .cf-field-container .cf-error-message {
  width: calc(100% - 231px);
  margin-top: 0;
  margin-left: auto;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container .cf-error-message {
    flex-basis: 100%;
  }
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=checkbox], .sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label {
  position: relative;
  padding-left: 25px;
  width: 100%;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #9C9C9C;
  background-color: #E7E7E7;
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 50%;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #004164;
  transform: scale(0.5);
  position: absolute;
  top: 4px;
  left: 0;
  opacity: 0;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio]:checked + label::before {
  box-shadow: 0 0 0 1px #004164, 0px 1px 2px rgba(0, 0, 0, 0.15) !important;
  border-radius: 50%;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio]:checked + label::after {
  opacity: 1;
  border-radius: 50%;
}
.sub-form .cf-field-container.file {
  row-gap: 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container.file {
    row-gap: 20px;
  }
}
.sub-form .cf-field-container.file .file-upload-area {
  box-sizing: border-box;
  width: calc(100% - 231px);
  padding: 6px 20px !important;
  justify-content: center;
  padding: 10px 14px !important;
  background-color: #DC6B8E;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container.file .file-upload-area {
    flex-basis: 100%;
  }
}
.sub-form .cf-field-container.file .file-upload-area .file-message {
  box-sizing: border-box;
}
.sub-form .cf-field-container.file .file-upload-area .file-message p {
  margin: 0;
  margin-top: 0;
  font-family: "Zen Old Mincho";
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: #fff;
}
.sub-form .cf-field-container.file .note {
  box-sizing: border-box;
  width: calc(100% - 231px);
  margin-top: 10px;
  margin-left: auto;
  font-family: "Zen Old Mincho";
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: #DC6B8E;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container.file .note {
    flex-basis: 100%;
    margin-top: 0;
  }
}
.sub-form .cf-field-container[data-field-index="5"] {
  justify-content: start;
  gap: 37px;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container[data-field-index="5"] {
    gap: 0;
    justify-content: space-between;
  }
}
.sub-form .cf-field-container[data-field-index="5"] .cf-input-container {
  position: relative;
  display: block;
}
.sub-form .cf-field-container[data-field-index="5"] .cf-input-container::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 275px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  transform: translateY(-75%) rotate(135deg);
}
@media screen and (max-width: 320px) {
  .sub-form .cf-field-container[data-field-index="5"] .cf-input-container::after {
    left: auto;
    right: 10px;
  }
}
.sub-form .cf-field-container[data-field-index="5"] .cf-input-container select {
  padding-right: 30px !important;
  max-width: 296px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.sub-form .cf-field-container[data-type=privacy_policy] {
  justify-content: center !important;
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container {
  width: 100% !important;
}
.sub-form .cf-field-container[data-type=privacy_policy] label {
  gap: 5px !important;
}
@media (max-width: 350px) {
  .sub-form .cf-field-container[data-type=privacy_policy] label {
    flex-direction: column !important;
  }
}
.sub-form .cf-button-submit, .sub-form .cf-button-confirm {
  display: block;
  margin: 0 auto;
  min-width: 293px;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  letter-spacing: 0.36px;
  color: #DC6B8E;
  box-sizing: border-box;
  padding: 10px 20px !important;
  height: auto !important;
  border-radius: 32px !important;
  background: #fff !important;
  border: 1px solid #DC6B8E !important;
  font-family: "Zen Old Mincho";
}
@media (max-width: 450px) {
  .sub-form .cf-button-submit, .sub-form .cf-button-confirm {
    min-width: 100%;
  }
}
.sub-form .cf-button-submit:hover, .sub-form .cf-button-confirm:hover {
  opacity: 0.7;
}
.sub-form .cf-button-submit {
  transform: translateX(-10px);
}
.sub-form .cf-privacy-policy {
  justify-content: center;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 12px;
  margin-bottom: 0;
}
.sub-form .cf-privacy-policy input[type=checkbox] {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-privacy-policy input[type=checkbox] + label {
  position: relative;
  padding-left: 25px;
  width: 100%;
}
.sub-form .cf-privacy-policy input[type=checkbox] + label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: none;
  background-color: #DC6B8E !important;
  position: absolute;
  top: 5px;
  left: -25px;
  border: 1px solid #DC6B8E;
  border-radius: 5px;
  background-color: #F2FCFF !important;
}
.sub-form .cf-privacy-policy input[type=checkbox] + label::after {
  content: "";
  width: 18px;
  height: 12px;
  border-left: 4px solid #DC6B8E !important;
  border-bottom: 4px solid #DC6B8E !important;
  transform: translate(-2px, 1px) scale(0.5) rotate(-45deg);
  position: absolute;
  top: 5px;
  left: -25px;
  opacity: 0;
}
.sub-form .cf-privacy-policy input[type=checkbox]:checked + label::before {
  border: 1px solid #DC6B8E;
}
.sub-form .cf-privacy-policy input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.sub-form .cf-privacy-policy label {
  max-width: 100%;
  position: relative;
  display: flex;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 0 auto;
  gap: 15px;
  flex-direction: column;
  font-size: 14px;
  font-weight: normal;
  line-height: 28px;
  font-weight: bold;
  color: #333333;
}
.sub-form .cf-privacy-policy label a {
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-weight: normal;
  line-height: 28px;
  color: #333333;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sub-form .cf-privacy-policy label a:hover {
  opacity: 0.7;
}
.sub-form .cf-privacy-policy .cf-error-message {
  flex-basis: 100%;
}

.cf-confirmation-screen {
  background: transparent;
  border: none;
}
.cf-confirmation-screen .cf-title-confirm-info {
  display: none;
}
.cf-confirmation-screen .cf-title-confirm-info h3::before {
  display: none !important;
}
.cf-confirmation-screen .cf-confirmation-item {
  font-weight: 400;
  font-size: 15px;
}
@media (max-width: 600px) {
  .cf-confirmation-screen .cf-confirmation-item {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.cf-confirmation-screen .cf-confirmation-item strong {
  width: 40%;
  font-size: 15px;
}
@media (max-width: 600px) {
  .cf-confirmation-screen .cf-confirmation-item strong {
    width: 100%;
    text-align: left;
  }
}
.cf-confirmation-screen .cf-button-center {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.cf-confirmation-screen .cf-button-center .cf-back-button {
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  min-width: 293px;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  letter-spacing: 0.36px;
  color: #DC6B8E;
  padding: 10px 20px !important;
  height: auto !important;
  border-radius: 32px !important;
  background: #fff !important;
  border: 1px solid #DC6B8E !important;
}
@media (max-width: 450px) {
  .cf-confirmation-screen .cf-button-center .cf-back-button {
    min-width: 100%;
  }
}
.cf-confirmation-screen .cf-button-center .cf-back-button:hover {
  opacity: 0.7;
}
.cf-confirmation-screen .cf-button-center .cf-button-submit {
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  min-width: 293px;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  letter-spacing: 0.36px;
  color: #DC6B8E;
  padding: 10px 20px !important;
  height: auto !important;
  border-radius: 32px !important;
  background: #fff !important;
  border: 1px solid #DC6B8E !important;
}
@media (max-width: 450px) {
  .cf-confirmation-screen .cf-button-center .cf-button-submit {
    min-width: 100%;
  }
}
.cf-confirmation-screen .cf-button-center .cf-button-submit:hover {
  opacity: 0.7;
}

#body_wrap:not(.page-id-26) .wp-block-table td,
#body_wrap:not(.page-id-26) .wp-block-table th {
    border: 1px solid var(--color_border) !important;
}
[data-table-scrollable]:not(.is-style-double) table, [data-theadfix]:not(.is-style-double) table {
  border-bottom: 1px solid var(--color_border) !important;
  border-right: 1px solid var(--color_border) !important;
}

/* || TEXT */
.font-noto-jp {
  font-family: "Noto Sans JP";
}

.white-nowrap {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .text-mb-left {
    text-align: left !important;
  }
}

.m-r-20 {
  margin-right: 20px !important;
}
.m-auto {
  margin: 0 auto !important;
}
.m-l-auto {
  margin-left: auto !important;
}
.m-r-auto {
  margin-right: auto !important;
}
@media (max-width: 600px) {
  .m-mb-auto {
    margin: 0 auto !important;
  }
}

.w-fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

/* || LINE LIMIT */
.line-limit--1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.line-limit--2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line-limit--3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.line-limit--4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* || BACKGROUND COLOR */
/* || ASPECT RATIO */
.aspect-ratio-unset img {
  aspect-ratio: unset;
}
.aspect-ratio--1-1 img {
  aspect-ratio: 1/1;
}
.aspect-ratio--2-1 img {
  aspect-ratio: 2/1;
}
.aspect-ratio--3-2 img {
  aspect-ratio: 3/2;
}
.aspect-ratio--3-4 img {
  aspect-ratio: 3/4;
}
.aspect-ratio--4-3 img {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 992px) {
  .aspect-ratio-lg-unset img {
    aspect-ratio: unset;
  }
}

/* || HOVER */
.hover--scale img {
  transition: all 0.3s ease-out;
}
.hover--scale:hover img {
  transform: scale(1.1);
}

/* || Z-INDEX */
.z-index--1 {
  z-index: 1;
}

@media only screen and (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }
}

.border-b-ccc {
  border-bottom: 1px solid #ccc;
}

.white-space-nowrap {
  white-space: nowrap;
}

.sp-only {
  display: none !important;
}
@media (max-width: 600px) {
  .sp-only {
    display: block !important;
  }
}

.pc-only {
  display: block !important;
}
@media (max-width: 600px) {
  .pc-only {
    display: none !important;
  }
}

.flex-sp-only {
  display: none !important;
}
@media (max-width: 600px) {
  .flex-sp-only {
    display: flex !important;
  }
}

.flex--pc-only {
  display: flex !important;
}
@media (max-width: 600px) {
  .flex--pc-only {
    display: none !important;
  }
}

.max-700 {
  display: none !important;
}
@media (max-width: 700px) {
  .max-700 {
    display: block !important;
  }
}

.min-780 {
  display: block !important;
}
@media (max-width: 780px) {
  .min-780 {
    display: none !important;
  }
}

.max-780 {
  display: none !important;
}
@media (max-width: 780px) {
  .max-780 {
    display: block !important;
  }
}

.min-760 {
  display: block !important;
}
@media (max-width: 760px) {
  .min-760 {
    display: none !important;
  }
}

.max-760 {
  display: none !important;
}
@media (max-width: 760px) {
  .max-760 {
    display: block !important;
  }
}

.max-960 {
  display: none !important;
}
@media (max-width: 960px) {
  .max-960 {
    display: block !important;
  }
}

.min-960 {
  display: block !important;
}
@media (max-width: 960px) {
  .min-960 {
    display: none !important;
  }
}

.max-575 {
  display: none !important;
}
@media (max-width: 575px) {
  .max-575 {
    display: block !important;
  }
}

.min-575 {
  display: block !important;
}
@media (max-width: 575px) {
  .min-575 {
    display: none !important;
  }
}

.max-600 {
  display: none !important;
}
@media (max-width: 600px) {
  .max-600 {
    display: block !important;
  }
}

.min-600 {
  display: block !important;
}
@media (max-width: 600px) {
  .min-600 {
    display: none !important;
  }
}

:root {
  --color_border--table: #9DCEB3;
  --swl-pad_post_content: 0;
  --swl-pad_container: 0;
}
@media (max-width: 1260px) {
  :root {
    --swl-pad_container: 30px !important;
    --swl-pad_post_content: 30px !important;
  }
}

.alignfull > .wp-block-cover__inner-container > *, .alignfull > .wp-block-group__inner-container > *, .swell-block-fullWide__inner > * {
  margin-bottom: 0;
}

.single .l-content {
  z-index: 2;
}

.l-mainContent__inner > .post_content {
  padding: 0;
}

.single .l-content {
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 800px;
}

.l-content {
  padding-top: 0;
}

.l-content, .post_content {
  margin: 0 auto !important;
}

.top #content {
  padding-top: 0;
}

.l-content {
  margin-top: 0px;
}

.c-tabBody__item > *, .cap_box_content > *, .faq_a > *, .swell-block-accordion__body > *, .swell-block-dl__dd > *, .swell-block-step__body > *, .swl-has-mb--s > *, .wp-block-column > *, .wp-block-cover__inner-container > *, .wp-block-group__inner-container > *, .wp-block-media-text__content > *, div[class*=is-style-] > * {
  margin-bottom: 0;
}

.home .l-content {
  margin-top: 0 !important;
}

.c-pageTitle,
.l-header__bar,
#breadcrumb {
  display: none;
}

.post_content > * {
  margin-bottom: 0;
}

.wp-block-spacer {
  margin-bottom: 0 !important;
}

.swell-block-fullWide + .swell-block-fullWide {
  margin-top: 0;
}

.z-1111 {
  z-index: 1111;
}

.transformX {
  transform: translateX(-28px);
}
@media (max-width: 960px) {
  .transformX {
    transform: translate(0);
  }
}

.transformX13 {
  transform: translateX(-13px);
}
@media (max-width: 960px) {
  .transformX13 {
    transform: translate(0);
  }
}

.section-banner-hero .splide img {
  width: 100%;
}

.section-slider-image .splide .splide__slide {
  border-radius: 5px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}
.section-slider-image .splide img {
  max-height: 234px;
  border-radius: 5px;
  width: 100%;
  display: block !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .section-slider-image .splide img {
    max-height: none;
  }
}
@media (min-width: 1600px) {
  .section-slider-image .splide img {
    max-height: none;
  }
}

.section-slider-products .splide .splide__slide {
  border-radius: 5px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}
.section-slider-products .splide img {
  max-height: 234px;
  border-radius: 5px;
  width: 100%;
  display: block !important;
  transition: all 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .section-slider-products .splide img {
    max-height: none;
  }
}
@media (min-width: 1600px) {
  .section-slider-products .splide img {
    max-height: none;
  }
}
.section-slider-products .splide a {
  display: block;
  width: 100%;
  overflow: hidden;
}
.section-slider-products .splide a:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

.section-tab .swell-block-tab .c-tabList {
  border-bottom: 1px solid rgba(204, 0, 0, 0.3);
  /*@media (max-width:600px) {
      flex-direction: column;
  }*/
}
@media (max-width: 600px) {
  .section-tab .swell-block-tab .c-tabList {
    border-bottom: none;
  }
}
.section-tab .swell-block-tab .c-tabList button {
  background-color: transparent !important;
  opacity: 1 !important;
  padding: 0 5px 18px;
}
@media (max-width: 600px) {
  .section-tab .swell-block-tab .c-tabList button {
    padding: 18px 5px;
  }
}
.section-tab .swell-block-tab .c-tabList button span.swl-fz {
  display: block;
}
@media (max-width: 600px) {
  .section-tab .swell-block-tab .c-tabList button span.swl-fz {
    height: 20px;
  }
}
.section-tab .swell-block-tab .c-tabList button span.swl-fz:has(.swl-inline-color) {
  margin-bottom: 18px;
}
.section-tab .swell-block-tab .c-tabList button br {
  display: none;
}
.section-tab .swell-block-tab .c-tabList button:hover {
  color: #222222 !important;
  opacity: 0.7 !important;
}
.section-tab .swell-block-tab .c-tabList button[aria-selected=true] {
  border-bottom: 3px solid rgb(204, 0, 0);
  color: #222222 !important;
}
.section-tab .swell-block-tab .c-tabList button[aria-selected=true]:hover {
  opacity: 1 !important;
}
.section-tab .swell-block-tab .c-tabBody {
  border: none;
  padding: 32px 0 0;
}
.section-tab .swell-block-tab .c-tabBody .p-postList {
  margin: 0;
  gap: 15px;
  row-gap: 30px;
}
.section-tab .swell-block-tab .c-tabBody .p-postList .p-postList__item {
  width: calc(25% - 12px);
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  .section-tab .swell-block-tab .c-tabBody .p-postList .p-postList__item {
    width: calc(50% - 12px);
  }
}
.section-tab .swell-block-tab .c-tabBody .p-postList .p-postList__item .p-postList__thumb, .section-tab .swell-block-tab .c-tabBody .p-postList .p-postList__item img {
  border-radius: 5px;
}
.section-tab .swell-block-tab .c-tabBody .p-postList .p-postList__item .p-postList__body {
  padding-top: 8px;
}
.section-tab .swell-block-tab .c-tabBody .p-postList .p-postList__item .p-postList__body .p-postList__title {
  font-size: 11px;
  line-height: 1;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #222222;
}
.section-tab .swell-block-tab .c-tabBody .p-postList .p-postList__item .p-postList__body .p-postList__meta {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1;
  font-family: "Noto Sans JP";
  font-weight: 400;
}
.section-tab .swell-block-tab .c-tabBody .p-postList .p-postList__item .p-postList__body .p-postList__meta .p-postList__times {
  padding: 0;
}
.section-tab .swell-block-tab .c-tabBody .is-style-more_btn {
  margin-top: 80px !important;
}
@media (max-width: 960px) {
  .section-tab .swell-block-tab .c-tabBody .is-style-more_btn {
    margin-top: 50px !important;
  }
}
.section-tab .swell-block-tab .c-tabBody .is-style-more_btn a {
  min-width: 250px !important;
  max-width: 250px !important;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  background-color: #CC0000;
  border: 1px solid #CC0000;
  transition: all 0.3s ease;
  border-radius: 50px;
}
.section-tab .swell-block-tab .c-tabBody .is-style-more_btn a:after {
  content: "";
  background: url(../../assets/img/cmn/ar-right.svg) center no-repeat;
  background-size: contain !important;
  right: 50px;
  width: 15px;
  height: 10px;
  transition: all 0.3s ease;
}
.section-tab .swell-block-tab .c-tabBody .is-style-more_btn a:hover {
  background-color: #fff;
  color: #CC0000;
}
.section-tab .swell-block-tab .c-tabBody .is-style-more_btn a:hover:after {
  transform: translateY(-50%);
  filter: brightness(0) saturate(100%) invert(12%) sepia(56%) saturate(7105%) hue-rotate(356deg) brightness(98%) contrast(113%);
}

.p-postListWrap .is-style-more_btn {
  margin-top: 80px !important;
}
@media (max-width: 960px) {
  .p-postListWrap .is-style-more_btn {
    margin-top: 50px !important;
  }
}
.p-postListWrap .is-style-more_btn a:after {
  content: "";
  background: url(../../assets/img/cmn/ar-right.svg) center no-repeat;
  background-size: contain !important;
  right: 30px;
  width: 15px;
  height: 10px;
  transition: all 0.3s ease;
}
.p-postListWrap .is-style-more_btn a:hover {
  background-color: #fff;
  color: #CC0000;
}
.p-postListWrap .is-style-more_btn a:hover:after {
  transform: translateY(-50%);
  filter: brightness(0) saturate(100%) invert(12%) sepia(56%) saturate(7105%) hue-rotate(356deg) brightness(98%) contrast(113%);
}

.section-slider-brands .splide .splide__slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-slider-brands .splide img {
  margin: 0 auto;
  transition: all 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-slider-brands .splide a {
  width: 100%;
}
.section-slider-brands .splide a:hover img {
  transform: scale(1.08);
  opacity: 0.8;
}

.section-banner-custom > .swell-block-fullWide__inner {
  min-height: 350px;
  width: 100%;
  padding: 0 30px 45px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .section-banner-custom > .swell-block-fullWide__inner {
    padding: 0 30px;
  }
}
@media (max-width: 780px) {
  .section-banner-custom > .swell-block-fullWide__inner {
    min-height: 250px;
  }
}

.section-hi .items {
  gap: 60px !important;
}
@media (max-width: 960px) {
  .section-hi .items {
    flex-direction: column-reverse !important;
    flex-wrap: wrap !important;
  }
}
.section-hi .items .item {
  padding: 0 0 0 0;
}
@media (max-width: 960px) {
  .section-hi .items .item {
    flex-basis: 100% !important;
  }
}
@media (max-width: 960px) {
  .section-hi .items .item-img {
    flex-basis: 100% !important;
    position: relative;
    padding-bottom: 50%;
    border-radius: 5px;
  }
}
.section-hi .items .item-img img {
  border-radius: 5px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .section-hi .items .item-img img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    left: 0;
    height: 100%;
  }
}

.section-business {
  padding: 80px 0 104px !important;
  max-width: 1200px !important;
  left: 0 !important;
  width: 100% !important;
  border-radius: 5px;
}
@media (max-width: 960px) {
  .section-business {
    padding: 60px 0 80px !important;
  }
}
@media (max-width: 450px) {
  .section-business {
    padding: 60px 0 !important;
  }
}
.section-business .items {
  max-width: 1000px;
  margin: 0 auto;
  gap: 0;
}
.section-business .items > .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 32px;
}
.section-business .items .item {
  width: calc(20% - 26px);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (max-width: 960px) {
  .section-business .items .item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .section-business .items .item {
    width: 50%;
  }
}
@media (max-width: 350px) {
  .section-business .items .item {
    width: 100%;
  }
}
.section-business .items .item .icon {
  width: 100px;
  height: 100px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .section-business .business-p {
    font-size: 12px !important;
  }
}

.section-company .table-information {
  max-width: 1000px;
  margin: 0 auto;
}
.section-company .table-information table tbody tr td, .section-company .table-information table tbody tr th {
  border: none;
  border-bottom: 1px solid rgba(204, 0, 0, 0.3);
  padding: 24px 0;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP";
  line-height: 17px;
  vertical-align: middle;
  color: #000000;
}
.section-company .table-information table tbody tr th {
  max-width: 203px !important;
  width: 203px !important;
}
.section-company .table-information table tbody tr:first-child td, .section-company .table-information table tbody tr:first-child th {
  border-top: 1px solid rgba(204, 0, 0, 0.3);
}
.section-company .table-information table tbody tr:nth-child(1) td, .section-company .table-information table tbody tr:nth-child(1) th, .section-company .table-information table tbody tr:nth-child(2) td, .section-company .table-information table tbody tr:nth-child(2) th {
  padding: 16px 0;
}
@media (max-width: 780px) {
  .section-company .table-information table tbody tr td, .section-company .table-information table tbody tr th {
    max-width: 100% !important;
    width: 100% !important;
    display: block;
    border: none !important;
  }
  .section-company .table-information table tbody tr th {
    padding: 24px 0 0 0 !important;
    font-weight: bold;
  }
  .section-company .table-information table tbody tr td {
    border-bottom: 1px solid rgba(204, 0, 0, 0.3) !important;
    padding: 12px 0 24px 0 !important;
  }
  .section-company .table-information table tbody tr:first-child th {
    border-top: 1px solid rgba(204, 0, 0, 0.3) !important;
  }
}

.section-staff .splide .button-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.section-staff .splide .button-modal img {
  margin: 0 auto;
}
.section-staff .splide .button-modal .box-desc {
  margin-top: 15px;
}
.section-staff .splide .button-modal .box-desc .position {
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP";
  line-height: 20px;
  color: #444444;
  text-align: center;
}
.section-staff .splide .button-modal .box-desc .name {
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
  font-family: "Noto Sans JP";
  line-height: 20px;
  color: #222222;
  text-align: center;
}

.p-postList {
  margin: 0;
  gap: 15px;
  row-gap: 30px;
}
.p-postList .p-postList__item {
  width: calc(25% - 12px) !important;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  .p-postList .p-postList__item {
    width: calc(50% - 12px) !important;
  }
}
.p-postList .p-postList__item.no-post {
  width: 100% !important;
}
.p-postList .p-postList__item .p-postList__thumb, .p-postList .p-postList__item img {
  border-radius: 5px;
}
.p-postList .p-postList__item .p-postList__body {
  padding-top: 8px;
}
.p-postList .p-postList__item .p-postList__body .p-postList__title {
  font-size: 11px;
  line-height: 1;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #222222;
}
.p-postList .p-postList__item .p-postList__body .p-postList__meta {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1;
  font-family: "Noto Sans JP";
  font-weight: 400;
}
.p-postList .p-postList__item .p-postList__body .p-postList__meta .p-postList__times {
  padding: 0;
}

.category .l-mainContent__inner {
  margin-bottom: 80px !important;
}
@media (max-width: 960px) {
  .category .l-mainContent__inner {
    margin-bottom: 50px !important;
  }
}
@media (max-width: 600px) {
  .category .c-tabList {
    border-bottom: none;
  }
}
.category .c-tabList button {
  background-color: transparent !important;
  opacity: 1 !important;
  padding: 0 5px 18px;
}
@media (max-width: 600px) {
  .category .c-tabList button {
    padding: 18px 5px;
  }
}
.category .c-tabList button span.swl-fz {
  display: block;
}
.category .c-tabList button span.swl-fz:has(.swl-inline-color) {
  margin-bottom: 18px;
}
.category .c-tabList button br {
  display: none;
}
.category .c-tabList button:hover {
  color: #222222 !important;
  opacity: 0.7 !important;
}
.category .c-tabList button[aria-selected=true] {
  border-bottom: 3px solid rgb(204, 0, 0);
  color: #222222 !important;
}
.category .c-tabList button[aria-selected=true]:hover {
  opacity: 1 !important;
}
@media (max-width: 600px) {
  .category .c-tabList {
    flex-direction: column;
  }
}
.category .c-tabBody {
  border: none;
  padding: 32px 0 0;
}
.category .c-tabBody .p-postList {
  margin: 0;
  gap: 15px;
  row-gap: 30px;
}
.category .c-tabBody .p-postList .p-postList__item {
  width: calc(25% - 12px);
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  .category .c-tabBody .p-postList .p-postList__item {
    width: calc(50% - 12px);
  }
}
.category .c-tabBody .p-postList .p-postList__item .p-postList__thumb, .category .c-tabBody .p-postList .p-postList__item img {
  border-radius: 5px;
}
.category .c-tabBody .p-postList .p-postList__item .p-postList__body {
  padding-top: 8px;
}
.category .c-tabBody .p-postList .p-postList__item .p-postList__body .p-postList__title {
  font-size: 11px;
  line-height: 1;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #222222;
}
.category .c-tabBody .p-postList .p-postList__item .p-postList__body .p-postList__meta {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1;
  font-family: "Noto Sans JP";
  font-weight: 400;
}
.category .c-tabBody .p-postList .p-postList__item .p-postList__body .p-postList__meta .p-postList__times {
  padding: 0;
}
.category .c-tabBody .is-style-more_btn {
  margin-top: 80px !important;
}
@media (max-width: 960px) {
  .category .c-tabBody .is-style-more_btn {
    margin-top: 50px !important;
  }
}
.category .c-tabBody .is-style-more_btn a {
  min-width: 250px !important;
  max-width: 250px !important;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  background-color: #CC0000;
  border: 1px solid #CC0000;
  transition: all 0.3s ease;
  border-radius: 50px;
}
.category .c-tabBody .is-style-more_btn a:after {
  content: "";
  background: url(../../assets/img/cmn/ar-right.svg) center no-repeat;
  background-size: contain !important;
  right: 70px;
  width: 15px;
  height: 10px;
  transition: all 0.3s ease;
}
.category .c-tabBody .is-style-more_btn a:hover {
  background-color: #fff;
  color: #CC0000;
}
.category .c-tabBody .is-style-more_btn a:hover:after {
  transform: translateY(-50%);
  filter: brightness(0) saturate(100%) invert(12%) sepia(56%) saturate(7105%) hue-rotate(356deg) brightness(98%) contrast(113%);
}

/*取り扱い商品一覧、工事修繕事業一覧*/
.archive-main_title {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .archive-main_title {
    font-size: 24px;
  }
}

.archive-titlewrap {
  display: flex;
  justify-content: center;
}

.archive-title {
  text-align: center;
  border-bottom: 3px solid rgb(204, 0, 0);
  color: #222222 !important;
  padding: 0 5px 18px;
}

.archive_title_en {
  margin-bottom: 18px;
}

.archive_list {
  margin-top: 32px;
}

[class*=page-numbers] {
  margin: 0 6px !important;
}/*# sourceMappingURL=style.css.map */