@charset "UTF-8";
/*
Theme Name: asperia
Author: Airily
Version: 1.0
*/
:root {
  --lh-table: 1.8;
  --ls-base: .1rem;
}

html {
  font-size: 62.5%;
}
@media (max-width: 1680px) {
  html {
    font-size: 54.6%;
  }
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 52%;
  }
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 45.5%;
  }
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 41.6%;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 33.3%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}

* {
  box-sizing: border-box;
  word-break: break-all;
}

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

div, pre, p, blockquote, h1, h2, h3, h4, h5, h6, form, fieldset, figure, figcaption, ul, ol, li {
  margin: 0;
  padding: 0;
}

body {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  color: #000;
  font-weight: normal;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", Osaka, "Hiragino Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

#header {
  width: 100%;
  height: 11rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border-top: solid 1px #BFBFBF;
  position: fixed;
  top: 0;
  transition: 1s;
  z-index: 10;
}
#header.hide {
  transform: translateY(calc(-11rem - 1px));
}
@media (max-width: 767px) {
  #header {
    height: 70px;
  }
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .header-inner {
    display: block;
  }
}

.header-l {
  width: 20%;
  display: flex;
  align-items: center;
  padding-left: 2.08333%;
}
@media (max-width: 767px) {
  .header-l {
    width: 100%;
    height: 100%;
    padding-left: 20px;
  }
}
.header-l .logo img {
  aspect-ratio: 339/50;
}
@media (max-width: 767px) {
  .header-l .logo img {
    width: auto;
    max-width: none;
    height: 35px;
  }
}

.header-r {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (min-width: 768px) {
  .header-r {
    padding-top: 5px;
    padding-right: 3.6458%;
    gap: 3rem 0;
    flex: 1;
  }
}
@media (max-width: 767px) {
  .header-r {
    width: 100px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

h1 {
  color: #7D7D7D;
  font-size: 1.067rem;
  font-weight: normal;
}
@media (max-width: 767px) {
  h1 {
    display: none;
  }
}

#nav-container {
  width: 100%;
}
@media (max-width: 767px) {
  #nav-container {
    position: fixed;
    height: 100vh;
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  #nav-container .bg {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    background: #000;
  }
  #nav-container:focus-within .bg {
    visibility: visible;
    opacity: 0.6;
  }
}
#nav-container * {
  visibility: visible;
}

@media (max-width: 767px) {
  .button {
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 11;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    height: 69px;
    width: 30px;
    cursor: pointer;
    pointer-events: auto;
    padding-bottom: 5px;
    margin-left: auto;
    margin-right: 20px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #7D7D7D;
    transition: 0.3s;
  }
  .icon-bar + .icon-bar {
    margin-top: 8px;
  }
  #nav-container:focus-within .button {
    pointer-events: none;
  }
  #nav-container:focus-within .icon-bar:nth-of-type(1) {
    transform: translate3d(0, 11px, 0) rotate(45deg);
  }
  #nav-container:focus-within .icon-bar:nth-of-type(2) {
    opacity: 0;
  }
  #nav-container:focus-within .icon-bar:nth-of-type(3) {
    transform: translate3d(0, -11px, 0) rotate(-45deg);
  }
}
@media (max-width: 767px) {
  #nav-container:focus-within #nav-content {
    transform: none;
  }
}
#nav-content {
  height: 100%;
  contain: paint;
}
@media (max-width: 767px) {
  #nav-content {
    margin-top: calc(70px - 1px);
    width: 65%;
    max-width: 350px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #fff;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateX(100%);
    transition: transform 0.3s;
    will-change: transform;
  }
}
#nav-content ul {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
@media (min-width: 768px) {
  #nav-content ul {
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  #nav-content ul {
    flex-direction: column;
    flex-wrap: unset;
  }
}
#nav-content ul li {
  line-height: 1;
}
@media (min-width: 768px) {
  #nav-content ul li {
    padding-bottom: 4px;
  }
}
#nav-content ul li a {
  display: block;
  text-decoration: none;
  color: #7D7D7D;
}
@media (min-width: 768px) {
  #nav-content ul li a {
    min-width: 6rem;
  }
  #nav-content ul li a.on .pick::before {
    content: "";
    width: 6rem;
    border-bottom: 1px solid #C30E23;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
  }
  #nav-content ul li a .pick {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1.5rem;
    position: relative;
  }
  #nav-content ul li a .pick:hover::before {
    content: "";
    width: 6rem;
    border-bottom: 1px solid #C30E23;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  #nav-content ul li a {
    padding: 20px 5px;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.1s;
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  #nav-content ul li.gnav-r {
    padding-right: 4rem;
  }
}
#nav-content ul li.gnav-clr a {
  color: #C30E23;
}
@media (min-width: 768px) {
  #nav-content ul li.gnav-clr a {
    min-width: auto;
  }
}
#nav-content ul li.gnav-ct {
  display: flex;
  align-items: center;
  gap: 0 2rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
  #nav-content ul li.gnav-ct {
    flex-direction: column;
  }
  #nav-content ul li.gnav-ct a {
    width: 100%;
  }
}

.slick-wrap {
  margin-bottom: 13rem;
  position: relative;
  aspect-ratio: 192/100;
}
@media (max-width: 767px) {
  .slick-wrap {
    margin-top: 70px;
    margin-bottom: 3rem;
  }
}

.slick-img {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
  aspect-ratio: 192/100;
}
.slick-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 44%;
  background-image: linear-gradient(0deg, #000000, transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  aspect-ratio: 192/44;
}
.slick-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .slick-img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.add-animation {
  animation: zoomUp 7s linear 0s normal both;
}

.slick-txt {
  position: absolute;
  bottom: 8rem;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.15rem;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  z-index: 1;
  margin-bottom: 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .slick-txt {
    display: block;
    padding: 20px;
    background: #404040;
    position: static;
  }
}
.slick-txt .slide-txt-1 {
  font-size: 5.334rem;
}
@media (max-width: 767px) {
  .slick-txt .slide-txt-1 {
    font-size: 2rem;
    word-break: break-word;
  }
}
.slick-txt .slide-txt-1 .txt-lg {
  font-size: 8.8rem;
}
@media (max-width: 767px) {
  .slick-txt .slide-txt-1 .txt-lg {
    font-size: 2.5rem;
  }
}
.slick-txt .slide-txt-2 {
  font-size: 4.267rem;
}
@media (max-width: 767px) {
  .slick-txt .slide-txt-2 {
    font-size: 1.2rem;
  }
}
.slick-txt .slide-txt-3 {
  display: inline-block;
  background: rgba(195, 14, 35, 0.7);
  border-radius: 50px;
  padding: 0.5rem 2rem;
  font-size: 2.667rem;
  text-shadow: none;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .slick-txt .slide-txt-3 {
    font-size: 1.3rem;
  }
}

