/* layout
------------------------------------------*/
.content {
  overflow: hidden;
}

/* drawer
------------------------------------------*/
.drawer-open {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--main-color);
  z-index: 1003;
}
.drawer-open .bar01,
.drawer-open .bar02 {
  content: "";
  display: block;
  position: absolute;
  top: 44px;
  left: 30px;
  width: 40px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.drawer-open .bar02 {
  top: 54px;
  left: 45px;
  width: 25px;
}
.drawer-active .drawer-open .bar01,
.drawer-active .drawer-open .bar02 {
  top: 50px;
  left: 30px;
  width: 40px;
  transform: rotate(-135deg);
}
.drawer-active .drawer-open .bar02 {
  left: 30px;
  transform: rotate(-225deg);
}
.drawer-bg {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  transition: all 0.8s 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1000;
}
.drawer-active .drawer-bg {
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.drawer-main {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--body-color-bg);
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1001;
}
.drawer-active .drawer-main {
  transform: translateX(0);
  transition: all 0.8s 0.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.drawer-nav > ul {
  margin: 100px 30px 60px 30px;
  padding: 30px 0 0 0;
}
.drawer-nav > ul > li {
  position: relative;
}
.drawer-nav > ul > li > span.open {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  background: var(--sub-color);
}
.drawer-nav > ul > li > span.open:before,
.drawer-nav > ul > li > span.open:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 17px;
  width: 1px;
  height: 15px;
  background: var(--main-color);
}
.drawer-nav > ul > li > span.open:after {
  transform: rotate(90deg);
}
.drawer-nav > ul > li > a {
  line-height: 3;
}
.drawer-nav > ul > li > a span.title {
  margin: 0 0 0 8px;
  font-size: 1.2rem;
}
.drawer-nav > ul > li > ul {
  display: none;
  padding: 10px;
}
.drawer-nav > ul > li > ul.active {
  display: block;
}
.drawer-nav > ul > li > ul > li > a span.title {
  margin: 0 0 0 8px;
  font-size: 1.1rem;
}
.drawer-nav > ul > li > ul > li > a {
  position: relative;
  padding: 0 0 0 20px;
  font-size: 1.4rem;
  line-height: 3;
}
.drawer-nav > ul > li > ul > li > a:before {
  content: "\e5cc";
  position: absolute;
  top: 2px;
  left: 0;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
  line-height: 1;
}

/* sns-icon
------------------------------------------*/
.sns-icon-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.sns-icon-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  background: var(--main-color);
  border-radius: 20px;
}
.sns-icon {
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
}
.sns-icon-line {
  mask: url(../images/sns/line-fill.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/sns/line-fill.svg) no-repeat center center /
    contain;
}
.sns-icon-twitter {
  mask: url(../images/sns/twitter-fill.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/sns/twitter-fill.svg) no-repeat center center /
    contain;
}
.sns-icon-facebook {
  mask: url(../images/sns/facebook-fill.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/sns/facebook-fill.svg) no-repeat center center /
    contain;
}
.sns-icon-instagram {
  mask: url(../images/sns/instagram-fill.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/sns/instagram-fill.svg) no-repeat center center /
    contain;
}
.sns-icon-youtube {
  mask: url(../images/sns/youtube-fill.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/sns/youtube-fill.svg) no-repeat center center /
    contain;
}

.side-sns {
  position: fixed;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  z-index: 999;
}
.side-sns .sns-icon-list {
  flex-flow: column;
}
@media screen and (max-width: 1250px) {
  .side-sns {
    display: none;
  }
}

/* header
------------------------------------------*/
.header {
  position: relative;
  width: 100%;
  z-index: 10;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 120px 0 20px;
  height: 100px;
}
.header-logo {
  width: 200px;
}
.header-nav {
  margin: 0 0 0 auto;
}
.header-nav > ul {
  display: flex;
}
.header-nav > ul > li {
  position: relative;
  margin: 0 20px;
}
.header-nav > ul > li > a {
  display: block;
  font-weight: bold;
}
.header-nav > ul > li > a span.title {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
}
.header-nav > ul > li ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 150px;
  background: var(--main-color);
  transition: all 0.2s linear;
}
.header-nav > ul > li ul li {
  position: relative;
}
.header-nav > ul > li > ul li ul {
  top: 0;
  left: 100%;
}
.header-nav > ul > li > ul li a {
  display: block;
  position: relative;
  padding: 8px 8px 8px 24px;
  color: #fff;
  font-size: 1.4rem;
}
.header-nav > ul > li > ul li a:before {
  content: "\e5cc";
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}
.header-nav li:hover > ul {
  visibility: visible;
  opacity: 1;
}

/* footer
------------------------------------------*/
.footer-top-wrap {
  overflow: hidden;
}
.footer-top {
  margin: 0 auto;
  padding: 0 4vmin;
  max-width: 1200px;
}
.footer {
  padding: 80px 0 var(--foooter-padding-bottom) 0;
  color: var(--footer-text-color);
  background: var(--footer-bg-color);
}
.footer-inner {
  margin: 0 auto;
  padding: 0 4vmin;
  max-width: 1200px;
  text-align: center;
}
.footer-main {
  position: relative;
  margin: 0 0 60px 0;
  padding: 0 0 60px 0;
}
.footer-main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.footer-main .logo {
  margin: 0 auto 30px auto;
  width: 180px;
}
.footer-main .nav {
  margin: 0 0 40px 0;
}
.footer-main .nav ul {
  display: flex;
  justify-content: center;
}
.footer-main .nav ul li {
  margin: 0 15px;
  font-size: 1.3rem;
}
.footer-main .nav ul li a {
  color: var(--footer-text-color);
}
.footer-sub .copyright {
  margin: 0 0 30px 0;
  font-size: 1.1rem;
}

