/*
Theme Name: UIOKINAWA
Version: 1
Template: twentytwenty
*/

@charset "UTF-8";
@font-face {
  font-family: "custom font01";
  src: url("assets/fonts/LINESeedJP_OTF_Eb.woff2") format("woff2");
}
html, body {
  font-family: "Noto Sans JP", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
  line-height: 1.7;
  color: #000;
}

html {
  scroll-behavior: smooth; /* スムーススクロール */
}

.wrap {
  overflow: hidden;
}

.l-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 1040px;
  max-width: 100%;
}

.l-section {
  width: 100%;
  padding: 2.8rem 0;
}

a:hover {
  opacity: 0.8;
}

.br-sp {
  display: block;
}

@media (width >= 768px) {
  .br-sp {
    display: none;
  }
}

.c-button {
  background-color: #C30E23;
  color: #ffffff;
  vertical-align: middle;
  padding: 13px 27px;
  margin: 0 auto;
  background-image: none;
  text-decoration: none;
  border: 3px solid #000;
  border-radius: 100vmax;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  -webkit-box-shadow: 0 3px 0 rgb(0, 0, 0);
          box-shadow: 0 3px 0 rgb(0, 0, 0);
  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;
  position: relative;
  padding-right: 40px;
}
@media (width >= 768px) {
  .c-button {
    font-size: 2rem;
  }
}
.c-button--arrow::before, .c-button--arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 13px;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.c-button--arrow::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 21px;
  height: 21px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
}
.c-button--arrow::after {
  right: 21px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-button:hover {
  color: #C30E23;
  background: #fff;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-button:hover.c-button--arrow::before {
  background: #C30E23;
}
.c-button:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.swiper .swiper-slide {
  height: auto;
}

.swiper-area {
  width: 100%;
  max-width: 327px;
  height: 240px;
  margin: 0 auto;
  position: relative;
}



@media (width >= 768px) {
  .swiper-area {
    max-width: 545px;
    height: 400px;
  }
}

@media (width >= 1000px) {
  .swiper-area {
    max-width: initial;
    height: 309px;
  }
}

.swiper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.swiper-navigation-icon {
  display: none;
}

.swiper-button-next {
  right: -18px;
}
@media (width >= 768px) {
  .swiper-button-next {
    right: -50px;
  }
}

.swiper-button-prev {
  left: -18px;
}
@media (width >= 768px) {
  .swiper-button-prev {
    left: -50px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  display: grid;
  place-content: center;
  width: 15px;
  height: 40px;
  cursor: pointer;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  border-bottom: 17px solid transparent;
  border-right: 15px solid #ED6C00;
  border-top: 17px solid transparent;
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  border-bottom: 17px solid transparent;
  border-left: 15px solid #ED6C00;
  border-top: 17px solid transparent;
}

/**
 * ----------------------------------------
 * animation
 * ----------------------------------------
 */
/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
.scale-up-center {
  -webkit-animation: scale-up 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: scale-up 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: translateY(-50%) translateX(-50%) scale(0);
            transform: translateY(-50%) translateX(-50%) scale(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
            transform: translateY(-50%) translateX(-50%) scale(1);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
}

@keyframes scale-up {
  0% {
    -webkit-transform: translateY(-50%) translateX(-50%) scale(0);
            transform: translateY(-50%) translateX(-50%) scale(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
            transform: translateY(-50%) translateX(-50%) scale(1);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
}
.is-poyon {
  -webkit-animation: poyon 2.5s infinite;
          animation: poyon 2.5s infinite;
  opacity: 1;
}

@-webkit-keyframes poyon {
  0%, 40% {
    -webkit-transform: skew(0deg, 0deg);
            transform: skew(0deg, 0deg);
  }
  5% {
    -webkit-transform: skew(5deg, 5deg);
            transform: skew(5deg, 5deg);
  }
  10% {
    -webkit-transform: skew(-4deg, -4deg);
            transform: skew(-4deg, -4deg);
  }
  15% {
    -webkit-transform: skew(3deg, 3deg);
            transform: skew(3deg, 3deg);
  }
  20% {
    -webkit-transform: skew(-2deg, -2deg);
            transform: skew(-2deg, -2deg);
  }
  25% {
    -webkit-transform: skew(1deg, 1deg);
            transform: skew(1deg, 1deg);
  }
  30% {
    -webkit-transform: skew(-0.6deg, -0.6deg);
            transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    -webkit-transform: skew(0.3deg, 0.3deg);
            transform: skew(0.3deg, 0.3deg);
  }
}

@keyframes poyon {
  0%, 40% {
    -webkit-transform: skew(0deg, 0deg);
            transform: skew(0deg, 0deg);
  }
  5% {
    -webkit-transform: skew(5deg, 5deg);
            transform: skew(5deg, 5deg);
  }
  10% {
    -webkit-transform: skew(-4deg, -4deg);
            transform: skew(-4deg, -4deg);
  }
  15% {
    -webkit-transform: skew(3deg, 3deg);
            transform: skew(3deg, 3deg);
  }
  20% {
    -webkit-transform: skew(-2deg, -2deg);
            transform: skew(-2deg, -2deg);
  }
  25% {
    -webkit-transform: skew(1deg, 1deg);
            transform: skew(1deg, 1deg);
  }
  30% {
    -webkit-transform: skew(-0.6deg, -0.6deg);
            transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    -webkit-transform: skew(0.3deg, 0.3deg);
            transform: skew(0.3deg, 0.3deg);
  }
}
/*------------------------
header部分
------------------------*/
.l-header {
  width: 100%;
  height: 60px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  color: #FFFFFC;
  position: relative;
}
@media (width >= 768px) {
  .l-header {
    height: 80px;
  }
}

.l-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.p-header__logo {
  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-header__logo a {
  display: inline-block;
}
.p-header__img {
  height: 40px;
}
@media (width >= 768px) {
  .p-header__img {
    height: 70px;
  }
}

.p-hamburger {
  position: fixed;
  right: 0;
  top: 0;
  width: 20%;
  height: 60px;
  z-index: 100;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  /* メニューオープン時 */
}
@media (width >= 768px) {
  .p-hamburger {
    width: 80px;
    height: 80px;
  }
}
.p-hamburger__line {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 40px;
  height: 3px;
  background-color: #E85604;
}
@media (width >= 768px) {
  .p-hamburger__line {
    height: 5px;
    width: 45px;
  }
}
.p-hamburger__line:nth-of-type(1) {
  top: 20px;
}
@media (width >= 768px) {
  .p-hamburger__line:nth-of-type(1) {
    top: 25px;
  }
}
.p-hamburger__line:nth-of-type(2) {
  top: 29px;
}
@media (width >= 768px) {
  .p-hamburger__line:nth-of-type(2) {
    top: 38px;
  }
}
.p-hamburger__line:nth-of-type(3) {
  top: 38px;
}
@media (width >= 768px) {
  .p-hamburger__line:nth-of-type(3) {
    top: 51px;
  }
}
.p-hamburger__text {
  font-family: "custom font01";
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  font-size: 1.2rem;
  color: #E85604;
  white-space: nowrap;
}
@media (width >= 768px) {
  .p-hamburger__text {
    top: 64px;
    font-size: 1.6rem;
  }
}
.p-hamburger__text.is-close {
  opacity: 0;
}
.p-hamburger.is-active {
  left: 0;
  background: #fff;
  -webkit-animation: slideIn 0.6s forwards;
          animation: slideIn 0.6s forwards;
}
@media (width >= 768px) {
  .p-hamburger.is-active {
    right: 430px;
    left: auto;
  }
}
.p-hamburger.is-active .p-hamburger__line:nth-of-type(1) {
  -webkit-transform: translateX(-50%) translateY(9px) rotate(-45deg);
          transform: translateX(-50%) translateY(9px) rotate(-45deg);
  top: 20px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (width >= 768px) {
  .p-hamburger.is-active .p-hamburger__line:nth-of-type(1) {
    top: 25px;
  }
}
.p-hamburger.is-active .p-hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.p-hamburger.is-active .p-hamburger__line:nth-of-type(3) {
  -webkit-transform: translateX(-50%) translateY(-9px) rotate(45deg);
          transform: translateX(-50%) translateY(-9px) rotate(45deg);
  top: 38px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (width >= 768px) {
  .p-hamburger.is-active .p-hamburger__line:nth-of-type(3) {
    top: 43px;
  }
}
.p-hamburger.is-active .is-menu {
  opacity: 0;
}
.p-hamburger.is-active .is-close {
  opacity: 1;
}
.p-hamburger__overlay.is-active {
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 80;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
    right: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
    right: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background-color: #E85604;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  z-index: 90;
  overflow-y: scroll;
}
@media (width >= 768px) {
  .p-nav {
    max-width: 430px;
  }
}
.p-nav__wrap {
  background: #fff;
  margin: 20px;
  border-radius: 10px;
  padding: 25px 6% 45px 6%;
}
.p-nav.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.p-nav__list {
  margin: 0;
  list-style: none;
}
.p-nav__item {
  border-bottom: 2px solid #ED6C00;
}
.p-nav__link {
  display: block;
  padding: 15px 0;
  color: #000;
  font-weight: bold;
  font-size: 1.4rem;
  text-decoration: none;
  position: relative;
  padding-left: 30px;
}
@media (width >= 768px) {
  .p-nav__link {
    font-size: 1.8rem;
    padding-left: 40px;
  }
}
.p-nav__link:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #ED6C00;
  border-right: solid 2px #ED6C00;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  left: 10px;
  bottom: 0;
}
@media (width >= 768px) {
  .p-nav__link:before {
    border-top: solid 3px #ED6C00;
    border-right: solid 3px #ED6C00;
  }
}
.p-nav__button {
  margin-top: 30px;
}
@media (width >= 768px) {
  .p-nav__button {
    margin-top: 40px;
  }
}
.p-nav__line {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 30px;
}
.p-nav__lineImg {
  height: 50px;
}
@media (width >= 768px) {
  .p-nav__lineImg {
    height: 75px;
  }
}
.p-nav__logo {
  margin-top: 30px;
  padding-top: 20px;
  border-top: solid 2px #ED6C00;
  text-align: center;
}


.p-button--fixed {
  z-index:100;
  position:fixed;
  background:rgba(254,230,128,0.8);
  width:250px;
  border-radius:15px;
  text-decoration:none;
  text-align:center;
  color:#000;
  padding:20px 10px;
  right:20px;
  bottom:20px;
  box-shadow:1px 1px 5px #aaa;
  display: flex;
  justify-content: center;
}

@media (width >= 1000px) {
  .p-button--fixed {
    animation: button-move 4s infinite;
  }
}

.p-button__text {
  font-weight: bold;
  font-size: 1.6rem;
}

.p-button__img {
  position: relative;
  width: 30px;
}

.p-button--pc {
  display: none;
}

@media (width >= 1000px) {
  .p-button--pc {
    display: flex;
  }
}

.p-button--sp {
  display: flex;
  transform: translateX(200%);
	transition: all 0.3s ease 0s;
}

@media (width >= 1000px) {
  .p-button--sp {
    display: none;
  }
}

.is-in .p-button--sp{
  transform: translateX(0);
}

.p-button__img::before {
  background: url(assets/images/component/p-button__img.png) center no-repeat;
  background-size: contain;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: inherit;
  width: 100%;
  z-index: -2;
}

@keyframes button-move {
  0%, 40% {
    transform:  translateX(0) skew(0deg, 0deg);
  }
  5% {
    transform:  translateX(0) skew(4deg, 4deg);
  }
  10% {
    transform: translateX(0) skew(-3deg, -3deg);
  }
  15% {
    transform: translateX(0) skew(2deg, 2deg);
  }
  20% {
    transform: translateX(0) skew(-1deg, -1deg);
  }
  25% {
    transform: translateX(0) skew(0.6deg, 0.6deg);
  }
  30% {
    transform: translateX(0) skew(-0.4deg, -0.4deg);
  }
  35% {
    transform: translateX(0) skew(0.2deg, 0.2deg);
  }
}



/*------------------------
./headerここまで
------------------------*/
/*------------------------
mainvisual部分
------------------------*/
.p-mainvisual {
  background: url(assets/images/project/01_mainvisual/mv_bg_sp.webp) center no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}
@media (width >= 768px) {
  .p-mainvisual {
    background: url(assets/images/project/01_mainvisual/mv_bg_pc.webp) center no-repeat;
    background-size: cover;
  }
}

.p-mainvisual__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  max-height: 900px;
}


.p-mainvisual__content {
  position: relative;
  height: 100%;
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
}
.p-mainvisual__img {
  position: absolute;
  padding: 0 2%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 100%;
}
@media (width >= 768px) {
  .p-mainvisual__img {
    max-width: 1000px;
    top: 50%;
  }
}
.p-mainvisual__itemWrap {
  position: absolute;
  bottom: -5%;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media (width >= 768px) {
  .p-mainvisual__itemWrap {
    bottom: -20%;
    background: url(assets/images/project/01_mainvisual/mv_lead_bg_pc.png) center no-repeat;
    background-size: cover;
    height: 400px;
  }
}
.p-mainvisual__items {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (width >= 768px) {
  .p-mainvisual__items {
    margin: 0 auto;
    width: 1000px;
    max-width: 100%;
  }
}
.p-mainvisual__lead--bg img {
  width: 100%;
}
@media (width >= 768px) {
  .p-mainvisual__lead--bg {
    position: absolute;
    top: 62%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    max-width: 750px;
    width: 75%;
  }
}
.p-mainvisual__lead {
  position: absolute;
  bottom: 32%;
  width: 100%;
  z-index: 5;
}
.p-mainvisual__lead img {
  width: 100%;
}
@media (width >= 768px) {
  .p-mainvisual__lead {
    top: 19%;
    right: -2%;
    width: 90%;
  }
}
.p-mainvisual__popup {
  max-width: 250px;
  width: 35%;
  position: absolute;
  bottom: 15%;
  left: 2%;
  z-index: 4;
}
@media (width >= 768px) {
  .p-mainvisual__popup {
    width: 20%;
    left: -2%;
    bottom: 30%;
  }
}

/*------------------------
./mainvisualここまで
------------------------*/
/*------------------------
subsidy部分
------------------------*/
.p-subsidy {
  text-align: center;
  margin-top: 15%;
}
@media (width >= 768px) {
  .p-subsidy {
    margin-top: 10%;
  }
}
.p-subsidy__title {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.p-subsidy__title img {
  width: 100%;
}
.p-subsidy__img {
  margin-top: 10px;
}
.p-subsidy__content {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  aspect-ratio: 16/9;
}
.p-subsidy__video {
  width: 100%;
  height: 100%;
}
.p-subsidy__button {
  margin-top: 20px;
  width: 85%;
  max-width: 400px;
}
@media (width >= 768px) {
  .p-subsidy__button {
    margin-top: 40px;
  }
}

/*------------------------
./subsidyここまで
------------------------*/
/*------------------------
worries部分
------------------------*/
.p-worries {
  background: url(assets/images/project/03_worries/p-worries_bg_sp.webp) center no-repeat;
  background-size: cover;
  margin-top: 45px;
  padding-top: 20px;
  padding-bottom: 40px;
}
@media (width >= 768px) {
  .p-worries {
    background: url(assets/images/project/03_worries/p-worries_bg_pc.webp) center no-repeat;
    background-size: cover;
    margin: 0 calc(50% - 50vw);
    margin-top: 95px;
    width: 100vw;
    padding-bottom: 80px;
  }
}
.p-worries__inner {
  position: relative;
}
.p-worries__title {
  width: 100%;
  margin: 0 auto;
  margin-top: -40px;
  text-align: center;
  max-width: 850px;
}
.p-worries__title img {
  width: 100%;
}
@media (width >= 768px) {
  .p-worries__title {
    margin-top: -70px;
  }
}
.p-worries__item--flex {
  display: block;
}
@media (width >= 768px) {
  .p-worries__item--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-worries__item--flex:not(:first-child) {
  margin: 15px 0;
}
.p-worries__itemWrap {
  margin-top: 12px;
}
@media (width >= 768px) {
  .p-worries__itemWrap {
    margin-top: 0;
    width: 48%;
  }
}
.p-worries__item:not(:first-child) {
  margin-top: 12px;
}
@media (width >= 768px) {
  .p-worries__item:not(:first-child) {
    margin-top: 0;
  }
}
@media (width >= 768px) {
  .p-worries__item:nth-child(n+2) {
    margin-top: 15px;
  }
}
@media (width >= 768px) {
  .p-worries__item--last {
    width: 48%;
    margin: 0 auto;
  }
}
.p-worries__popup {
  max-width: 300px;
  width: 80%;
  position: absolute;
  bottom: 3%;
  left: -20%;
  z-index: 4;
}
@media (width >= 768px) {
  .p-worries__popup {
    max-width: 310px;
    width: 100%;
    left: -2%;
    bottom: 11%;
  }
}

.p-worries__personWrap {
  position: relative;
  width: 70%;
  max-width: 430px;
  margin: 0 auto;
}

@media (width >= 768px) {
  .p-worries__personWrap {
    max-width: 470px;
  }
}

.p-worries__person {
  max-width: 130px;
  margin-left: auto;
  margin-top: 15px;
  position: relative;
  z-index: 5;
}
@media (width >= 768px) {
  .p-worries__person {
    max-width: 240px;
    margin-top: 40px;
  }
}
.p-worries__person img {
  width: 100%;
}
.p-worries__textarea {
  background: url(assets/images/component/c-text_bg.webp) center no-repeat;
  background-size: cover;
  border: 3px solid #000;
}
@media (width >= 768px) {
  .p-worries__textarea {
    border: 4px solid #000;
  }
}
.p-worries__text {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 4%;
}
@media (width >= 768px) {
  .p-worries__text {
    font-size: 2rem;
    text-align: center;
  }
}

/*------------------------
./worriesここまで
------------------------*/
/*------------------------
about部分
------------------------*/
.p-about {
  background: url(assets/images/project/04_about/p-about_bg_sp.jpg) center no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 15px;
}
@media (width >= 768px) {
  .p-about {
    background: url(assets/images/project/04_about/p-about_bg_pc.jpg) center no-repeat;
    background-size: cover;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-bottom: 60px;
  }
}
.p-about__inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 1240px;
  max-width: 100%;
}

.p-about__titleWrap {
  position: relative;
}

@media (width >= 768px) {
  .p-about__titleWrap {
    max-width: 680px;
    margin: 0 auto;
  }
}


.p-about__title {
  width: 100%;
  padding-top: 50px;
  max-width: 430px;
  margin: 0 auto;
}
@media (width >= 768px) {
  .p-about__title {
    text-align: center;
    max-width: 680px;
    width: 100%;
    margin-left: auto;
    margin-right: 50px;
    padding-top: 75px;
  }
}

.p-about__person {
  position: absolute;
  width: 33%;
  left: 0;
  top: -15%;
}
@media (width >= 768px) {
  .p-about__person {
    width: 100%;
    left: -21%;
    top: -19.5%;
    max-width: 340px;
  }
}
.p-about__textarea {
  width: 220px;
  margin-left: auto;
  margin-top: -40px;
}
@media (width >= 768px) {
  .p-about__textarea {
    max-width: 720px;
    width: 60%;
  }
}
.p-about__text {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: left;
}
@media (width >= 768px) {
  .p-about__text {
    font-size: 2.2rem;
  }
}
.p-about__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 30px;
}
@media (width >= 1000px) {
  .p-about__items {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin-top: 30px;
  }
}
.p-about__box {
  text-align: center;
  background: #ED6C00;
  border: 3px solid #000;
  min-width: 100px;
  width: 30%;
  aspect-ratio: 1;
  position: relative;
}
@media (width >= 1000px) {
  .p-about__box {
    width: 16.6666666667%;
    max-width: 180px;
  }
}
.p-about__boxWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.p-about__boxImg {
  width: 40px;
}
@media (width >= 768px) {
  .p-about__boxImg {
    width: 70px;
  }
}
.p-about__boxText {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 5px;
  color: #FFFFFF;
  line-height: 1.3;
}
@media (width >= 768px) {
  .p-about__boxText {
    font-size: 2.3rem;
  }
}
.p-about__text--bottom {
  font-size: 1.9rem;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  padding: 7px 10px;
  margin-top: 15px;
  text-align: center;
}
@media (width >= 768px) {
  .p-about__text--bottom {
    margin-top: 30px;
    font-size: 3.8rem;
  }
}

/*------------------------
./aboutここまで
------------------------*/
/*------------------------
info部分
------------------------*/
.p-info {
  background: url(assets/images/project/05_info/p-info_bg_sp.webp) center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 20px;
  padding-bottom: 30px;
}
@media (width >= 768px) {
  .p-info {
    background: url(assets/images/project/05_info/p-info_bg_pc.webp) center no-repeat;
    background-size: cover;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (width >= 1000px) {
  .p-info__inner {
    padding: 0 70px;
  }
}



.p-info__title {
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
}
@media (width >= 768px) {
  .p-info__title {
    max-width: 480px;
  }
}

/*------------------------
./infoここまで
------------------------*/
/*------------------------
now部分
------------------------*/
.p-now {
  background: url(assets/images/project/06_now/p-now_bg_sp.webp) center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}
@media (width >= 768px) {
  .p-now {
    background: url(assets/images/project/06_now/p-now_bg_pc.webp) center no-repeat;
    background-size: cover;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-now__title {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.p-now__title img {
  width: 100%;
}
.p-now__items {
  margin-top: 20px;
  position: relative;
  text-align: center;
}
@media (width >= 768px) {
  .p-now__items {
    margin-top: 60px;
  }
}
.p-now__itemHeading {
  display: inline-block;
  max-width: 480px;
}
.p-now__itemWrap {
  text-align: right;
  max-width: 400px;
  margin: 0 auto;
}

@media (width >= 1000px) {
  .p-now__itemWrap {
    max-width: 100%;
    margin: 0 auto;
  }
}
.p-now__itemWrap02 {
  text-align: left;
}
.p-now__exhibit {
  font-size: 0.8rem;
  font-weight: bold;
}
@media (width >= 768px) {
  .p-now__exhibit {
    font-size: 10px;
  }
}
.p-now__item {
  position: relative;
  z-index: 6;
  max-width: 1000px;
  padding: 15px;
  background: #fff;
  margin-top: 5px;
  border: solid 3px #000;
}
@media (width >= 1000px) {
  .p-now__item {
    padding: 40px;
    margin-top: 10px;
    border: solid 5px #000;
  }
}

@keyframes scale-blink {
  0%, 100% { border: 3px solid #ccc; }
  50% { border: 3px solid #ED6C00; }
}

.p-now__imgWrap {
  position: relative;
}

/* .p-now__imgWrap::after {
  content: "";
  position: absolute;
  border: #ED6C00 3px solid;
  width: 100%;
  height: 73px;
  left: 50%;
  transform: translate(-50%);
  top: 25%;
  animation: scale-blink 1s infinite;
}

@media (width >= 1000px) {
  .p-now__imgWrap::after {
    height: 96px;
    top: 84px;
  }
} */


.p-now__item img {
  width: 100%;
  max-width: 430px;
}

@media (width >= 1000px) {
  .p-now__item--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 30px;
  }
}
@media (width >= 1000px) {
  .p-now__item--flex02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 30px;
  }
}

@media (width >= 1000px) {
  .p-now__item--flex03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
}
.p-now__itemImg {
  margin-top: 30px;
}
@media (width >= 768px) {
  .p-now__itemImg {
    margin-top: 0;
  }
}
.p-now__itemText {
  font-size: 1.3rem;
  font-weight: bold;
  background-color: #FAD7BA;
  padding: 15px;
  text-align: left;
  margin-top: 15px;
}
@media (width >= 1000px) {
  .p-now__itemText {
    max-width: 290px;
    font-size: 1.8rem;
    margin-top: 0;
    height: 230px;
  }
}
@media (width >= 768px) {
  .p-now__itemText02 {
    width: 100%;
    max-width: none;
    margin-top: 30px;
    height: auto;
  }
}
.p-now__person01 {
  position: absolute;
  top: 82px;
  left: -10px;
  width: 43%;
  z-index: 5;
  max-width: 160px;
}
@media (width >= 768px) {
  .p-now__person01 {
    top: 64px;
    left: -40px;
    width: 23%;
    z-index: 6;
    max-width: none;
  }
}
.p-now__person02 {
  position: absolute;
  top: 51px;
  right: -47px;
  width: 48%;
  z-index: 5;
  max-width: 160px;
}
@media (width >= 768px) {
  .p-now__person02 {
    top: 64px;
    width: 23%;
    z-index: 6;
    max-width: none;
  }
}
.p-now__person03 {
  position: absolute;
  top: 48px;
  right: -80px;
  width: 70%;
  z-index: 5;
  max-width: 260px;
}
@media (width >= 768px) {
  .p-now__person03 {
    top: 60px;
    right: -38px;
    width: 38%;
    max-width: none;
  }
}
.p-now__bottomWrap {
  position: relative;
  margin-top: 30px;
}
@media (width >= 768px) {
  .p-now__bottomWrap {
    display: none;
  }
}
.p-now__textarea {
  background: url(assets/images/component/c-text_bg.webp) center no-repeat;
  background-size: cover;
  border: 3px solid #000;
}
@media (width >= 768px) {
  .p-now__textarea {
    border: 4px solid #000;
  }
}
.p-now__text {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 4%;
}
@media (width >= 768px) {
  .p-now__text {
    font-size: 2rem;
    text-align: center;
  }
}
.p-now__popup {
  max-width: 300px;
  width: 45%;
  position: absolute;
  bottom: 28%;
  right: 9%;
  z-index: 4;
}
@media (width >= 768px) {
  .p-now__popup {
    max-width: 310px;
    width: 30%;
    left: 27%;
    bottom: 17%;
  }
}
.p-now__person04 {
  width: 80%;
  margin: 0 auto 0 0;
  margin-left: 5%;
  position: relative;
  z-index: 5;
}
@media (width >= 768px) {
  .p-now__person04 {
    max-width: 240px;
    margin-right: 26%;
    margin-top: 40px;
  }
}
.p-now__person04 img {
  width: 100%;
}

/*------------------------
./nowここまで
------------------------*/
/*------------------------
job部分
------------------------*/
.p-job {
  text-align: center;
  background-color: #CFEEEF;
  position: relative;
  padding-top: 30px;
  padding-bottom: 25px;
}
@media (width >= 768px) {
  .p-job {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (width >= 768px) {
  .p-job__inner {
    background-color: #fff;
    border: 5px solid #000;
    padding: 3%;
  }
}
.p-job__title {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.p-job__title img {
  width: 100%;
}
.p-job__heading {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 15px;
}
@media (width >= 768px) {
  .p-job__heading {
    max-width: 450px;
  }
}
.p-job__content {
  margin-top: 20px;
}
@media (width >= 768px) {
  .p-job__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 35px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-job__item {
  position: relative;
}
@media (width >= 768px) {
  .p-job__item {
    width: 48%;
  }
}
.p-job__img {
  max-width: 345px;
  margin: 0 auto;
}
@media (width >= 768px) {
  .p-job__img {
    max-width: 440px;
  }
}
.p-job__linkWrap {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 90%;
}
.p-job__link {
  max-width: 300px;
}
@media (width >= 768px) {
  .p-job__link {
    max-width: 400px;
  }
}
.p-job__buttonWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 10px;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  max-width: 345px;
  list-style: none;
}
@media (width >= 768px) {
  .p-job__buttonWrapper {
    width: 48%;
    max-width: 410px;
    height: 260px;
    margin: 0;
  }
}
.p-job__button {
  width: 80px;
  height: 45px;
  cursor: pointer;
}
@media (width >= 768px) {
  .p-job__button {
    max-width: 95px;
    height: 54px;
    width: 23%;
  }
}
.p-job__button.show {
  pointer-events: none;
}
.p-job__button01 {
  background: url(assets/images/project/07_job/INTJ_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button01.show {
  background: url(assets/images/project/07_job/INTJ_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button02 {
  background: url(assets/images/project/07_job/INTP_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button02.show {
  background: url(assets/images/project/07_job/INTP_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button03 {
  background: url(assets/images/project/07_job/ENTJ_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button03.show {
  background: url(assets/images/project/07_job/ENTJ_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button04 {
  background: url(assets/images/project/07_job/ENTP_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button04.show {
  background: url(assets/images/project/07_job/ENTP_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button05 {
  background: url(assets/images/project/07_job/INFJ_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button05.show {
  background: url(assets/images/project/07_job/INFJ_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button06 {
  background: url(assets/images/project/07_job/INFP_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button06.show {
  background: url(assets/images/project/07_job/INFP_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button07 {
  background: url(assets/images/project/07_job/ENFJ_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button07.show {
  background: url(assets/images/project/07_job/ENFJ_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button08 {
  background: url(assets/images/project/07_job/ENFP_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button08.show {
  background: url(assets/images/project/07_job/ENFP_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button09 {
  background: url(assets/images/project/07_job/ISTJ_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button09.show {
  background: url(assets/images/project/07_job/ISTJ_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button10 {
  background: url(assets/images/project/07_job/ISFJ_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button10.show {
  background: url(assets/images/project/07_job/ISFJ_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button11 {
  background: url(assets/images/project/07_job/ESTJ_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button11.show {
  background: url(assets/images/project/07_job/ESTJ_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button12 {
  background: url(assets/images/project/07_job/ESFJ_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button12.show {
  background: url(assets/images/project/07_job/ESFJ_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button13 {
  background: url(assets/images/project/07_job/ISTP_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button13.show {
  background: url(assets/images/project/07_job/ISTP_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button14 {
  background: url(assets/images/project/07_job/ISFP_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button14.show {
  background: url(assets/images/project/07_job/ISFP_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button15 {
  background: url(assets/images/project/07_job/ESTP_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button15.show {
  background: url(assets/images/project/07_job/ESTP_on.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button16 {
  background: url(assets/images/project/07_job/ESFP_off.png) no-repeat;
  background-size: 100% 100%;
}
.p-job__button16.show {
  background: url(assets/images/project/07_job/ESFP_on.png) no-repeat;
  background-size: 100% 100%;
}

/*------------------------
./jobここまで
------------------------*/
/*------------------------
support部分
------------------------*/
.p-support {
  background: url(assets/images/project/08_support/p-support_bg_sp.webp) center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}
@media (width >= 768px) {
  .p-support {
    background: url(assets/images/project/08_support/p-support_bg_pc.webp) center no-repeat;
    background-size: cover;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-support__title {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.p-support__title img {
  width: 100%;
}
.p-support__box {
  background-color: #fff;
  border: 3px solid #000;
  -webkit-box-shadow: 4px 4px;
          box-shadow: 4px 4px;
  padding: 20px;
  margin-top: 20px;
  position: relative;
}
@media (width >= 768px) {
  .p-support__box {
    margin-top: 60px;
    max-width: 980px;
    padding: 30px 0 45px 0;
  }
}
.p-support__heading {
  position: absolute;
  max-width: 200px;
  width: 100%;
  left: -13px;
}
@media (width >= 768px) {
  .p-support__heading {
    max-width: 280px;
    left: -17px;
  }
}
.p-support__boxTitle01 {
  margin-top: 45px;
}
@media (width >= 768px) {
  .p-support__boxTitle01 {
    max-width: 425px;
    width: 100%;
    margin: 0 auto;
  }
}
.p-support__boxTitle02 {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
}
@media (width >= 768px) {
  .p-support__boxTitle02 {
    max-width: 390px;
    margin: 0 auto;
  }
}
.p-support__boxImg01 {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
@media (width >= 768px) {
  .p-support__boxImg01 {
    max-width: 415px;
    margin-top: 10px;
  }
}
.p-support__boxImg02 {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  margin-top: 15px;
}
@media (width >= 768px) {
  .p-support__boxImg02 {
    max-width: 660px;
    background-color: #FFD649;
    text-align: center;
  }
}
.p-support__boxImg03 {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
}
@media (width >= 768px) {
  .p-support__boxImg03 {
    max-width: 660px;
    background-color: #C9E4CF;
    text-align: center;
  }
}
.p-support__boxImg04 {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
}
@media (width >= 768px) {
  .p-support__boxImg04 {
    max-width: 660px;
    background-color: #D4EDF7;
    text-align: center;
  }
}
.p-support__boxImg__text {
  padding: 20px;
  font-size: 1.3rem;
  font-weight: bold;
}
@media (width >= 768px) {
  .p-support__boxImg__text {
    font-size: 1.6rem;
  }
}
.p-support__boxImg__text01 {
  background-color: #FFD649;
}
.p-support__boxImg__text02 {
  background-color: #C9E4CF;
}
.p-support__boxImg__text03 {
  background-color: #D4EDF7;
}
.p-support__textarea {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 15px;
}
@media (width >= 768px) {
  .p-support__textarea {
    max-width: 660px;
    margin-top: 30px;
  }
}
.p-support__text {
  font-size: 1.3rem;
  font-weight: bold;
}
@media (width >= 768px) {
  .p-support__text {
    font-size: 1.6rem;
  }
}
.p-support__linkWrap {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 15px;
}
@media (width >= 768px) {
  .p-support__linkWrap {
    max-width: 400px;
    margin-top: 40px;
  }
}

/*------------------------
./supportここまで
------------------------*/
/*------------------------
center部分
------------------------*/
.p-center {
  background: url(assets/images/project/09_center/p-center_bg_sp.webp) top no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px;
  /* Google Mapのiframe */
}
@media (width >= 1000px) {
  .p-center {
    background: url(assets/images/project/09_center/p-center_bg_pc.webp) center no-repeat;
    background-size: cover;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-center__title {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.p-center__title img {
  width: 100%;
}
.p-center__items {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
@media (width >= 1000px) {
  .p-center__items {
    max-width: 100%;
    margin-top: 50px;
    height: 650px;
  }
}
.p-center__person01 {
  max-width: 500px;
  margin: 0 auto;
}
@media (width >= 1000px) {
  .p-center__person01 {
    max-width: 650px;
    margin: 0;
    position: absolute;
    left: 0;
    top: -50px;
  }
}
.p-center__item {
  position: absolute;
  max-width: 300px;
  width: 60%;
  right: 0;
  bottom: -30px;
}
@media (width >= 1000px) {
  .p-center__item {
    max-width: 450px;
    right: 60px;
  }
}
.p-center__textarea {
  background: url(assets/images/component/c-text_bg.webp) center no-repeat;
  background-size: cover;
  border: 3px solid #000;
  margin-top: 55px;
  margin-bottom: 40px;
}
@media (width >= 1000px) {
  .p-center__textarea {
    border: 4px solid #000;
    margin: 55px auto 100px auto;
    max-width: 780px;
  }
}
.p-center__text {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 4%;
}
@media (width >= 1000px) {
  .p-center__text {
    font-size: 2rem;
    text-align: center;
  }
}
.p-center__content {
    text-align: center;
    position: relative;
    margin-bottom: 180px;
}

@media (width >= 1000px) {
  .p-center__content {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    margin-bottom: 300px;
  }
}

.p-center__boxWrapper {
  display: inline-block;
  margin-bottom: 20px;
}

@media (width >= 1000px) {
  .p-center__boxWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
  }
}
.p-center__box {
  max-width: 385px;
  background-color: #fff;
  padding: 15px;
  border: 3px solid #000;
  margin-top: 20px;
}
@media (width >= 1000px) {
  .p-center__box {
    width: 385px;
    margin: 0;
  }
}
.p-center__boxTitle01 {
  text-align: center;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: bottom;
}
.p-center__boxImg01 {
  margin-top: 10px;
}
.p-center__boxTextarea {
  margin-top: 10px;
}
.p-center__boxText {
  font-size: 1.3rem;
  font-weight: bold;
}
.p-center__swiperArea {
  max-width: 315px;
  margin: 0 auto;
  position: relative;
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
@media (width >= 1000px) {
  .p-center__swiperArea {
    max-width: none;
  }
}
.p-center__swiperArea .swiper-button-next {
  right: -25px;
}
.p-center__swiperArea .swiper-button-prev {
  left: -25px;
}
.p-center__swiperArea .swiper-button-prev::after {
  border-bottom: 17px solid transparent;
  border-right: 15px solid #000;
  border-top: 17px solid transparent;
}
.p-center__swiperArea .swiper-button-next::after {
  border-bottom: 17px solid transparent;
  border-left: 15px solid #000;
  border-top: 17px solid transparent;
}
@media (width >= 1000px) {
  .p-center__swiperArea .swiper-button-prev,
  .p-center__swiperArea .swiper-button-next {
    display: none;
  }
}
.p-center__person02 {
  position: absolute;
  max-width: 370px;
  width: 100%;
  left: 50%;
  transform: translate(-50%);
}
@media (width >= 1000px) {
  .p-center__person02 {
    margin: 0;
    width: 100%;
    max-width: 550px;
    left: 55%;
    margin-top: 40px;
  }
}
@media (width >= 1000px) {
  .p-center__swiperWrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-center__swiperWrapper .swiper-slide {
  width: 315px;
}
.p-center__slide {
  padding-top: 50px;
  height: 100%;
}
.p-center__slideInner {
  max-width: 315px;
  height: 420px;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 30px 35px;
  background-color: #fff;
  border: 3px solid #000;
}
.p-center__slideTerm {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-center__slideIcon {
  position: absolute;
  top: -80px;
  left: -15px;
  width: 130px;
  height: 130px;
}
.p-center__slideName {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-center__slideCareer {
  font-size: 1.3rem;
  font-weight: bold;
}
.p-center__slideText {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: bold;
}
.p-center__tabWrapper {
  --tab-color:#EFD725;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
  margin-inline: auto;
  gap: 0 10px;
  margin-top: 40px;
  /* ラジオ非表示 */
  /* タブボタン */
  /* コンテンツ非表示 */
  /* 選択されたタブ＋コンテンツ表示 */
}
@media (width >= 768px) {
  .p-center__tabWrapper {
    margin-top: 50px;
  }
}
.p-center__tabWrapper input {
  display: none;
}
.p-center__tabWrapper label {
  padding: 18px 30px;
  background: #E2E2E2;
  cursor: pointer;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  border: 3px solid #000;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto; /* 均等幅 */
}
@media (width >= 768px) {
  .p-center__tabWrapper label {
    max-width: 110px;
  }
}
.p-center__tabWrapper .p-center__tabContent {
  display: none;
  width: 100%;
  padding: 20px 15px;
  background-color: #fff;
  border: 3px solid #000;
}
@media (width >= 768px) {
  .p-center__tabWrapper .p-center__tabContent {
    padding: 30px;
  }
}
.p-center__tabWrapper input:checked + label {
  background: var(--tab-color);
  color: #000;
}
.p-center__tabWrapper input:checked + label + .p-center__tabContent {
  display: block;
}
@media (width >= 768px) {
  .p-center__addressWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 15px;
  }
}
@media (width >= 768px) {
  .p-center__map {
    width: 48%;
  }
}
@media (width >= 768px) {
  .p-center__info {
    width: 48%;
  }
}
.p-center__name {
  font-weight: bold;
  font-size: 1.8rem;
}
.p-center__map iframe {
  max-width: 470px;
  width: 100%!important;
  height: auto;
  aspect-ratio: 3/2;
}
.p-center__info {
  font-size: 1.3rem;
}
@media (width >= 768px) {
  .p-center__info {
    font-size: 1.6rem;
  }
}
.p-center__info p {
  font-weight: bold;
}
.p-center__tel span {
  font-size: 2.8rem;
  font-weight: bold;
}
@media (width >= 768px) {
  .p-center__tel span {
    font-size: 3.6rem;
  }
}

/*------------------------
./centerここまで
------------------------*/
/*------------------------
footer部分
------------------------*/
.l-footer {
  width: 100%;
  z-index: 10;
  background: #FFFFFF;
  color: #000000;
}

.p-footer {
  background: url(assets/images/project/10_footer/p-footer_bg_sp.webp) center no-repeat;
  background-size: cover;
  position: relative;
  border-top: 3px solid #ED6C00;
  border-bottom: 3px solid #ED6C00;
  margin-top: 20px;
}
@media (width >= 768px) {
  .p-footer {
    background: url(assets/images/project/10_footer/p-footer_bg_pc.webp) center no-repeat;
    background-size: cover;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    margin-top: 40px;
  }
}
.p-footer__linkWrap {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 15px;
}
@media (width >= 768px) {
  .p-footer__linkWrap {
    max-width: 400px;
    margin-top: 40px;
  }
}
.p-footer__popup {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 4;
}
@media (width >= 768px) {
  .p-footer__popup {
    max-width: 520px;
  }
}
.p-footer__person {
  width: 100%;
  position: relative;
  z-index: 5;
}
@media (width >= 768px) {
  .p-footer__person {
    max-width: 400px;
    margin: 0 auto;
  }
}
.p-footer__person img {
  width: 100%;
}
.p-footer__copyright {
  text-align: center;
  padding: 12px 0 15px 0;
  font-size: 1rem;
  font-weight: bold;
}
@media (width >= 768px) {
  .p-footer__copyright {
    font-size: 1.2rem;
    padding: 20px 0;
  }
}

/*------------------------
./footer部分
------------------------*/