.scrolldown {
  position: absolute;
  bottom: 14rem;
  left: 4rem;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.3rem;
  padding-bottom: 1rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .scrolldown {
    display: none;
  }
}

.scrolldown::before {
  content: "";
  width: 1px;
  height: 14rem;
  background-color: #fff;
  animation: arrow 2.5s ease 0s infinite normal;
  margin: auto;
  position: absolute;
  bottom: -14rem;
  left: 1rem;
}
@media (max-width: 767px) {
  .scrolldown::before {
    height: 30px;
    bottom: -30px;
    left: 8px;
  }
}

@keyframes arrow {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}
section {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  overflow: hidden;
}
section.full {
  max-width: none;
}
@media (max-width: 767px) {
  section.home-info {
    margin-bottom: 2rem;
  }
}
section.home-news {
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  section.home-news {
    margin-bottom: 3rem;
  }
}
section > p:last-child {
  margin-bottom: 0;
}

main {
  width: 100%;
}
main.sub-box {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  main.sub-box {
    margin-top: 3rem;
  }
}
main.sub-box section {
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 7rem;
}
@media (max-width: 767px) {
  main.sub-box section {
    margin-bottom: 3rem;
  }
}
main.sub-box section:nth-last-of-type(1) {
  margin-bottom: 20rem;
}
@media (max-width: 767px) {
  main.sub-box section:nth-last-of-type(1) {
    margin-bottom: 60px;
  }
}

.col-wrap {
  display: flex;
  flex-wrap: wrap;
}

p {
  letter-spacing: var(--ls-base);
  margin-bottom: 1.2em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
}

a {
  color: #000;
}
a[href^="tel:"] {
  text-decoration: none;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a.u-line:hover {
  text-decoration: none;
}
a img:hover {
  opacity: 0.6;
}

.txt-c {
  text-align: center;
}

.pc_on {
  display: block;
}
@media (max-width: 767px) {
  .pc_on {
    display: none;
  }
}

.sp_on {
  display: none;
}
@media (max-width: 767px) {
  .sp_on {
    display: block;
  }
}

.pc_br {
  display: block;
}
@media (max-width: 767px) {
  .pc_br {
    display: none;
  }
}

.sp_br {
  display: none;
}
@media (max-width: 767px) {
  .sp_br {
    display: block;
  }
}

.h2-home {
  width: 100%;
  padding-top: 3rem;
  letter-spacing: 0.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
  font-size: 3.7rem;
  font-weight: bold;
  margin-bottom: 3.5rem;
  text-align: center;
  color: #C30E23;
}
@media (max-width: 767px) {
  .h2-home {
    font-size: 2.3rem;
  }
}
.h2-home .ht-eng {
  width: 100%;
  display: block;
  color: #7D7D7D;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
@media (max-width: 767px) {
  .h2-home .ht-eng {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .h2-home {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.h3-home {
  padding-top: 3rem;
  text-align: center;
  color: #7D7D7D;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .h3-home {
    font-size: 2.3rem;
    margin-bottom: 4rem;
  }
}

.col2-home {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto 7.5rem;
}
@media (min-width: 768px) {
  .col2-home {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .col2-home {
    margin-bottom: 3rem;
  }
}

.col2-home-inner {
  display: flex;
}
@media (max-width: 767px) {
  .col2-home-inner {
    flex-wrap: wrap;
    gap: 4rem;
  }
}

@media (min-width: 768px) {
  .col2-home-r {
    width: 100vw;
    margin-right: calc(50% - 50vw);
  }
}
@media (max-width: 767px) {
  .col2-home-r {
    width: 100%;
  }
}

.col2-home-l {
  font-size: 2.1rem;
  line-height: 1.8;
  letter-spacing: 0.15rem;
}
@media (min-width: 768px) {
  .col2-home-l {
    min-width: 50%;
    max-width: 50%;
    padding-top: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .col2-home-l {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 1.6rem;
  }
}
.col2-home-l p {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .col2-home-l p {
    margin-bottom: 2rem;
  }
}
.col2-home-l p:nth-last-child(1) {
  margin-bottom: 0;
}

.list-dot-lg {
  list-style: none;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .list-dot-lg {
    margin-bottom: 2rem;
  }
}
.list-dot-lg li {
  padding-left: 1em;
  color: #C30E23;
  font-size: 2.667rem;
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  .list-dot-lg li {
    font-size: 1.8rem;
  }
}
.list-dot-lg li::after {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

.col3-home-card {
  display: block;
  width: 33.3333333333%;
  margin-bottom: 10rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .col3-home-card {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.col3-home-card picture img {
  width: 100%;
  transition: ease 0.35s;
}
.col3-home-card picture img:hover {
  opacity: 1;
}
.col3-home-card:hover .img-box {
  display: block;
}
.col3-home-card:hover .img-box::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: ring 0.8s;
}
.col3-home-card:hover img {
  transform: scale(1.1, 1.1);
}

.col3-home-card-bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 1.5rem 2rem 2rem;
  color: #fff;
}
@media (max-width: 767px) {
  .col3-home-card-bg {
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem 1.5rem;
  }
}
.col3-home-card-bg .col3-home-title {
  display: block;
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .col3-home-card-bg .col3-home-title {
    font-size: 1.6rem;
  }
}
.col3-home-card-bg .col3-home-target {
  display: block;
  margin-bottom: 1.2rem;
}
.col3-home-card-bg .col3-home-btn {
  display: block;
}
.col3-home-card-bg .btn-more {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 1;
  width: 100%;
  margin: 0 auto;
}
.col3-home-card-bg .btn-more .a-box {
  display: flex;
  align-items: center;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  min-width: 14rem;
  height: 3rem;
  padding: 0.5rem;
  justify-content: center;
  border: solid 1px #fff;
  color: #fff;
  font-size: 1.6rem;
}
.col3-home-card-bg .btn-more .a-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.2s;
  z-index: -1;
  background-color: #fff;
}
.col3-home-card-bg .btn-more .a-box:hover {
  color: #000;
}
.col3-home-card-bg .btn-more .a-box:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .col3-home-card-bg .btn-more .a-box {
    font-size: 1.4rem;
  }
}

.col3-home-card:hover .a-box {
  color: #000;
}
.col3-home-card:hover .a-box::after {
  width: 100%;
}

.btn-newslist {
  position: relative;
  overflow: hidden;
  line-height: 1;
  width: 19rem;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 767px) {
  .btn-newslist {
    width: 16rem;
  }
}
.btn-newslist a {
  display: flex;
  align-items: center;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  min-width: 19rem;
  height: 3rem;
  padding: 0.5rem 2rem;
  gap: 0 2rem;
  border: solid 1px #7D7D7D;
  color: #7D7D7D;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .btn-newslist a {
    min-width: auto;
  }
}
.btn-newslist a::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.8rem;
  background-image: url(img/arrow-r.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1;
  transition: 0.2s;
}
.btn-newslist a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.2s;
  z-index: -1;
  background-color: #C30E23;
}
.btn-newslist a:hover {
  border-color: #C30E23;
  color: #fff;
}
.btn-newslist a:hover::before {
  filter: brightness(300%);
}
.btn-newslist a:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .btn-newslist a {
    font-size: 1.4rem;
  }
}

.home-bg {
  background: url(img/home-nav-bg.webp) no-repeat left bottom;
}
@media (min-width: 768px) {
  .home-bg {
    background-size: cover;
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .home-bg {
    padding-bottom: 6rem;
    padding-right: 20px;
    padding-left: 20px;
  }
}

p.txt-about {
  text-align: center;
  font-size: 2.1rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  p.txt-about {
    font-size: 1.6rem;
    text-align: left;
  }
}

.col4-home-navi {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  list-style: none;
  gap: 4rem;
}
@media (min-width: 768px) {
  .col4-home-navi {
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 30rem;
  }
}
@media (max-width: 767px) {
  .col4-home-navi {
    flex-wrap: wrap;
  }
}
.col4-home-navi li {
  width: calc((100% - 12rem) / 4);
  text-align: center;
  aspect-ratio: 38/21;
}
@media (max-width: 767px) {
  .col4-home-navi li {
    width: 100%;
  }
}
.col4-home-navi li a {
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.col4-home-navi li a picture {
  background: #fff;
}
.col4-home-navi li a picture img {
  transition: ease 0.35s;
}
.col4-home-navi li a picture img:hover {
  opacity: 1;
}
.col4-home-navi li a figure {
  text-align: center;
  position: relative;
}
.col4-home-navi li a figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .col4-home-navi li a figcaption {
    font-size: 1.6rem;
  }
}
.col4-home-navi li a:hover figure .img-box::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: ring 0.8s;
}
.col4-home-navi li a:hover figure img {
  transform: scale(1.1, 1.1);
}
.col4-home-navi li a:hover figcaption {
  opacity: 0.6;
}

@keyframes ring {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
h3.h3-sub {
  width: 100%;
  padding-top: 3rem;
  letter-spacing: 0.15rem;
  font-size: 3.2rem;
  font-weight: normal;
  margin-bottom: 8rem;
  text-align: center;
  color: #C30E23;
}
h3.h3-sub.home-ver {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  h3.h3-sub {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  h3.h3-sub {
    font-size: 2.3rem;
  }
}
h3.h3-sub .ht-eng {
  width: 100%;
  display: block;
  color: #7D7D7D;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  padding-top: 1.3rem;
}
@media (max-width: 767px) {
  h3.h3-sub .ht-eng {
    font-size: 12px;
  }
}

h4.h4-sub {
  width: 100%;
  padding-left: 3rem;
  font-size: 2.4rem;
  letter-spacing: var(--ls-base);
  line-height: 1.2;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 767px) {
  h4.h4-sub {
    padding-left: 2rem;
    font-size: 1.8rem;
  }
}
h4.h4-sub::before {
  content: "";
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  background: url(img/h4-icon.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
@media (max-width: 767px) {
  h4.h4-sub::before {
    width: 1.6rem;
    top: 0;
  }
}

#h2-bg {
  width: 100%;
  height: 36rem;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  #h2-bg {
    margin-top: 70px;
    height: 120px;
    background-position: center top;
  }
}
#h2-bg .h2-inner {
  position: absolute;
  display: block;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  overflow: hidden;
  padding-right: 20px;
  padding-left: 20px;
  color: #7D7D7D;
}
@media (min-width: 768px) {
  #h2-bg .h2-inner {
    top: 54%;
    left: 50%;
    translate: -50%;
  }
}
@media (max-width: 767px) {
  #h2-bg .h2-inner {
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
}
#h2-bg h2 {
  font-size: 3.734rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  #h2-bg h2 {
    font-size: 2.5rem;
  }
}
#h2-bg .h2-eng {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  #h2-bg .h2-eng {
    font-size: 1.6rem;
  }
}