.pagetop {
  opacity: 0;
  position: fixed;
  bottom: var(--pagetop-position-bottom);
  right: 30px;
  transition: all 0.2s linear;
  z-index: 1;
}
.moved .pagetop {
  opacity: 1;
}
.pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  color: var(--main-color);
  line-height: 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}
.pagetop a:after {
  content: "\e5ce";
  font-size: 2.2rem;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}

.fixed-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 4vmin;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.fixed-footer p {
  font-size: 1.8rem;
  font-weight: bold;
}
.fixed-footer .tel a {
  display: flex;
  align-items: center;
  margin: 0 20px;
  font-size: 3rem;
  font-weight: bold;
}
.fixed-footer .tel a:before {
  content: "\e0b0";
  margin: 0 5px 0 0;
  color: var(--main-color);
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}
.fixed-footer .contact a {
  display: flex;
  align-items: center;
  padding: 6px 28px 4px 25px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  background: var(--main-color);
  border-radius: 100px;
}
.fixed-footer .contact a:before {
  content: "\e158";
  margin: 0 5px 0 0;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}

.sphone-fixed-footer {
  display: none;
}

/* mainvisual
------------------------------------------*/
.mainvisual {
  margin: 0 0 calc(var(--box-margin) + 1vh) 0;
  width: 100%;
  height: calc(100vh - 100px);
}
.mainvisual .swiper-slide {
  overflow: hidden;
  display: flex;
}
.mainvisual .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mainvisual-before-background-opacity);
  z-index: 1;
}
.mainvisual .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.mainvisual-catch {
  position: absolute;
  bottom: 20vh;
  left: 10vw;
  width: calc(100% - 20vw);
  color: #fff;
  z-index: 100;
}
.mainvisual-catch div.copy {
  margin: 0 0 15px 0;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1.3;
}
.mainvisual-catch div.sub-text {
  font-size: 3rem;
  line-height: 1.4;
}
.mainvisual.zoom .swiper-slide-active img,
.mainvisual.zoom .swiper-slide-duplicate-active img,
.mainvisual.zoom .swiper-slide-prev img {
  animation: zoomUp 10s linear 0s normal both;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.mainvisual2 {
  margin: 0 0 calc(var(--box-margin) + 1vh) 0;
  padding: 50px 0;
  background: var(--sub-color);
}
.mainvisual2 .swiper-slide {
  overflow: hidden;
  display: flex;
  justify-content: center;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1100px) {
  .mainvisual2 {
    padding: 20px 0 50px 0;
  }
  .mainvisual2 .swiper-slide {
    max-width: 80%;
  }
}

/* page-header
------------------------------------------*/
.page-title {
  display: flex;
  align-items: center;
  height: 260px;
  background: var(--page-title-bg-color);
}
.page-title h1,
.page-title p {
  margin: 0 auto;
  padding: 0 4vmin;
  max-width: 1200px;
  color: var(--page-title-text-color);
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.page-title h1 span:nth-child(2),
.page-title p span:nth-child(2) {
  display: block;
  font-size: 2rem;
  font-weight: normal;
}
.breadcrumbs-wrap {
  overflow-x: auto;
  white-space: nowrap;
  margin: 1vh auto calc(var(--box-margin) + 1vh) auto;
  padding: 0 4vmin;
  max-width: 1200px;
  font-size: 1.2rem;
}
.breadcrumbs-wrap .breadcrumbs {
  display: flex;
}
.breadcrumbs-wrap .breadcrumbs li:not(:last-child):after {
  content: ">";
  padding: 0 6px;
}

/* blog-wrapper
------------------------------------------*/
.blog-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto calc(var(--box-margin) + 1vh) auto;
  padding: 0 4vmin;
  max-width: 1200px;
}
.blog-list,
.blog-content {
  width: calc(100% - 300px);
}
.blog-content:only-child {
  width: 100%;
}

/* blog-sidebar
------------------------------------------*/
.blog-sidebar {
  width: 250px;
}
.blog-nav {
  margin: 0 0 25px 0;
}
.blog-nav-title {
  margin: 0 0 10px 0;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  background: var(--main-color);
  border-radius: 3px;
}
.blog-nav-inner {
  font-size: 1.3rem;
}
.blog-nav-list > li {
  border-bottom: var(--border-color) 1px solid;
}
.blog-nav-list > li > a {
  display: block;
  position: relative;
  padding: 10px 0 10px 20px;
}
.blog-nav-list > li > a:before {
  content: "\e5cc";
  position: absolute;
  top: 10px;
  left: 0;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}
.blog-nav-list > li ul {
  padding: 0 10px 10px 20px;
}
.blog-nav-list > li ul li a {
  display: block;
  padding: 5px;
  font-size: 1.2rem;
}

/* blog-list
------------------------------------------*/
.blog-list-title {
  margin: 0 0 20px 0;
  padding: 10px;
  color: var(--text-sub-color);
  font-size: 1.2rem;
  background: var(--sub-color);
  border-radius: 3px;
}
.blog-list-item {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px 0;
}
.blog-list-item .image {
  width: 150px;
}
.blog-list-item .text {
  width: calc(100% - 170px);
}
.blog-list-item .text h2 {
  margin: 0 0 5px 0;
  font-size: 3rem;
  font-weight: bold;
}
.blog-list-item .text .date {
  margin: 0 0 12px 0;
  color: var(--text-sub-color);
  font-size: 1.2rem;
}

/* gallery-list
------------------------------------------*/
.gallery-list {
  margin: 0 auto calc(var(--box-margin) + 1vh) auto;
  padding: 0 4vmin;
  max-width: 1200px;
}
.gallery-category > ul {
  border-top: var(--border-color) 1px solid;
}
.gallery-category > ul > li {
  display: flex;
  padding: 20px 0;
  border-bottom: var(--border-color) 1px solid;
}
.gallery-category > ul > li > a {
  width: 15%;
}
.gallery-category > ul > li > ul {
  width: 85%;
}
.gallery-category > ul > li > ul > li {
  display: inline-block;
  position: relative;
  margin: 0 20px 0 0;
  padding: 0 0 0 20px;
}
.gallery-category > ul > li > ul > li:before {
  content: "\e5c8";
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
  line-height: 15px;
  text-align: center;
  background: var(--text-color);
  border-radius: 8px;
}
.gallery-category > ul > li > ul > li.current-cat:before {
  background: var(--main-color);
}
.gallery-category > ul > li > ul > li.current-cat > a {
  color: var(--main-color);
}

.gallery-list-title {
  margin: 20px 0 0 0;
  padding: 10px;
  color: var(--text-sub-color);
  font-size: 1.2rem;
  background: var(--sub-color);
  border-radius: 3px;
}
.gallery-list-h2 {
  position: relative;
  margin: var(--box-margin) 0 calc(var(--box-margin) * 0.5 * -1) 0;
  padding: 0 0 10px 0;
  font-size: 3.2rem;
  border-bottom: var(--border-color) 2px solid;
}
.gallery-list-h2:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 2px;
  background: var(--main-color);
}
.gallery-list-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: var(--box-margin) 0 0 0;
}
.gallery-list-item {
  position: relative;
}
.gallery-list-item .category {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 5px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  background: var(--main-color);
  z-index: 1;
}
.gallery-list-item .text h2 {
  margin: 15px 0 0 0;
  font-size: 1.8rem;
}
.gallery-list-item .text p {
  color: var(--text-sub-color);
  font-size: 1.3rem;
}
.gallery-list-item .gallery-list-ba a {
  display: flex;
}
.gallery-list-item .gallery-list-ba a .image {
  position: relative;
  width: 100%;
}
.gallery-list-item .gallery-list-ba a .image span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 5px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  background: var(--main-color);
  z-index: 1;
}
.gallery-list-item .gallery-list-ba a .image:nth-child(2) span {
  background: var(--main-color-2);
}

