body {
  position: relative;
}

body.open {
  position: fixed;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }

  a img{
    transition: 0.3s;
  }

  a:hover img{
    opacity: 0.7;
  }
}

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

  .sp {
    display: block;
  }
}


/* ----------------------------------------------
コンテンツ
----------------------------------------------- */

.l-container {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  padding-inline: 50px;
}

.l-container.-small {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 60px;
}

main{
  margin-top: 100px;
  padding-bottom: 150px;
}

@media screen and (max-width: 768px) {
  main {
    width: 100%;
    margin-top: 60px;
    padding-bottom: 80px;
  }
  .l-container {
    padding: 0 20px;
  }
  .l-container.-small {
    padding: 0 20px;
  }
}

/* ----------------------------------------------
header
----------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px 50px;
  border-bottom: 1px solid #DCDCDC;
}

.p-header__logo a{
  display: block;
}

.p-header__logo img{
  width: 100%;
  height: auto;
}

.p-hamburger__button {
  display: none;
}



@media screen and (min-width: 769px) {

  .p-header__logo{
    max-width: 465px;
    width: 33vw;
  }

  .p-headerNav {
    margin-left: auto;
  }
  
  .p-headerNav__menu{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    justify-content: flex-end;
    align-items: center;
  }
  
  .p-headerNav__menuLink {
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    color: #000;
    position: relative;
  }
  
  .p-headerNav__menuLink:hover {
    color: #000;
  }
  
  .p-headerNav__menuLink::before{
    content: "";
    width: 100%;
    height: 2px;
    background: #429CAE;
    position: absolute;
    left:0;
    bottom: -2px;
    opacity: 0;
    transition: 0.3s;
  }
  
  .p-headerNav__menuLink:hover::before{
    opacity: 1;
  }

  .p-headerNav__menuItem.current .p-headerNav__menuLink{
    pointer-events: none;
  }

  .p-headerNav__menuItem.current .p-headerNav__menuLink::before{
    content: "";
    width: 100%;
    height: 2px;
    background: #429CAE;
    position: absolute;
    left:0;
    bottom: -2px;
    opacity: 1;
  }
}


@media screen and (max-width: 768px) {
  .p-hamburger__button {
    position: fixed;
    width: 60px;
    height: 60px;
    padding: 0;
    z-index: 999999999;
    right: 0;
    top: 0;
    display: block;
    background: #429CAE;
  }
  
  .p-navbar__toggle {
    position: absolute;
    z-index: 999;
    width: 60px;
    height: 60px;
    right: 0;
    top: 0;
  }
  
  .p-navbar__toggleIcon {
    position: relative;
    display: block;
    height: 1px;
    width: 26px;
    background: #fff;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    border-radius: 1px;
    transform: translateX(-50%);
    left: 50%;
  }
  
  .p-navbar__toggleIcon:nth-child(1) {
    top: 22px;
    transition: 0.4s;
  }
  
  .p-navbar__toggleIcon:nth-child(2) {
    top: 20px;
    margin: 8px 0;
    transition: 0.4s;
    opacity: 1;
  }
  
  .p-navbar__toggleIcon:nth-child(3) {
    top: 18px;
    transition: 0.4s;
  }
  
  .p-hamburger__button.open .p-navbar__toggleIcon:nth-child(1) {
    top: 30px;
    left: 20px;
    transition: 0.4s;
    transform: rotate(45deg);
  }
  
  .p-hamburger__button.open .p-navbar__toggleIcon:nth-child(2) {
    top: 20px;
    margin: 8px 0;
    transition: 0.4s;
    opacity: 0;
  }
  
  .p-hamburger__button.open .p-navbar__toggleIcon:nth-child(3) {
    top: 12px;
    left: 20px;
    transition: 0.4s;
    transform: rotate(-45deg);
  }

  .p-headerNav{
    width: 100%;
    height: 100dvh;
    transition: 0.4s;
    top:0;
    right:-100%;
    position: fixed;
    background: #429CAD;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-headerNav.open{
    right: 0
  }

  .p-headerNav__menuLink{
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    display: block;
  }

  .p-headerNav__menu{
    text-align: center;
    display: grid;
    gap:20px 0;
  }

  .p-header__logo{
    max-width: 240px;
    width: 15rem;
  }

  .l-header{
    padding: 10px;
    height:60px ;
  }
}

/* ----------------------------------------------
footer
----------------------------------------------- */
.l-footer {
  width: 100%;
  border-top: 1px solid #429CAE;
  text-align: center;
  position: relative;
}

