@charset "UTF-8";

/*=============================================
TOPページ用
=============================================*/
.l-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .opening{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .opening__logo {
    color: #fff;
    font-size: 50px;
    display: grid;
    place-items: center;
    z-index: 1;
    /* position: absolute;
    top: 50%; */
  }

  @media(max-width:768px){
    .opening__logo svg{
        max-width:50px;
    }
  }
  
  .opening__mask{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top right;
    background-color:hsla(212,78%,96%,1);
    background-image:
    radial-gradient(at 96% 47%, hsla(220,0%,100%,1) 0px, transparent 50%),
    radial-gradient(at 54% 7%, hsla(198,0%,100%,1) 0px, transparent 50%),
    radial-gradient(at 10% 77%, hsla(212,78%,96%,1) 0px, transparent 50%),
    radial-gradient(at 72% 86%, hsla(201,94%,88%,1) 0px, transparent 50%),
    radial-gradient(at 80% 0%, hsla(213,76%,94%,1) 0px, transparent 50%);
    z-index: 1;
    z-index: 1;
  }
  
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    height: 60px;
  }
  
  .p-header {
    background-color: #f7f7f7;
  }
  
  .p-header__inner {
    padding-right: 20px;
    padding-left: 20px;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .p-nav {
    display: flex;
    align-items: center;
  
  
  }
  
  .p-nav__item a {
    width: 100%;
    display: block;
    font-size: 16px;
    color: #010101;
  }
  
  .p-nav__item {
    margin-right: 20px;
  
  }
  
  .p-nav__item:last-child {
    margin-right: 0;
  }
  
  .p-fv{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  
  .p-fv__img {
    position: relative;
    width: 100%;
    height: inherit;
    clip-path: inset(0 100% 0 0);
    overflow: hidden;
    margin-right: calc(50% - 50vw);
  }
  
  
  .p-fv__img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .p-fv__inner {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    padding: 0 40px;
    height: inherit;
  }
  
  .p-fv__textBox {
    background-color: rgb(202, 235, 255);
    padding: 20px 30px;
    margin-right: -40px;
    position: relative;
    z-index: 5;
    clip-path: inset(0 100% 0 0);
    width: 100%;
    max-width: 500px;
  
  }
  
  .p-fv__title {
    font-size: 24px;
  }
  
  .p-fv__text {
    margin-top: 10px;
    font-size: 14px;
  }
/*-----------------------------------------
LOADING

body {
    margin: 0;
    overflow: hidden;
  }

/* 背景グラデーション
.opening{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: block;
    place-items: center;
    /* background-color:hsla(212,78%,96%,1);
    background-image:
    radial-gradient(at 96% 47%, hsla(220,0%,100%,1) 0px, transparent 50%),
    radial-gradient(at 54% 7%, hsla(198,0%,100%,1) 0px, transparent 50%),
    radial-gradient(at 10% 77%, hsla(212,78%,96%,1) 0px, transparent 50%),
    radial-gradient(at 72% 86%, hsla(201,94%,88%,1) 0px, transparent 50%),
    radial-gradient(at 80% 0%, hsla(213,76%,94%,1) 0px, transparent 50%); /
}

.opening__logo {
    height: inherit;
    display: grid;
    place-content: center;
    z-index:1;
  }


/* アニメーション */
.draw {
    stroke-dasharray: 2600px;
    stroke-dashoffset: 2600px;
    stroke: var(--blue-main);
    stroke-width: 2px;
    animation: svgAnime 3s ease forwards;
  }
  @keyframes svgAnime {
      0% {
        stroke-dashoffset: 2600px;
        fill: transparent;
      }
      70% {
        stroke-dashoffset: 0;
        fill: transparent;
      }
      100% {
        stroke-dashoffset: 0px;
        /* stroke: transparent; */
        fill: var(--blue-main);
      }
  }
    

  /* TOPページを表示させる

  .main-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

    body.loaded .loading {
      display: none;
    }

    body.loaded .main-content {
      opacity: 1;
      pointer-events: auto;
    }

    .opening__mask{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transform-origin: top right;
        background-color:hsla(212,78%,96%,1);
        background-image:
        radial-gradient(at 96% 47%, hsla(220,0%,100%,1) 0px, transparent 50%),
        radial-gradient(at 54% 7%, hsla(198,0%,100%,1) 0px, transparent 50%),
        radial-gradient(at 10% 77%, hsla(212,78%,96%,1) 0px, transparent 50%),
        radial-gradient(at 72% 86%, hsla(201,94%,88%,1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(213,76%,94%,1) 0px, transparent 50%);
        z-index: 1;
      }

      -----------------------------------------*/

/*-----------------------------------------
動画
-----------------------------------------*/

/*-----------------------------------------
TOPページ背景
-----------------------------------------*/

.p-bg-top-photo {
  background: url(../img/top/bg-fukuoka.jpg) no-repeat center;
  width: 100%;
  height: 400px;
}

section.p-bg-top-photo,section.p-bg-top-photo02{
    padding:0 !important;
}

.p-bg-top-photo,.p-bg-top-photo02{
    background-attachment: fixed;
    background-size: cover;
  /*フィルター*/
    &::after{
        content: '';
        display: block;
        /* position: absolute;
        top: 0;
        right: 0; */
        width: 100%;
        height: 100%;
        background-color: #00000006;
        background-image: radial-gradient(#000 2%, transparent 30%);
        background-size: 3px 3px;
        background-position: 0 0;
    }
}

.p-bg-top-photo02 {
  background: url(../img/top/bg-kanmon.jpg) no-repeat center;
  width: 100%;
  height: 300px;
  background-attachment: fixed;
  background-size: cover;
}


.iphone-ipad .p-bg-top-photo,.iphone-ipad .p-bg-top-photo02{
        /* background-attachment: scroll; */
        display: none;
}

/*-----------------------------------------
TOPコピー
-----------------------------------------*/
.p-top-copy {
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  .p-top-copy {
    padding: 20px;
  }
}

.p-top-heading-copy {
    font-size: clamp(1.4rem, 1.9090909091vw, 2.4rem);
}
.p-top-copy-text {
    font-size: clamp(1.4rem, 3.2727272727vw, 3.8rem);
    line-height: 1.5;
    font-weight: bold;
    span{
    font-size: clamp(1.8rem, 4.7272727273vw, 5.6rem) !important;
    }  
}   


/*-----------------------------------------
ヒーロー（スライド）
-----------------------------------------*/
.slide-wrapper{
    position: relative;
}
.top-hero-copy{
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:clamp(2.0rem,3.6vw,4.0rem);
    color:#fff;
    text-shadow: 2px 2px 10px rgba(55, 55, 55, 0.6), -2px 2px 10px rgb(55, 55, 55, 0.6), 2px -2px 10px rgb(55, 55, 55, 0.6), -2px -2px 10px rgb(55, 55, 55, 0.6);
}

.slider{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.top-hero-copy{
    display: grid;
    place-items: center;
}


.slider:after{
    content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #00000006;
	background-image: radial-gradient(#000 2%, transparent 30%);
	background-size: 3px 3px;
	background-position: 0 0;
}

.slick-slider{
    background: var(--blue-main);
}

.slick-slider video{
    margin-inline:auto;
}


/*-----------------------------------------
ヒーローイメージ下メインコピー
-----------------------------------------*/
.p-top-maincopy span {
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
  font-weight: bold;
}

/*-----------------------------------------
広告事業
-----------------------------------------*/
.p-top-ad-wrapper {
    display: grid;
    @media print, screen and (min-width: 768px){
        margin: 0 0 40px;    
        grid-template-columns: 1fr 1fr;
    }
    @media(max-width:767px){
        padding-left:1em;
        padding-right:1em;
    }
}

/* 写真が右側にあるパターンのとき */
.p-top-ad-wrapper__right{
    @media print, screen and (min-width: 768px){
        margin-right:40px;
    }
}

@media print, screen and (min-width:768px){
    .p-top-ad-img__right{
        justify-self: end;
        }
    .p-top-ad-text__right{
        padding-right:40px;
        padding-left:2em;
        }
    .p-top-ad-img__left{
        justify-self: start;
    }
    .p-top-ad-text__left{
        padding-left:40px;
        padding-right:2em;
    }
    
}

.p-top-ad-img{
    @media(max-width:767px){
        justify-self: center;
    }
    img{
    width:100%;
    max-width: 600px;
    }
}

.p-top-ad-text {
    margin-bottom: 20px;
    z-index: 1;
    width: 100%;
}

.p-top-ad-text .p-top-ad-heading__wrapper {
  margin-bottom: 20px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .p-top-ad-text .p-top-ad-heading__wrapper.is-active::after {
    content: "";
    background: #333;
    height: 1px;
    position: absolute;
    bottom: -10px;
    left: 100%;
    width: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-animation: borderAnime 0.8s forwards ease 0.3s;
            animation: borderAnime 0.8s forwards ease 0.3s;
  }
  @-webkit-keyframes borderAnime {
    0% {
      width: 0;
    }
    100% {
      width: calc(100% + 100px);
    }
  }
  @keyframes borderAnime {
    0% {
      width: 0;
    }
    100% {
      width: calc(100% + 100px);
    }
  }
}
@media screen and (max-width: 767px) {
  .p-top-ad-text .p-top-ad-heading__wrapper {
    border-bottom: 1px solid #666;
  }
}


  /* .p-top-ad-text__left {
    @media print, screen and (min-width: 768px) {
    padding-right: 4rem;
  }
} */


@media print, screen and (min-width: 768px) {
  .p-top-ad-text .p-top-ad-heading__wrapper-left.is-active::after {
    content: "";
    background: #333;
    height: 1px;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation: borderAnimeLeft 0.8s forwards ease 0.3s;
            animation: borderAnimeLeft 0.8s forwards ease 0.3s;
  }
  @-webkit-keyframes borderAnimeLeft {
    0% {
      width: 0;
    }
    100% {
      width: calc(100% + 100px);
    }
  }
  @keyframes borderAnimeLeft {
    0% {
      width: 0;
    }
    100% {
      width: calc(100% + 100px);
    }
  }
}

.p-top-ad-heading__merit02, .p-top-ad-heading__merit01 {
  background: #fff;
  border: 1px solid #333;
  color: #333;
  text-align: center;
  border-radius: 4px;
  margin-right: 10px;
  display: grid;
  place-content: center;
  line-height: 1.4;
}

.p-top-ad-btn {
    max-width:800px;
    margin:1rem auto 5rem;
    display: grid;
    gap: 10px;
    padding: 0 20px;
    @media print, screen and (min-width: 768px) {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
    
.p-top-ad-btn .c-btn-basic {
  min-width: inherit;
}
.p-top-ad-btn .c-btn-basic a {
  line-height: 1.3;
  padding: 1em 1.1em;
  font-weight: bold;
}

.c-btn-basic-circle {
  border-radius: 30px;
}
.c-btn-basic-circle a {
  font-size: clamp(1.3rem, 1.3vw, 1.3rem);
}
.p-top-ad__target{
    margin-bottom:1rem;
    li{
        font-weight: bold;
        /* font-size: clamp(1.4rem,1.8vw,1.8rem); */
        &::before{
            content:'●';
            color:var(--gray);
            margin-right:0.5em;
        }
    }
}


/*-----------------------------------------
Service
-----------------------------------------*/
.p-top-card-wrapper {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .p-top-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-top-card-wrapper {
    grid-template-columns: 98%;
    margin: 10px;
  }
}
.p-top-card-wrapper a {
  text-decoration: none;
}

.p-heading-top-service {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  text-align: center;
  color: var(--blue-main);
  font-weight: bold;
  margin: 1em 0 0;
}

/*-----------------------------------------
TOPページバナーエリア
-----------------------------------------*/

.p-top-tools .c-card-wrapper {
    margin: auto;
    text-align: center;
    grid-template-columns: 50% 50%;
  }
  
.top-bn-wrapper{
    margin-top:50px;
    display: grid;
    gap:1em;
    grid-template-columns: repeat(auto-fit, minmax(200px,auto));
}

.top-bn-inner dt{
    font-weight: bold;
    text-align: center;
    font-size:1.4rem;
}

.top-bn-inner img{
    border:1px solid #ccc;
}

.top-bn-link-wrapper{
    grid-template-columns: repeat(auto-fit, minmax(180px,auto));
    justify-content: start;
}