/* gallery-content
------------------------------------------*/
.gallery-content-ba {
  display: flex;
  gap: 40px;
  margin: 0 auto calc(var(--box-margin) + 1vh) auto;
}
.gallery-content-ba .image {
  position: relative;
  width: calc(50% - 20px);
}
.gallery-content-ba .image:first-child:after {
  content: "\e5cc";
  position: absolute;
  top: 50%;
  right: -40px;
  width: 40px;
  font-size: 3rem;
  text-align: center;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
  transform: translateY(-50%);
}
.gallery-content-ba .image span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 5px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  background: var(--main-color);
  z-index: 1;
}
.gallery-content-ba .image:nth-child(2) span {
  background: var(--main-color-2);
}
.gallery-slide {
  overflow: hidden;
  margin: 0 0 10px 0;
}
.gallery-slide-slide img {
  aspect-ratio: var(--gallery-aspect-ratio);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-slide-thumbnail {
  display: grid;
  grid-template-columns: repeat(var(--gallery-thumbnail-num), 1fr);
  gap: 2px;
  margin: 0 0 50px 0;
}
.gallery-content-text {
  margin: 0 auto var(--box-margin) auto;
  font-size: 2rem;
}

/* recruit-list
------------------------------------------*/
.recruit-list {
  margin: 0 auto calc(var(--box-margin) + 1vh) auto;
  padding: 0 4vmin;
  max-width: 1200px;
}
.recruit-list-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.recruit-list-item {
  border: var(--border-color) 1px solid;
}
.recruit-list-item a {
  display: block;
  padding: 30px;
}
.recruit-list-item .employment-type {
  margin: 0 0 10px 0;
  padding: 5px 20px;
  width: fit-content;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  background: var(--main-color);
}
.recruit-list-item h2 {
  margin: 0 0 10px 0;
  font-size: 2.2rem;
}
.recruit-list-item p {
  font-size: 1.3rem;
}
.recruit-list-item p span {
  margin: 0 8px 0 0;
  padding: 0 5px;
  font-weight: bold;
  border: var(--border-color) 1px solid;
}

/* recruit-content
------------------------------------------*/
.recruit-content {
  margin: 0 auto calc(var(--box-margin) + 1vh) auto;
  padding: 0 4vmin;
  max-width: 1200px;
}
.recruit-content h1 {
  margin: 0 0 20px 0;
  width: 100%;
  font-size: 3.2rem;
}
.recruit-table {
  margin: var(--text-margin) 0;
}
.recruit-table table {
  width: 100%;
}
.recruit-table table th {
  padding: 15px;
  font-weight: bold;
  text-align: left;
  background: var(--sub-color);
  border: var(--border-color) 1px solid;
}
.recruit-table table td {
  padding: 15px;
  border: var(--border-color) 1px solid;
}

/* blog-content
------------------------------------------*/
.blog-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog-category {
  margin: 0 10px 20px 0;
  padding: 2px 5px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  background: var(--main-color);
}
.blog-date {
  margin: 0 0 20px 0;
  color: var(--text-sub-color);
  font-size: 1.2rem;
}
.blog-header h1 {
  margin: 0 0 20px 0;
  width: 100%;
  font-size: 3.2rem;
}
.blog-eyecatch {
  margin: 0 0 20px 0;
  width: 100%;
}
.blog-eyecatch img {
  width: 100%;
}
.blog-sns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 20px 0;
  width: 100%;
}
.blog-sns div a {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px 0;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 20px;
  border-radius: 3px;
}
.blog-sns div.twitter a {
  background: #000;
}
.blog-sns div.facebook a {
  background: #3b5998;
}
.blog-sns div.line a {
  background: #1dcd00;
}
.blog-content a,
.page-content a {
  color: var(--text-link-color);
}
.blog-type01 a,
.blog-type02 a,
.blog-type03 a,
.blog-type04 a {
  color: var(--text-color);
}
.blog-content p:not([class]),
.page-content p:not([class]) {
  margin: var(--text-margin) 0;
}
.blog-content h2:not([class]),
.page-content h2:not([class]) {
  position: relative;
  margin: var(--text-margin) 0 0 0;
  padding: 0 0 10px 0;
  font-size: 3.2rem;
  border-bottom: var(--border-color) 2px solid;
}
.page-content h2:not([class]) {
  font-size: 4.2rem;
}
.blog-content h2:not([class]):after,
.page-content h2:not([class]):after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 2px;
  background: var(--main-color);
}
.blog-content h3:not([class]),
.page-content h3:not([class]) {
  position: relative;
  margin: var(--text-margin) 0 0 0;
  padding: 0 0 0 20px;
  font-size: 3rem;
}
.page-content h3:not([class]) {
  font-size: 3.2rem;
}
.blog-content h3:not([class]):after,
.page-content h3:not([class]):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--main-color);
  border-radius: 3px;
}
.blog-content h4:not([class]),
.page-content h4:not([class]) {
  margin: var(--text-margin) 0 0 0;
  font-size: 2.5rem;
  color: #6A984D;
}
.blog-content h5:not([class]),
.page-content h5:not([class]) {
  margin: var(--text-margin) 0 0 0;
  font-size: 2.5rem;
}
.blog-content table:not([class]),
.page-content table:not([class]) {
  margin: var(--text-margin) 0;
}
.blog-content table:not([class]) th,
.page-content table:not([class]) th {
  padding: 10px;
  background: var(--sub-color);
  border: var(--border-color) 1px solid;
}
.blog-content table:not([class]) td,
.page-content table:not([class]) td {
  padding: 10px;
  border: var(--border-color) 1px solid;
}
.blog-content > :first-child,
.page-content > :first-child {
  margin-top: 0;
}
.blog-content > :last-child,
.page-content > :last-child {
  margin-bottom: 0;
}
.blog-content ul:not([class]),
.page-content ul:not([class]) {
  margin: var(--text-margin) 0;
}
.blog-content ul:not([class]) li,
.page-content ul:not([class]) li {
  margin: 10px 0 10px 25px;
  list-style: outside disc;
}
.blog-content ol:not([class]),
.page-content ol:not([class]) {
  margin: var(--text-margin) 0;
}
.blog-content ol:not([class]) li,
.page-content ol:not([class]) li {
  margin: 10px 0 10px 25px;
  list-style: outside decimal;
}

