@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  /*  vertical-align: middle;
    display: block;*/
  vertical-align: bottom;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

html, body {
  background: #F4F4F4;
  overflow-x: hidden;
}

body {
  background: #f7f7f7;
  font-family: "Noto sans JP", "Montserrat", sans-serif;
  color: #333;
  overflow: hidden;
}

p {
  font-size: 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
  color: var(--black, #333);
}
@media screen and (min-width: 1280px) {
  p {
    font-size: 18px;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: var(--black, #333);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.l-footer {
  background: var(--black, #333);
  color: #fff;
}

.l-header {
  position: fixed;
  width: 100%;
  z-index: 1001;
}

.l-footer__inner {
  padding: 47px 20px;
}
@media screen and (min-width: 1280px) {
  .l-footer__inner {
    max-width: 1080px;
    margin: 0 auto;
  }
}

.l-fv {
  margin-top: 95px;
  height: calc(76vh - 95px);
}
@media screen and (min-width: 1280px) {
  .l-fv {
    margin-top: 115px;
    height: calc(100vh - 115px);
  }
}

.l-inner {
  padding: 0 20px;
}
@media screen and (min-width: 1280px) {
  .l-inner {
    max-width: 1080px;
    margin: 0 auto;
  }
}

.l-inner__fv {
  padding: 0 20px;
}
@media screen and (min-width: 1280px) {
  .l-inner__fv {
    max-width: 1080px;
    margin: auto;
    padding: 0;
  }
}

.c-btn {
  background: #ce1d3f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0px 8px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: var(--white, #FFF);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
  max-width: 555px;
  margin: 0 auto;
}
.c-btn:hover img {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.c-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.c-btn a span {
  color: var(--white, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
}
.c-btn a img {
  margin-left: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-section__ttl p {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 24px */
  letter-spacing: 0.6px;
}
@media screen and (min-width: 1280px) {
  .c-section__ttl p {
    font-size: 15px;
    letter-spacing: 0.75px;
  }
}
.c-section__ttl h2 {
  color: var(--black, #333);
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%; /* 96px */
}
@media screen and (min-width: 1280px) {
  .c-section__ttl h2 {
    font-size: 64px;
  }
}

.c-section__ttl.animate {
  -webkit-animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.c-section {
  padding: 80px 0;
}
@media screen and (min-width: 1280px) {
  .c-section {
    padding: 112px 0;
  }
}

.c-service__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.c-service__ttl span {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
  padding-left: 16px;
}
@media screen and (min-width: 1280px) {
  .c-service__ttl span {
    font-size: 32px;
  }
}

.p-about__contents {
  padding-bottom: 80px;
}
@media screen and (min-width: 1280px) {
  .p-about__contents {
    padding-bottom: 96px;
  }
}

.p-aboutMain {
  background: var(--bg---grey, #F7F7F7);
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1280px) {
  .p-aboutMain {
    padding-top: 112px;
    padding-bottom: 112px;
  }
}

.p-about__items {
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .p-about__items {
    margin-top: 72px;
  }
}

.p-about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 3px;
  border: 1px solid var(--line---grey, #D4D4D4);
  background: var(--bg---grey, #F7F7F7);
}
.p-about__item:not(:first-child) {
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .p-about__item {
    padding: 40px;
  }
}

.p-about__itemDetail {
  padding-left: 16px;
  border-left: 1px solid var(--red, #CE1D3F);
}
@media screen and (min-width: 1280px) {
  .p-about__itemDetail {
    padding-left: 0;
    border-left: none;
    display: grid;
    grid-template-columns: 28% 72%;
    width: 100%;
  }
}

.p-about__ttl {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 0.9px;
}
@media screen and (min-width: 1280px) {
  .p-about__ttl {
    font-size: 20px;
  }
}

.p-about__subTtl {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 1280px) {
  .p-about__subTtl {
    padding-left: 40px;
    border-left: 1px solid var(--red, #CE1D3F);
    font-size: 16px;
  }
}

.p-actionPlan__contents {
  background: var(--bg---grey, #F7F7F7);
  padding-top: 64px;
}
@media screen and (min-width: 1280px) {
  .p-actionPlan__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 72px;
  }
}

.p-actionPlan__item {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-actionPlan__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-actionPlan__item:first-child {
    width: 20%;
  }
}
@media screen and (min-width: 1280px) {
  .p-actionPlan__item:last-child {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1280px) {
  .p-actionPlan__item:not(:first-child) {
    margin-left: 140px;
  }
}

.p-actionPlan__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 0px 16px 12px 16px;
}
@media screen and (min-width: 1280px) {
  .p-actionPlan__row {
    padding: 0px 16px 20px 16px;
  }
}
.p-actionPlan__row:not(:first-child) {
  padding-top: 12px;
}
@media screen and (min-width: 1280px) {
  .p-actionPlan__row:not(:first-child) {
    padding: 20px 16px;
  }
}

@media screen and (min-width: 1280px) {
  .p-actionPlan__ttl {
    font-size: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .p-actionPlan__text {
    font-size: 16px;
  }
}

.p-contact__items {
  margin-top: 20px;
}
@media screen and (min-width: 1280px) {
  .p-contact__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-contact__item {
  margin-top: 40px;
}

.p-contact__text {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
}

.p-contactForm__group input {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  border: none;
}
@media screen and (min-width: 1280px) {
  .p-contactForm__group input {
    font-size: 15px;
  }
}
.p-contactForm__group textarea {
  width: 100%;
  padding: 16px;
  max-height: 210px;
  font-size: 14px;
  border: none;
}
@media screen and (min-width: 1280px) {
  .p-contactForm__group textarea {
    font-size: 15px;
  }
}
.p-contactForm__group:not(:first-child) {
  margin-top: 12px;
}
@media screen and (min-width: 1280px) {
  .p-contactForm__group:not(:first-child) {
    margin-top: 20px;
  }
}

.p-contactForm__ttl p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 1280px) {
  .p-contactForm__ttl p {
    font-size: 16px;
  }
}

.p-footerContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-bottom: 0.5px solid var(--line---grey, #D4D4D4);
}

.p-footerYoutube {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .p-footerYoutube {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-footerYoutube__text {
  color: var(--white, #FFF);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 10px */
}
@media screen and (min-width: 1280px) {
  .p-footerYoutube__text {
    margin-left: 12px;
    font-size: 16px;
  }
}

.p-footerNav__wrap {
  margin-top: 24px;
}

.p-footerNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 12px 40px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1280px) {
  .p-footerNav__list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

.p-footerNav__link {
  color: var(--white, #FFF);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 26px */
  letter-spacing: 0.39px;
}
@media screen and (min-width: 1280px) {
  .p-footerNav__link {
    font-size: 15px;
  }
}

.p-footerRight {
  margin-top: 24px;
}

.p-footerRight__text {
  color: var(--line---grey, #D4D4D4);
  text-align: left;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 200%; /* 24px */
}
@media screen and (min-width: 1280px) {
  .p-footerRight__text {
    text-align: right;
    font-size: 14px;
  }
}

.p-headerBanner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--black, #333);
}
@media screen and (min-width: 1280px) {
  .p-headerBanner {
    padding: 6px 98px;
  }
}

.p-headerBanner__text {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 24px */
  letter-spacing: 0.6px;
  text-align: center;
}

.p-headerMain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 16px 14px 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-bottom: 1px solid var(--line---grey, #D4D4D4);
  background: #fff;
}
@media screen and (min-width: 1280px) {
  .p-headerMain {
    padding: 0px 0px 0px 98px;
    height: 80px;
  }
}

.p-headerNav__wrap {
  margin-left: auto;
}
@media screen and (min-width: 1280px) {
  .p-headerNav__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

@media screen and (min-width: 1280px) {
  .p-headerNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: auto;
    height: 100%;
  }
}

.p-headerNav__list {
  display: none;
}
@media screen and (min-width: 1280px) {
  .p-headerNav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .p-headerContact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
}

.p-headerYoutube {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .p-headerYoutube {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 91px;
  }
}

.p-headerYoutube__text {
  color: var(--black, #333);
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 10px */
}
@media screen and (min-width: 1280px) {
  .p-headerYoutube__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%; /* 32px */
    margin-left: 12px;
  }
}

.p-headerContact__text {
  display: none;
}
@media screen and (min-width: 1280px) {
  .p-headerContact__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 70px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    background: var(--red, #CE1D3F);
    color: var(--white, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 32px */
    letter-spacing: 0.8px;
    margin-left: 16px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .p-headerContact__text:hover {
    background: #E23A5A;
  }
}

.p-member__contents {
  background: var(--bg---grey, #F7F7F7);
  padding-bottom: 80px;
}
@media screen and (min-width: 1280px) {
  .p-member__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0;
    padding-top: 72px;
  }
}

.p-member__item {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-member__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-member__item:first-child {
    width: 20%;
  }
}
@media screen and (min-width: 1280px) {
  .p-member__item:last-child {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1280px) {
  .p-member__item:not(:first-child) {
    margin-left: 140px;
  }
}

.p-memberPresidents__item {
  margin-top: 24px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .p-memberPresidents__item {
    margin-top: 0;
  }
}
.p-memberPresidents__item img {
  aspect-ratio: 341/411;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .p-memberPresidents__item img {
    width: 100%;
  }
}
.p-memberPresidents__item:not(:first-child) {
  margin-left: 0px;
}
@media screen and (min-width: 1280px) {
  .p-memberPresidents__item:not(:first-child) {
    margin-left: 40px;
  }
}

.p-memberPresidents__position {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 30px */
  letter-spacing: 0.75px;
}

.p-memberPresidents__name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 36px */
  letter-spacing: 0.9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .p-memberPresidents__name {
    font-size: 20px;
  }
}
.p-memberPresidents__name span {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 24px */
  letter-spacing: 0.6px;
}

.p-memberPresidents__text {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 1280px) {
  .p-memberPresidents__text {
    font-size: 16px;
  }
}

.p-memberPresidents__historyTtl {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 1280px) {
  .p-memberPresidents__historyTtl {
    font-size: 15px;
  }
}

.p-memberPresidents__history {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 1280px) {
  .p-memberPresidents__history {
    font-size: 15px;
  }
}
.p-memberPresidents__history li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.p-news__contents {
  margin-top: 20px;
}

.p-news__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 8px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-newsTab__menu {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 1280px) {
  .p-newsTab__menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-newsTab__menuItem {
  text-align: center;
  font-size: 14px;
}
.p-newsTab__menuItem a {
  padding: 12px 0px;
  display: block;
}
@media screen and (min-width: 1280px) {
  .p-newsTab__menuItem a {
    padding: 12px 24px;
  }
}
@media screen and (min-width: 1280px) {
  .p-newsTab__menuItem {
    font-size: 16px;
  }
}
.p-newsTab__menuItem:first-child {
  width: 100px;
}
@media screen and (min-width: 1280px) {
  .p-newsTab__menuItem:first-child {
    width: 150px;
  }
}
.p-newsTab__menuItem:first-child a {
  border-radius: 2px;
  background: var(--red, #CE1D3F);
  color: var(--white, #FFF);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  padding: 12px 24px;
}
.p-newsTab__menuItem:not(:first-child) {
  margin-right: 24px;
}
@media screen and (min-width: 1280px) {
  .p-newsTab__menuItem:not(:first-child) {
    margin-right: 0;
  }
}
.p-newsTab__menuItem:nth-child(2) {
  margin-left: 24px;
}
@media screen and (min-width: 1280px) {
  .p-newsTab__menuItem:nth-child(2) {
    margin-left: 0;
  }
}

.p-newsTab__menuItem a.is-active {
  position: relative;
}
.p-newsTab__menuItem a.is-active::after {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  background-color: var(--red, #CE1D3F);
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .p-newsTab__menuItem a.is-active::after {
    width: 100px;
  }
}

.p-news__articles {
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .p-news__articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.p-news__article {
  border-radius: 3px 3px 0px 0px;
}

.p-news__articleTop--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-news__articleDetails {
  padding: 20px 16px;
}

.p-news__articleImage {
  position: relative;
}
.p-news__articleImage:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* 黒の半透明オーバーレイ（透過率20%） */
  pointer-events: none;
}
.p-news__articleImage img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-news__articleTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.p-news__articleDate {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 30px */
  letter-spacing: 0.75px;
}

.p-news__articleTab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 24px */
  letter-spacing: 0.6px;
  border-radius: 3px;
  border: 1px solid var(--red, #CE1D3F);
  color: var(--red, #CE1D3F);
  margin-left: 16px;
}

.p-news__articleText {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 27px */
  letter-spacing: 0.75px;
  margin-top: 16px;
}

.p-overview__contents {
  background: var(--bg---grey, #F7F7F7);
}
@media screen and (min-width: 1280px) {
  .p-overview__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-overview__item {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-overview__item:first-child {
    width: 30%;
  }
}
@media screen and (min-width: 1280px) {
  .p-overview__item:not(:first-child) {
    margin-left: 140px;
  }
}

.p-overview__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 0px 16px 16px 16px;
  gap: 53px;
  border-bottom: 0.5px solid var(--line---grey, #D4D4D4);
}
@media screen and (min-width: 1280px) {
  .p-overview__row {
    gap: 0;
  }
}
.p-overview__row:not(:first-child) {
  padding-top: 16px;
}

.p-overview__ttl {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
  width: 30%;
}
@media screen and (min-width: 1280px) {
  .p-overview__ttl {
    font-size: 16px;
  }
}

.p-overview__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
  width: 70%;
}
@media screen and (min-width: 1280px) {
  .p-overview__text {
    font-size: 16px;
  }
}

.p-section__subTtl {
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .p-section__subTtl {
    margin-top: 32px;
  }
}

.p-service__contents {
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .p-service__contents {
    margin-top: 72px;
  }
}

.p-service__content:not(:first-child) {
  margin-top: 64px;
}
@media screen and (min-width: 1280px) {
  .p-service__content:not(:first-child) {
    margin-top: 88px;
  }
}

.p-service__items {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-service__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-service__item {
  border-radius: 3px;
  border: 1px solid var(--deep-grey, #555);
  background: var(--white, #FFF);
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-service__item {
    margin-top: 64px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}

.p-service__itemTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-bottom: 1px solid var(--deep-grey, #555);
  background: var(--grey, #6D6D6D);
  color: var(--white, #FFF);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 0.9px;
}

.p-service__itemText {
  color: var(--black, #333);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
  padding: 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-bottom: 1px dashed var(--deep-grey, #555);
}
@media screen and (min-width: 1280px) {
  .p-service__itemText {
    padding: 32px;
    font-size: 16px;
  }
}

.p-service__itemLists {
  padding: 12px 16px;
}
@media screen and (min-width: 1280px) {
  .p-service__itemLists {
    padding: 24px;
  }
}

.p-service__itemList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-service__itemList span {
  color: var(--black, #333);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 1280px) {
  .p-service__itemList span {
    margin-left: 12px;
    font-size: 16px;
  }
}

.p-service__details {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-service__details {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-service__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #fff;
  border-radius: 3px;
}
.p-service__detail img {
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .p-service__detail {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    padding: 32px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.p-service__detail:not(:first-child) {
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .p-service__detail:not(:first-child) {
    margin-top: 0;
  }
}
.p-service__detail:last-child {
  grid-column-start: 1;
  grid-column-end: 4;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (min-width: 1280px) {
  .p-service__detail:last-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-service__detail:last-child img {
  margin: 0;
}

.p-service__detailTtl {
  color: var(--red, #CE1D3F);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.9px;
  margin-top: 16px;
}
@media screen and (min-width: 1280px) {
  .p-service__detailTtl {
    font-size: 20px;
  }
}

.p-service__detailText {
  color: var(--black, #333);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 1280px) {
  .p-service__detailText {
    font-size: 16px;
  }
}

.p-service__detailLast--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1280px) {
  .p-service__detailLast--item:not(:first-child) {
    margin-left: 56px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.p-service__detailList {
  margin: 8px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1280px) {
  .p-service__detailList img {
    margin: 0;
  }
}

.p-service__detailList span {
  color: var(--black, #333);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 1280px) {
  .p-service__detailList span {
    font-size: 16px;
  }
}

.p-service__detailLists {
  margin-right: auto;
}
@media screen and (min-width: 1280px) {
  .p-service__detailLists {
    margin-right: 0;
  }
}
.p-service__detailLists span {
  padding-left: 8px;
}

.p-topContact {
  background: #fff;
}

@media screen and (min-width: 1280px) {
  .p-topContact__contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.p-topContact__item:not(:first-child) {
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .p-topContact__item:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-topContact__address {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
  width: 100%;
  text-align: left;
}

.p-topContact__map {
  position: relative;
  padding-bottom: 76.25%; /* 16:9アスペクト比 */
  height: 0;
  overflow: hidden;
  margin-top: 24px;
}
.p-topContact__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-topNews__contents {
  margin-top: 42px;
}
@media screen and (min-width: 1280px) {
  .p-topNews__contents {
    margin-top: 72px;
  }
}

.p-topNews__item {
  border-bottom: 0.5px solid var(--line---grey, #D4D4D4);
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-topNews__item:hover {
  opacity: 0.7;
}
.p-topNews__item:not(:first-child) {
  padding: 16px 0;
}
@media screen and (min-width: 1280px) {
  .p-topNews__item:not(:first-child) {
    padding: 32px 0;
  }
}
.p-topNews__item:first-child {
  padding-bottom: 16px;
}
@media screen and (min-width: 1280px) {
  .p-topNews__item:first-child {
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .p-topNews__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-topNews__itemRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-topNews__itemTime {
  color: var(--deep-grey, #555);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 24px */
  letter-spacing: 0.6px;
}
@media screen and (min-width: 1280px) {
  .p-topNews__itemTime {
    font-size: 15px;
  }
}

.p-topNews__itemTab {
  margin-left: 16px;
  display: inline-block;
  padding: 0px 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  border: 1px solid var(--red, #CE1D3F);
  color: var(--red, #CE1D3F);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 24px */
  letter-spacing: 0.6px;
}
@media screen and (min-width: 1280px) {
  .p-topNews__itemTab {
    font-size: 15px;
    margin-left: 32px;
  }
}

.p-topNews__itemText {
  margin-top: 18px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 1280px) {
  .p-topNews__itemText {
    margin-top: 0;
    margin-left: 32px;
    font-size: 16px;
    max-width: 500px;
  }
}

.p-topReason__contents {
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .p-topReason__contents {
    margin-top: 72px;
  }
}

.p-topReason__items {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-topReason__items {
    margin-top: 72px;
  }
}

.p-topReason__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  border-radius: 3px;
}
@media screen and (min-width: 1280px) {
  .p-topReason__item {
    display: grid;
    grid-template-columns: 30% 70%;
  }
}
.p-topReason__item:not(:first-child) {
  margin-top: 24px;
}

.p-topReason__itemTtl {
  color: var(--deep-grey, #555);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%; /* 36px */
  letter-spacing: 0.9px;
}
@media screen and (min-width: 1280px) {
  .p-topReason__itemTtl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 36px */
    letter-spacing: 1px;
  }
}
.p-topReason__itemTtl span {
  color: var(--red, #CE1D3F);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.9px;
  margin-left: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.p-topReason__itemText {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
  margin-top: 12px;
  padding-left: 38px;
}
@media screen and (min-width: 1280px) {
  .p-topReason__itemText {
    margin-top: 0;
    font-size: 16px;
    padding-left: 0;
  }
}

.p-topService {
  background: #fff;
}

.p-topService__contents {
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .p-topService__contents {
    margin-top: 72px;
  }
}

.p-topService__services {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.p-topService__service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 3px;
  border: 1px solid var(--line---grey, #D4D4D4);
  background: var(--bg---grey, #F7F7F7);
}
.p-topService__service:not(:first-child) {
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .p-topService__service {
    padding: 39px;
  }
}

.p-topService__serviceDetail {
  border-left: 1px solid var(--red, #CE1D3F);
  padding-left: 16px;
}
@media screen and (min-width: 1280px) {
  .p-topService__serviceDetail {
    display: grid;
    grid-template-columns: 36.55555% 63.44444%;
    width: 100%;
    border-left: none;
    padding-left: 0;
  }
}

.p-topService__serviceTtl {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 0.9px;
}
@media screen and (min-width: 1280px) {
  .p-topService__serviceTtl {
    font-size: 20px;
    letter-spacing: 1px;
  }
}

.p-topService__serviceDesc {
  margin-top: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 1280px) {
  .p-topService__serviceDesc {
    margin-top: 0;
    padding-left: 40px;
    border-left: 1px solid var(--red, #CE1D3F);
    font-size: 16px;
  }
}

.p-topService__item:not(:first-child) {
  margin-top: 64px;
}
@media screen and (min-width: 1280px) {
  .p-topService__item:not(:first-child) {
    margin-top: 88px;
  }
}

.p-topService__lists {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-topService__lists {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 0 22px;
  }
}

.p-topService__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: 1px solid var(--red, #CE1D3F);
}
@media screen and (min-width: 1280px) {
  .p-topService__list {
    border-left: none;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .p-topService__list img {
    margin: 0 auto;
  }
}
.p-topService__list:not(:first-child) {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-topService__list:not(:first-child) {
    margin-top: 0;
    border-left: 1px solid #d4d4d4;
    padding-left: 22px;
  }
}

.p-topService__listTtl {
  margin-top: 16px;
  color: var(--red, #CE1D3F);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.9px;
}
@media screen and (min-width: 1280px) {
  .p-topService__listTtl {
    margin-top: 0;
  }
}

.p-topService__listText {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}

.p-topWork {
  background: #fff;
}

.p-topWork__contents {
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .p-topWork__contents {
    margin-top: 72px;
  }
}

.p-topWork__subTtl {
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
}

.p-topWork__items {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-topWork__items {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0 40px;
  }
}

.p-topWork__item {
  display: block;
}
@media screen and (min-width: 1280px) {
  .p-topWork__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 12px;
  }
}
.p-topWork__item:not(:first-child) {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .p-topWork__item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-topWork__item:nth-child(n+3) {
    margin-top: 40px;
  }
}

.p-topWork__item--youtubeWrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9の比率 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.p-topWork__item--youtubeWrap:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* 黒の半透明オーバーレイ（透過率20%） */
  pointer-events: none;
}
.p-topWork__item--youtubeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-topWork__item--youtubeWrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-topWork__itemTab {
  margin-top: 12px;
  display: inline-block;
  padding: 2px 20.938px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.963px;
  border: 0.654px solid var(--red, #CE1D3F);
  color: var(--red, #CE1D3F);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 24px */
  letter-spacing: 0.6px;
}
@media screen and (min-width: 1280px) {
  .p-topWork__itemTab {
    margin-top: 0;
    font-size: 15px;
    width: 210px;
    text-align: center;
  }
}

.p-topWork__itemText {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 27px */
  letter-spacing: 0.75px;
  margin-top: 5px;
}

.p-singleWork {
  min-height: 100vh;
  padding: 80px 0;
  margin-top: 95px;
}
@media screen and (min-width: 1280px) {
  .p-singleWork {
    margin-top: 115px;
    padding: 112px 0;
  }
}

.p-singlePost {
  min-height: 100vh;
  padding: 80px 0;
  margin-top: 95px;
}
@media screen and (min-width: 1280px) {
  .p-singlePost {
    margin-top: 115px;
    padding: 112px 0;
  }
}

.p-thanks {
  min-height: 100vh;
  padding: 80px 0;
  margin-top: 95px;
}
@media screen and (min-width: 1280px) {
  .p-thanks {
    margin-top: 115px;
    padding: 112px 0;
  }
}

.swiper {
  height: inherit;
  width: 100%;
  position: relative;
}

.swiper-wrapper {
  height: inherit;
}

.swiper-slide {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-pagination {
  position: absolute;
  left: 5% !important;
  bottom: 20% !important;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  .swiper-pagination {
    position: absolute;
    top: 80% !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100% !important;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 1080px;
  }
}

.swiper-pagination-bullet {
  background: #fff;
  width: 16px;
  height: 16px;
  height: 16px;
  opacity: 1;
  border: 1px solid #d4d4d4;
}

.swiper-pagination-bullet-active {
  position: relative;
}
.swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #ce1d3f;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slide-1 {
  background: url("../../public/images/fv1-sp.png") no-repeat;
  background-size: 250px;
  background-position: right -20% bottom 50%;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .slide-1 {
    background: none;
  }
}

.slide-2 {
  background: url("../../public/images/fv2-sp.png") no-repeat;
  background-size: 250px;
  background-position: right -20% bottom 50%;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .slide-2 {
    background: none;
  }
}

.slide-3 {
  background: url("../../public/images/fv3-sp.png") no-repeat;
  background-size: 250px;
  background-position: right -20% bottom 50%;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .slide-3 {
    background: none;
  }
}

.slide-4 {
  background: url("../../public/images/fv4-sp.png") no-repeat;
  background-size: 250px;
  background-position: right -20% bottom 50%;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .slide-4 {
    background: none;
  }
}

@media screen and (min-width: 1280px) {
  .slide-bg1 {
    position: absolute;
    bottom: 0;
    right: -10%;
    height: 80%;
    width: 50%;
    background: url("../../public/images/fv1.png") no-repeat;
    background-size: contain;
    z-index: -1;
  }
}

@media screen and (min-width: 1280px) {
  .slide-bg2 {
    position: absolute;
    bottom: 0;
    right: -10%;
    height: 80%;
    width: 50%;
    background: url("../../public/images/fv2.png") no-repeat;
    background-size: contain;
    z-index: -1;
  }
}

@media screen and (min-width: 1280px) {
  .slide-bg3 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    height: 80%;
    width: 50%;
    background: url("../../public/images/fv3.png") no-repeat;
    background-size: contain;
    z-index: -1;
  }
}

@media screen and (min-width: 1280px) {
  .slide-bg4 {
    position: absolute;
    bottom: 0;
    right: -10%;
    height: 80%;
    width: 50%;
    background: url("../../public/images/fv4.png") no-repeat;
    background-size: contain;
    z-index: -1;
  }
}

.slide-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slide-title {
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 45px */
  letter-spacing: 1.25px;
  width: 100%;
  max-width: 1080px;
}
@media screen and (min-width: 1280px) {
  .slide-title {
    font-size: 48px;
    letter-spacing: 2.4px;
  }
}

.drawer-icon {
  display: block;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
  margin-left: 20px;
}
@media screen and (min-width: 1280px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  right: 0;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 10px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 20px;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  top: 8px;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 8px;
}

#js-drawer-content {
  background: var(--black, #333);
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  overflow: auto;
  top: 118px;
  right: 0;
  background: var(--black, #333);
  z-index: 1001;
  padding: 20px 30px 20px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
@media screen and (min-width: 1280px) {
  #js-drawer-content {
    display: none;
  }
}

#js-drawer-content.is-checked {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.drawer-content__menu li {
  padding: 16px 0px 16px 16px;
  border-bottom: 0.5px solid var(--line---grey, #D4D4D4);
}

.drawer-content__link {
  color: var(--white, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}

.u-btn__drawer {
  margin-top: 40px;
}

.u-btn__topService {
  margin-top: 72px;
}

.u-btn__topWork {
  margin-top: 72px;
}

.u-btn__topNews {
  margin-top: 72px;
  border-radius: 2px;
  border: 1px solid var(--red, #CE1D3F);
  background: var(--white, #FFF);
}
.u-btn__topNews a span {
  color: var(--red, #CE1D3F);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 1280px) {
  .u-btn__topNews {
    margin: 64px 0 0 auto;
  }
}

.u-btn__topContact {
  margin-top: 48px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.u-btn__topContact:hover {
  background: #E23A5A;
}
@media screen and (min-width: 1280px) {
  .u-btn__topContact {
    margin: 46px 0 0;
    padding: 12px 0;
  }
}

.u-sectionWork__ttl h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 24px */
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .u-sectionWork__ttl h2 {
    font-size: 15px;
  }
}
.u-sectionWork__ttl p {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%; /* 80px */
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .u-sectionWork__ttl p {
    font-size: 48px;
  }
}

.u-mainAbout {
  padding-top: 80px;
  margin-top: 95px;
  background: #fff;
}
@media screen and (min-width: 1280px) {
  .u-mainAbout {
    margin-top: 115px;
    padding: 112px 0 0;
  }
}

.u-mainService {
  padding: 80px 0;
  margin-top: 95px;
}
@media screen and (min-width: 1280px) {
  .u-mainService {
    margin-top: 115px;
    padding: 112px 0;
  }
}

.u-mainNews {
  padding: 80px 0;
  margin-top: 95px;
  background: #fff;
}
@media screen and (min-width: 1280px) {
  .u-mainNews {
    margin-top: 115px;
    padding: 112px 0;
  }
}

.u-mainContact {
  padding: 80px 0;
  margin-top: 95px;
  background: var(--bg---grey, #F7F7F7);
}
@media screen and (min-width: 1280px) {
  .u-mainContact {
    margin-top: 115px;
    padding: 112px 0;
  }
}

.u-sectionAbout__subTtl h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%; /* 72px */
  letter-spacing: 1.8px;
}
@media screen and (min-width: 1280px) {
  .u-sectionAbout__subTtl h2 {
    font-size: 48px;
  }
}

@media screen and (min-width: 1280px) {
  .u-member__itemPresident {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 67%;
  }
}

.u-required__contact {
  color: var(--red, #CE1D3F);
}

.wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wpcf7-list-item input {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.u-btn__contact {
  border: 1px solid #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.u-btn__contact:hover {
  background: #E23A5A;
}

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

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