.path-bg {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 4rem;
}
@media (max-width: 767px) {
  .path-bg {
    display: none;
  }
}
.path-bg .path-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  overflow: hidden;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 1.6rem;
}

ol.topic-path {
  display: flex;
  list-style: none;
  color: #7D7D7D;
  line-height: 1;
  position: relative;
}
ol.topic-path li {
  display: inline;
  margin-left: 1.5rem;
}
ol.topic-path li:first-child {
  margin-left: 0;
  margin-right: 0;
}
ol.topic-path li a {
  padding-right: 2.5rem;
  background: url(img/topicpath-arrow.webp) no-repeat right center;
  text-decoration: none;
  color: #7D7D7D;
}
ol.topic-path li a:hover {
  text-decoration: underline;
}
ol.topic-path li:nth-last-of-type(1) a {
  background: none;
  padding-right: 0;
}
@media (max-width: 767px) {
  ol.topic-path {
    display: none;
  }
}

.page-path {
  margin-left: 3.5rem;
  display: flex;
  align-items: center;
  flex: 1;
  line-height: 1;
}
.page-path a {
  padding-right: 4rem;
  padding-left: 2rem;
  background: url(img/topicpath-arrow.webp) no-repeat;
  background-position: left center;
  text-decoration: none;
  color: #7D7D7D;
}
.page-path a:last-child {
  padding-right: 0;
}
.page-path a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-path {
    display: none;
  }
}