.l-footer .l-container{
  padding-block: 50px;
}

.p-footerNav{
  margin-bottom: 50px;
}

.p-footerNav__menu{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 80px;
}

.p-footerNav__menuLink{
  font-size:16px ;
  color: #000;
  font-weight: 500;
  text-align: center;
  position: relative;
}

.p-footerNav__menuLink:hover{
  color: #000;
}

.p-footerNav__menuLink::before{
  content: "";
  width: 100%;
  height: 2px;
  background: #429CAE;
  position: absolute;
  left: 0;
  bottom: -2px;
  opacity: 0;
  transition: 0.3s;
}

.p-footerNav__menuLink:hover::before{
  opacity: 1;
}

.p-footerNav__menuItem.current .p-footerNav__menuLink{
  pointer-events: none;
}

.p-footerNav__menuItem.current .p-footerNav__menuLink::before{
  content: "";
  width: 100%;
  height: 2px;
  background: #429CAE;
  position: absolute;
  left: 0;
  bottom: -2px;
  opacity: 1;
}

.p-footer__logo{
  width: 100%;
  max-width: 480px;
  margin: 0 auto 50px auto;
  display: block;
}
.p-footer__logo img{
  width: 100%;
  height: auto;
}

.p-footer__address{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 70px;
}

.p-footer__copy {
  font-size: 12px;
  font-weight: 400;
}

.page-top{
  position: relative;
  max-width: 980px;
    width: 100%;
    height: 0;
    margin: 0 auto;
    bottom: 0;
    z-index: 10;
}

.page-top a{
  position: absolute;
    bottom: 24px;
    right: 0;
   display: flex;
   align-items: center;
   justify-content: center;
    z-index: 9999;
    background: #429CAE;
    width: 75px;
    height: 75px;
    transition: 0.3s;
}

.page-top a img{
  width: 32px;
  height: 32px;
}

@media screen and (min-width: 769px) {
  .page-top a:hover{
    background: #00B8CC;
  }
}

@media screen and (max-width: 768px) {
  .page-top a{
      bottom: 0;
      right: 0;
      width: 50px;
      height: 50px;
  }
  
  .page-top a:hover{
    background: #00B8CC;
  }
  
  .page-top a img{
    width: 20px;
    height: 20px;
  }

  .l-footer .l-container{
    padding: 30px 20px;
  }

  .p-footerNav{
    margin-bottom: 30px;
  }

  .p-footerNav__menu{
    gap: 20px 20px;
  }

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

  .p-footer__logo{
    width: 90%;
    margin: 0 auto 30px auto;
  }
  .p-footer__address{
    margin-bottom: 30px;
  }
  
}

/* ----------------------------------------------
テキスト
----------------------------------------------- */

.c-txt{
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}
.c-center {
  text-align: center;
}

@media screen and (max-width: 768px) {
 
  .c-txt {
    font-size: 14px;
  }
}

/* ----------------------------------------------
ボタン
----------------------------------------------- */

.c-btn__center{
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-btn__center+.c-btn__center{
  margin-top: 35px;
}

.c-btn__right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.c-btn__primary{
  background: #429CAE;
  color: #fff;
  text-align: center;
  position: relative;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 300px;
  padding: 30px 20px;
}

.c-btn__primary i{
  width: 11px;
  height: 18px;
  background: url(../img/common/wh-arrow.svg) no-repeat center/cover;
  position: absolute;
  top:50%;
  right: 20px;
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .c-btn__primary:hover{
    background: #00B8CC;
  }
}

@media screen and (max-width: 768px) {

  .c-btn__primary{
    max-width: 100%;
    padding: 20px 20px;
  }

  .c-btn__right{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ----------------------------------------------
見出し
----------------------------------------------- */

.c-heading__title01{
  text-align: center;
  position: relative;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 70px;
}

.c-heading__title01::before{
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top:50%;
  left: 0;
  transform: translateY(-50%);
}

.c-heading__title01 >span{
  display: inline-block;
  background: #fff;
  padding-inline: 26px;
  position: relative;
  z-index: 2;
}


.c-heading__title01 .en{
  font-family: 'Raleway', sans-serif;
  color: #429CAE;
  font-weight: 600;
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {

  .c-heading__title01{
    font-size: 22px;
    margin-bottom: 30px;
  }
}