@charset "utf-8";
:root{
  /* --font-en:"Nunito Sans", sans-serif; */
  --font-en:"Helvetica Neue", "Helvetica","Arial",sans-serif;
  /* --font-jp:"IBM Plex Sans JP", sans-serif; */
  --font-jp:"Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --gradient-primary:linear-gradient(117deg, #335DEC 1.99%, #1C3A9C 55.85%);
  --gradient-secondary:linear-gradient(117deg, #478DF6 1.99%, #224CA8 55.85%);
  --border:#e5e5e5;
  --primary:#1D3A9C;
  --secondary:#234DA8;
}


body{
  font-family: var(--font-jp);
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.l-container{
  width: 100%;
  max-width: 1160px;
  padding-inline: 40px;
  margin-inline: auto;
}

.l-spacer-primary{
  padding-top: 80px;
}

.c-heading-primary{
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.c-heading-primary span{
  display: inline-block;
}

@media screen and (max-width:768px) {
  .l-container{
    padding-inline: 5.33333333vw;
  }

  .l-spacer-primary{
    padding-top: 64px;
  }

  .c-heading-primary{
    font-size: 28px;
  }
}

.p-header{
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  padding: 16px 24px;
  z-index: 100;
  transition: background 0.3s;
}

.p-header__nav{
  align-self: center;
}

.p-header__nav-list{
  display: flex;
  gap: 24px;
}

.p-header__nav-item a{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.p-header__button-wrap{
  margin-left: auto;
}

.p-header__button{
  display: inline-block;
  padding: 10px 32px 8px;
  background: var(--gradient-secondary);
  color: #fff;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
}

.is-scroll.p-header{
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.is-scroll .p-header__nav-item a{
  color: #000;
}

.p-hamburger__button{
  display: none;
}

@media (any-hover: hover){
  .p-header__nav-item a{
    transition: opacity 0.3s;
  }

  .p-header__nav-item a:hover{
    opacity: 0.7;
  }

  .is-scroll .p-header__nav-item a:hover{
    color: var(--primary);
  }

  .p-header__button{
    transition: opacity 0.3s;
  }

  .p-header__button:hover{
    opacity: 0.7;
  }
}

@media screen and (max-width:768px) {
  .p-header{
    padding: 16px;
  }

  .p-header__nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:var(--gradient-primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .p-header__nav-list{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-block: 20vh;
  }

  .p-header__nav-item a{
    color: #fff;
    font-size: 14px;
  }

  .p-header__button-wrap{
    /* margin-left: 16px; */
  }

  .p-header__button{
    padding: 10px 24px 8px;
    font-size: 10px;
  }

  .is-scroll.p-header{
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }

  .is-scroll .p-header__nav-item a{
    color: #fff;
  }

  .p-hamburger__button{
    align-self: center;
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    /* margin-left: auto; */
    z-index: 10;
  }

  .p-hamburger__line{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 1px;
    background-color: #fff;
  }

  .p-hamburger__line::before,
  .p-hamburger__line::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    margin: auto;
    background: #fff;
  }

  .p-hamburger__line::before{
    top: -8px;
  }

  .p-hamburger__line::after{
    top: 8px;
  }

  .is-scroll .p-hamburger__line,
  .is-scroll .p-hamburger__line::before,
  .is-scroll .p-hamburger__line::after{
    background-color: var(--primary);
  }

  .is-active .p-header__nav{
    opacity: 1;
    pointer-events: all;
  }

  .is-active .p-hamburger__line{
    background-color: transparent;
  }

  .is-active .p-hamburger__line::before{
    top: 0;
    rotate: 45deg;
  }

  .is-active .p-hamburger__line::after{
    top: 0;
    rotate: -45deg;
  }
}

.p-hero{
  display: flex;
  overflow: hidden;
}

.p-hero__body{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 53%;
  padding:7vw 2vw 7vw 5.555555556vw;
  background: var(--gradient-primary);
  color: #fff;
  z-index: 0;
}

.p-hero__body::before{
  content: "";
  position: absolute;
  top: 1.944444444vw;
  left: 2.222222222vw;
  width: 52.777777778vw;
  padding-top: 36.31944444vw;
  background: url(../img/campaign/bg-circle01.svg) no-repeat center / cover;
  z-index: -1;
  pointer-events: none;
}

.p-hero__body::after{
  content: "";
  position: absolute;
  top: 0;
  right: -9.98vw;
  width: 10vw;
  height: 100%;
  background-color: var(--primary);
  clip-path: polygon(0 0, 0% 100%, 50% 100%);
  z-index: 1;
}

.p-hero__subCopy{
  font-size: 1.111111111vw;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.p-hero__copy{
  font-size: 3.888888889vw;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.p-hero__read{
  margin-top: 8px;
  font-size: 1.388888889vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.15em;
}

.p-hero__read span{
  display: inline-block;
  margin-top: 8px;
  margin-right: 6px;
  padding:2px 0 0 4px;
  background-color: #fff;
  color: var(--primary);
  font-size: 1.805555556vw;
  line-height: 1.5;
}

.p-hero__list{
  display: flex;
  gap: 3%;
  margin-top: 32px;
}

.p-hero__item{
  padding:1vw 2.95138889vw 1.388888889vw;
  background: url(../img/campaign/frame-left.svg) no-repeat left bottom / 2.95138889vw,url(../img/campaign/frame-right.svg) no-repeat right bottom / 2.95138889vw;
  text-align: center;
  font-size: 0.972222222vw;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.p-hero__item span{
  font-size: 1.25vw;
}

.p-hero__text{
  margin-top: 16px;
  font-size: 0.833333333vw;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.p-hero__image{
  flex: 1;
}

.p-hero__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

  .p-hero__body{
    width: 100%;
    padding:14vw 4vw 6vw;
    overflow: hidden;
  }

  .p-hero__body::before{
    content: "";
    position: absolute;
    top: -5%;
    left: -2%;
    width: 100vw;
    padding-top: 80%;
    background: url(../img/campaign/bg-circle01.svg) no-repeat center / cover;
    z-index: -1;
  }

  .p-hero__body::after{
    content: none;
  }

  .p-hero__subCopy{
    font-size: 3vw;
  }

  .p-hero__copy{
    font-size: 7.5vw;
  }

  .p-hero__read{
    margin-top: 8px;
    font-size: 3.5vw;
  }

  .p-hero__read span{
    margin-top: 4px;
    font-size: 4vw;
  }

  .p-hero__list{
    margin-top: 16px;
    gap: 0;
    justify-content: space-between;
  }

  .p-hero__item{
    padding:1.5vw 4.25vw 1vw;
    background: url(../img/campaign/frame-left.svg) no-repeat left bottom / 4.25vw, url(../img/campaign/frame-right.svg) no-repeat right bottom / 4.25vw;
    font-size: 2.75vw;
  }

  .p-hero__item span{
    font-size: 3.25vw;
  }

  .p-hero__text{
    margin-top: 16px;
    font-size: 10px;
  }

  .p-hero__image{
    flex: 1;
  }

  .p-hero__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.p-about{
  margin-top: 64px;
}

.p-about__inner{
  display: flex;
  gap: 5%;
}

.p-about__image{
  width: 45vw;
  margin-left: calc((45vw - 45%) * -1);
}

.p-about__text-block{
  align-self: center;
}

.p-about__heading{
  margin-bottom: 40px;
  padding-left: 32px;
  border-left: 8px solid;
  border-image: var(--gradient-primary) 1;
  font-size: 36px;
  font-weight: 700;
}

.p-about__heading span{
  font-size: 48px;
}

.p-about__list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-block: 24px;
}

.p-about__read{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}

.p-about__read span{
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
}

.p-about__item{
  position: relative;
  max-width: fit-content;
  padding-top: 4px;
  padding-left: 40px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}

.p-about__item::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 17px;
  height: 13px;
  background: url(../img/campaign/icon-check.svg) no-repeat center / cover;
}

@media screen and (max-width:768px) {
  .p-about{
    margin-top: 64px;
  }

  .p-about__inner{
    flex-direction: column-reverse;
    gap: 24px;
  }

  .p-about__image{
    width: 100%;
    margin-left:auto;
  }

  .p-about__text-block{
    align-self: center;
  }

  .p-about__heading{
    margin-bottom: 24px;
    padding-left: 24px;
    font-size: 26px;
  }

  .p-about__heading span{
    font-size: 32px;
  }

  .p-about__list{
    margin-block: 16px;
  }

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

  .p-about__read span{
    font-size: 18px;
  }

  .p-about__item{
    padding: 4px 8px 0 32px;
    font-size: 16px;
  }

  .p-about__item::before{
    left: 10px;
    top: 11px;
    width: 14px;
    height: 10px;
  }
}

.p-role{
  margin-top: 64px;
  padding-block: 80px;
  background:var(--gradient-primary);
}

.p-role__block{
  display: flex;
  justify-content: space-between;
}

.p-role__block:nth-child(odd){
  flex-direction: row-reverse;
}

.p-role__block + .p-role__block{
  margin-top: 64px;
}

.p-role__text-block{
  width: 50%;
  align-self: center;
}

.p-role__heading{
  margin-bottom: 40px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.p-role__image{
  width: 42.5%;
}

.p-role__list{
  display: flex;
  gap: 40px;
  margin-top: 64px;
}

.p-role__item{
  position: relative;
  width: 100%;
  padding: 24px 32px;
  background-color: #fff;
  border-radius: 10px;
}

.p-role__num{
  position: absolute;
  top: 24px;
  left: 32px;
  color: var(--primary);
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
}

.p-role__icon{
  display: block;
  width: 120px;
  margin: auto;
}

.p-role__title{
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.p-role__title span{
  display: inline-block;
}

.p-role__text{
  margin-top: 8px;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.p-role__text span{
  display: inline-block;
}

@media screen and (max-width:768px) {
  .p-role{
    margin-top: 48px;
    padding-block: 64px;
  }

  .p-role__block{
    flex-direction: column;
    gap: 16px;
  }

  .p-role__block:nth-child(odd){
    flex-direction: column;
  }

  .p-role__block + .p-role__block{
    margin-top: 56px;
  }

  .p-role__text-block{
    width: 100%;
    align-self: center;
  }

  .p-role__heading{
    margin-bottom: 24px;
    font-size: 24px;
  }

  .p-role__image{
    width: 90%;
    margin: auto;
  }

  .p-role__list{
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
  }

  .p-role__item{
    padding: 24px 32px;
  }

  .p-role__num{
    top: 24px;
    left: 32px;
    font-size: 24px;
  }

  .p-role__icon{
    width: 100px;
  }

  .p-role__title{
    margin-top: 16px;
    font-size: 16px;
  }

  .p-role__text{
    font-size: 14px;
  }
}

.p-features__block{
  display: flex;
  gap: 5%;
  margin-top: 56px;
}

.p-features__text-block{
  align-self: center;
}

.p-features__subCopy{
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
}

.p-features__top{
  display: inline-block;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.p-features__copy{
  display: block;
  width: fit-content;
  padding:4px 16px 0;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.p-features__top > .p-features__copy{
  margin-bottom: 4px;
}

.p-features__image{
  width: 45vw;
  margin-right: calc((45vw - 45%) * -1);
}

.p-features__read{
  margin-top: 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 2;
}

.p-features__mark-block{
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: center;
  max-width: 940px;
  margin: 56px auto 0;
  padding: 32px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.p-features__icon{
  align-self: flex-start;
  display: flex;
  gap: 24px;
}

.p-features__icon img{
  width: 150px;
}

.p-features__point{
  display: flex;
  gap: 5%;
  justify-content: center;
  margin-top: 56px;
}

.p-features__point-list{
  display: flex;
  gap: 24px;
  align-self: center;
  width: 100%;
  max-width: 764px;
}

.p-features__point-item{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 370px;
  padding: 40px 24px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 4px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

@media screen and (max-width:768px) {
  .p-features__block{
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .p-features__text-block{
    align-self: center;
  }

  .p-features__subCopy{
    margin-bottom: 8px;
    font-size: 24px;
  }

  .p-features__top{
    font-size: 28px;
  }

  .p-features__copy{
    display: block;
    width: fit-content;
    padding:4px 16px 0;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
  }

  .p-features__top > .p-features__copy{
    margin-bottom: 4px;
  }

  .p-features__image{
    width: 100%;
    margin-right:auto;
  }

  .p-features__read{
    margin-top: 24px;
    font-size: 18px;
  }

  .p-features__mark-block{
    flex-wrap: wrap;
    gap: 24px;
    margin: 56px auto 0;
    padding: 24px;
  }

  .p-features__icon{
    gap: 16px;
  }

  .p-features__icon img{
    width: 120px;
  }

  .p-features__point{
    gap: 16px 5%;
    flex-wrap: wrap;
    margin-top: 56px;
  }

  .p-features__point-list{
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .p-features__point-item{
    padding: 24px 16px;
    font-size: 16px;
  }
}

.p-exsample{
  position: relative;
  margin-top: 80px;
  padding-block: 80px;
  background: var(--gradient-secondary);
  overflow: hidden;
  z-index: 0;
}

.p-exsample::before{
  content: "";
  position: absolute;
  top: -178px;
  left: -193px;
  width: 541px;
  height: 554px;
  background: url(../img/campaign/bg-circle02.svg) no-repeat center / cover;
  z-index: -1;
}

.p-exsample::after{
  content: "";
  position: absolute;
  bottom: -108px;
  right: -189px;
  width: 755px;
  height: 775px;
  background: url(../img/campaign/bg-circle03.svg) no-repeat center / cover;
  z-index: -1;
}

.p-exsample__list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap:40px;
  margin-top: 64px;
}

.p-exsample__item{
  padding: 24px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
}

.p-exsample__label{
  width: fit-content;
  margin: 0 auto 16px;
  padding-inline: 16px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.p-exsample__icon{
  width: 120px;
}

.p-exsample__name{
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
}

.p-exsample__name span{
  display: block;
  font-size: 14px;
}

@media screen and (max-width:1000px) {
  .p-exsample__list{
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
  }
}

@media screen and (max-width:768px) {
  .p-exsample{
    margin-top: 64px;
  }

  .p-exsample__list{
    grid-template-columns: repeat(1,1fr);
    gap: 16px;
    margin-top: 40px;
  }

  .p-exsample__icon{
    width: 100px;
  }

  .p-exsample__item{
    padding: 16px;
  }

  .p-exsample__label{
    font-size: 12px;
  }

  .p-exsample__name{
    margin-top: 16px;
    font-size: 18px;
  }

  .p-exsample__name span{
    display: block;
    font-size: 14px;
  }
}

.p-case__list{
  margin-top: 64px;
}

.p-case__item{
  height: auto;
  background-color: #fff;
  cursor: pointer;
}

.p-case__image{
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.p-case__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-case__label{
  width: fit-content;
  margin: 16px 24px 0;
  padding: 6px 8px 4px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
}

.p-case__title{
  margin: 8px 24px 16px;
  font-size: 16px;
  font-weight: 700;
}

@media (any-hover: hover){
  .p-case__item{
    transition: 0.3s;
  }

  .p-case__image img{
    transition: scale 0.4s;
  }

  .p-case__item:hover .p-case__image img{
    scale: 1.1;
  }

  .p-case__item .p-case__title{
    transition: color 0.3s;
  }

  .p-case__item:hover .p-case__title{
    color: var(--secondary);
  }
}

.p-menu{
  padding-block: 80px;
  background-color: #FBFBFB;
}

.p-menu__list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-top: 64px;
}

.p-menu__item{
  padding: 16px 24px 24px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

.p-menu__item img{
  width: 100%;
}

.p-menu__title{
  margin-top: 16px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.p-menu__text{
  margin-top: 16px;
  line-height: 1.75;
}

@media screen and (max-width:1000px) {
  .p-menu__list{
    grid-template-columns: repeat(2,1fr);
  }
}


@media screen and (max-width:768px) {
  .p-menu__list{
    grid-template-columns: repeat(1,1fr);
    gap: 24px;
  }

  .p-menu__title{
    margin-top: 24px;
    font-size: 18px;
  }

  .p-menu__text{
    margin-top: 8px;
    font-size: 14px;
  }
}

.p-measure__block{
  display: flex;
  gap: 7%;
  margin-top: 64px;
}

.p-measure__image{
  align-self: flex-start;
  width: 50%;
}

.p-measure__text-block{
  flex: 1;
  align-self: center;
}

.p-measure__read{
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
}

.p-measure__read span{
  display: inline-block;
}

.p-measure__attr{
  margin-top: 16px;
  font-size: 16px;
}

@media screen and (max-width:768px) {
  .p-measure__block{
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .p-measure__image{
    width: 90%;
    max-width: 540px;
    margin: auto;
  }

  .p-measure__text-block{
    flex: 1;
    align-self: center;
  }

  .p-measure__read{
    text-align: center;
    font-size: 18px;
  }

  .p-measure__attr{
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
  }
}

.p-step__list{
  display: flex;
  margin-top: 64px;
}

.p-step__item{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.p-step__heading{
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 16px;
  padding: 16px 56px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.p-step__item:nth-child(1) .p-step__heading::after{
  content: "";
  position: absolute;
  top: 0;
  right: -36px;
  width: 36px;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  z-index: 1;
}

.p-step__item:nth-child(2) .p-step__heading{
  background: var(--gradient-secondary);
}

.p-step__image{
  display: block;
  width: 100%;
  height: auto;
  margin-top: auto;
}

.p-step__item:nth-child(1) .p-step__image{
  margin-right: 12px;
}

.p-step__item:nth-child(2) .p-step__image{
  margin-left: 12px;
}

@media screen and (max-width:768px) {
  .p-step__list{
    flex-direction: column;
    gap: 32px;
  }

  .p-step__item{
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .p-step__heading{
    margin-bottom: 16px;
    padding: 16px 24px;
    font-size: 18px;
  }

  .p-step__item:nth-child(1) .p-step__heading::after{
    right: -24px;
    width: 24px;
  }

  .p-step__item:nth-child(1) .p-step__heading{
    width: calc(100% - 24px);
  }

  .p-step__image{
    display: block;
    width: 100%;
    height: auto;
    margin-top: auto;
  }

  .p-step__item:nth-child(1) .p-step__image{
    margin-right: 12px;
  }

  .p-step__item:nth-child(2) .p-step__image{
    margin-left: 12px;
  }
}

.p-contact{
  position: relative;
  margin-top: 40px;
  padding-block: 160px 80px;
  background: var(--gradient-secondary);
  text-align: center;
  z-index: 0;
}

.p-contact::before{
  content: "";
  position: absolute;
  top: -0.25px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 1;
}

.p-contact::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/campaign/bg-circle04.svg) no-repeat center / cover;
  z-index: -1;
}

.p-contact__read{
  margin-block: 48px 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.75;
}

.p-contact__read span{
  display: inline-block;
  font-size: 28px;
}

.p-button-wrap{
  margin-top: 48px;
  text-align: center;
}

.p-button-primary{
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
  padding: 24px;
  background-color: #fff;
  color: var(--secondary);
  border-radius: 80px;
  font-size: 32px;
  font-weight: 700;
}

.p-button-primary::after{
  content: "";
  position: absolute;
  right: 24px;
  width: 48px;
  height: 48px;
  background: url(../img/campaign/icon-arrow.svg) no-repeat center / cover;
}

@media (any-hover: hover){
  .p-button-primary{
    transition: opacity 0.3s;
  }

  .p-button-primary:hover{
    opacity: 0.7;
  }
}

@media screen and (max-width:768px) {
  .p-contact{
    margin-top: 32px;
    padding-block: 80px 48px;
  }

  .p-contact::before{
    top: -0.25px;
    left: 0;
    height: 40px;
  }

  .p-contact::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/campaign/bg-circle04.svg) no-repeat center / cover;
    z-index: -1;
  }

  .p-contact__read{
    margin-block: 32px 16px;
    font-size: 16px;
  }

  .p-contact__read span{
    font-size: 20px;
  }

  .p-button-wrap{
    margin-top: 32px;
  }

  .p-button-primary{
    padding: 16px;
    font-size: 22px;
  }

  .p-button-primary::after{
    right: 16px;
    width: 32px;
    height: 32px;
  }
}

.p-modalBg{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 100;
}

.p-modal__contents{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  max-width: 700px;
  height: fit-content;
  max-height: 90vh;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  z-index: 100;
  overflow: auto;
}

.p-modalClose{
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
}

.p-modalClose__line::before,
.p-modalClose__line::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.p-modalClose__line::before{
  rotate: 45deg;
}

.p-modalClose__line::after{
  rotate: -45deg;
}

.p-modal__image{
  width: 100%;
  height: 300px;
}

.p-modal__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.p-modal__text{
  margin: 16px 24px 0;
  font-size: 14px;
  line-height: 1.75;
}

.p-modal__list{
  display: flex;
  flex-wrap: wrap;
  margin: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.p-modal__item{
  font-size: 12px;
  line-height: 1.75;
}

.p-modal__item + .p-modal__item{
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid #000;
}

@media screen and (max-width:768px) {
  .p-modal__image{
    height: 180px;
  }

  .p-modalClose{
    top: 16px;
    right: 16px;
  }

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

  .p-modal__item + .p-modal__item{
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

.p-footer{
  padding: 50px 40px;
}

.p-footer__logo{
  width: 120px;
  height: 120px;
  max-width: 300px;
  background: #003296;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-footer__logo img{
  width: 85px;
}

.u-pc{
  display: block;
}

.u-read{
  margin-top: 32px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
}

.u-text{
  font-size: 18px;
  line-height: 2;
}

.u-text span{
  display: inline-block;
}

.u-white{
  color: #fff;
}

.u-visuallyHidden {
  border: 0!important;
  clip: rect(0,0,0,0)!important;
  height: 1px!important;
  margin: -1px!important;
  overflow: hidden!important;
  padding: 0!important;
  position: absolute!important;
  white-space: nowrap!important;
  width: 1px!important;
}

@media screen and (max-width:768px) {
  .u-pc{
    display: none;
  }

  .u-read{
    font-size: 16px;
  }

  .u-text{
    font-size: 14px;
  }
}