.blog-pn {
  display: flex;
  margin: var(--box-margin) auto 0 auto;
  max-width: 360px;
}
.blog-pn .next {
  margin: 0 0 0 auto;
}
.blog-pn a {
  display: block;
  position: relative;
  padding: 12px 30px 12px 50px;
  border: var(--text-color) 1px solid;
  border-radius: 30px;
}
.blog-pn .next a {
  padding: 12px 50px 12px 30px;
}
.blog-pn a:after {
  content: "\e5cb";
  position: absolute;
  top: 12px;
  left: 25px;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}
.blog-pn .next a:after {
  content: "\e5cc";
  left: auto;
  right: 25px;
}
.blog-back {
  margin: 40px 0 0 0;
  text-align: center;
}
.blog-back a:before {
  content: "\e14d";
  margin: 0 10px 0 0;
  font-family: "Material Symbols Outlined";
  font-size: 2rem;
  line-height: 1;
  vertical-align: middle;
}

/* common style */
.btn01,
.btn02,
.btn03 {
  margin: var(--text-margin) 0;
}
.btn01 a,
.btn02 a,
.btn03 a {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  padding: 12px 50px 12px 30px;
  color: #fff;
  background: var(--text-color);
  border-radius: 30px;
}
.btn02 a {
  background: var(--main-color);
}
.btn03 a {
  background: var(--main-color-2);
}
.btn01 a:after,
.btn02 a:after,
.btn03 a:after {
  content: "\e5cc";
  position: absolute;
  top: 12px;
  right: 25px;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}

.firstlarge:first-letter {
  font-size: 4.2rem;
  font-weight: bold;
}
.blockquote {
  position: relative;
  margin: var(--text-margin) 0;
  padding: 20px 20px 20px 70px;
  background: var(--sub-color);
}
.blockquote:before {
  content: "”";
  position: absolute;
  top: -20px;
  left: 15px;
  color: #aaa;
  font-size: 100px;
}

.marker-blue {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #a8dfff 0%);
}
.marker-green {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #c8ffde 0%);
}
.marker-yellow {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #fffb84 0%);
}
.marker-red {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #ffc9c9 0%);
}
.marker-pink {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #ffd4f2 0%);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: var(--box-margin) auto;
}
.gallery-columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.gallery .gallery-item img {
  width: 100%;
}

