@charset "utf-8";

/* カラー設定 */
:root {
	--color-primary: #0148AB;
	--color-secondary: 240, 171, 165;
	--color-back: #232F36;
	--color-black: #232F36;
	--color-white: #fff;
	--color-red: #C41818;
  --color-bg-orange: #FFF6ED;
  --color-bg-gray: #F5F5F5;
  --color-bg-blue: #E8F3FA;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Poppins", sans-serif;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  font-size: 1.6rem;
  font-family: var(--font-jp);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: var(--color-black);
  /* -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
  -webkit-text-size-adjust: 100%; */
  height: 100%;
  line-height: 1;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

b, strong {
  font-family: var(--font-jp);
}

a {
  display: inline-block;
  text-decoration: none;
  color: #19161C;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

button {
  font-family: var(--font-jp);
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.c-heading {
  display: flex;
  flex-direction: column;
}

.c-heading.-center {
  align-items: center;
}

.c-heading__en::first-letter {
  color: #2292DD;
}

.c-heading__jp {
  margin-top: 5px;
  font-family: var(--font-jp);
  font-weight: 600;
}

.c-heading__en {
  color: var(--color-primary);
  font-family: var(--font-en);
  font-weight: bold;
  font-style: italic;
  font-size: 5rem;
}

.c-heading.-white .c-heading__jp,
.c-heading.-white .c-heading__en,
.c-heading.-white .c-heading__en::first-letter {
  color: var(--color-white);
}

@media screen and (max-width: 767px) {
  .c-heading__en {
    font-size: 4rem;
  }
}

@media screen and (max-width: 479px) {

}


.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  width: 200px;
  height: 50px;
  background-color: #187fc4;
  background-image: linear-gradient(90deg, #187fc4, #0c3d5e);
  border: 1px solid var(--color-white);
  border-radius: 100vmax;
  position: relative;
}

.c-btn__icon {
  width: 60px;
  height: 60px;
}

.c-btn__text {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 2px;
}

.c-btn__arrow {
  position: absolute;
  right: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  width: 26px;
  background-color: var(--color-white);
  border-radius: 50%;
}

.c-btn__arrowImg {
  width: 10px;
}

@media screen and (max-width: 767px) {
  .c-btn {
    width: 180px;
    height: 44px;
  }

  .c-btn__icon {
    width: 50px;
    height: 50px;
  }

  .c-btn__text {
    font-size: 1.4rem;
  }

  .c-btn__arrow {
    position: absolute;
    right: 9px;
    height: 24px;
    width: 24px;
  }

  .c-btn__arrowImg {
    width: 10px;
  }
}

.c-menuBtn {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1103;
}

.c-menuBtn__trigger,
.c-menuBtn__trigger span {
  display: inline-block;
  transition: all 0.25s;
  box-sizing: border-box;
}

.c-menuBtn__trigger {
  cursor: pointer;
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #187fc4;
  background-image: linear-gradient(90deg, #187fc4, #0c3d5e);
}

.c-menuBtn__trigger span:nth-of-type(1),
.c-menuBtn__trigger span:nth-of-type(2),
.c-menuBtn__trigger span:nth-of-type(3) {
  position: absolute;
  width: 28px;
  height: 2px;
  left: 26px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.c-menuBtn__trigger span:nth-of-type(1) {
  top: 30px;
}

.c-menuBtn__trigger span:nth-of-type(2) {
  top: 39px;
}

.c-menuBtn__trigger span:nth-of-type(3) {
  top: 48px;
}

.open .c-menuBtn__trigger span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}

.open .c-menuBtn__trigger span:nth-of-type(2) {
  opacity: 0;
}

.open .c-menuBtn__trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

@media screen and (max-width: 959px) {
  .c-menuBtn {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .c-menuBtn__trigger {
    width: 64px;
    height: 64px;
  }

  .c-menuBtn__trigger span:nth-of-type(1),
  .c-menuBtn__trigger span:nth-of-type(2),
  .c-menuBtn__trigger span:nth-of-type(3) {
    left: 18px;
  }

  .c-menuBtn__trigger span:nth-of-type(1) {
    top: 21px;
  }

  .c-menuBtn__trigger span:nth-of-type(2) {
    top: 31px;
  }

  .c-menuBtn__trigger span:nth-of-type(3) {
    top: 41px;
  }

  .open .c-menuBtn__trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .open .c-menuBtn__trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}

.p-menu {
  display: none;
  position: fixed;
  background-color: #E8F2F9;
  top: 0;
  padding: 180px 100px 140px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 1005;
  -webkit-overflow-scrolling: touch;
}

.p-menu__inner {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.p-menu__list {
  display: flex;
  gap: 40px;
  flex-direction: column;
  text-align: center;
}

.p-menu__link {
  position: relative;
  line-height: 1.3;
  font-size: 2.4rem;
  transition: .25s;
}

.p-menu__contact {
  margin-top: 60px;
  padding: 0 20px;
}

.open .p-menu {

}

.p-menuContact {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--color-white);
  padding: 40px 20px;
  border-radius: 20px;
}

.p-menuContact__tel {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.p-menuContact__numLink {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
  font-size: 4.2rem;
  font-weight: bold;
  color: var(--color-primary);
}


@media screen and (max-width: 767px) {
  .p-menu {
    padding: 120px 0 140px;
  }

  .p-menu__list {
    padding-right: 20px;
    padding-left: 20px;
    gap: 30px;
  }

  .p-menu__link {
    font-size: 2rem;
  }


  .p-menuContact__numLink {
    font-size: 3.2rem;
  }
}

.p-header {

}

.p-header__inner {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 110px;
  padding: 0 0 0 8.33vw;
  z-index: 1102;
  background-color: var(--color-white);
}

.p-header__container { 
  display: flex;
  align-items: center;
}

.p-header__logoImg {
  width: 280px;
}

.p-globalNav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 3.472vw;
}

.p-globalNav__link {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-black);
}

.p-header__contact {
  width: 120px;
  height: 110px;
  background-color: ;
}

.c-contactBtn {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #187fc4;
  background-image: linear-gradient(90deg, #187fc4, #0c3d5e);
}

.p-contactBtn__icon {
  width: 20px;
}

.p-contactBtn__text {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-white);
}

@media screen and (max-width:  1279px) {
  .p-header__logoImg {
    width: 260px;
  }

  .p-header__inner {
    padding: 0 0 0 40px;
  }

  .p-globalNav__list {
    display: flex;
    gap: 15px;
  }
}

@media screen and (max-width:  959px) {
  .p-header__logoImg {
    width: 240px;
  }

  .p-globalNav {
    display: none;
  }

  .p-header__inner {
    width: 100%;
    height: 80px;
    padding: 0 0 0 40px;
  }

  .p-header__contact {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-header__inner {
    height: 64px;
    padding: 0 0 0 20px;
  }

  .p-header__logoImg {
    width: 200px;
  }

  .p-header__logo {
    margin-right: 100px;
  }
}

.p-mv {
  padding-top: 110px;
  position: relative;
  overflow: hidden;
}

.p-mvImg {
  position: relative;
  overflow: hidden;
}

.p-mvImg__img {
  display: block;
  width: 100%;
  height: calc(100vh - 110px);
  height: calc(100svh - 110px);
  min-height: 480px;

  /* 初期状態 */
  transform: scale(1.25) translateY(40px);
  opacity: 0;

  /* アニメーション */
  animation: mv-dynamic-scale 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;

  /* ディレイ */
  animation-delay: 1s;
}

/* アニメーション定義 */
@keyframes mv-dynamic-scale {
  0% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.p-mvImg__cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba( 12, 61, 94, .15);
  z-index: 2;

  /* 初期状態 */
  opacity: 0;
  
  /* アニメーション */
  animation: mv-fade-in 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;

  /* ディレイ */
  animation-delay: 1s;
}

/* アニメーション定義 */
@keyframes mv-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.p-mv__textWrapper {
  margin-top: 110px;
  top: 8.33vw;
  left: 8.33vw;
  position: absolute;
  z-index: 3;
  
  /* 初期状態 */
  opacity: 0;
  
  /* アニメーション */
  animation: mv-fade-in 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;

  /* ディレイ */
  animation-delay: 1s;
  
}

.p-mv__text {
  position: relative;
  display: grid;
  place-content: center;
  color: var(--color-white);
  z-index: 3;
}

.p-mv__textJp {
  position: relative;
  font-weight: bold;
  font-size: 3.88vw;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-mv__textEn {
  position: relative;
  margin-top: 1.388vw;
  font-family: var(--font-en);
  font-weight: 300;
  font-style: italic;
  font-size: 2.083vw;
  line-height: 1.5;
}

.p-mv__deco {
  position: absolute;
  top: 0;
  width: 6.944vw;
  left: -8.33vw;
}

@media screen and (max-width:  1279px) {
  .p-mv__textWrapper {
    top: 80px;
    left: 120px;
  }

  .p-mv__textJp {
    font-size: 54px;
  }

  .p-mv__textEn {
    font-size: 30px;
  }

  .p-mv__deco {
    width:  100px;
    left: -120px;
  }
}

@media screen and (max-width:  959px) {
  .p-mv {
    padding-top: 80px;
    position: relative;
  }

  .p-mvImg__img {
    height: calc(100vh - 80px);
    height: calc(100svh - 80px);
  }

  .p-mv__textWrapper {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .p-mv {
    padding-top: 64px;
  }

  .p-mvImg__img {
    height: calc(100vh - 64px);
    height: calc(100svh - 64px);
  }

  .p-mv__textWrapper {
    margin-top: 64px;
    left: 13vw;
  }

  .p-mv__textJp {
    font-size: 8vw;
  }

  .p-mv__textEn {
    font-size: 5.33333vw;
  }

  .p-mv__deco {
    width:  11vw;
    left: -13vw;
  }
}

@media screen and (max-width: 479px) {
  .p-mv,
  .p-mvImg__img {

  }
}

.p-policy {
  margin-top: 80px;
}

.p-policy__inner {
  padding-right: 40px;
  padding-left: 40px;
}

.p-policyMedia {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
}

.p-policyMedia__body {
  position: relative;
}

.p-policyMedia__imgWrapper {
  width: 36.8333%;
  margin-right: 60px;
}

.p-policyMedia__heading {
  position: relative;
  margin-top: 60px;
  font-size: 4.2rem;
  font-weight: 600;
  z-index: 2;
}

.p-policyMedia__body::before {
  content: '';
  position: absolute;
  background-image: url(../images/wagara01.png);
  background-size: 212px 87px;
  background-repeat: no-repeat;
  width: 212px;
  height: 87px;
  z-index: 1;
  top: 40px;
  left: -120px;
}

.p-policyMedia__list {
  margin-left: 1.5em;
  margin-top: 40px;
  list-style-type: decimal;
}

.p-policyMedia__listItem {
  font-size: 2rem;
  line-height: 2;
}

@media screen and (max-width: 1079px) {
  .p-policyMedia {
    flex-direction: column-reverse;
    align-items: center;
  }

  .p-policyMedia__heading {
    margin-top: 0;
  }

  .p-policyMedia__imgWrapper {
    width: 100%;
    max-width: 320px;
    margin-top: 40px;
    margin-right: 0;
  }

  .p-policyMedia__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .p-policyMedia__body::before {
    top: -20px;
    left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-policy__inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .p-policyMedia__heading {
    font-size: 3.2rem;
  }

  .p-policyMedia__body::before {
    background-size: contain;
    width: 124px;
    height: 52px;
  }

  .p-policyMedia__body::before {
    top: -10px;
    left: 0;
  }

  .p-policyMedia__list {
    margin-top: 30px;
  }

  .p-policyMedia__listItem {
    font-size: 1.6rem;
  }
}


.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 160s linear infinite;
}

.marquee__text {
  display: inline-block;
  margin-right: 0.5em;
  color: rgba(24,127,196,0.2); /* 代替色 */
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(24,127,196,0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Poppins", sans-serif;
  font-size: max(7rem, 8.33vw);
  font-weight: bold;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .marquee__inner {
    animation: marquee 120s linear infinite;
  }
}
.p-topNews {
  background-color: var(--color-bg-blue);
}

.p-topNews__inner {
  padding: 60px 40px 80px;
}

.p-topNews__contents {
  display: flex;
  margin-inline: auto;
  max-width: 1200px;
}

.p-topNews__body {
  width: 100%;
}

.p-topNews__header {
  margin-right: 120px;
  margin-top: 20px;
  flex-shrink: 0;
}

.p-topNews__btn {
  margin-top: 60px;
}

.p-newsList__link {
  width: 100%;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-black);
}

.p-newsList__header {
  display: flex;
}

.p-newsList__date {
  margin-right: 20px;
  font-weight: 600;
  color: #1E6CA0;
  flex-shrink: 0;
  line-height: 1.5;
}

.p-newsList__cat {
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.p-newsList__catItem {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 25px;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid var(--color-black);
  border-radius: 100vmax;
}

.p-newsList__text {
  line-height: 1.5;
}

@media screen and (max-width: 1279px) {
  .p-topNews__header {
    margin-right: 60px;
  }
}

@media screen and (max-width: 959px) {
  .p-topNews__contents {
    flex-direction: column;
  }

  .p-topNews__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 0;
    margin-top: 0;
  }

  .p-topNews__btn {
    margin-top: 0;
  }

  .p-topNews__body {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-topNews__inner {
    padding: 60px 20px;
  }

  .p-newsList__link {
    flex-direction: column;
  }

  .p-newsList__text {
    margin-top: 8px;
  }

  .p-newsList__cat {
    margin-right: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .p-newsList__catItem {
    width: 80px;
    height: 20px;
    font-size: 1.1rem;
  }

  .p-newsList__date {
    font-size: 1.4rem;
  }

  .p-newsList__text {
    font-size: 1.4rem;
  }
}

.p-company {
  position: relative;
  padding: 120px 40px 220px;
}

.p-company::before {
  position: absolute;
  right: 0;
  top: 80px;
  content: '';
  width: 289px;
  height: 139px;
  background-image: url('../images/wagara02.png');
  background-size: 289px 139px;
  background-repeat: no-repeat;
}

.p-company::after {
  position: absolute;
  left: 0;
  bottom: 40px;
  content: '';
  width: 288px;
  height: 142px;
  background-image: url('../images/wagara03.png');
  background-size: 288px 142px;
  background-repeat: no-repeat;
}

.p-company__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1200px;
}

.p-companyList {
  margin-top: 60px;
  line-height: 1.6;
}

.p-companyList__dt {
  font-weight: normal;
}

.p-companyList__dd {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
  gap: 0 1em;
}

.p-companyList__dd {
  
}

.p-companyMedia {
  display: flex;
  margin-top: 40px;
}

.p-companyMedia__title {
  font-size: 1.8rem;
  line-height: 1.3;
}

.p-companyMedia__policy {
  margin-right: 40px;
}

.p-companyPolicy {
  margin-top: 10px;
  padding-left: 1.5em;
  line-height: 1.6;
  list-style-type: decimal;
}

.p-companyPolicy__item:not(:first-child) {
  margin-top: 5px;
}

.p-companyPolicy__item ol li {
  position: relative;
  padding-left: 2.5em;
  counter-increment: number;
}

.p-companyPolicy__item ol li::before{
  position: absolute;
  left: 0;
  content: "（" counter(number) "）";
}

.p-companyMedia__imgWrapper {
  width: 45%;
  flex-shrink: 0;
}

@media screen and (max-width: 959px) {
  .p-companyMedia {
    flex-direction: column;
    align-items: center;
  }

  .p-companyMedia__policy {
    width: 100%;
    margin-right: 0;
  }

  .p-companyMedia__imgWrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 480px;
  }
}

@media screen and (max-width: 767px) {
  .p-company {
    padding: 80px 20px 120px;
  }

  .p-company::before {
    position: absolute;
    right: 0;
    top: 70px;
    width: 114px;
    height: 64px;
    background-size: contain;
  }

  .p-company::after {
    bottom: 20px;
    width: 138px;
    height: 66px;
    background-size: contain;
  }
}

.p-history {
  position: relative;
  background-color: rgba( 24, 127, 196, .2);
}

.p-history .bg-image-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  clip-path: inset(0);
  z-index: -1;
}

.p-history .bg-image-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(../images/company01.jpg);
  filter: grayscale(100%);
  opacity: .1;
}

.p-history__inner {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1280px;
  padding: 80px 40px;
}

.p-history__imgWrapper {
  position: absolute;
  top: 160px;
  left: 40px;
  width: 39%;
}

.p-history__contents {
  margin-left: 49%;
}

.p-history__table {
  margin-inline: auto;
  width: 100%;
  margin-top: 40px;
}

.p-table {
  width: 100%;
}

.p-table__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-table__item {
  display: flex;
  line-height: 1.5;
}

.p-table__item:not(:first-child) {
  padding-top: 10px;
}

.p-table__heading {
  width: 160px;
  height: 100%;
  flex-shrink: 0;
  font-weight: normal;
}

.p-table__text {
  height: 100%;
  flex: 1;
}

.p-table__item:first-child .p-table__text:has(ruby) {
  margin-top: -4px;
}

.p-table__text ul {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  gap: 5px;
}

@media screen and (max-width: 959px) {
  .p-history__imgWrapper {
    margin-top: 40px;
    margin-inline: auto;
    position: static;
    width: 100%;
    max-width: 400px;
  }

  .p-history__contents {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-history__inner {
    padding: 60px 20px;
  }

  .p-table__item {
    flex-direction: column;
    font-size: 1.4rem;
  }
}

.p-business {
  position: relative;
  padding: 120px 40px 0;
  background-image: url(../images/business_bg.png);
  background-repeat: no-repeat;
  background-size: 1024px 694px;
  background-position: top right;
}

.p-business__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1200px;
}

.p-business__text {
  margin-top: 60px;
  max-width: 540px;
  line-height: 2.5;
}

.p-businessList {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 10%;
}

.p-businessList__item {
  width: 50%;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba( 0, 0, 0, .4);
}

.p-businessList__heading {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 40px;
  translate: 0 -50%;
}

.p-businessList__headingEn {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-red);
}

.p-businessList__headingJp {
  margin-top: 10px;
  font-weight: 600;
  font-size: 2.8rem;
  color: var(--color-white);
}

@media screen and (max-width: 959px) {
  .p-business__text {
    max-width: none;
  }

  .p-businessList {
    gap: 40px;
  }
  
  .p-businessList__heading {
    left: 30px;
  }

  .p-businessList__headingEn {
    font-size: 1.6rem;
  }

  .p-businessList__headingJp {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-business {
    padding: 120px 20px 0;
  }

  .p-businessList {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
  }

  .p-businessList__item {
    width: 100%;
    max-width: 360px;
  }
}

.p-facility {
  margin-top: 80px;
}


.equipment {
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
  color: #000;
}

.equipment__title {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: var(--color-primary);
}

.equipment__title::after {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  content: '';
  width: 126px;
  height: 1px;
  background-color: var(--color-primary);
}

.equipment__table {
  margin-top: 40px;
  width: 100%;
  border-collapse: collapse;
}

.equipment__header,
.equipment__cell {
  border: 1px solid var(--color-primary);
  padding: 6px 8px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.equipment__header {
  color: var(--color-white);
  background-color: var(--color-primary);
  font-weight: bold;
}

.equipment__cell--category {
  font-weight: bold;
  white-space: nowrap;
}

.equipment__header--qty,
.equipment__cell--qty {
  text-align: right;
  width: 60px;
}

@media screen and (max-width: 767px) {
  .equipment__header,
  .equipment__cell {
    font-size: 1.3rem;
  }
}

.p-recruit {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1440px;
  margin-top: 80px;
  padding: 120px 40px;
  background-color: #187fc4;
  background-image: linear-gradient(90deg, #187fc4, #bee5ff 65%);
  border-radius: 45px;
  overflow: hidden;
}

.p-recruit::before {
  position: absolute;
  left: 0;
  top: 80px;
  content: '';
  width: 277px;
  height: 142px;
  background-image: url('../images/wagara04.png');
  background-size: 277px 142px;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}

.p-recruit__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1200px;
  z-index: 2;
}

.p-recruitMedia__body {
  width: calc(50% - 40px);
}

.p-recruitMedia__title {
  margin-top: 60px;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.5;
}

.p-recruitMedia__text {
  margin-top: 30px;
  color: var(--color-white);
  line-height: 2.5;
}

.p-photoList {
  width: 50%;
  top: -40px;
  right: 30px;
  position: absolute;
  display: flex;
  gap: 30px;
  opacity: .7;
  filter: brightness(0.7);
}

.p-photoList__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-photoList__item:nth-of-type(2n) {
  padding-top: 100px;
}

.p-photoList_imgWrapper {
  border-radius: 20px;
  overflow: hidden;
}


@media screen and (max-width: 959px) {
  .p-photoList {
    width: 100%;
    position: static;
  }

  .p-recruitMedia__body {
    width: 100%;
  }

  .p-recruit {
    padding: 120px 40px 0;
  }

  .p-photoList {
    margin-top: 40px;
    margin-bottom: -60px;
    width: 100%;
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .p-recruit {
    padding: 80px 20px 0;
    background-image: linear-gradient(90deg, #187fc4, #bee5ff);
  }

  .p-recruit::before {
    top: 60px;
    width: 135px;
    height: 71px;
    background-size: contain;
  }

  .p-recruitMedia__title {
    font-size: 2.4rem;
  }

  .p-photoList {
    gap: 15px;
  }

  .p-photoList__item {
    gap: 15px;
  }

  .p-photoList__item:nth-of-type(2n) {
    padding-top: 60px;
  }

  .p-photoList_imgWrapper {
    border-radius: 10px;
  }
}

.p-contact {
  position: relative;
  padding: 120px 40px;
}

.p-contact::before,
.p-contact::after {
  position: absolute;
  left: 0;
  top: 80px;
  content: '';
  width: 301px;
  height: 139px;
  background-image: url('../images/wagara05.png');
  background-size: 301px 139px;
  background-repeat: no-repeat;
}

.p-contact::before {
  left: auto;
  right: 0;
  scale: -1 1;
}


.p-contact__bg {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #bb2a06;
  mix-blend-mode: multiply;
  z-index: 1;
}

.p-contact__inner {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1000px;
  z-index: 2;
  gap: 60px;
}

.p-contact__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}

.p-contact__tel {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--color-primary);
}

.p-contact__numLink {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
  font-size: 4.2rem;
  font-weight: bold;
  color: var(--color-primary);
}

.p-contact__text {
  margin-top: 5px;
  line-height: 1.5;
}

.p-contact__note {
  margin-top: 20px;
  font-size: 1.4rem;
  text-align: right;
}

.p-contact__recaptcha {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .p-contact {
    padding: 100px 20px;
  }

  .p-contact::before,
  .p-contact::after {
    top: 80px;
    width: 120px;
    height: 50px;
    background-size: contain;
  }

  .p-contact__numLink {
    font-size: 3.2rem;
  }

}

.c-input__field {
  display: block;
  width: 100%;
  height: 48px;
  padding: 15px;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #D9D9D9;
}

.c-input__field:focus {
  border: 1px solid #251d16;
} 

.c-input__fieldDouble {
  margin-right: 10px;
}

.c-input__submit {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  width: 300px;
  height: 60px;
  background-color: #187fc4;
  background-image: linear-gradient(90deg, #187fc4, #0c3d5e);
  border: 1px solid var(--color-white);
  color: var(--color-white);
  border-radius: 100vmax;
  position: relative;
}

.c-input__submit:hover {

}

.c-input__notice {
  line-height: 1.75;
}

.c-input__double {
  display: flex;
}

.wpcf7 .wpcf7-submit {
  display: block;
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: 0.6;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}

span.wpcf7-list-item {
  position: relative;
  /*項目ごとの余白を調整*/
  line-height: 1.3;
}

.wpcf7-list-item-label {
  /*項目の色や文字サイズ*/
  cursor: pointer;
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  /*既存のチェックボックスを見えなくする*/
}

.wpcf7-list-item-label:before {
  /*チェックボックスの枠*/
  content: '';
  border: 1px solid #251d16;
  display: inline-block;
  height: 20px;
  width: 20px;
  position: relative;
  top: -2px;
  margin-right: 5px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}

input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  /*チェックアイコン*/
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 6px;
  width: 7px;
  height: 15px;
  background-size: contain;
  border-right: 4px solid #251d16;
  border-bottom: 4px solid #251d16;
  transform: rotate(45deg);
}

.c-select {
  display: inline-block;
  position: relative;
}

.c-select__field {
  position: relative;
  width: 100%;
  display: block;
  padding: 15px 80px 15px 15px;
  line-height: 1;
  background-color: #fff;
  height: 48px;
  background-image: url('../images/select_arrow.png');
  background-size: 48px 53px;
  background-repeat: no-repeat;
  background-position: top 50% right 0;
  border-radius: 4px;
}

::placeholder {
  color: #D2DCDC;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #D2DCDC;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #D2DCDC;
}

@media screen and (max-width: 767px) {
  input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    top: 1px;
  }

  .c-select__field {
    font-size: 1.6rem;
  }
}

.c-textarea__field {
  display: block;
  width: 100%;
  padding: 15px;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #D9D9D9;
}

.c-textarea__field:focus {
  border: 1px solid #251d16;
} 


@media screen and (max-width: 479px) {
  .c-textarea__field {
    padding: 10px;
  }
}

.p-contact__body.-radio  {
  margin-top: 22px;
}

.p-contact__body.-radio .wpcf7-form-control-wrap {
  display: block;
}

.p-contact__body.-radio .wpcf7-form-control.wpcf7-radio {
  display: flex;
}

.p-contact__body.-radio span.wpcf7-list-item {
  margin-right: 20px;
  position: relative;
}

.p-contact__body.-radio span.wpcf7-list-item.first {
  margin: 0 20px 0 0 !important;
}

.p-contact__body.-radio .wpcf7-list-item-label {
  cursor: pointer;
}

.p-contact__body.-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.p-contact__body.-radio .wpcf7-list-item-label:before {
  content: '';
  background: #fff;
  border-radius: 100%;
  border: 1px solid #888888;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.p-contact__body.-radio input[type="radio"]:checked + .wpcf7-list-item-label:before {
  background-color: #004D9E;
  box-shadow: inset 0 0 0 4px #fff;
}

.wpcf7-not-valid-tip {
  margin-top: 3px;
}

.p-contact__item {
  padding-top: 20px;
}

.p-contact__header {
  position: relative;
  align-items: center;
  padding-bottom: 5px;
  line-height: 1.5;
}

.u-attention {
  display: inline-block;
  font-size: 2rem;
  color: #D23E3E;
}

.p-contact__body {
  flex-grow: 1;
}

.p-contact__body.-name {
  display: flex;
}

.p-contact__body.-name .c-input {
  display: flex;
  align-items: center;
}

.c-input__heading {
  margin: 0 5px;
  font-size: 2rem;
  font-weight: bold;
}

.p-contact__checkbox {
  margin-top: 20px;
  text-align: center;
}

.p-contact__submit {
  margin-top: 40px;
  text-align: center;
}

.p-contact__privacy {
  width: 100%;
  max-height: 200px;
  padding: 20px;
  overflow-y: auto;
  border: 1px solid #D9D9D9;
  background-color: #fff;
  line-height: 1.5;
  font-size: 1.3rem;
}

.p-contact__privacy dl {
  margin-top: 1em;
}
.p-contact__privacy h4 {
  margin-top: 1em;
}

@media screen and (max-width: 959px) {
  .p-contact__item {
    flex-direction: column;
  }

  .p-contact__header {
    flex-basis: auto;
    margin-right: 0;
    padding-top: 0;
    text-align: left;
  }

  .p-contact__body.-radio {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-contact__inner {

  }
  

  .p-contact__item {
    padding-top: 20px;
  }

  .p-contact__privacy {
    font-size: 1.4rem;
    text-align: left;
  }

  .p-contact__checkbox {
    font-size: 1.6rem;
    text-align: left;
  }

  .p-contact__privacyHeading {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .c-input__heading {
    font-size: 1.6rem;
  }

  .p-contact__body.-radio .wpcf7-form-control.wpcf7-radio {
    display: block;
  }

  .p-contact__body.-radio .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    margin: 5px 0 0;
  }
}

.p-footer {
  position: relative;
  background-color: #1E6CA0;
}

.p-footer__inner {
  margin-inline: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 60px;
  padding: 40px 8.33vw;
}

.p-footer__info,
.p-footer__info a {
  color: var(--color-white);
}
.p-footer__address,
.p-footer__tel {
  margin-top: 20px;
}

.p-footer__mail {
  margin-top: 5px;
}

.p-footer__address,
.p-footer__tel,
.p-footer__mail {
  line-height: 1.3;
}

.p-footer__logoImg {
  width: 226px;
}

.p-footer__copyright {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4;
}

@media screen and (max-width: 1279px) {
  .p-footer__inner {
    gap: 40px;
    padding: 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 40px 20px;
  }

  .p-footer__copyright {
    font-size: 1.1rem;
  }
}


.p-page {
  position: relative;
  padding: 210px 40px 120px;
  background-color: var(--color-bg-blue);
}

.p-page::before,
.p-page::after {
  position: absolute;
  left: 0;
  top: 160px;
  content: '';
  width: 301px;
  height: 139px;
  background-image: url('../images/wagara05.png');
  background-size: 301px 139px;
  background-repeat: no-repeat;
}

.p-page::before {
  left: auto;
  right: 0;
  scale: -1 1;
}

.p-pageHeader {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
}

.p-pageArchive {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 60px;
}

.p-pageArchive__inner {
}

@media screen and (max-width: 959px) {

}

@media screen and (max-width: 767px) {
  .p-page {
    padding: 120px 20px;
  }

  .p-page::before, .p-page::after {
    top: 100px;
    width: 120px;
    height: 50px;
    background-size: contain;
  }
}

/* ====================
single
==================== */
.p-article {
  width: 100%;
  max-width: 1000px;
  margin-top: 60px;
  margin-inline: auto;
}

.p-article__header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-primary);
}

.p-article__title {
  position: relative;
  margin-top: 15px;
  font-size: 2rem;
  line-height: 1.5;
}

.p-article__info {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
}

.p-article__date {
  margin-top: 5px;
  margin-right: 20px;
  color: #1E6CA0;
  font-weight: bold;
}

.p-article__body {
  margin-top: 60px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.p-article__body a {
  text-decoration: underline;
  transition: .25s;
}

.p-article__body a:hover {
  opacity: .6;
}

.p-article__body h1, 
.p-article__body h2, 
.p-article__body h3, 
.p-article__body h4, 
.p-article__body h5, 
.p-article__body h6 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.p-article__body * + h1, 
.p-article__body * + h2, 
.p-article__body * + h3, 
.p-article__body * + h4, 
.p-article__body * + h5, 
.p-article__body * + h6,
.p-article__body * + img {
  margin-top: 1.5em;
}

.p-article__body * + p,
.p-article__body * + .wp-block-image {
  margin-top: 1em;
}

.p-article__body img,
.p-article__body * + .wp-block-image {
  width: auto;
  max-width: 100%;
}

.p-article__body a {
  text-decoration: underline;
}

.p-article__link {
  margin-top: 100px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}

.p-article__next {
  border-right: 1px solid var(--color-black);
}

.p-article__prev a {
  text-align: right;
}

.p-article__prev,
.p-article__next {
  display: flex;
  align-items: stretch;
  width: 50%;
  position: relative;
}

.p-article__prev a,
.p-article__next a {
  display: flex;
  align-items: center;
  flex: 1 0 25%;
  padding: 10px 0;
  min-height: 70px;
  line-height: 1.5;
  width: 100%;
  position: relative;
  font-size: 1.5rem;
}

.p-article__next a {
  padding-left: 35px;
}

.p-article__prev a {
  padding-right: 35px;
  justify-content: flex-end;
}

.p-article__prev a:hover,
.p-article__next a:hover {
  background-color: rgba(1,72,171,0.05);
  transition: .25s;
}

.p-article__prev a::after,
.p-article__next a::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../images/arrow.png) no-repeat;
  background-size: 10px 18px;
  width: 10px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.p-article__next a::after {
  left: 5px;
  transform: translateY(-50%) scale(-1, 1);
}

.p-article__prev a::after {
  right: 5px;
}

.p-article__nextNone {
  width: 50%;
  border-right: 1px solid var(--color-black);
}

.p-article__prevLink:hover,
.p-article__nextLink:hover {
  opacity: 0.75;
}

.p-article__nextNone {
  width: 50%;
}

.p-article__btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.p-article__btnLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  transition: .25s;
}

.p-article__btnLink:hover {
  background-color: #E0E0D3;
}

@media screen and (max-width: 767px) {
  .p-article__body {
    margin-top: 60px;
  }

  .p-article__link {
    flex-direction: column;
    margin-top: 50px;
    font-size: 1.6rem;
  }

  .p-article__prev a,
  .p-article__next a {
    font-size: 1.6rem;
  }

  .p-article__linkSingle {
    border-bottom: none;
  }

  .p-article__next {
    border-right: none;
  }

  .p-article__link li:not(:last-child) {
    border-bottom: 1px solid var(--color-black);
  }

  .p-article__link li:last-child {
    border-bottom: none;
  }

  .p-article__link li.p-article__nextNone {
    width: 100%;
    border-bottom: none;
  }

  .p-article__prev,
  .p-article__next {
    width: 100%;
  }

  .p-article__btn {
    margin-top: 30px;
  }

  .p-article__btnLink {
    padding: 10px 15px;
    font-size: 1.6rem;
  }
}

.breadcrumbs {
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 1.4rem;
}

.breadcrumbs a {
  text-decoration: underline;
  transition: .25s;
}

.breadcrumbs a:hover {
  opacity: .65;
}

.breadcrumbs li:last-child:after {
  content: '';
}

@media screen and (max-width: 959px) {
  .breadcrumbs {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 20px;
  }
}

.pager {
  margin-top: 40px;
}

/*wp-pagenavi base*/
.wp-pagenavi {
	clear: both;
	text-align:center;
}

.wp-pagenavi a, .wp-pagenavi span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
	margin: 4px;
	white-space: nowrap;
	transition: .2s ease-in-out;
	text-align: center;
  font-size: 1.8rem;
  border: 1px solid var(--color-primary) !important;
  font-family: "Zen Maru Gothic", system-ui;
  font-weight: 700;
  font-style: normal;
  color: var(--color-primary);
}

.wp-pagenavi a:hover{
	color: var(--color-white);
	background-color: var(--color-primary);
	border-color: var(--color-primary) !important;
}

.wp-pagenavi span.current{
	color: var(--color-white);
	background-color: var(--color-primary);
	border-color: var(--color-primary) !important;
}

.u-textLink {
  text-decoration: underline;
}

.u-textLink:hover {
  opacity: .6;
}

.u-mobile {
  display: none;
}

.u-sp {
  display: none;
}

.u-pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }

  .u-pc {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .u-mobile {
    display: block;
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定 */
.fadeInTrigger {
  opacity: 0;
}

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}