@charset "UTF-8";
/* =================================
  Foundation
================================= */
/*
  Reset
————————————————————————————————————————— */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}
input[type="submit"], input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 0;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}
select::-ms-expand {
  display: none;
}
/*
/*
  Settings
————————————————————————————————————————— */
/*
Base
————————————————————————————————————————— */
body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  font-stretch: normal;
  color: #251E1C;
  line-height: 1;
  letter-spacing: 0.04em;
}
body p {
  font-size: 1rem;
  line-height: 1.8;
}
/* ===== WordPress 旧 [gallery] 対応 ===== */
.entry-content .gallery {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
/* 列数（WPが class で付ける） */
.entry-content .gallery-columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
.entry-content .gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.entry-content .gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.entry-content .gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.entry-content .gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.entry-content .gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.entry-content .gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.entry-content .gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.entry-content .gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
/* 旧テーマ互換（幅指定されることがあるので潰す） */
.entry-content .gallery-item {
  margin: 0 !important;
  width: auto !important;
}
.entry-content .gallery-item a {
  pointer-events: none;
}
.entry-content .gallery-icon a {
  display: block;
}
/* 画像が潰れたりはみ出したりするのを防ぐ */
.entry-content .gallery img {
  display: block;
  width: 100%;
  height: auto;
}
/* スマホで3列はキツいので自動で2→1に落とす */
@media (max-width: 900px) {
  .entry-content .gallery-columns-3, .entry-content .gallery-columns-4, .entry-content .gallery-columns-5, .entry-content .gallery-columns-6, .entry-content .gallery-columns-7, .entry-content .gallery-columns-8, .entry-content .gallery-columns-9 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .entry-content .gallery {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 991px) {
  /* ======================
	Base(991)
	====================== */
  body p {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
/* =================================
  Layout
================================= */
/*
  layout
————————————————————————————————————————— */
.l-main {
  flex: 1;
}
.l-main:not(.top) {
  margin-top: 82px;
}
.l-siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-wrapper {
  max-width: 1190px;
  margin: 0 auto;
}
.l-section {
  padding: 80px 0;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1199px) {
  /* ======================
    layout(1199)
    =========================*/
  .l-wrapper {
    max-width: 90%;
  }
}
@media screen and (max-width: 991px) {
  /* ======================
    layout(991)
    =========================*/
  .l-main:not(.top) {
    margin-top: 57px;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
    layout(768)
    =========================*/
  .l-section {
    padding: 60px 0;
  }
}
/* =================================
  Object
================================= */
/*
component
————————————————————————————————————————— */
.c-mainvisual {
  border-top: solid 2px #166ED6;
  border-bottom: solid 2px #166ED6;
  padding-top: 20px;
}
.c-mainvisual h1.c-title {
  margin-left: 0;
  margin-bottom: 20px;
}
.c-mainvisual .mv {
  width: 100%;
  height: 500px;
  position: relative;
}
.c-mainvisual .mv:after {
  content: "";
  display: inline-block;
  background: #251E1C;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-not404 .c-mainvisual .mv {
  background: url(../img/not404/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.c-breadcrumb {
  padding: 14px 5%;
  position: relative;
  z-index: 1;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.c-breadcrumb::-webkit-scrollbar {
  display: none;
}
.c-breadcrumb ul {
  display: flex;
}
.c-breadcrumb li {
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  margin-right: 6px;
  white-space: nowrap;
}
.c-breadcrumb li:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #251E1C;
  border-right: 1px solid #251E1C;
  transform: rotate(45deg);
  vertical-align: middle;
  margin: -2px 0 0 4px;
}
.c-breadcrumb li:last-child {
  margin: 0;
}
.c-breadcrumb li:last-child:after {
  display: none;
}
.c-breadcrumb a {
  color: #251E1C;
}
.c-link {
  display: block;
  width: 260px;
  margin-inline: auto;
  padding: 15px;
  border: 1px solid transparent;
  background-color: #166ED6;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease 0s;
  border-radius: 100vmax;
  margin-top: 45px;
}
.c-link.white {
  background: #fff;
  color: #166ED6;
  border: 1px solid #166ED6;
}
.c-link.white:hover {
  background: #166ED6;
  color: #fff;
  border: 1px solid #fff;
}
.c-link:hover {
  background-color: #fff;
  color: #166ED6;
  border-color: #166ED6;
}
h1.c-title {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  color: #C2D4E9;
  font-size: 3.75rem;
  line-height: 1.4;
  margin-bottom: 45px;
  position: relative;
  letter-spacing: 0.04em;
}
h1.c-title .ja {
  position: absolute;
  bottom: 6px;
  left: 0;
  font-weight: 500;
  font-size: 1.25rem;
  color: #166ED6;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
h1.c-title .ja::before {
  content: "";
  display: inline-block;
  background: #166ED6;
  width: 30px;
  height: 1px;
}
h2.c-title {
  font-size: 2.25rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 25px;
}
.c-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger {
  position: fixed;
  top: 3px;
  right: 5%;
  z-index: 50;
  width: 48px;
  height: 48px;
  margin: auto;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-hamburger:hover, .c-hamburger:focus {
  box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.5);
}
.c-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #166ED6;
  -webkit-transition: inherit;
  transition: inherit;
  transition: 0.35s ease-in-out;
}
.c-hamburger__line:before, .c-hamburger__line:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #166ED6;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}
.c-hamburger__line:before {
  top: -10px;
}
.c-hamburger__line:after {
  top: 10px;
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line {
  background-color: transparent;
  transform: translate(-50px, 0);
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:before, .c-hamburger[aria-expanded="true"] .c-hamburger__line:after {
  top: 0;
  background-color: #166ED6;
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:before {
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: translate(50px, 0) rotate(315deg);
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:after {
  -webkit-transform: rotate(-315deg);
  -ms-transform: rotate(-315deg);
  transform: translate(50px, 0) rotate(-315deg);
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
	component(991)
	====================== */
  .c-mainvisual .mv {
    height: 180px;
  }
  .c-link {
    width: 300px;
    padding: 15px 5%;
    font-size: 1rem;
    margin-top: 30px;
  }
  h1.c-title {
    font-size: 2.625rem;
    margin-bottom: 35px;
    letter-spacing: 0;
  }
  h1.c-title .ja {
    font-size: 1rem;
  }
  h2.c-title {
    font-size: 1.375rem;
    margin-bottom: 25px;
  }
}
/*
  footer
————————————————————————————————————————— */
.cta {
  background: #EEEFEF;
}
.cta h2.c-title {
  text-align: center;
}
.cta .flex {
  display: flex;
  max-width: 1200px;
  margin-inline: auto;
}
.cta .flex p {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 18px;
}
.cta .flex .c-link {
  font-weight: 700;
  white-space: nowrap;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  margin-inline: auto;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.cta .tel {
  width: 50%;
  padding: 40px 5%;
  border-right: solid 1px #fff;
}
.cta .tel .icon {
  text-align: center;
  margin-bottom: 10px;
}
.cta .tel .icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.cta .tel .c-link {
  font-size: 1.875rem;
  background: unset;
}
.cta .tel .c-link:hover {
  border: solid 1px #166ED6;
  color: #166ED6;
}
.cta .mail {
  width: 50%;
  padding: 40px 5%;
}
.cta .mail .icon {
  text-align: center;
  margin-bottom: 10px;
}
.cta .mail .icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.cta .mail .c-link {
  font-size: 1.375rem;
}
.footer_map iframe {
  width: 100%;
  height: 500px;
  vertical-align: bottom;
}
.p-footer {
  background: #D0E2F7;
  padding: 40px 0;
}
.p-footer .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.p-footer .left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.p-footer .logo {
  width: 100px;
}
.p-footer address h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
  white-space: nowrap;
}
.p-footer address p {
  font-size: 1rem;
  line-height: 1.6;
}
.p-footer .right {
  display: flex;
  flex-direction: column;
}
.p-footer .nav ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 0;
}
.p-footer .nav ul li a {
  font-size: 1rem;
  font-weight: 500;
  color: #251E1C;
  padding: 0 10px;
}
.copyrights {
  display: block;
  background: #166ED6;
  color: #fff;
  font-weight: 400;
  font-size: 0.75rem;
  text-align: center;
  padding: 12px 0;
}
.pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 6;
  width: 60px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  animation: fadeOut 0.4s forwards;
  transition: none;
}
.pageTop.is-show {
  animation: fadeIn 0.4s forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    pointer-events: none;
  }
  to {
    opacity: 1;
    pointer-events: auto;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    pointer-events: auto;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .cta .flex {
    display: block;
  }
  .cta .flex p {
    font-size: 0.875rem;
    margin-top: 15px;
  }
  .cta .flex .c-link {
    max-width: 300px;
    height: 45px;
    margin-top: 20px;
  }
  .cta .tel {
    width: 100%;
    padding: 0 30px 5%;
    border-right: none;
    border-bottom: solid 1px #fff;
  }
  .cta .tel .icon img {
    width: 30px;
    height: 30px;
  }
  .cta .tel .c-link {
    font-size: 1.5rem;
  }
  .cta .mail {
    width: 100%;
    padding: 30px 5% 0;
  }
  .cta .mail .icon img {
    width: 30px;
    height: 30px;
  }
  .cta .mail .c-link {
    font-size: 1rem;
  }
  .footer_map iframe {
    height: 300px;
  }
  .p-footer .flex {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .p-footer .left {
    flex-direction: column;
    gap: 20px;
  }
  .p-footer .logo {
    margin-inline: auto;
  }
  .p-footer address {
    text-align: center;
  }
  .p-footer .nav ul {
    justify-content: center;
  }
  .pageTop {
    bottom: 10px;
    right: 10px;
    width: 40px;
  }
}
/*
  header
————————————————————————————————————————— */
.p-header {
  padding: 20px 5%;
  background: #fff;
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-header .p-header__logo {
  width: 300px;
  position: relative;
  z-index: 15;
}
.p-header .p-header__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.p-header .p-header__item a {
  font-weight: 500;
  color: #251E1C;
  display: block;
}
.p-header .p-header__item.contact a {
  background: #166ED6;
  text-align: center;
  color: #fff;
  padding: 12px 40px;
  border: solid 1px #166ED6;
  transition: all 0.3s ease 0s;
}
.p-header .p-header__item.contact a:hover {
  background: #fff;
  color: #166ED6;
}
#p-globalMenuSp {
  width: 100%;
  height: 100vh;
  background: white;
  position: fixed;
  top: -120%;
  left: 0;
  z-index: -10;
  padding-top: 104px;
  padding-bottom: 40px;
  transition: all 0.3s;
  overflow: auto;
}
#p-globalMenuSp.is-active {
  top: 0;
  z-index: 8;
}
.p-globalMenuSp__list {
  width: 90%;
  margin-inline: auto;
  text-align: left;
  margin-bottom: 24px;
}
.p-globalMenuSp__item:last-child {
  margin-bottom: 0;
}
.p-globalMenuSp__item > a {
  font-weight: 500;
  font-size: 1rem;
  color: #251E1C;
  line-height: 1.6;
  padding: 16px 5%;
  display: block;
  border-bottom: solid 1px #E9E9E9;
  position: relative;
  transform: rotate(0.05deg);
}
.p-globalMenuSp__item a {
  font-weight: 500;
  font-size: 1rem;
  color: #251E1C;
  line-height: 1.6;
  padding: 16px 5%;
  display: block;
  border-bottom: solid 1px #E9E9E9;
  position: relative;
}
.p-globalMenuSp__item.contact {
  margin-top: 20px;
}
.p-globalMenuSp__item.contact a {
  background: #166ED6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  color: #fff;
}
.p-globalMenuSp__item.contact a img {
  width: 22px;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .p-header {
    padding: 15px 5%;
  }
  .p-header .p-header__logo {
    width: 220px;
    position: relative;
    z-index: 15;
  }
}
/*
  top
————————————————————————————————————————— */
.p-top__mainvisual {
  position: relative;
}
.p-top__mainvisual .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: 800px;
}
.p-top__mainvisual .hero {
  position: absolute;
  left: 5%;
  top: 55%;
  transform: translateY(-50%);
  z-index: 6;
}
.p-top__mainvisual .hero h1 {
  color: #fff;
  font-size: 7.5rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.p-top__mainvisual .hero h1 span {
  display: block;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.8;
  margin-top: 20px;
}
.p-top__mainvisual .hero h2 {
  opacity: 0.9;
  max-width: 700px;
  margin-top: 50px;
}
.p-top__news {
  background: #EEEFEF;
}
.p-top__news .category-filter__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-bottom: 50px;
}
.p-top__news .category-filter__list .js-news-tab {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 16px;
  color: #166ED6;
  border: solid 1px #166ED6;
  transition: all 0.3s ease 0s;
  background: unset;
  cursor: pointer;
}
.p-top__news .category-filter__list .js-news-tab.active {
  background: #166ED6;
  color: #fff;
}
.p-top__news .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
.p-top__news .list .list__item {
  background: #fff;
  padding: 20px;
  transition: opacity 0.2s;
}
.p-top__news .list .image img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}
.p-top__news .list .text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-top__news .list .date {
  color: #D0E2F7;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  display: inline-block;
}
.p-top__news .list .cate {
  display: inline-block;
  padding: 4px;
  text-align: center;
  border: solid 1px #166ED6;
  font-size: 1.125rem;
  color: #166ED6;
}
.p-top__news .list .title {
  color: #251E1C;
  font-size: 1.25rem;
  line-height: 1.5;
}
.p-top__company {
  position: relative;
  z-index: 2;
}
.p-top__company:after {
  content: "";
  display: inline-block;
  background: #166ED6;
  width: 100%;
  height: 85%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-top__company .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-top__company .head .c-link {
  margin: 0;
}
.p-top__company .bottom .c-link {
  display: none;
}
.p-top__company .text {
  margin-bottom: 40px;
}
.p-top__company h1.c-title {
  color: #458BDE;
  margin-left: 0;
}
.p-top__company h1.c-title .ja {
  color: #fff;
}
.p-top__company h1.c-title .ja::before {
  background: #fff;
}
.p-top__company h2.c-title {
  color: #fff;
}
.p-top__company p {
  color: #fff;
}
.p-top__product .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-top__product .flex .image {
  width: 40%;
}
.p-top__product .flex .text {
  width: 56%;
}
.p-top__product .flex .image {
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 4%;
}
.p-top__product h1.c-title {
  margin-left: 0;
}
.p-top__product .c-link {
  margin-left: 0;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .p-top__mainvisual .swiper-slide img {
    height: 500px;
  }
  .p-top__mainvisual .hero h1 {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.5;
  }
  .p-top__mainvisual .hero h1 span {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 10px;
  }
  .p-top__mainvisual .hero h2 {
    max-width: 280px;
    margin-top: 30px;
  }
  .p-top__news .category-filter__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }
  .p-top__news .category-filter__list .js-news-tab {
    padding: 10px;
  }
  .p-top__news .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-top__news .list .text {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .p-top__news .list .date {
    font-size: 0.75rem;
  }
  .p-top__news .list .cate {
    font-size: 1rem;
  }
  .p-top__news .list .title {
    font-size: 1.125rem;
  }
  .p-top__company:after {
    width: 100%;
    height: 100%;
  }
  .p-top__company .head {
    display: block;
  }
  .p-top__company .head .c-link {
    display: none;
  }
  .p-top__company .bottom .c-link {
    display: block;
  }
  .p-top__company .text {
    margin-bottom: 40px;
  }
  .p-top__company .image img {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
  }
  .p-top__company h1.c-title {
    color: #458BDE;
    margin-left: 0;
  }
  .p-top__company h1.c-title .ja {
    color: #fff;
  }
  .p-top__company h1.c-title .ja::before {
    background: #fff;
  }
  .p-top__company h2.c-title {
    color: #fff;
  }
  .p-top__company p {
    color: #fff;
  }
  .p-top__product .flex {
    flex-direction: column;
    gap: 30px;
  }
  .p-top__product .flex .image {
    width: 100%;
  }
  .p-top__product .flex .text {
    width: 100%;
  }
  .p-top__product .flex .image {
    margin-left: 0;
    margin-right: 0;
  }
  .p-top__product .c-link {
    margin-left: auto;
  }
}
/*
会社案内
————————————————————————————————————————— */
.p-company .c-mainvisual .mv {
  background: url(../img/company/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-company .attempt {
  position: relative;
  z-index: 2;
}
.p-company .attempt:after {
  content: "";
  display: inline-block;
  background: #166ED6;
  width: 100%;
  height: 85%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-company .attempt h2.c-title {
  color: #fff;
}
.p-company .attempt p {
  color: #fff;
}
.p-company .attempt .image {
  margin-top: 40px;
}
.p-company .group {
  /* input は非表示 */
  /* 矢印アイコン */
  /* コンテンツ部分 */
  /* 開いているときのスタイル */
}
.p-company .group .accordion {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.p-company .group .accordion-item {
  border: 1px solid #166ED6;
}
.p-company .group .accordion-input {
  display: none;
}
.p-company .group .accordion-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  background: #fff;
  transition: background-color 0.25s ease;
}
.p-company .group .accordion-label:hover {
  background: #D0E2F7;
}
.p-company .group .accordion-label span {
  flex: 1;
}
.p-company .group .accordion-label::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #166ED6;
  border-bottom: 2px solid #166ED6;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.p-company .group .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background: #fafafa;
  transition: max-height 0.35s ease, padding-top 0.35s ease, padding-bottom 0.35s ease;
}
.p-company .group .accordion-label {
  padding: 15px;
  font-size: 14px;
}
.p-company .group .accordion-content ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
.p-company .group .accordion-content ul li h3 {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #166ED6;
  font-weight: 700;
  margin-bottom: 10px;
}
.p-company .group .accordion-content ul li p {
  font-size: 0.875rem;
}
.p-company .group .accordion-input:checked + .accordion-label {
  background: #f3f7ff;
}
.p-company .group .accordion-input:checked + .accordion-label::after {
  transform: rotate(225deg);
  /* ↓ から ↑ へ */
}
.p-company .group .accordion-input:checked + .accordion-label + .accordion-content {
  max-height: 2000px;
  padding: 25px;
}
.p-company .office ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.p-company .office ul li a {
  display: block;
  padding: 15px;
  font-weight: 600;
  font-size: 1rem;
  color: #251E1C;
  line-height: 1.4;
  background: #fff;
  border: 1px solid #166ED6;
  transition: background-color 0.25s ease;
  aspect-ratio: 1.5;
}
.p-company .office ul li a:hover {
  background: #D0E2F7;
}
.p-company .office ul li a h3 {
  text-align: center;
  margin-top: 6px;
}
.p-company .office ul li .image img {
  aspect-ratio: 1.3333333333;
  object-fit: cover;
}
.p-company .office .tableWrap {
  padding-top: 70px;
}
.p-company .office .tableWrap h3 {
  font-weight: 700;
  margin-bottom: 20px;
}
.p-company .office .tableWrap table {
  width: 100%;
  border-collapse: collapse;
}
.p-company .office .tableWrap th, .p-company .office .tableWrap td {
  padding: 18px;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.6;
  vertical-align: middle;
  border: 1px solid rgba(51, 51, 51, 0.1);
}
.p-company .office .tableWrap th {
  width: 25%;
  background: #D0E2F7;
}
.p-company .office .tableWrap td {
  width: 75%;
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
	project(991)
	=========================*/
  .p-company .attempt:after {
    height: 100%;
  }
  .p-company .attempt .image img {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
  }
  .p-company .group .accordion {
    gap: 10px;
    margin-top: 30px;
  }
  .p-company .group .accordion-content {
    padding: 0 15px;
  }
  .p-company .group .accordion-content ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .p-company .group .accordion-content ul li h3 {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
  .p-company .group .accordion-content ul li p {
    font-size: 0.75rem;
  }
  .p-company .group .accordion-input:checked + .accordion-label + .accordion-content {
    padding: 15px;
  }
  .p-company .office {
    padding-top: 0;
  }
  .p-company .office ul {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-company .office ul li a {
    padding: 10px;
  }
  .p-company .office ul li a h3 {
    font-size: 0.875rem;
  }
  .p-company .office .tableWrap {
    padding-top: 50px;
  }
  .p-company .office .tableWrap th, .p-company .office .tableWrap td {
    display: block;
    width: 100%;
  }
}
/*
営業所紹介
————————————————————————————————————————— */
.p-office .c-mainvisual .mv {
  background-size: cover;
  background-position: center;
}
.p-office .flex {
  display: flex;
  gap: 20px 40px;
  margin-top: 50px;
  margin-bottom: 40px;
}
.p-office .flex .image, .p-office .flex .text {
  width: 50%;
}
.p-office .flex table, .p-office .flex th, .p-office .flex td {
  border: solid 1px #166ED6;
  vertical-align: middle;
}
.p-office .flex th, .p-office .flex td {
  padding: 18px;
  font-size: 0.875rem;
  line-height: 1.4;
}
.p-office .flex table {
  border-collapse: collapse;
  width: 100%;
}
.p-office .flex th {
  text-align: center;
  width: 25%;
}
.p-office .flex td {
  width: 75%;
}
.p-office .flex td a {
  color: #166ED6;
  text-decoration: underline;
}
.p-office .free {
  margin: 50px 0;
}
.p-office .free .gallery-caption {
  margin-top: 30px;
}
.p-office .free .gallery-caption h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
.p-office .free .gallery-caption h4 {
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}
.p-office .map iframe {
  width: 100%;
  height: 400px;
}
.p-office .contact .contact-tel a {
  font-weight: 700;
  font-size: 2.5rem;
  color: #166ED6;
}
.p-office .contact .p-contact__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin-top: 70px;
}
.p-office .contact .p-contact__table th {
  font-weight: 700;
  font-size: 1rem;
  color: #251E1C;
  letter-spacing: 1.4px;
  width: 100%;
  display: block;
  padding: 0 0 5px;
  vertical-align: top;
}
.p-office .contact .p-contact__table th span.required {
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-block;
  background: #166ED6;
  color: #fff;
  padding: 2px 10px;
  margin-right: 6px;
}
.p-office .contact .p-contact__table th span.any {
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-block;
  background: #EEEFEF;
  color: #251E1C;
  padding: 2px 10px;
  margin-right: 6px;
}
.p-office .contact .p-contact__table td {
  font-size: 1rem;
  width: 100%;
  display: block;
  padding: 0 0 40px;
  vertical-align: middle;
}
.p-office .contact .p-contact__table .form_style01 {
  font-size: 0.9375rem;
  width: 100%;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #fff;
  border: solid 2px #166ED6;
}
.p-office .contact .p-contact__table .form_style02 {
  font-size: 0.9375rem;
  width: 140px;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #fff;
  border: solid 2px #166ED6;
  resize: none;
}
.p-office .contact .p-contact__table .form_style03 {
  font-size: 0.9375rem;
  width: 100%;
  height: 220px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #fff;
  border: solid 2px #166ED6;
  resize: none;
}
.p-office .contact .p-contact__table .form_style04 {
  font-size: 0.9375rem;
  width: 140px;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #fff;
  border: solid 2px #166ED6;
  resize: none;
  text-align: center;
}
.p-office .contact .p-contact__table .wpcf7-list-item {
  display: block;
  margin: 0 0 0.75rem;
}
.p-office .contact input[type=submit] {
  width: 100%;
  max-width: 400px;
  border: solid 1px #166ED6;
}
.p-office .contact .plicy_text {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-office .contact .plicy_text a {
  color: #166ED6;
  position: relative;
}
.p-office .contact .plicy_text a:after {
  content: "";
  display: inline-block;
  background: url(../img/common/link_icon.png) no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.p-office .contact .recaptcha_text {
  text-align: center;
  font-weight: 500;
}
.p-office .event {
  background: #EEEFEF;
}
.p-office .event .events__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
.p-office .event .events__list .events__item {
  background: #fff;
  padding: 20px;
  transition: opacity 0.2s;
}
.p-office .event .events__list .image img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}
.p-office .event .events__list .text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-office .event .events__list .date {
  color: #D0E2F7;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  display: inline-block;
}
.p-office .event .events__list .cate {
  display: inline-block;
  padding: 4px;
  text-align: center;
  border: solid 1px #166ED6;
  font-size: 1.125rem;
  color: #166ED6;
}
.p-office .event .events__list .title {
  color: #251E1C;
  font-size: 1.25rem;
  line-height: 1.5;
}
.p-office .event .pagenation ul {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.p-office .event .pagenation li {
  margin-right: 10px;
}
.p-office .event .pagenation li:last-child {
  margin: 0;
}
.p-office .event .pagenation li .current {
  background: #166ED6;
  color: #fff;
}
.p-office .event .pagenation a, .p-office .event .pagenation span {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 25px;
  color: #595858;
  background: #C2D4E9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}
.p-office .event .pagenation .next, .p-office .event .pagenation .prev {
  font-size: 0.875rem;
  background: unset;
  width: unset;
  height: unset;
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
	project(991)
	=========================*/
  .p-office .flex {
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .p-office .flex .image, .p-office .flex .text {
    width: 100%;
  }
  .p-office .flex th, .p-office .flex td {
    padding: 10px;
  }
  .p-office .map iframe {
    height: 300px;
  }
  .p-office .contact {
    padding-top: 0;
  }
  .p-office .contact .contact-tel a {
    font-size: 1.875rem;
  }
  .p-office .contact .p-contact__table {
    margin-top: 50px;
  }
  .p-office .contact .p-contact__table th span.required {
    font-size: 0.75rem;
  }
  .p-office .contact .p-contact__table th span.any {
    font-size: 0.75rem;
  }
  .p-office .contact .p-contact__table td {
    padding: 0 0 30px;
  }
  .p-office .contact .plicy_text a {
    display: block;
  }
  .p-office .contact .recaptcha_text {
    text-align: left;
  }
  .p-office .event .events__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-office .event .events__list .text {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .p-office .event .events__list .date {
    font-size: 0.75rem;
  }
  .p-office .event .events__list .cate {
    font-size: 1rem;
  }
  .p-office .event .events__list .title {
    font-size: 1.125rem;
  }
}
/*
商品紹介
————————————————————————————————————————— */
.p-product .c-mainvisual .mv {
  background: url(../img/product/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-product .c-mainvisual .mv.product {
  background-size: contain;
}
.p-product h3 {
  font-weight: 700;
  font-size: 2.25rem;
  margin-top: 70px;
  margin-bottom: 40px;
}
.p-product .product-category-list .product-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
.p-product .product-category-list .product-cat-grid .product-cat-item {
  display: flex;
  flex-direction: column;
  border: solid 1px #D5E5F8;
}
.p-product .product-category-list .product-cat-grid .product-cat-item a {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.p-product .product-category-list .product-cat-grid .product-cat-thumb {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-product .product-category-list .product-cat-grid .product-cat-thumb img {
  pointer-events: none;
  width: auto;
  object-fit: contain;
  aspect-ratio: 1.7811816193;
}
.p-product .product-category-list .product-cat-grid .product-cat-name {
  color: #595858;
  font-size: 1rem;
  padding: 24px 14px 14px;
}
.p-product .product-category-list .product-cat-grid .product-cat-name:after {
  content: "〉";
  display: inline-block;
  margin-left: 10px;
}
.p-product .maker-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
.p-product .maker-list .maker-list__item {
  border: solid 1px #D5E5F8;
}
.p-product .maker-list .maker-list__item a {
  display: block;
  color: #595858;
  font-size: 1rem;
  padding: 14px;
}
.p-product .maker-list .maker-list__item a:after {
  content: "〉";
  display: inline-block;
  margin-left: 10px;
}
.p-product .product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
.p-product .product-list .product-item {
  border: solid 1px #D5E5F8;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1.6770833333;
}
.p-product .product-list .product-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1.6770833333;
}
.p-product .product-list .product-item a img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.p-product .product-list .product-item a .product-title:after {
  display: block !important;
}
.p-product .product-list .product-item .product-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #595858;
  font-size: 1rem;
  line-height: 1.4;
  padding: 10px;
  width: 60%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-product .product-list .product-item .product-title:after {
  content: "";
  display: inline-block;
  background: url(../img/common/link_icon02.png) no-repeat;
  background-size: contain;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-left: 10px;
  vertical-align: middle;
  display: none;
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
	project(991)
	=========================*/
  .p-product h3 {
    font-size: 1.375rem;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  .p-product .product-category-list .product-cat-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-product .maker-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .p-product .product-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
/*
お知らせ
————————————————————————————————————————— */
.p-news .c-mainvisual .mv {
  background: url(../img/news/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-news #news-filter {
  scroll-margin-top: 82px;
}
.p-news .category-filter__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-bottom: 50px;
}
.p-news .category-filter__list .js-news-tab {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 16px;
  color: #166ED6;
  border: solid 1px #166ED6;
  transition: all 0.3s ease 0s;
  background: unset;
  cursor: pointer;
}
.p-news .category-filter__list .js-news-tab.active {
  background: #166ED6;
  color: #fff;
}
.p-news .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
.p-news .list .list__item {
  background: #EEEFEF;
  padding: 20px;
  transition: opacity 0.2s;
}
.p-news .list .image img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}
.p-news .list .text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-news .list .date {
  color: #D0E2F7;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  display: inline-block;
}
.p-news .list .cate {
  display: inline-block;
  padding: 4px;
  text-align: center;
  border: solid 1px #166ED6;
  font-size: 1.125rem;
  color: #166ED6;
}
.p-news .list .title {
  color: #251E1C;
  font-size: 1.25rem;
  line-height: 1.5;
}
.p-news .pagenation ul {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.p-news .pagenation li {
  margin-right: 10px;
}
.p-news .pagenation li:last-child {
  margin: 0;
}
.p-news .pagenation li .current {
  background: #166ED6;
  color: #fff;
}
.p-news .pagenation a, .p-news .pagenation span {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 25px;
  color: #595858;
  background: #C2D4E9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}
.p-news .pagenation .next, .p-news .pagenation .prev {
  font-size: 0.875rem;
  background: unset;
  width: unset;
  height: unset;
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
	project(991)
	=========================*/
  .p-news .category-filter__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }
  .p-news .category-filter__list .js-news-tab {
    padding: 10px;
  }
  .p-news .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-news .list .text {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .p-news .list .date {
    font-size: 0.75rem;
  }
  .p-news .list .cate {
    font-size: 1rem;
  }
  .p-news .list .title {
    font-size: 1.125rem;
  }
  .p-news .pagenation ul {
    margin-top: 40px;
  }
}
/*
  お知らせ
————————————————————————————————————————— */
.p-single .c-mainvisual .mv {
  background: url(../img/news/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-single .titleWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.p-single .title {
  font-weight: 700;
  font-size: 2.25rem;
}
.p-single .cate {
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-block;
  padding: 10px;
  color: #166ED6;
  border: solid 1px #166ED6;
  text-align: center;
}
.p-single .content {
  margin-top: 60px;
}
.p-single .content span[style], .p-single .content p[style], .p-single .content div[style] {
  all: revert;
}
.p-single .content span[style*="font-size"], .p-single .content p[style*="font-size"], .p-single .content div[style*="font-size"] {
  font-size: inherit !important;
}
.p-single .content h1, .p-single .content h2, .p-single .content h3, .p-single .content h4, .p-single .content h5, .p-single .content h6 {
  font-weight: bold;
  margin-bottom: 1em;
}
.p-single .content h1 {
  font-size: 1.875rem;
}
.p-single .content h2 {
  font-size: 1.25rem;
}
.p-single .content h3 {
  font-size: 1.125rem;
}
.p-single .content b, .p-single .content strong {
  font-weight: bold;
}
.p-single .content i, .p-single .content em {
  font-style: italic;
}
.p-single .content u {
  text-decoration: underline;
}
.p-single .content blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
  color: #555;
}
.p-single .content span[style], .p-single .content div[style], .p-single .content p[style] {
  all: revert;
}
.p-single .content img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.p-single .content ul {
  list-style: disc inside;
  margin-left: 1em;
  margin-bottom: 1em;
}
.p-single .content ol {
  list-style: decimal inside;
  margin-left: 1em;
  margin-bottom: 1em;
}
.p-single .content p {
  margin-bottom: 1em;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .p-single .meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .p-single .meta .cate {
    font-size: 0.875rem;
  }
  .p-single .title {
    font-size: 1.875rem;
    line-height: 1.6;
  }
  .p-single .content {
    margin-top: 40px;
  }
  .p-single .content h1 {
    font-size: 1.5rem;
  }
  .p-single .content h2 {
    font-size: 1.25rem;
  }
  .p-single .content h3 {
    font-size: 1.125rem;
  }
}
/*
  イベント
————————————————————————————————————————— */
.p-event .c-mainvisual .mv {
  background: url(../img/event/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-event .titleWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.p-event .title {
  font-weight: 700;
  font-size: 2.25rem;
}
.p-event .cate {
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-block;
  padding: 10px;
  color: #166ED6;
  border: solid 1px #166ED6;
  text-align: center;
}
.p-event .content {
  margin-top: 60px;
}
.p-event .content span[style], .p-event .content p[style], .p-event .content div[style] {
  all: revert;
}
.p-event .content span[style*="font-size"], .p-event .content p[style*="font-size"], .p-event .content div[style*="font-size"] {
  font-size: inherit !important;
}
.p-event .content h1, .p-event .content h2, .p-event .content h3, .p-event .content h4, .p-event .content h5, .p-event .content h6 {
  font-weight: bold;
  margin-bottom: 1em;
}
.p-event .content h1 {
  font-size: 1.875rem;
}
.p-event .content h2 {
  font-size: 1.25rem;
}
.p-event .content h3 {
  font-size: 1.125rem;
}
.p-event .content b, .p-event .content strong {
  font-weight: bold;
}
.p-event .content i, .p-event .content em {
  font-style: italic;
}
.p-event .content u {
  text-decoration: underline;
}
.p-event .content blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
  color: #555;
}
.p-event .content span[style], .p-event .content div[style], .p-event .content p[style] {
  all: revert;
}
.p-event .content img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.p-event .content ul {
  list-style: disc inside;
  margin-left: 1em;
  margin-bottom: 1em;
}
.p-event .content ol {
  list-style: decimal inside;
  margin-left: 1em;
  margin-bottom: 1em;
}
.p-event .content p {
  margin-bottom: 1em;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .p-event .meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .p-event .meta .cate {
    font-size: 0.875rem;
  }
  .p-event .title {
    font-size: 1.875rem;
    line-height: 1.6;
  }
  .p-event .content {
    margin-top: 40px;
  }
  .p-event .content h1 {
    font-size: 1.5rem;
  }
  .p-event .content h2 {
    font-size: 1.25rem;
  }
  .p-event .content h3 {
    font-size: 1.125rem;
  }
}
/*
  お問い合わせ
————————————————————————————————————————— */
.p-contact .c-mainvisual .mv {
  background: url(../img/contact/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-contact .p-contact__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.p-contact .p-contact__table th {
  font-weight: 700;
  font-size: 1rem;
  color: #166ED6;
  letter-spacing: 1.4px;
  width: 25%;
  padding: 0 0 40px;
  vertical-align: top;
}
.p-contact .p-contact__table th span {
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-block;
  background: #166ED6;
  color: #fff;
  padding: 2px 10px;
  margin-left: 6px;
}
.p-contact .p-contact__table td {
  font-size: 1rem;
  width: 75%;
  padding: 0 0 40px 47px;
  vertical-align: middle;
}
.p-contact .p-contact__table .form_style01 {
  font-size: 0.9375rem;
  width: 100%;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #f1f1f1;
}
.p-contact .p-contact__table .form_style02 {
  font-size: 0.9375rem;
  width: 140px;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #f1f1f1;
  resize: none;
}
.p-contact .p-contact__table .form_style03 {
  font-size: 0.9375rem;
  width: 100%;
  height: 220px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #f1f1f1;
  resize: none;
}
.p-contact .p-contact__table .form_style04 {
  font-size: 0.9375rem;
  width: 140px;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #D0E2F7;
  resize: none;
  text-align: center;
}
.p-contact .p-contact__table .wpcf7-list-item {
  display: block;
  margin: 0 0 0.75rem;
}
.p-contact input[type=submit] {
  width: 100%;
  max-width: 400px;
  border: solid 1px #166ED6;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .p-contact .p-contact__table th {
    letter-spacing: 1px;
    width: 100%;
    padding: 0 0 10px;
    display: block;
  }
  .p-contact .p-contact__table td {
    width: 100%;
    padding: 0 0 20px;
    display: block;
  }
}
/*
  プライバシーポリシー
————————————————————————————————————————— */
.p-privacypolicy .c-mainvisual .mv {
  background: url(../img/privacypolicy/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-privacypolicy .content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-privacypolicy .box h2 {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 10px;
}
.p-privacypolicy .box p {
  font-size: 1rem;
  line-height: 1.8;
}
.p-privacypolicy .box ul {
  margin-top: 10px;
  padding-left: 20px;
}
.p-privacypolicy .box ul li {
  position: relative;
  list-style-type: disc;
  font-size: 1rem;
  line-height: 1.8;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .p-privacypolicy .content {
    gap: 30px;
  }
  .p-privacypolicy .box h2 {
    font-size: 1.25rem;
  }
}
/*
  utillity
————————————————————————————————————————— */
.u-screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}
.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.u-sp-none992 {
  display: none;
}
.u-sp-none768 {
  display: none;
}
.u-sp-none576 {
  display: none;
}
.u-m-auto {
  margin: 0 auto;
}
.u-display-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.u-position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.u-fade {
  opacity: 0;
  transition: all 1s ease;
}
.u-fade.is-active {
  opacity: 1;
  transform: none;
}
.u-fade-up {
  transform: translate(0, 50px);
}
.u-fade-lr {
  transform: translate(-100px, 0);
}
.u-fade-rl {
  transform: translate(100px, 0);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (min-width: 992px) {
  /* ======================
    utility(992)
    =========================*/
  .u-sp-none992 {
    display: block;
  }
  .u-pc-none992 {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
    cursor: none;
  }
}
@media screen and (min-width: 768px) {
  /* ======================
    utility(768)
    =========================*/
  .u-sp-none768 {
    display: block;
  }
  .u-pc-none768 {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  /* ======================
    utility(576)
    =========================*/
  .u-sp-none576 {
    display: block;
  }
  .u-pc-none576 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-visuallyHidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
  }
}
