@charset "UTF-8";

/* ========================================
   Main visual
======================================== */
.p-mainvisual {
  margin-top: 120px;
  position: relative;
  /* background: var(--pale); */
}

.p-mainvisual__visual {
  position: relative;
  display: flex;
  /* width: min(100%, 1920px); */
  height: 680px;
  margin: 0 auto;
  background: var(--pale);
}

.p-mainvisual__copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 780px;
  flex: 0 0 780px;
  flex-direction: column;
  justify-content: center;
  padding-left: 300px;
}

.p-mainvisual__badge {
  display: flex;
  width: 337px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-yumincho);
  font-size: 30px;
  font-weight: 600;
  white-space: nowrap;
  padding-top: 3px;
}

.p-mainvisual__title {
  width: 700px;
  font-family: var(--font-yumincho);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  margin: 15px 0 18px;
}

.p-mainvisual__title em,
.p-mainvisual__lead em {
  color: var(--primary);
  font-style: normal;
}

.p-mainvisual__lead {
  width: 550px;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.p-mainvisual__image {
  width: calc(100% - 780px);
  height: 680px;
  overflow: hidden;
  position: relative;
}
.p-mainvisual__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--pale) 0, rgb(235 243 245 / 93%) 7%, rgb(235 243 245 / 55%) 18%, transparent 38%);
    content: "";
}
.p-mainvisual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.p-mainvisual__points {
  position: absolute;
  bottom: -75px;
  left: 50%;
  z-index: 4;
  display: flex;
  width: 1100px;
  height: 150px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transform: translateX(-50%);
}

.p-mainvisual__point {
  position: relative;
  display: flex;
  width: calc(100% / 3);
  height: 74px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 18px;
}

.p-mainvisual__point + .p-mainvisual__point::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 1px dashed #ccc;
}

.p-mainvisual__point img {
  width: 75px;
  height: 70px;
  object-fit: contain;
}

.p-mainvisual__point p {
  /* font-family: "yuminchodb", "Yu Mincho", serif; */
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.p-mainvisual__point strong {
  font-size: 18px;
  color: var(--primary);
}

.p-mainvisual__point small {
  font-family: "Yu Gothic", sans-serif;
  /* font-size: 12px; */
}

.p-mainvisual__quick {
  position: fixed;
  right: 40px;
  bottom: 164px;
  z-index: 5;
  display: flex;
  width: 220px;
  height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-family: var(--font-yumincho);
  transition: color 0.3s ease, opacity 0.3s ease;
}

.p-mainvisual__quick:hover,
.p-mainvisual__quick:focus-visible {
  /* color: var(--primary); */
  opacity: 0.9;
}

.p-mainvisual__quick-image {
  display: block;
  width: 140px;
  height: 100px;
  overflow: hidden;
  border-radius: 70px 70px 20px 20px;
  background: #eaf6fa;
}

.p-mainvisual__quick img {
  width: 192px;
  height: 235px;
  transform: translateX(-49%);
  position: absolute;
  left: 50%;
  top: -15%;
}

.p-mainvisual__quick strong {
  font-size: 14px;
}

.p-mainvisual__quick small {
  color: var(--primary);
  font-size: 13px;
}


/* ========================================
   Concerns
======================================== */
.p-concerns__lead,
.p-services__lead {
  text-align: center;
  font-size: 20px;
}

.p-concerns__list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: center;
}

.p-concerns__list li {
  display: flex;
  width: 400px;
  min-height: 140px;
  align-items: center;
  gap: 30px;
  padding: 28px 35px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
}

.p-concerns__list img {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
}

.p-concerns__list p {
  /* font-family: "yuminchodb", "Yu Mincho", serif; */
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

/* ========================================
   Services
======================================== */
.p-services {
  position: relative;
  /* overflow: hidden; */
}

.p-services__backdrop {
    position: absolute;
    top: -220px;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: calc(100% - 180px);
    height: 1268px;
    border-radius: 20px 0px 0px 20px;
    background-color: #F9FCFC;
    background-image: url(../images/top/bg2.png);
    background-size: cover;
    }

.p-services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 60px;
  padding-right: 20px;
  padding-left: 20px;
  justify-content: center;
}

.p-services__item {
  width: 341px;
  text-align: center;
}
.p-services__item a{
	width: 100%;
	height: 100%;
	display: block;
}

.p-services__image {
  position: relative;
  width: 340px;
  height: 304px;
  overflow: hidden;
  background: #fff;
  mask-image: url(../images/top/marks.png);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  object-fit: cover;
}

.p-services__item a:hover img{
	transform: scale(1.1);
}

.p-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all ease 0.4s;
}

.p-services__item h3 {
  font-size: 20px;
  font-weight: 600;
}
.p-services__item h3::after{
	content: '';
	width: 20px;
	margin: 10px auto 0;
	height: 1px;
	background-color: #111;
	display: block;
}
.p-services__item p {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  color: #666;
  width: 209px;
  margin: auto;
}