hr {
  margin: var(--text-margin) 0;
  background: var(--border-color);
  border: none;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

iframe[title="YouTube video player"] {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.pagination {
  margin: var(--box-margin) 0;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-links .page-numbers {
  padding: 8px 15px;
  color: var(--main-color);
  font-size: 1.3rem;
  background: var(--body-color-bg);
  border: var(--main-color) 1px solid;
  border-radius: 3px;
}
.nav-links .page-numbers.current {
  color: var(--body-color-bg);
  background: var(--main-color);
  border: var(--main-color) 1px solid;
}
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
  padding: 8px;
  color: var(--main-color);
  background: none;
  border: none;
}
.nav-links .page-numbers.prev span:before,
.nav-links .page-numbers.next span:before {
  content: "\e5e0";
  font-size: 2rem;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}
.nav-links .page-numbers.next span:before {
  content: "\e5e1";
}

/* page-content
------------------------------------------*/
.page-content {
  margin: 0 auto calc(var(--box-margin) + 1vh) auto;
  padding: 0 4vmin;
  max-width: 1200px;
}

.child-page-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 auto var(--box-margin) auto;
}
.child-page-nav li a {
  display: block;
  position: relative;
  padding: 12px 12px 12px 40px;
  color: #fff;
  font-weight: bold;
  background: var(--main-color-2);
  border: var(--main-color-2) 1px solid;
  border-radius: 100px;
}
.child-page-nav li a:before {
  content: "\e5c8";
  position: absolute;
  top: 50%;
  left: 15px;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
  transform: translateY(-50%);
}
.child-page-nav li.current_page_item a {
  color: var(--main-color-2);
  background: var(--body-color-bg);
}

.child-page-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}
.child-page-list-title {
  margin: 20px 0 10px 0;
  font-size: 2.2rem;
  font-weight: bold;
}
.child-page-list .btn03 {
  margin: 0;
}

/* form
------------------------------------------*/
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea,
select {
  display: block;
  margin: 0 1px 1px 0;
  padding: 10px;
  width: 100%;
  color: var(--text-color);
  background: var(--body-color-bg);
  border: var(--border-color) 1px solid;
  border-radius: 3px;
  transition: all 0.2s linear;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  background: var(--body-color-bg);
  border: var(--text-color30) 1px solid;
}
textarea {
  padding: 10px;
  height: 200px;
}
select {
  padding: 10px 25px 10px 10px;
  width: auto;
  background: linear-gradient(45deg, transparent 50%, var(--text-color) 50%)
      no-repeat center right 14px/4px 4px,
    linear-gradient(-45deg, transparent 50%, var(--text-color) 50%) no-repeat
      center right 10px/4px 4px,
    var(--body-color-bg);
}

.form-table {
  margin: var(--text-margin) 0;
  width: 100%;
}
.form-table th {
  padding: 15px;
  font-weight: bold;
  text-align: left;
  background: var(--sub-color);
  border: var(--border-color) 1px solid;
}
.form-table th span {
  margin: 0 0 0 10px;
  color: #c00;
  font-size: 1.2rem;
  font-weight: normal;
}
.form-table td {
  padding: 15px;
  border: var(--border-color) 1px solid;
}
.form-table td .w20 {
  width: 20%;
}
.form-table td .w40 {
  padding: 0 1px 0 0;
  width: 40%;
}
.form-table td .w80 {
  width: 80%;
}
.form-table td .w100 {
  width: 100%;
}
.form-table td .form-comment {
  margin: 5px 0 0 0;
  font-size: 1.2rem;
  color: var(--text-sub-color);
}
.form-table td .error {
  margin: 5px 0 0 0;
  color: #c00;
  font-size: 1.2rem;
}
.form-btn {
  text-align: center;
}
.form-btn input {
  cursor: pointer;
  display: inline-block;
  position: relative;
  margin: 40px auto 0 auto;
  padding: 12px 50px;
  color: #fff;
  background: var(--main-color-2);
  border: none;
  border-radius: 30px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.grecaptcha-badge {
  visibility: hidden;
}
.grecaptcha-message {
  margin: 40px 0 -20px 0;
  font-size: 1.2rem;
  text-align: center;
}
.grecaptcha-message a {
  text-decoration: underline;
}

/* template
------------------------------------------*/
.box,
.box-wrap {
  position: relative;
  margin: 0 auto var(--box-margin) auto;
}

.box:last-child,
.box-wrap:last-child {
  margin-bottom: 0;
}

.box-wrap.xl {
  margin-left: calc(50% - var(--vw) * 50);
  margin-right: calc(50% - var(--vw) * 50);
  width: calc(var(--vw) * 100);
}
.box-wrap.lg {
  margin-left: calc(50% - var(--vw) * 50);
  margin-right: calc(50% - var(--vw) * 50);
  padding: 0 4vmin;
  width: calc(var(--vw) * 100);
}
.box-wrap.sm {
  padding: 0 4vmin;
  max-width: 900px;
}
.box-wrap.bg {
  padding: var(--box-margin) 0;
}
.box-wrap.bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(var(--vw) * 100);
  height: 100%;
  background: var(--sub-color);
  transform: translateX(-50%);
  z-index: -1;
}

.box h2.box-h2 {
  margin: 0;
  font-size: 4rem;
}
.box h3:not([class]) {
  margin: 15px 0;
}
.box h3.box-h3 {
  margin: 0 0 2vh 0;
  font-size: 3.2rem;
}
.box .copy {
  margin: 0 0 2vh 0;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
}
.box p {
  margin: 0 0 2vh 0;
}
.box ul,
.box ol {
  list-style: none;
}
.box img {
  opacity: 0;
}
.box .image {
  overflow: hidden;
}
.box .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
}
.box.image-bg-type02 .image:after,
.box.banner-type01 .image:after,
.box.contact-type01 .image:after,
.box.contact-type02 .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--image-before-background-opacity);
}
.box .btn {
  margin: 4vh 0 0 0;
}
.box .btn a {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  padding: 13px 50px 12px 30px;
  color: #fff;
  background: var(--main-color-2);
  border-radius: 30px;
}
.box .btn a:after {
  content: "\e5cc";
  position: absolute;
  top: 50%;
  right: 25px;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
  line-height: 1;
  transform: translateY(-50%);
}
.box .text > :last-child:not(.btn) {
  margin-bottom: 0;
}

