@charset "UTF-8";

/* ===========================
common
============================== */

html{
    font-size: 62.5%;
}

/* マウスストーカーのスタイル */
.stalker {
  background-color:rgba(28,180,211,.5);;
  border-radius: 50%;
  height: 15px;
  left: -7.5px; 
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: -7.5px;
  transition: transform .3s ease-out;
  width: 15px;
  z-index: 999;
}

body{
    font-family:
        "Noto Sans JP",
        Arial,
        sans-serif;
    font-style: normal;
    color: #000;
    font-weight: 400;
    background-color: #fff;
    line-height: 1.5;
}

img{
    max-width: 100%;
    height: auto;
}

.section__title{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #033948;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

/* common pc */
@media screen and (min-width:769px){
    .section__title{
        font-size: 4.0rem;
    }

    .section__border{
        width: 702px;
        margin-top: 17px;
    }
}

/* ===========================
header
============================== */
.header{
    padding: 20px 4.2%;
    text-align: left;
}

.header__name,
.nav__name{
    margin-left: 8px;
    display: inline-block;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
}

/* .nav初期表示 */
.nav{
    background: #157375;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header{
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px 4.2%;
}

.nav__name{
    margin-right: auto;
}

.nav__list{
    margin-top: 69px;
    margin-left: 35px;
}

.nav__item{
    color: #F2FFFF;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 78px;
    }

.nav__item:first-of-type{
    margin-top: 0;
}

.nav__item img{
    display: inline-block;
    vertical-align: -7px;
    margin-right: 24px;
}

.nav.active{
    transform: translateX(0);
}

.header__btn{
    display: block;
    width: 84px;
    height: 38px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 4.2%;
}

/* .header pc */
@media screen and (min-width:769px){
    .header{
        max-width: 1200px;
        padding: 68px 0;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo,
    .nav__logo{
        width: 65px;
        height: 47px;
    }

    .header__name{
        font-size: 3.2rem;
    }

    .spBr{
        display: none;
    }

    .header__name,
    .nav__name{
        margin-left: 16px;
        line-height: 1;
    }

    .nav{
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav__list{
        display: flex;
        margin-top: 0;
        align-items: center;
    }

    .nav__item{
        margin-top: 0;
        color: #033948;
        font-style: normal;
        font-weight: 400;
        margin-left: 40px;
    }

    .nav__header{
        display: none;
    }

    .nav__item img{
        display: none;
    }

    .header__btn{
        display: none;
    }

    .nav__item:last-of-type{
        display: flex;
        height: 38px;
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        border-radius: 28px;
        background: #156175;
        color: #FFF;
        transition: 0.4s;
    }

    .nav__item:last-of-type:hover{
        background-color: #27D63E;
    }

    .nav__item--contact img{
        display: none;
    }
}/* header 769px end */

/* ===========================
main
============================== */
/* article header */
.mainImg .mainImg__pc{
    display: none;
}

/* article header pc */
@media screen and (min-width:769px){
    .mainImg .mainImg__pc{
        display: block;
    }

    .mainImg .mainImg__sp{
        display: none;
    }
}/* mainvisual pc end */

/* works */
.section--works{
    margin-top: 45px;
}

.works__img--mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  margin-bottom: 32px;
}

.works__item{
    padding: 0 5.3% 80px;
}

.works__item:first-of-type{
    margin-top: 45px;
}

.tag{
    color: #156175;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 16px;
}

.title{
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.content{
    font-size: 1.5rem;
    font-weight: 350;
    letter-spacing: 0.06em;
}

.siteclick{
    color: #156175;
    text-align: center;
    margin-top: 32px;
}

.siteclick a{
    font-size: 2.2rem;
    padding-left: 30px;
}

.link {
  position: relative;
  padding-right: 70px;
}

.arrow {
  overflow: hidden;
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  width: 30px;
  margin: auto 0;
  line-height: 1;
}
.arrow:before,
.arrow:after {
  content: "→";
  position: absolute;
  top: 0;
  right: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
.arrow:after {
  transform: translateX(100%);
}
.link:hover .arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
.link:hover .arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}


.works__img--banner{
    display: none;
}

.works__img--mock{
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 32px;
}

.works__img--mock img{
    width: 89.3vw;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto 32px;
    transition: transform .6s ease;
}

.works__img--mock:hover img {
  transform: scale(1.1);
}

/* works pc */
@media screen and (min-width:1025px){
    .section--works{
        padding: 0 9.7% 0;
        margin-top: 154px;
    }

    .works__item:first-of-type{
        margin-top: 154px;
    }

    .works__item{
        display: flex;
        padding: 0 0 205px 0;
        align-items: center;
    }

    .works__item:nth-child(even){
        flex-direction: row-reverse;
    }

    .works__img--mockup img{
        display: inline;
        width: 42vw;
        margin-right: 14vw;
    }

    .works__img--mock{
        width: 27vw;
        margin-bottom: 0;
    }

    .works__img--mock img{
        margin-bottom: 0;
    }

    .works__img--banner{
        display: block;
        width: 19vw;
        margin-top: auto;
        margin-right: auto;
    }

  .works__item:nth-of-type(2) .works__img--banner {
    margin-right: 0; 
    margin-right: 25px;
    margin-left: 8vw;
  }

  .works__item:nth-of-type(3) .works__img--mock {
    margin-right: 25px;
    margin-left: 0;
  }

    .works__content{
        width: 27.6vw;
    }

    .tag{
        font-size: 1.8rem;
    }

    .title{
        font-size: 2.4rem;
    }

    .content{
        font-size: 1.8rem;
    }

    .siteclick a{
        font-size: 3rem;
    }
}

/* aboutMe */
.section--aboutMe{
    padding: 41px 0 40px;
}

#aboutMe{
    position: relative;
}

.plofile{
    text-align: center;
    padding: 0 7.3vw 0;
}

.plofile__picture{
    display: inline-block;
    margin-top: 50px;
    width: 58.3vw;
    border-radius: 120px 120px 0 0;
}

.plofile__name{
    margin-top: 38px;
    text-align: center;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1;
}

.plofile__txt{
    margin-top: 16px;
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: 0.05em;
    text-align: left;
}

.aboutMe{
    margin-top: 16px;
}

.aboutMe__list{
    font-size: 1.6rem;
    line-height: 1;
    text-align: left;
    line-height: 1.4;
}

/* aboutme タブレット */
@media screen and (min-width:600px){
    .plofile__picture{
        width: 26vw;
        height: auto;
        margin-top: 30px;
    }
}
/* aboutMe pc */
@media screen and (min-width:1025px){
    .section--aboutMe{
        padding: 0;
        margin: 0 0 154px;
    }

    .plofile{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
        padding: 90px 146px 0;
    }

    .plofile__left{
        margin: 0;
    }

    .plofile__picture{
        width: 26vw;
        height: auto;
        margin-top: 30px;
    }

    .plofile__right{
        width: 50%;
        margin-left: 120px;
    }
    .plofile__name{
        text-align: left;
        margin-top: 68px;
    }

    .plofile__txt{
        margin-top: 32px;
        padding: 0;
        font-size: 2.2rem;
        line-height: 1.5;
        letter-spacing: 0.06em;
        font-weight: 350;
    }

    .aboutMe{
        margin-top: 32px;
        padding-bottom: 99px;
    }

    .aboutMe__list{
        font-size: 2.2rem;
        font-weight: 350;
    }
}/* aboutMe pc end */

/* place */
.section--place{
    margin-top: 41px;
    position: relative;
}

.address{
    font-size: 1.4rem;
    display: flex;
    padding: 16px 0;
    justify-content: center;
    align-items: center;
}

.address img{
    width: 20px;
    margin-right: 40px;
}

.map{
    width: 100%;
    height: 400px;
}

/* place pc */
@media screen and (min-width:769px){
    .section--place{
        margin: 74px 0 80px;
    }

    .address{
        margin-top: 44px;
    }
    iframe{
        padding: 0 146px 0;
    }
}/* place pc end */

/* infomation */
.section--infomation{
    padding-top: 41px;
}

.infopic{
    width: 85vw;
    margin: 45px auto;
}

/* news section */
.section--news{
    padding: 41px 0 40px;
}

.news__list{
    width: 93.3vw;
    margin: 45px auto;
}

.news__list li{
    margin-top: 50px;
    border-bottom: 1px solid #BABABA;
    padding-bottom: 25px;
}

.date{
    font-size: 1.3rem;
    font-weight: 200;
    letter-spacing: 0.06em;
}

.topic{
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    margin-top: 21px;
    cursor: pointer;
}

.topic:hover{
    color: #156175;
}

/* news.html */
.wp-pagenavi{
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.wp-pagenavi span.current {
    background-color: #97D0DF;
    color: #FFFFFF;
    border: none;
}


.wp-pagenavi span:not(:last-child), .wp-pagenavi a:not(:last-child) {
    margin-right: 11.2%;
}

.wp-pagenavi a {
    color: #666666;
}

.wp-pagenavi span, .wp-pagenavi a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 0.5px solid #444444;
    font-size: 1.6rem;
    font-weight: 500;
    transition: 0.3s ease-in;
    border-radius: 50%;
}

.page:hover{
    cursor: pointer;
    background-color: #97D0DF;
}


/* single.html */
.post-wrapper{
    width: 78.6vw;
    margin: 24px auto 75px;
}

.post-wrapper h2{
    margin: 18px 0 10px;
    font-size: 1.6rem;
}

.day{
    font-weight: 200;
    font-size: 1.2rem;
}

.post-wrapper p{
    margin: 28px 0 75px;
    font-size: 1.4rem;
}

.page-nav{
    display: flex;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 300;
}

.page-nav li:not(:last-child){
    margin-right: 2.622%;
}

/* single.html  pc*/
@media screen and (min-width:769px){
    .post-wrapper h2{
        font-size: 2.4rem;
    }  

    .day{
        font-size: 1.8rem;
    }

    .post-wrapper p{
        font-size: 2.1rem;
    }

    .page-nav a{
        font-size: 2rem;
    }
}

/* インフォメーション　pc */
@media screen and (min-width:1024px){
    .news__list{
        width: 87.4vw;
    }

    .date{
        font-size: 2rem;
        font-weight: 300;  
    }

    .topic{
        font-size: 2.1rem;
        font-weight: 400;
    }
}

/* スライダー */
.illustrater{
    margin: 100px 10px 48px;
}

.illustrater__txt{
    font-size: 1.4rem;
    text-align: center;
}

.slider{
    margin-top: 32px;
    display: flex;
}

.slider img{
    max-width: 25vw;
    height: auto;
}

/* スライダーpc */
@media screen and (min-width:769px){
    .illustrater{
        margin: 120px 30px 66px;
    }

    .illustrater__txt{
        font-size: 2.3rem;
    }

    .slider img{
        max-width: 18.3vw;
    }
}

/* contact */
.section--contact{
    background-color: #F2FFFF;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section__title--contact{
    padding-top: 70px;
    color: #033948;
    text-align: center;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1;
}

.section__txt{
    margin-top: 32px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1;
}

.contact__contents{
    padding-bottom: 75px;
}

.mail__btn{
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    display: flex;
    max-width: 350px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    background: #156175;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 32px;
}

.mail__btn:hover{
    background-color: #27D63E;
}

.contactBlob{
    position: absolute;
    width: 200px;
    left: 0;
    top: 166px;
    z-index: -1;
}

/* contact pc */
@media screen and (min-width:769px){
    .section--contact{
        margin-top: 75px;
    }

   .section__title--contact{
        font-size: 4.0rem;
    }

    .section__txt{
        font-size: 2.0rem;
        margin-top: 40px;
    }

    .mail__btn{
        margin-top: 40px;
    }

    .contactBlob{
        width: 210px;
    }
    
}/* contact pc end */

/* footer */
.footer{
    background-color: #033948;
    padding: 40px 24px;
    position: relative;
    z-index: 2;
}

.menu__item{
    padding-top: 24px;
    color: #FFF;
    font-size: 1.6rem;
    line-height: 1;
}

.menu__item:first-of-type{
    margin-top: 0;
}

.instagram{
    width: 25px;
    margin-top: 28px;
}

/* footer pc */
@media screen and (min-width:769px){
    .footer{
        padding: 55px 0 25px 105px;
    }
    .menu__list{
        display: flex;
    }
    .menu__item{
        margin-top: 0;
        padding-left: 40px;
        font-size: 2.0rem;
    }

    .instagram{
    width: 30px;
    margin-left: 90px;
}
}/* footer pc end */