.p-services__links {
  display: flex;
  justify-content: center;
  gap: 80px;
}


/* ========================================
   Access
======================================== */
.p-access {
  position: relative;
  /* overflow: hidden; */
}

.p-access__backdrop {position: absolute;top: -310px;left: 0;width: 100%;bottom: 0;z-index: -1;height: 1198px;border-radius: 20px 0px 0px 20px;background-color: #F9FCFC;background-image: url(../images/top/bg3.png);background-size: cover;}

.p-access__visual {
  width: 100%;
  height: 763px;
}


.p-access__means {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-access__means > div {
  position: relative;
  display: flex;
  min-width: 350px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 5px 45px;
}

.p-access__means > div + div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 50px;
  background: #bbb;
  transform: translateY(-50%);
}

.p-access__means img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.p-access__means p {
  font-size: 16px;
}


/* ========================================
   Responsive: laptop / tablet
======================================== */
@media screen and (max-width: 1599px) and (min-width: 1200px) {
  .p-mainvisual__copy {
    width: 42%;
    flex-basis: 42%;
    padding-left: 9vw;
  }
  .p-mainvisual__image {
    width: 58%;
  }
  .p-mainvisual__title {
    width: 650px;
    font-size: 52px;
  }
  .p-mainvisual__badge {
    width: 300px;
    font-size: 26px;
  }
  .p-mainvisual__quick {
    /* right: 18px; */
    /* width: 190px; */
    /* height: 190px; */
  }
  .p-concerns__list {
    justify-content: center;
  }
}

@media screen and (max-width: 1199px) {
	.p-mainvisual{
		margin-top: 76px;
	}
  .p-mainvisual__visual {
    height: auto;
    flex-direction: column-reverse;
  }
  .p-mainvisual__image {
    width: 100%;
    height: min(56vw, 560px);
  }
  .p-mainvisual__copy {
    width: 100%;
    flex-basis: auto;
    padding: 55px max(32px, 7vw) 145px;
  }
  .p-mainvisual__title {
    width: auto;
    font-size: clamp(42px, 6vw, 58px);
    white-space: normal;
  }
  .p-mainvisual__lead {
    width: auto;
  }
  .p-mainvisual__points {
    bottom: -55px;
    width: calc(100% - 64px);
    height: 150px;
  }
  .p-mainvisual__point {
    gap: 16px;
  }
  .p-mainvisual__point img {
    width: 58px;
    height: 55px;
  }
  .p-mainvisual__point p {
    font-size: 15px;
  }
  .p-mainvisual__point strong {
    font-size: 19px;
  }
  .p-mainvisual__quick {
    display: none;
  }
  
  .p-concerns__list {
    justify-content: center;
    gap: 26px;
  }
  .p-concerns__list li {
    width: calc(50% - 13px);
  }
  .p-services__backdrop {
    top: 0;
    bottom: 0;
    left: 40px;
  }
  .p-services__list {
    justify-content: center;
    gap: 60px 50px;
    padding-right: 0;
    padding-left: 0;
  }
  .p-services__item {
    width: calc(50% - 25px);
    max-width: 390px;
  }
  .p-services__image {
    width: min(100%, 340px);
    margin: 0 auto;
  }
  .p-services__links {
    gap: 40px;
  }
	
  .p-access__backdrop {
    top: -120px;
    height: 680px;
  }
  .p-access__visual {
    height: 520px;
  }


}

@media screen and (max-width: 767px) {
	.p-mainvisual {
        margin-top: 0;
    }
  .p-mainvisual__image {
    height: 622px;
    min-height: 235px;
  }
	.p-mainvisual__image img{
		transform: unset;
	}
	.p-mainvisual__image::after{
		display: none;
	}
  .p-mainvisual__copy {
    padding: 36px 10px 250px;
    margin: -150px auto 0;
    width: 100%;
    max-width: 328px;
  }
  .p-mainvisual__badge {
    width: 170px;
    padding-top: 2px;
    height: 30px;
    border-radius: 20px;
    font-size: 15px;
  }
  .p-mainvisual__title {
    font-size: 28px;
    line-height: 1.45;
    margin: 10px 0;
  }
  .p-mainvisual__lead {
    font-size: 12px;
  }
  .p-mainvisual__lead br {
    /* display: none; */
  }
  .p-mainvisual__points {
    bottom: -40px;
    width: 100%;
    max-width: 310px;
    height: auto;
    flex-direction: column;
    padding: 14px 20px;
  }
  .p-mainvisual__point {
    width: 100%;
    max-width: 216px;
    height: 80px;
    justify-content: flex-start;
    gap: 6px;
  }
  .p-mainvisual__point + .p-mainvisual__point::before {
    top: 0;
    bottom: auto;
    left: 50%;
    border-top: 1px dashed #ccc;
    border-left: 0;
    width: 160px;
    transform: translateX(-50%);
  }
  .p-mainvisual__point img {
    width: 58px;
    height: 55px;
    transform: translateY(-1px);
  }
  .p-mainvisual__point p {
    font-size: 14px;
  }
  .p-mainvisual__point strong {
    font-size: 14px;
  }
  
  .p-concerns__lead,
  .p-services__lead {
    font-size: 14px;
  }
  .p-concerns__list {
    gap: 16px 4%;
  }
  .p-concerns__list li {
    width: 48%;
    min-height: 112px;
    gap: 15px;
    padding: 20px 10px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .p-concerns__list img {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }
  .p-concerns__list p {
    font-size: 12px;
    width: 100%;
  }
  .p-services__backdrop {
    left: 0;
    border-radius: 0;
    width: 100%;
    top: -10%;
  }
  .p-services__list {
    gap: 50px 4%;
  }
  .p-services__item {
    width: 48%;
    max-width: 340px;
  }
  .p-services__image {
    width: 100%;
    max-width: 160px;
    height: 140px;
    mask-size: contain;
  }
  .p-services__item h3 {
    font-size: 14px;
  }
	.p-services__item p{
		font-size: 12px;
		width: 100%;
		max-width: 140px;
	}
  .p-services__links {
    flex-direction: column;
    gap: 20px;
  }
 
  .p-access__backdrop {
    /* top: -80px; */
    /* height: 430px; */
  }
  .p-access__visual {
    height: 330px;
  }
  
  .p-access__means {
    flex-direction: column;
  }
  .p-access__means > div {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 18px 10px;
  }
  .p-access__means > div + div::before {
    top: 0;
    right: 10px;
    left: 10px;
    width: auto;
    height: 1px;
    transform: none;
  }
   
}

/* SCROLLDOWN */
.c-scrolldown {
  position: fixed;
  background-color: #fff;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all ease 0.7s;
  z-index: 99;
}
.hide .c-scrolldown{
  right: -100%;
}
.c-scrolldown::before{
  background-image: url('../images/ic-arr-downb.png');
  width: 20px;
  height: 11px;
  margin-bottom: 5px;
  transition: all ease 0.4s;
}
.c-scrolldown span{
  display: block;
  width: 100%;
  color: #111;
  font-size: 10px;
}
.c-scrolldown.toTop::before{
  transform: rotate(180deg);
}

@media(max-width: 1024px){
  .c-scrolldown{
    width: 70px;
    height: 70px;
    right: 20px;
    bottom: 20px;
  }
  .c-scrolldown::before{
    width: 18px;
    height: 8px;
  }
}
@media(max-width: 768px){
  .c-scrolldown{
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
    align-content: center;
  }
	.c-scrolldown span{
		font-size: 8px;
		line-height: 1.2;
	}
	.c-scrolldown::before{
		margin-bottom: 5px;
		width: 15px;
		height: 5px;
	}
}
/* END SCROLLDOWN */

/**About*/
.c-about--inner{
  height: 525px;
}

.c-about__title strong{
  font-size: 38px;
}

.c-about__slider .swiper-slide{transition: all ease 0.4s;border-radius: 50%;/* height: 320px; */aspect-ratio: 320/320;}
.c-about__slider .swiper-slide img{border-radius: 50%;height: 100%;object-fit: cover;object-position: center;aspect-ratio: 1/1;}
.c-about__slider .swiper-slide.swiper-slide-prev,
.c-about__slider .swiper-slide.swiper-slide-next{
margin-top: 107px;
}

@media(max-width: 1600px){
  .c-about--inner,
  .c-about::before{
    height: 360px;
  }
}
@media(max-width: 1400px){
  .c-about--inner,
  .c-about::before{
    height: 325px;
  }
}
@media(max-width: 1200px){
  .c-about--inner,
  .c-about::before{
    height: 290px;
  }
}
@media(max-width: 1024px){
  .c-about__slider{
    top: 0;
    transform: translateY(150px);
  }
}
@media(max-width: 768px){
  .c-about--inner{
    height: auto;
  }
  .c-about__slider .swiper-slide.swiper-slide-prev,
  .c-about__slider .swiper-slide.swiper-slide-next{
    margin-top: 0;
  }
  .c-about__slider{
    margin-top: 0;
    transform: translateY(0);
  }
}
/**End About*/
/* MARQUEE */
.c-marquee {
  display: flex;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  font-family: sans-serif;
  position: relative;
  left: 0;
  margin-top: -9%;
  margin-bottom: -65px;
}

.c-marquee__text {
  font-size: 280px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-yumincho);
  letter-spacing: 0;
  padding: 0 50px;
  color: #111;
  -webkit-animation-name: marquee;
  animation-name: marquee;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0.05;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 1024px) {
  .c-marquee {
  margin-top: -120px;
  }
  .c-marquee__text {
    font-size: 220px;
    line-height: 1;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
  }
}
@media screen and (max-width: 768px) {
  .c-marquee {
  margin-top: -50px;
  }
  .c-marquee__text {
    font-size: 150px;
    padding: 0 20px;
  }
}
/* END MARQUEE */