.title-type01,
.title-type02,
.title-type03,
.title-type04 {
  margin: 0 auto calc(var(--box-margin) * 0.65) auto;
}
.title-type01,
.title-type03 {
  padding: 30px 0 0 0;
}
.title-type01:before,
.title-type03:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--main-color);
}
.title-type01 span:nth-child(2),
.title-type02 span:nth-child(2),
.title-type03 span:nth-child(2),
.title-type04 span:nth-child(2) {
  opacity: 0.5;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}

.title-type02,
.title-type04 {
  padding: 0 0 30px 0;
  text-align: center;
}
.title-type02:before,
.title-type04:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 3px;
  background: var(--main-color);
  transform: translateX(-50%);
}
.title-type02 span:nth-child(2),
.title-type04 span:nth-child(2) {
  margin: 0.5em 0 0 0;
}

.title-text-type01 {
  overflow: hidden;
}
.title-text-type01 h2.box-h2 {
  float: left;
  margin: 0 80px 0 0;
  writing-mode: vertical-rl;
}
.title-text-type01.right h2.box-h2 {
  float: right;
  margin: 0 0 0 80px;
}
.title-text-type01 h2 .ja {
  text-orientation: upright;
}
.title-text-type01 h2 .en {
  opacity: 0.5;
  display: block;
  margin: 0 0 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}
.title-text-type01 .text :first-child {
  margin-top: 0;
}

.row {
  display: flex;
  gap: 30px;
}
.row .col {
  width: 100%;
}
.row .col :first-child {
  margin-top: 0;
}
.row .col :last-child {
  margin-bottom: 0;
}

.lead-type01 {
  text-align: center;
}

.image-text-type01:after {
  content: "";
  clear: both;
  display: block;
}
.image-text-type01 .image {
  float: left;
  margin: 0 30px 0 0;
}
.image-text-type01.right .image {
  float: right;
  margin: 0 0 0 30px;
}

.image-text-type02 {
  display: flex;
  justify-content: space-between;
  padding: 0 0 50px 0;
}
.image-text-type02 .image {
  position: relative;
  width: 60%;
  min-height: 25vmax;
}
.image-text-type02 .image img {
  position: absolute;
  top: 0;
  left: 0;
}
.image-text-type02 .text {
  position: relative;
  margin: 0 auto;
  padding: 0 50px;
  width: 40%;
}
.image-text-type02 .text:before {
  content: "";
  position: absolute;
  top: 50px;
  left: -200px;
  width: calc(100% + 1200px);
  height: 100%;
  background: var(--sub-color);
  z-index: -1;
}
.image-text-type02.right {
  flex-direction: row-reverse;
}
.image-text-type02.right .text:before {
  left: -1000px;
}
.box.image-text-type02 .box-h3,
.box.image-text-type02 .copy,
.box.image-text-type02 p,
.box.image-text-type02 .btn {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}

.image-text-type03 {
  display: flex;
}
.image-text-type03 .image {
  position: relative;
  width: 60%;
}
.image-text-type03 .image img {
  position: absolute;
  top: 0;
  left: 0;
}
.image-text-type03 .text {
  position: relative;
  margin: 0 auto;
  padding: 120px 60px 120px 0;
  width: 40%;
  z-index: 2;
}
.image-text-type03 .text:before {
  content: "";
  position: absolute;
  top: 60px;
  left: -60px;
  width: calc(100% + 60px);
  height: calc(100% - 120px);
  background: var(--sub-color);
  z-index: -1;
}
.box.image-text-type03 .box-h3,
.box.image-text-type03 .copy,
.box.image-text-type03 p,
.box.image-text-type03 .btn {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}

.image-text-type03.right {
  flex-direction: row-reverse;
}
.image-text-type03.right .text {
  padding: 120px 0 120px 60px;
}
.image-text-type03.right .text:before {
  left: auto;
  right: -60px;
}

.image-bg-type01 .image {
  width: 100%;
  height: 500px;
}
.image-bg-type01 .text {
  position: relative;
  margin: -100px 10vw 0 10vw;
  padding: 60px 60px 0 60px;
  background: var(--body-color-bg);
}
.box-wrap.bg .image-bg-type01 .text {
  padding-bottom: 60px;
}

.image-bg-type02 .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image-bg-type02 .text {
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
  max-width: 600px;
  color: #fff;
  text-align: center;
}
.image-bg-type02 .text h3 {
  color: #fff;
}

.image-bg-type03 {
  height: 500px;
}
.image-bg-type03 .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image-bg-type03 .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.qa-type01 dl dt,
.qa-type01 dl dd {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px 15px 15px 80px;
  min-height: 100px;
}
.qa-type01 dl dd {
  background: var(--sub-color);
}
.qa-type01 dl dt:before,
.qa-type01 dl dd:before {
  content: "Q";
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: 15px;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--main-color);
  border-radius: 50%;
}
.qa-type01 dl dd:before {
  content: "A";
  background: var(--main-color-2);
}

.list-number-type01 {
  padding: 25px 0 0 0;
}
.list-number-type01 ol {
  counter-reset: count 0;
  display: flex;
  gap: 50px 30px;
  padding: 0;
}
.list-number-type01 ol li {
  position: relative;
  width: 100%;
  background: var(--sub-color);
}
.list-number-type01 ol li:before {
  content: "0" counter(count);
  counter-increment: count 1;
  display: block;
  position: absolute;
  top: -55px;
  left: 50%;
  font-size: 7rem;
  font-weight: bold;
  transform: translateX(-50%);
  z-index: 1;
}
.list-number-type01 ol li .text {
  padding: 4vmin;
}

