body{
    color: #181616;
    font-family: "Noto Sans JP", sans-serif;
    /*font-family: "BIZ UDPGothic", sans-serif;*/
    line-height: 1.8;
}
img{
    vertical-align: bottom;
}
a{
    text-decoration: none;
}
a:hover{
    opacity: .7;
}
a.linkArrow,
.contact a{
    display: inline-block;
}
a.linkArrow{
    font-weight: 600;
    font-size: 16px;
    color: #f04c20;
}
a.linkArrow .linkWrap{
    display: flex;
    align-items: center;
    gap: 24px;
}
a.linkArrow span{
    display: flex;
    align-items: center;
    justify-content: center;
}
a.linkArrow span img{
    width: 24px;
}
.container{
    position: relative;
    padding-top: 120px;
}

/** header **/

.header{
    position: fixed;
    width: 100%;
    top: 0;
    background: #fff;
    z-index: 999;
}
.headerWrap{
    padding: 40px 32px;
    display: flex;
    font-size: 16px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

}
.header a{
    color: #181616;
    font-weight: 700;
}
.headerMenu{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header ul{
    display: flex;
    align-items: center;
    gap: 4px 24px;
    flex-wrap: wrap;
    padding-right: 20px;
}

.menuContact img{
    width: 40px;
}
.menuLogo img{
    height: 40px;
}

/** title **/

.title{
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title .conLetter{
    padding-left: 40px;
    padding-right: 80px;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.title .conLetter .subttl{
    font-size: 14px;
    font-weight: 400;
    opacity: .6;
    margin-bottom: 40px;
}
.title .conLetter h1{
    font-size: 48px;
    font-weight: 800;
    position: relative;
    padding-bottom: 56px;
}
.title .conLetter h1::after{
    content: "";
    width: 64px;
    height: 4px;
    background: #268ad2;
    position: absolute;
    left: 0;
    bottom: 0;
}
.title .conImg{
    height: 350px;
    text-align: right;
    overflow: hidden;
    border-radius: 24px;
}
.title .conImg img{
    width: 100%;
    position: relative;
}



/** contact **/
.contact{
    background: #f5f5f5;
    padding: 56px 40px 80px;
    font-weight: 800;
}
.contact h2{
    font-size: 16px;
    color: #f04c20;
    text-align: center;
    margin-bottom: 56px;
}
.contact .linkBox{
    display: flex;
    gap: 32px 80px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.contact .linkBox a{
    background: #181616;
    color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 390px;
    padding: 32px 0;
    font-size: 18px;
}
.contact .linkBox a.red{
    background: #f04c20;
    font-size: 16px;
}
.contact .linkBox a.black{
    pointer-events: none;
    cursor: default;
}
.contact .linkBox img{
    width: 24px;
}
.contact .linkWrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}



/** footer **/

.footer{
    font-size: 16px;
    font-weight: 600;
    padding: 80px 40px;
    background: #181616;
    color: #fff;
}
.footerLogo{
    margin-bottom: 80px;
}

.footerMenu ul{
    display: flex;
    align-items: center;
    gap: 8px 24px;
    flex-wrap: wrap;
}
.footerMenu ul a{
    color: #fff;
}
.footerMenu.little {
    margin-top: 40px;
    font-size: 13px;
    opacity: 0.6;
}
.footerMenu.little ul {
    gap: 8px 32px;
}
.footerMenu.little li{
    position: relative;
}
.footerMenu.little li::after{
    content: "";
    width: 1px;
    height: 80%;
    background: #fff;
    position: absolute;
    top: 2px;
    right: -16px;
    transform: rotate(32deg);
}
.footerMenu.little li:last-child:after{
    content: none;

}
.footer .copy{
    font-size: 13px;
    opacity: .6;
    margin-top: 80px;
}
.footerLogo img{
    height: 40px;
}

.footer .p {
    margin-top: 48px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer .p img {
    height: 100px;
}
.footer .p a:hover {
    opacity: 1;
}


/* ハンバーガーボタン */

.hamburger{
    z-index: 999;
    display: none;
}
.hamburger a{
    display: inline-block;
    width: 20px;
    height: 18px;
    position: relative;
}
.menu-line{
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #181616;
    border-radius: 4px;
    transition: all .4s;
  }
  .menu-line:nth-of-type(1) {
    top: 0;
  }
  .menu-line:nth-of-type(2) {
    top: 8px;
  }
  .menu-line:nth-of-type(3) {
    bottom: 0;
  }
  
.hamburger a.active .menu-line:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .hamburger a.active .menu-line:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    animation: active-menu-bar02 .8s forwards;
  }
  .hamburger a.active .menu-line:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }

  .menuContact_sp{
    display: none;
  }
  .menuContact_sp a{
    color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #f04c20;
    font-size: 16px;
  }
  .menuContact_sp a img {
    width: 24px;
}


@media screen and (max-width: 1420px) {
    .title .conImg {
        border-radius: 24px 0 0 24px;
    }
}

@media screen and (max-width: 1100px) {
.title .conImg img{
    width: unset;
    height: 100%;
}
}

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

}


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

.headerWrap{
    padding: 20px 16px;
}
.container{
    padding-top: 80px;
}
.title{
    flex-direction: column;
    align-items: flex-start;
}
.title .conLetter{
    padding-left: 20px;
    padding-right: 20px;
    width: unset;
}

.title .conImg img{
    right: 0;
}
.title .conImg {
    display: none;
}
.contact{
    background: #f5f5f5;
    padding: 56px 20px 80px;
    font-weight: 800;
}
}


@media screen and (max-width: 500px) {
    .contact .linkBox a{
        padding: 24px 0;
    }
    .contact .linkBox a.black{
        pointer-events: unset;
    }
}

@media screen and (max-width: 499px) {
    .menuLogo{
        z-index: 999; 
    }
.headerMenu{
    position: fixed;
    width: 100vw;
    top: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    right: -100vw;
    transition: right .3s;
}
.headerMenu ul{
    display: flex;
    flex-direction: column;
    padding-right: 0;
}
.hamburger{
    display: block;
}
.menuContact{
    display: none;
}
.headerMenu.open{
    display: flex;
    right: 0;
    gap: 24px;
}
.menuContact_sp{
    display: block;
}
body.open {
    overflow: hidden;
}
}