.tab-content {
  width: 100%;
  padding-top: 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 4rem;
  position: relative;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .tab-content {
    padding-top: 0;
  }
}
.tab-content input[type=radio] {
  display: none;
}
.tab-content input[type=radio]:checked + label {
  color: #C30E23;
  z-index: 1;
}
.tab-content input[type=radio]:checked + label::after {
  content: "";
  display: block;
  border-bottom: 3px solid #C30E23;
  width: 18rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .tab-content input[type=radio]:checked + label::after {
    width: 50px;
  }
}
.tab-content label {
  width: 18rem;
  text-align: center;
  color: #7D7D7D;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .tab-content label {
    display: none;
  }
}
.tab-content label::after {
  content: "";
  display: block;
  border-bottom: 3px solid #D9D9D9;
  width: 18rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .tab-content label::after {
    width: 50px;
  }
}
.tab-content label:hover {
  color: #C30E23;
}
.tab-content label:hover::after {
  content: "";
  display: block;
  border-bottom: 3px solid #C30E23;
  width: 18rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .tab-content label:hover::after {
    width: 50px;
  }
}
.tab-content label .tab-txt {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem 3rem;
  line-height: 1;
  position: relative;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .tab-content label .tab-txt {
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.tab-content .tab-box {
  width: 100%;
  height: 27rem;
  background: #F8F8F8;
  padding: 2rem;
  margin-top: 2rem;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .tab-content .tab-box {
    margin-top: 0;
    padding-top: 20px;
  }
}
.tab-content .tab-box > div {
  display: none;
}

#tab1:checked ~ .tab-box > #tabView1 {
  display: block;
}

#tab2:checked ~ .tab-box > #tabView2 {
  display: block;
}

#tab3:checked ~ .tab-box > #tabView3 {
  display: block;
}

#tab4:checked ~ .tab-box > #tabView4 {
  display: block;
}

#tab5:checked ~ .tab-box > #tabView5 {
  display: block;
}

span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17rem;
  height: 3rem;
  padding-bottom: 0.3rem;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  line-height: 1;
}
@media (max-width: 767px) {
  span.icon {
    width: 15rem;
    height: 2.5rem;
    font-size: 1.4rem;
  }
}
span.icon.product {
  background-color: #0070C0;
}
span.icon.company {
  background-color: #404040;
}
span.icon.technique {
  background-color: #ED7D31;
}
span.icon.case {
  background-color: #C30E23;
}

.topics-box {
  width: 100%;
  height: 270px;
  clear: both;
  margin: 0;
  border-top: solid 1px #BFBFBF;
  border-bottom: solid 1px #BFBFBF;
  padding-top: 15px;
  overflow: scroll;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

.topics-tbl {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 767px) {
  .topics-tbl {
    width: calc(100% - 17px);
  }
}
.topics-tbl td {
  padding-bottom: 1rem;
  vertical-align: top;
  text-align: left;
}
@media (min-width: 768px) {
  .topics-tbl td {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .topics-tbl td {
    display: block;
    width: 100%;
  }
}
.topics-tbl td.entry {
  width: 32rem;
}
@media (max-width: 767px) {
  .topics-tbl td.entry {
    width: 100%;
  }
}
.topics-tbl td.entry .entry-box {
  width: 100%;
  display: flex;
}
@media (min-width: 768px) {
  .topics-tbl td.entry .entry-box {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .topics-tbl td.entry .entry-box {
    gap: 0 25px;
  }
}
.topics-tbl td .entry-day {
  letter-spacing: 0.15rem;
}
@media (max-width: 767px) {
  .topics-tbl td .entry-day {
    padding-top: 0;
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .topics-tbl td.topics-contents {
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  .topics-tbl td.topics-contents {
    padding-bottom: 2rem;
  }
}
.topics-tbl td p {
  margin-bottom: 0;
}
.topics-tbl td a {
  text-decoration: none;
}
.topics-tbl td a:hover {
  text-decoration: underline;
}

#layout {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 145px;
}
@media (max-width: 767px) {
  #layout {
    width: 100%;
    flex-direction: column;
  }
}
#layout .main-box {
  width: calc(100% - 40px - 380px);
  margin-right: 40px;
}
@media (max-width: 767px) {
  #layout .main-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
#layout .side-box {
  width: 380px;
}
@media (max-width: 767px) {
  #layout .side-box {
    width: 100%;
    margin: 0 auto;
  }
}
#layout .side-box h4 {
  font-weight: 400;
}
#layout .side-box ul {
  list-style: none;
  margin-bottom: 50px;
  padding-left: 35px;
}
#layout .side-box ul li {
  margin-bottom: 10px;
  border: solid 1px #BFBFBF;
}
#layout .side-box ul li:first-child {
  display: flex;
  align-items: center;
}
#layout .side-box ul li a {
  display: block;
  width: 100%;
  padding: 15px;
  text-decoration: none;
}
#layout .side-box ul li a:hover {
  background: #7F7F7E;
  color: #fff;
}
#layout .side-box ul li.current-cat {
  background-color: #7F7F7E;
}
#layout .side-box ul li.current-cat a {
  color: #ffffff;
}

.article .article-box {
  width: 100%;
  margin-bottom: 25px;
  padding: 15px 10px;
  background: #F2F2F2;
}
.article .article-box .article-link {
  padding-top: 1.5rem;
}

.side-calen-wrap {
  width: 100%;
  padding-left: 35px;
}
.side-calen-wrap h2 {
  display: none;
}

.wp-calendar {
  width: 100%;
  border: solid 1px #BFBFBF;
}
.wp-calendar th {
  font-weight: normal;
}
.wp-calendar td {
  text-align: center;
}
.wp-calendar td.today {
  color: #E5000E;
  border-bottom: none;
}
.wp-calendar td a {
  display: block;
  color: #014DA1;
  font-weight: bold;
}
.wp-calendar td a:hover {
  background: #014DA1;
  color: #fff;
}

.wp-calendar-nav {
  position: relative;
}
.wp-calendar-nav .wp-calendar-nav-next {
  position: absolute;
  right: 0;
}
.wp-calendar-nav .wp-calendar-nav-next a {
  text-decoration: none;
}
.wp-calendar-nav .wp-calendar-nav-prev a {
  text-decoration: none;
}

.news-details {
  margin-bottom: 5em;
}