.list-number-type02 {
  padding: 0 0 var(--box-margin) 0;
}
.list-number-type02:after {
  content: "";
  position: absolute;
  top: 125px;
  left: 50%;
  width: 100vw;
  height: calc(100% - 125px);
  background: var(--sub-color);
  z-index: -1;
  transform: translateX(-50%);
}
.list-number-type02 ol {
  counter-reset: count 0;
  display: flex;
  gap: 30px;
  padding: 0;
}
.list-number-type02 ol li {
  position: relative;
  width: 100%;
}
.list-number-type02 ol li:before {
  content: "0" counter(count);
  counter-increment: count 1;
  display: block;
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 5rem;
  font-weight: bold;
  border-bottom: var(--border-color) 3px solid;
  z-index: 1;
}
.list-number-type02 ol li .image {
  position: relative;
  margin: 0 auto 20px auto;
  border-radius: 50%;
}
.list-number-type02 ol li .image:after {
  content: "";
  display: block;
  padding: 100% 0 0 0;
}
.list-number-type02 ol li .image img {
  position: absolute;
  top: 0;
  left: 0;
}
.list-number-type01 .btn,
.list-number-type02 .btn {
  text-align: center;
}

.list-check-type01 {
  display: flex;
  justify-content: center;
}
.list-check-type01 > ul > li {
  position: relative;
  margin: 10px 0;
  padding: 0 0 0 25px;
}
.list-check-type01 > ul > li:before {
  content: "\e2e6";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-color-2);
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}

.list-flow-type01 {
  position: relative;
}
.list-flow-type01:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100px;
  width: 12px;
  height: 100%;
  background: var(--sub-color);
  z-index: -1;
}
.list-flow-type01 > ul > li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 50px 0;
}
.list-flow-type01 > ul > li .icon {
  position: relative;
  padding: 5px;
  width: 80px;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  background: var(--main-color);
}
.list-flow-type01 > ul > li .icon:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 10px;
  border-color: transparent transparent transparent var(--main-color);
  transform: translateY(-50%);
}
.list-flow-type01 > ul > li .text {
  position: relative;
  width: calc(100% - 150px);
}
.list-flow-type01 > ul > li .text:before {
  content: "";
  position: absolute;
  top: 11px;
  left: -48px;
  width: 8px;
  height: 8px;
  background: var(--main-color);
  border-radius: 4px;
}
.list-flow-type01 > ul > li .text:after {
  content: "";
  position: absolute;
  top: 14px;
  left: -40px;
  width: 25px;
  height: 1px;
  border-bottom: var(--border-color) 1px dashed;
}
.list-flow-type01 > ul > li .text h3.box-h3 {
  font-size: 2.2rem;
}

.banner-type01 ul {
  display: flex;
  gap: 30px;
}
.banner-type01 ul li {
  position: relative;
  width: 100%;
}
.banner-type01 ul li .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner-type01 ul li .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.banner-type01 ul li a {
  display: block;
  position: relative;
  padding: 100px 50px;
  color: #fff;
  font-weight: bold;
}
.banner-type01 ul li a span {
  display: block;
  font-size: 3rem;
}
.banner-type01 ul li a:after {
  content: "\e5cc";
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin: 0 0 0 15px;
  color: #fff;
  font-size: 2rem;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}

.banner-type02 ul {
  display: flex;
  gap: 30px;
}
.banner-type02 ul li {
  overflow: hidden;
  width: 100%;
  background: var(--main-color);
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}
.banner-type02 ul li .text {
  padding: 4vmin;
  color: #fff;
}
.banner-type02 ul li .text h3 {
  color: #fff;
}
.banner-type02 ul li .text .btn {
  text-align: center;
}
.banner-type02 ul li .text .btn a {
  background: var(--text-color);
}

.banner-type03 ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.banner-type03 ul li {
  display: flex;
  flex-direction: row-reverse;
  background: var(--main-color);
}
.banner-type03 ul li .image {
  width: 55%;
}
.banner-type03 ul li .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
  width: 45%;
  color: #fff;
}
.banner-type03 ul li .text .en {
  width: 100%;
}
.banner-type03 ul li .text .ja {
  width: 100%;
  font-size: 2.2rem;
  font-weight: bold;
}

.banner-type03 ul:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

.banner-type03 ul:has(> :nth-child(3)) {
  grid-template-columns: repeat(3, 1fr);
}
.banner-type03 ul:has(> :nth-child(3)) li {
  display: block;
}
.banner-type03 ul:has(> :nth-child(3)) li .image,
.banner-type03 ul:has(> :nth-child(3)) li .text {
  width: 100%;
}

.slideshow-type01,
.slideshow-type02 {
  padding: 0 0 50px 0;
}
.slideshow-type02 .swiper-slide {
  overflow: hidden;
  display: flex;
  justify-content: center;
  max-width: 1000px;
}
.slideshow-type02 .swiper-slide .image {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .slideshow-type02 {
    padding: 20px 0 50px 0;
  }
  .slideshow-type02 .swiper-slide {
    max-width: 80%;
  }
}

.carousel-type01 .image {
  margin: 0 auto 20px auto;
}
.carousel-type01 .swiper-pagination {
  position: relative;
  margin: 30px 0 0 0;
}

.slider-type01 {
  display: none;
}
.slider-type01.swiper-initialized {
  display: block;
}
.slider-type01 .swiper-wrapper {
  transition-timing-function: linear;
}
.slider-type01 .swiper-slide {
  margin: 0 0 0 -1px;
}
.slider-type01 img {
  opacity: 1;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.accordion-type01 ul li {
  margin: 0 0 30px 0;
  padding: 30px;
  border: var(--border-color) 1px solid;
  border-radius: 3px;
}
.accordion-type01 ul li h3.box-h3 {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 40px 0 0;
  font-size: 2.2rem;
  user-select: none;
}
.accordion-type01 ul li h3.box-h3:after {
  content: "\e5cf";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--main-color);
  font-size: 2.2rem;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
  transition: all 0.2s linear;
}
.accordion-type01 ul li.active h3.box-h3:after {
  transform: rotate(180deg);
}
.accordion-type01 ul li .text {
  opacity: 0;
  overflow: hidden;
  padding: 0 30px;
  height: 0;
  background: var(--sub-color);
  transition: all 0.2s linear;
}
.accordion-type01 ul li.active .text {
  opacity: 1;
  margin: 20px 0 0 0;
  padding: 30px;
  height: auto;
}
.accordion-type01 ul li.active .text :first-child {
  margin-top: 0;
}

.contact-type01 {
  padding: 100px 0;
}
.contact-type01 .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-type01 .title {
  position: relative;
  margin: 0 auto 20px auto;
  max-width: 600px;
  color: #fff;
  font-size: 4.2rem;
  font-weight: bold;
  text-align: center;
}
.contact-type01 .title span {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}
.contact-type01 .text {
  position: relative;
  margin: 0 auto;
  max-width: 700px;
  color: #fff;
  text-align: center;
}
.contact-type01 .text .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 7rem;
  font-weight: bold;
}
.contact-type01 .text .tel:before {
  content: "\e0b0";
  margin: 0 15px 0 0;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}
.contact-type01 .text .datetime {
  margin: -2vh 0 2vh 0;
}
.contact-type01 .text .btn {
  display: flex;
  justify-content: center;
}
.contact-type01 .text .btn div {
  margin: 0 5px;
}
.contact-type01 .text .btn div a,
.contact-type02 .text .btn div a {
  padding: 13px 30px 12px 50px;
}
.contact-type01 .text .btn div a:after,
.contact-type02 .text .btn div a:after {
  content: "\e158";
  right: auto;
  left: 25px;
}

.contact-type02 {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-type02 .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.contact-type02 .title {
  position: relative;
  padding: 0 60px 0 0;
  color: #fff;
  font-size: 4.2rem;
  font-weight: bold;
  text-align: right;
}
.contact-type02 .title span {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}
.contact-type02 .text {
  position: relative;
  color: #fff;
}
.contact-type02 .text .tel {
  display: flex;
  align-items: center;
  font-size: 5.5rem;
  font-weight: bold;
}
.contact-type02 .text .tel:before {
  content: "\e0b0";
  margin: 0 15px 0 0;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}
.contact-type02 .text .datetime {
  margin: -1vh 0 3vh 0;
}
.contact-type02 .text .btn {
  display: flex;
}
.contact-type02 .text .btn div {
  margin: 0 10px 0 0;
}

.table-type01 {
  margin: 0 auto var(--text-margin) auto;
}
.table-type01 table {
  width: 100%;
}
.table-type01 table th,
.table-type01 table td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
}
.table-type01 table th {
  font-weight: bold;
  border-bottom: var(--main-color) 2px solid;
}
.table-type01 table td {
  border-bottom: var(--border-color) 2px solid;
}

.table-type02 {
  margin: 0 auto var(--text-margin) auto;
}
.table-type02 table {
  margin: -5px;
  width: calc(100% + 10px);
  border-collapse: separate;
  border-spacing: 5px;
}
.table-type02 table th,
.table-type02 table td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
}
.table-type02 table th {
  color: #fff;
  font-weight: bold;
  background: var(--main-color);
}
.table-type02 table td {
  background: var(--sub-color);
}

.blog-type01 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-type01 ul li,
.blog-type04 .swiper-slide {
  position: relative;
}
.blog-type01 ul li .category,
.blog-type04 .swiper-slide .category {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 5px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  background: var(--main-color);
  z-index: 1;
}
.blog-type01 ul li .image,
.blog-type04 .swiper-slide .image {
  margin: 0 0 10px 0;
}
.blog-type01 ul li h3.box-h3,
.blog-type04 .swiper-slide h3.box-h3 {
  margin: 0 0 5px 0;
  font-size: 1.8rem;
}
.blog-type01 ul li .date,
.blog-type04 .swiper-slide .date {
  margin: 0 0 12px 0;
  color: var(--text-sub-color);
  font-size: 1.2rem;
}
.blog-type01 ul li p,
.blog-type04 .swiper-slide p {
  margin: 0;
}
.blog-type04 .swiper-pagination {
  position: relative;
  margin: 30px 0 0 0;
}

.blog-type02 ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: var(--border-color) 1px dashed;
}
.blog-type02 ul li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.blog-type02 ul li .category {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 5px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  background: var(--main-color);
  z-index: 1;
}
.blog-type02 ul li .image {
  width: 300px;
}
.blog-type02 ul li .text {
  width: calc(100% - 320px);
}
.blog-type02 ul li h3.box-h3 {
  margin: 0 0 5px 0;
  font-size: 1.8rem;
}
.blog-type02 ul li .date {
  margin: 0 0 12px 0;
  color: var(--text-sub-color);
  font-size: 1.2rem;
}
.blog-type02 ul li p {
  margin: 0;
}

.blog-type03 ul li {
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: var(--border-color) 1px dashed;
}
.blog-type03 ul li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.blog-type03 ul li .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.blog-type03 ul li .category {
  order: 2;
  margin: 0 15px 0 0;
  padding: 2px 5px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  background: var(--main-color);
}
.blog-type03 ul li h3.box-h3 {
  order: 3;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.6;
}
.blog-type03 ul li .date {
  order: 1;
  margin: 0 15px 0 0;
  color: var(--text-sub-color);
}
.blog-type03 ul li p {
  order: 4;
  margin: 10px 0 0 0;
  width: 100%;
}

.blog-type01 .btn,
.blog-type02 .btn,
.blog-type03 .btn,
.blog-type04 .btn {
  text-align: center;
}