.news-entry-col2 {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.news-entry-col2.details {
  margin-top: 4rem;
}

.day-box {
  color: #7D7D7D;
}

.tbl-item {
  border-collapse: collapse;
  width: 100%;
  border-bottom: solid 1px #BFBFBF;
}
.tbl-item th, .tbl-item td {
  padding: 4rem 1rem;
  border-top: solid 1px #BFBFBF;
  vertical-align: top;
}
.tbl-item th p, .tbl-item td p {
  margin-bottom: 0;
  letter-spacing: var(--ls-base);
  line-height: var(--lh-table);
}

.tbl-biz p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - var(--lh-table)) * 0.5em);
}
.tbl-biz th {
  width: 27rem;
  text-align: left;
  font-size: 2.1rem;
}
@media (max-width: 767px) {
  .tbl-biz th {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
}
.tbl-biz td:nth-of-type(1) {
  width: 26rem;
}
@media (max-width: 767px) {
  .tbl-biz td:nth-of-type(1) {
    display: block;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 0;
  }
  .tbl-biz td:nth-of-type(1) img {
    width: 100%;
  }
}
.tbl-biz td:nth-of-type(2) {
  width: calc(100% - 53rem);
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .tbl-biz td:nth-of-type(2) {
    display: block;
    width: 100%;
    padding-left: 1rem;
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .tbl-biz td {
    border-top: none;
  }
}

@media (max-width: 767px) {
  .tbl-product td {
    display: block;
  }
}
.tbl-product td.td-img {
  width: 53rem;
}
@media (max-width: 767px) {
  .tbl-product td.td-img {
    width: 100%;
    text-align: center;
  }
}
.tbl-product td.td-txt {
  width: calc(100% - 53rem);
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .tbl-product td.td-txt {
    width: 100%;
    padding-top: 0;
    padding-left: 1rem;
    border-top: none;
  }
}

.product-title-wrapp {
  gap: 2rem;
  margin-bottom: 3rem;
}
.product-title-wrapp .btn-box {
  width: 36rem;
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.product-title-wrapp .btn-box a {
  display: flex;
  align-items: center;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  max-width: 36rem;
  height: 4rem;
  padding: 0.2rem 2rem 0.5rem 2.5rem;
  justify-content: center;
  border: solid 1px #C30E23;
  color: #C30E23;
}
.product-title-wrapp .btn-box a::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  display: block;
  width: 0.6rem;
  height: 2rem;
  filter: brightness(0) saturate(100%) invert(28%) sepia(63%) saturate(3936%) hue-rotate(337deg) brightness(72%) contrast(119%);
  background-image: url(img/arrow-r.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1;
  transition: 0.2s;
}
.product-title-wrapp .btn-box a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.2s;
  z-index: -1;
  background-color: #C30E23;
}
.product-title-wrapp .btn-box a:hover {
  border-color: #C30E23;
  color: #fff;
}
.product-title-wrapp .btn-box a:hover::before {
  filter: brightness(300%);
}
.product-title-wrapp .btn-box a:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .product-title-wrapp .btn-box a {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .product-title-wrapp .btn-box {
    width: 100%;
  }
}
.product-title-wrapp .title-box {
  letter-spacing: var(--ls-base);
  margin-top: -0.7rem;
}
@media (min-width: 768px) {
  .product-title-wrapp .title-box {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .product-title-wrapp .title-box {
    width: 100%;
  }
}

.title-product {
  display: inline-block;
  font-size: 3.7rem;
  font-weight: bold;
  margin-top: 0.2rem;
}
@media (max-width: 767px) {
  .title-product {
    font-size: 2.5rem;
  }
}

.subtitle-product {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .subtitle-product {
    font-size: 1.6rem;
  }
}

.col2-product {
  gap: 3rem 4rem;
  margin-bottom: 4rem;
}
.col2-product .col-img {
  width: 52rem;
}
@media (max-width: 767px) {
  .col2-product .col-img {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .col2-product .col-txt {
    flex: 1;
    margin-top: -0.7rem;
  }
}
@media (max-width: 767px) {
  .col2-product .col-txt {
    width: 100%;
  }
}
.col2-product .col-txt p {
  line-height: var(--lh-table);
  margin-bottom: 1.8em;
}
.col2-product .col-txt p:nth-last-child(1) {
  margin-bottom: 0;
}

.col2-safeflow {
  gap: 3rem;
}
.col2-safeflow .safeflow-img {
  width: 24rem;
}
@media (max-width: 767px) {
  .col2-safeflow .safeflow-img {
    width: 100%;
    text-align: center;
  }
  .col2-safeflow .safeflow-img img {
    width: 80%;
    max-width: 200px;
  }
}
.col2-safeflow .safeflow-txt {
  line-height: var(--lh-table);
}
@media (min-width: 768px) {
  .col2-safeflow .safeflow-txt {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .col2-safeflow .safeflow-txt {
    width: 100%;
  }
}

.col2-safeflow-02 {
  gap: 3rem;
  margin-bottom: 5rem;
}
.col2-safeflow-02 .safeflow-02-img {
  width: 66rem;
}
@media (min-width: 768px) {
  .col2-safeflow-02 .safeflow-02-img {
    padding-right: 14rem;
  }
}
@media (max-width: 767px) {
  .col2-safeflow-02 .safeflow-02-img {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .col2-safeflow-02 .safeflow-02-txt {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .col2-safeflow-02 .safeflow-02-txt {
    width: 100%;
  }
}

.col2-safeflow-03 {
  gap: 5rem 4rem;
  margin-bottom: 5rem;
}
.col2-safeflow-03 .col {
  width: calc((100% - 4rem) / 2);
}
@media (max-width: 767px) {
  .col2-safeflow-03 .col {
    width: 100%;
  }
}
.col2-safeflow-03 .col.col-full {
  width: 100%;
}
.col2-safeflow-03 .col figcaption {
  padding-top: 2rem;
  color: #ED7D31;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .col2-safeflow-03 .col figcaption {
    padding-top: 1rem;
    font-size: 1.6rem;
  }
}
.col2-safeflow-03 .col figcaption .txt-sm {
  display: inline-block;
  margin-left: 3rem;
  font-size: 1.9rem;
}
@media (max-width: 767px) {
  .col2-safeflow-03 .col figcaption .txt-sm {
    font-size: 14px;
  }
}
.col2-safeflow-03 .col p {
  letter-spacing: var(--ls-base);
  line-height: var(--lh-table);
  margin-bottom: 0;
}

.reassurance-box {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.reassurance-box p {
  padding-left: 7rem;
  letter-spacing: var(--ls-base);
  line-height: var(--lh-table);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .reassurance-box p {
    padding-left: 0;
  }
}

.reassurance-title-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .reassurance-title-box {
    gap: 1rem;
  }
}
.reassurance-title-box .numb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  border: 1px solid #7D7D7D;
}
@media (max-width: 767px) {
  .reassurance-title-box .numb {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}
.reassurance-title-box .reassurance-title {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .reassurance-title-box .reassurance-title {
    font-size: 1.8rem;
  }
}

.solution-box {
  margin-bottom: 4rem;
}
.solution-box p {
  line-height: var(--lh-table);
  margin-bottom: 0;
}
.solution-box ul {
  margin-top: -0.5rem;
}

.solution-box-02 {
  padding: 1.5rem 1rem;
  border-top: solid 1px #BFBFBF;
  border-bottom: solid 1px #BFBFBF;
}
.solution-box-02 p {
  letter-spacing: var(--ls-base);
  line-height: var(--lh-table);
  margin-bottom: 0;
}

.title-product-low {
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .title-product-low {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.title-product-low .sub-title {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .title-product-low .sub-title {
    font-size: 14px;
  }
}

.txt-saseflow-feat {
  margin-top: 3rem;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .txt-saseflow-feat {
    font-size: 1.6rem;
  }
}

.txt-saseflow-title {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .txt-saseflow-title {
    font-size: 1.8rem;
  }
}

.txt-product-contact {
  margin-bottom: 4rem;
}

.img-box-122 {
  width: 74.3903%;
  max-width: 1220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin: 8rem auto 0;
}
@media (max-width: 767px) {
  .img-box-122 {
    width: 100%;
    margin-top: 0;
  }
}

.list-dot {
  list-style: none;
  letter-spacing: var(--ls-base);
  line-height: var(--lh-table);
}
.list-dot li {
  padding-left: 1em;
  position: relative;
}
.list-dot li::after {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.list-check {
  list-style: none;
  font-size: 2.4rem;
  letter-spacing: var(--ls-base);
  line-height: var(--lh-table);
}
@media (max-width: 767px) {
  .list-check {
    font-size: 1.6rem;
  }
}
.list-check li {
  padding-left: 1em;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .list-check li {
    padding-left: 1.5em;
  }
}
.list-check li::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 2rem;
  background: url(img/icon-check.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 1.3rem;
  left: 0;
}
@media (max-width: 767px) {
  .list-check li::after {
    width: 1.6rem;
  }
}

.list-check-bk {
  list-style: none;
  font-size: 2.134rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: var(--ls-base);
  line-height: var(--lh-table);
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .list-check-bk {
    font-size: 14px;
  }
}
.list-check-bk li {
  padding-left: 1em;
  margin-bottom: 1rem;
  position: relative;
}
@media (max-width: 767px) {
  .list-check-bk li {
    padding-left: 1.5em;
  }
}
.list-check-bk li::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.9rem;
  background: url(img/icon-check-bk.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 1.3rem;
  left: 0;
}
@media (max-width: 767px) {
  .list-check-bk li::after {
    width: 1rem;
    top: 0.5rem;
  }
}
.list-check-bk.v2 {
  margin-bottom: 0;
}
.list-check-bk.v2 li {
  margin-bottom: 0.2rem;
}

.btn-product-contact-box {
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.btn-product-contact-box a {
  display: flex;
  align-items: center;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  max-width: 40rem;
  height: 5rem;
  padding: 0.2rem 2rem 0.5rem 2.5rem;
  margin: 0 auto;
  border: solid 1px #ED7D31;
  justify-content: center;
  color: #ED7D31;
}
.btn-product-contact-box a::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  display: block;
  width: 0.6rem;
  height: 2rem;
  filter: brightness(0) saturate(100%) invert(65%) sepia(56%) saturate(3401%) hue-rotate(340deg) brightness(97%) contrast(90%);
  background-image: url(img/arrow-r.webp);
  background-repeat: no-repeat;
  background-position: center top 0.7rem;
  background-size: contain;
  line-height: 1;
  transition: 0.2s;
}
.btn-product-contact-box a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.2s;
  z-index: -1;
  background-color: #ED7D31;
}
.btn-product-contact-box a:hover {
  border-color: #ED7D31;
  color: #fff;
}
.btn-product-contact-box a:hover::before {
  filter: brightness(300%);
}
.btn-product-contact-box a:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .btn-product-contact-box a {
    font-size: 1.4rem;
  }
}

.txt-red {
  color: #C30E23;
}

.txt-org {
  color: #ED7D31;
}

.txt-24 {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .txt-24 {
    font-size: 1.6rem;
  }
}

dl.privacy {
  margin: 0;
  padding: 0;
}
dl.privacy dt, dl.privacy dd {
  margin: 0;
  padding: 0;
}
dl.privacy dt {
  display: flex;
  counter-increment: title;
  font-weight: bold;
  letter-spacing: var(--ls-base);
  margin-bottom: 0.5rem;
}
dl.privacy dt::before {
  content: counter(title) "．";
  width: 4.2rem;
  letter-spacing: normal;
}
dl.privacy dd {
  letter-spacing: var(--ls-base);
  margin: 0 0 3rem 2.2em;
}

.greeting {
  font-size: 2.134rem;
  line-height: var(--lh-table);
}
@media (max-width: 767px) {
  .greeting {
    font-size: 14px;
  }
}

.ceo-name {
  text-align: right;
  font-size: 2.134rem;
}
@media (max-width: 767px) {
  .ceo-name {
    font-size: 14px;
  }
}

.col-company {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
}
.col-company .col {
  width: calc((100% - 4rem) / 2);
}
@media (max-width: 767px) {
  .col-company .col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .col-company.wrapp2 {
    gap: 0;
  }
}

.txt-company-base {
  font-size: 2.134rem;
  font-family: "Noto Serif JP", serif;
  line-height: var(--lh-table);
  margin-bottom: 0;
}
.txt-company-base::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - var(--lh-table)) * 0.5em);
}
@media (max-width: 767px) {
  .txt-company-base {
    font-size: 14px;
  }
}

.tbl-company {
  border-collapse: collapse;
  width: 100%;
  border-bottom: solid 1px #BFBFBF;
}
.tbl-company th, .tbl-company td {
  border-top: solid 1px #BFBFBF;
  padding: 1rem;
  vertical-align: top;
  text-align: left;
  font-weight: normal;
  letter-spacing: var(--ls-base);
  line-height: var(--lh-table);
}
@media (max-width: 767px) {
  .tbl-company th, .tbl-company td {
    display: block;
  }
}
.tbl-company th .fax, .tbl-company td .fax {
  display: inline-block;
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .tbl-company th .fax, .tbl-company td .fax {
    display: block;
    margin-left: 0;
  }
}
.tbl-company th p:last-child, .tbl-company td p:last-child {
  margin-bottom: 0;
}
.tbl-company th {
  width: 15rem;
}
@media (max-width: 767px) {
  .tbl-company th {
    width: 100%;
    font-weight: bold;
  }
}
.tbl-company td {
  width: calc(100% - 15rem);
}
@media (max-width: 767px) {
  .tbl-company td {
    width: 100%;
    border-top: none;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .tbl-company.comp-profile {
    border-bottom: none;
  }
}

.grid-box {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.1rem 2rem;
}
.grid-box.v1 {
  grid-template-columns: auto 1fr;
}
.grid-box.v2 {
  grid-template-columns: 1fr auto;
}
@media (min-width: 768px) {
  .grid-box.v2 {
    padding-right: 7rem;
  }
}

.tbl-company-group {
  border-collapse: collapse;
  width: 100%;
  border-bottom: solid 1px #BFBFBF;
}
.tbl-company-group th, .tbl-company-group td {
  border-top: solid 1px #BFBFBF;
  padding: 1.8rem 1rem;
}
@media (max-width: 767px) {
  .tbl-company-group th, .tbl-company-group td {
    display: block;
  }
}
.tbl-company-group th {
  width: 39rem;
  text-align: left;
}
@media (max-width: 767px) {
  .tbl-company-group th {
    width: 100%;
  }
}
.tbl-company-group td:nth-of-type(1) {
  width: 49rem;
}
@media (max-width: 767px) {
  .tbl-company-group td:nth-of-type(1) {
    width: 100%;
    border-top: none;
    padding-bottom: 1rem;
    padding-top: 0;
    font-weight: bold;
  }
}
.tbl-company-group td:nth-of-type(2) {
  width: calc(100% - 88rem);
}
@media (max-width: 767px) {
  .tbl-company-group td:nth-of-type(2) {
    width: 100%;
    border-top: none;
    padding-top: 0;
  }
}

.banner-01 {
  width: 84.0540540541%;
}

.banner-02 {
  width: 62.1621621622%;
}

.banner-03 {
  width: 38.6486486486%;
}

.banner-04 {
  width: 27.5675675676%;
}

.banner-05 {
  width: 62.4324324324%;
}

section.contact {
  max-width: 1260px;
}
section.contact p {
  line-height: var(--lh-table);
}
section.contact p:nth-last-child(1) {
  margin-bottom: 0;
}

.txt-contact {
  margin-bottom: 4rem;
}

.tbl-contact {
  border-collapse: collapse;
  width: 100%;
  border-top: solid 1px #BFBFBF;
  border-bottom: solid 1px #BFBFBF;
  font-size: 2.134rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .tbl-contact {
    font-size: 1.6rem;
  }
}
.tbl-contact th, .tbl-contact td {
  padding: 3rem 1rem;
}
@media (max-width: 767px) {
  .tbl-contact th, .tbl-contact td {
    display: block;
    padding: 1rem;
  }
}
.tbl-contact th {
  width: 27rem;
  text-align: left;
  font-weight: normal;
}
@media (min-width: 768px) {
  .tbl-contact th {
    padding-left: 3rem;
  }
}
@media (max-width: 767px) {
  .tbl-contact th {
    width: 100%;
  }
}
.tbl-contact td.td-1 {
  width: 70rem;
}
@media (max-width: 767px) {
  .tbl-contact td.td-1 {
    width: 100%;
    padding-top: 0;
  }
}
.tbl-contact td.td-2 {
  width: calc(100% - 97rem);
}
@media (max-width: 767px) {
  .tbl-contact td.td-2 {
    width: 100%;
    padding-top: 0;
  }
}

.form-wrap.ctct {
  width: 100%;
  border-top: solid 1px #BFBFBF;
}

.form-inner {
  border-bottom: solid 1px #BFBFBF;
  padding: 3rem 19rem 3rem 9rem;
}
@media (max-width: 767px) {
  .form-inner {
    padding: 3rem 0;
  }
}

div.wpcf7 form dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  width: 100%;
  padding: 0.7rem 1rem;
  line-height: 1;
}
div.wpcf7 form dl dt, div.wpcf7 form dl dd {
  margin: 0;
  padding: 0;
}
div.wpcf7 form dl.v-top {
  align-items: flex-start;
}
div.wpcf7 form dl.v-top dt {
  padding-top: 0.8rem;
}
div.wpcf7 form dl dt {
  width: 31rem;
}
@media (max-width: 767px) {
  div.wpcf7 form dl dt {
    width: 100%;
    font-weight: bold;
  }
}
div.wpcf7 form dl dd {
  width: calc(100% - 31rem);
  padding-left: 1rem;
}
@media (max-width: 767px) {
  div.wpcf7 form dl dd {
    width: 100%;
    padding-left: 0;
  }
}
div.wpcf7 form dl dd input {
  width: 100%;
  background: none;
  border: solid 1px #D9D9D9;
  padding: 0.7rem;
  font-size: 1.9rem;
  margin-top: 2px;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  div.wpcf7 form dl dd input {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}
div.wpcf7 form dl dd input[type=file] {
  border: none;
}
@media (max-width: 767px) {
  div.wpcf7 form dl dd input[type=file]::file-selector-button {
    padding: 5px 10px;
  }
}
div.wpcf7 form dl dd input.wsiz-m {
  width: 12rem;
}
div.wpcf7 form dl dd input.spc-mt {
  margin-top: 5px;
}
div.wpcf7 form dl dd textarea {
  width: 100%;
  background: none;
  border: solid 1px #D9D9D9;
  padding: 0.7rem;
  font-size: 1.9rem;
  margin-top: 2px;
  margin-bottom: 2px;
  height: 23rem;
}
div.wpcf7 form dl dd select {
  width: 100%;
  background: none;
  border: solid 1px #D9D9D9;
  padding: 0.7rem;
  font-size: 1.9rem;
  margin-top: 2px;
  margin-bottom: 2px;
}
div.wpcf7 form dl dd .wpcf7-list-item {
  margin: 0 3rem 0 0;
}
div.wpcf7 form dl dd .wpcf7-list-item input {
  width: auto;
}
div.wpcf7 form dl dd .list-row {
  min-height: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  div.wpcf7 form dl dd .list-row {
    min-height: auto;
    flex-direction: column;
    align-items: baseline;
    line-height: 1.5;
  }
}
div.wpcf7 form dl ::-moz-placeholder {
  color: #A6A6A6;
  font-size: 1.9rem;
}
div.wpcf7 form dl ::placeholder {
  color: #A6A6A6;
  font-size: 1.9rem;
}
@media (max-width: 767px) {
  div.wpcf7 form dl ::-moz-placeholder {
    font-size: 1.6rem;
  }
  div.wpcf7 form dl ::placeholder {
    font-size: 1.6rem;
  }
}
div.wpcf7 form dl p {
  margin-bottom: 0;
}

.tbl-available {
  border-collapse: collapse;
  width: auto;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .tbl-available {
    width: 100%;
  }
}
.tbl-available th, .tbl-available td {
  padding: 0.7rem 0;
}
.tbl-available th {
  padding-right: 2rem;
  text-align: left;
  font-weight: normal;
}
@media (max-width: 767px) {
  .tbl-available th {
    width: 100%;
    display: block;
    padding-right: 0;
  }
}
.tbl-available td {
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .tbl-available td {
    width: 50%;
    display: inline-block;
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .wpcf7 .ajax-loader {
    display: block;
    margin: 0 auto;
  }
  .wpcf7-spinner {
    display: block;
    margin: 0 auto;
  }
}
.wpcf7 .wpcf7-submit:disabled {
  border: solid 1px #a8a8a8;
  color: #a8a8a8 !important;
}

.txt_req::after {
  content: "(必須)";
  display: inline-block;
  margin-left: 5px;
  color: #ED7D31;
}

.txt-att {
  margin-bottom: 0;
  color: #ED7D31;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .txt-att {
    font-size: 1.4rem;
  }
}

.acc-wrap {
  padding-top: 4rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .acc-wrap {
    font-size: 1.4rem;
  }
}
.acc-wrap p {
  margin-bottom: 0;
}
.acc-wrap p.acc-txt {
  margin-bottom: 4rem;
}
.acc-wrap p.acc-check {
  font-size: 1.9rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .acc-wrap p.acc-check {
    font-size: 1.6rem;
  }
}

input[type=submit] {
  -webkit-appearance: none;
  display: block;
  width: auto;
  margin: auto;
  padding: 3px 10px;
  background: #EFEFEF;
  border: solid 1px #787878;
  color: #000 !important;
  border-radius: 2px;
}
@media (max-width: 767px) {
  input[type=submit] {
    padding: 7px 20px;
  }
}
input[type=submit]:hover {
  background: #E5E5E5;
}

#footer {
  width: 100%;
  background-color: #F8F8F8;
  overflow: hidden;
}
@media (max-width: 767px) {
  #footer {
    position: relative;
  }
}

.footer-wrapp {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer-wrapp {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.footer-inner {
  display: flex;
}
@media (max-width: 767px) {
  .footer-inner {
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .footer-r {
    width: 100vw;
    margin-right: calc(50% - 50vw);
  }
  .footer-r img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.footer-l {
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: #7D7D7D;
}
@media (min-width: 768px) {
  .footer-l {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .footer-l {
    width: 100%;
  }
}
.footer-l a {
  text-decoration: none;
  color: #7D7D7D;
}

.footer-logo-box {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem 6rem;
}
.footer-logo-box dt, .footer-logo-box dd {
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .footer-logo-box {
    flex-wrap: wrap;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 3rem;
  }
}
.footer-logo-box dt {
  max-width: 406px;
}
@media (min-width: 768px) {
  .footer-logo-box dt {
    width: 49.5125%;
  }
}
@media (max-width: 767px) {
  .footer-logo-box dt {
    width: 100%;
    text-align: center;
  }
  .footer-logo-box dt a {
    display: inline-block;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .footer-logo-box dd {
    width: 100%;
  }
}
.footer-logo-box dd .btn-contact {
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.footer-logo-box dd .btn-contact a {
  display: flex;
  align-items: center;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  min-width: 24rem;
  height: 4rem;
  padding: 0.2rem 2rem 0.5rem;
  gap: 0 1rem;
  border: solid 1px #7D7D7D;
  color: #7D7D7D;
}
@media (max-width: 767px) {
  .footer-logo-box dd .btn-contact a {
    width: 20rem;
    min-width: auto;
    margin: 0 auto;
  }
}
.footer-logo-box dd .btn-contact a::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 2rem;
  background-image: url(img/arrow-r.webp);
  background-repeat: no-repeat;
  background-position: center top 0.7rem;
  background-size: contain;
  line-height: 1;
  transition: 0.2s;
}
.footer-logo-box dd .btn-contact a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.2s;
  z-index: -1;
  background-color: #C30E23;
}
.footer-logo-box dd .btn-contact a:hover {
  border-color: #C30E23;
  color: #fff;
}
.footer-logo-box dd .btn-contact a:hover::before {
  filter: brightness(300%);
}
.footer-logo-box dd .btn-contact a:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .footer-logo-box dd .btn-contact a {
    font-size: 1.4rem;
  }
}

.footer-address {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .footer-address {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.footer-work-title {
  font-size: 1.467rem;
}
@media (max-width: 767px) {
  .footer-work-title {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14px;
  }
}

.footer-work-list {
  list-style: none;
  font-size: 1.467rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .footer-work-list {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14px;
  }
}
.footer-work-list li {
  padding-left: 1em;
  margin-bottom: 0.2rem;
  position: relative;
}
.footer-work-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.footer-banner {
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .footer-banner {
    width: 40rem;
  }
}
@media (max-width: 767px) {
  .footer-banner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.footer-banner figcaption {
  padding-top: 0.8rem;
  padding-left: 1rem;
  font-size: 1.067rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1.467rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-nav {
    gap: 0 5px;
  }
}
@media (max-width: 767px) {
  .footer-nav {
    border-top: solid 1px #7D7D7D;
    font-size: 1.4rem;
  }
}
.footer-nav li {
  line-height: 1;
  border-right: solid 1px #7D7D7D;
}
.footer-nav li:nth-last-of-type(1) {
  border-right: none;
}
@media (max-width: 767px) {
  .footer-nav li {
    width: 50%;
    padding: 0;
    border-right: solid 1px #7D7D7D;
    border-bottom: solid 1px #7D7D7D;
    text-align: center;
  }
  .footer-nav li:nth-child(even) {
    border-right: none;
  }
}
.footer-nav li a {
  padding-right: 5px;
  text-decoration: none;
  color: #7D7D7D;
}
@media (max-width: 767px) {
  .footer-nav li a {
    display: block;
    padding: 15px 5px;
  }
}

.copyright {
  color: #7F7F7F;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .copyright {
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
  }
}

.s2v {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}
@media (max-width: 767px) {
  .s2v {
    bottom: 0;
    right: 0;
  }
}
.s2v img {
  width: 50px;
  height: 50px;
}

.pageNum {
  text-align: center;
  font-size: 16px;
}
@media (max-width: 767px) {
  .pageNum {
    font-size: 14px;
  }
}
.pageNum a {
  text-decoration: none;
}
.pageNum a.numb2 {
  padding: 0 2em;
}

.pagination {
  width: 100%;
  overflow: hidden;
  text-align: center;
  clear: both;
  background-color: transparent;
  padding-top: 4em;
}
.pagination a {
  padding: 5px 10px;
  display: inline-block;
  border: solid 1px #cccccc;
  color: #000000;
  background-color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}
.pagination a:hover {
  background-color: #e8e8e8;
}
.pagination span {
  padding: 5px 10px;
  display: inline-block;
}
.pagination span.current {
  padding: 5px 10px;
  display: inline-block;
  border: solid 1px #cccccc;
  color: #000000;
  background-color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
}
.movie-wrapp {margin-top: -80px;}
@media (max-width: 767px) {
  .movie-wrapp {
    margin-top: 0px;
    margin-bottom: -10px;
  }
}
/*# sourceMappingURL=style.css.map */