@charset "utf-8";

* {
    box-sizing: border-box;
}

.asahikawa-lp {
    background-color: #2C3E50;
    font-family: "Noto Serif JP", serif;
    overflow-x: hidden;
}

.header {
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 10;
}

.nav-area {
    width: 100%;
    background-color: #fff;
}

.nav {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav ul {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.nav ul li a {
    display: block;
    padding: 30px 15px;
    font-size: 18px;
    font-family: "Noto Serif JP", serif;
}

.h-btn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    width: 45px;
    height: 45px;
    display: none;
}

.h-btn-inner {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #a9abb0;
}

.h-btn span {
    display: inline-block;
    width: 70%;
    height: 3px;
    background-color: #293949;
    position: absolute;
    left: 50%;
    border-radius: 2px;
    transition: .4s;
}

.h-btn span:nth-child(1) {
    top: 10px;
    transform: translateX(-50%);
}

.h-btn span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.h-btn span:nth-child(3) {
    top: 33px;
    transform: translateX(-50%);
}

.drawer-active .h-btn span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-active .h-btn span:nth-child(2) {
    opacity: 0;
}

.drawer-active .h-btn span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}



@media(max-width:1024px) {
    .nav ul {
        flex-wrap: wrap;
    }

    .nav ul li a {
        padding: 15px;
    }
}

@media(max-width:599px) {
    .h-btn {
        display: block;
    }

    .header {
        transform: translateX(100%);
        transition: .4s;
    }

    .drawer-active .header {
        transform: translateX(0%);
    }

    .nav-area {
        height: 100vh;
    }

    .nav {
        height: 100%;
    }

    .nav ul {
        flex-direction: column;
        height: 100%;
    }

    .nav ul li {
        margin: 15px 0;
    }

    .nav ul li a {
        font-size: 18px;
    }


}






.main-visual {
    width: 100%;
    position: relative;
    height: 800px;
    overflow: hidden;
}

.main-visual>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mv-catch {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.mv-catch span {
    display: block;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif;
    font-size: 48px;
    white-space: nowrap;
    font-weight: 500;
}

/* .mv-catch span:nth-child(1) {
    margin-top: 1em;
} */

@media(max-width:1024px) {
    .mv-catch span {
        font-size: 40px;
    }
}

@media(max-width:599px) {
    .main-visual {
        height: 450px;
    }

    .mv-catch span {
        font-size: 30px;
    }
}









@media screen and (min-width:1025px) {
.access-info ul{
  row-gap: 30px;
}
}


.access-info .item {
    width: 23%;
}

/* .access-info .item-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0;
    letter-spacing: -.06em;
} */

.access-info .item-title {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0;
    letter-spacing: -.06em;
}

.access-info .item-txt {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
}

@media(max-width:1024px) {
    .access-info .item {
        width: 48%;
        margin-bottom: 30px;
    }

    .access-info .item:nth-child(3),
    .access-info .item:nth-child(4) {
        margin-bottom: 0px;
    }

    .access-info .item-title {
        font-size: 20px;
        margin-bottom: 10px;
        border-bottom: 1px solid #a9abb0;
    }
}

@media(max-width:599px) {
    .access-info .item {
        width: 100%;
    }

    .access-info .item:nth-child(3) {
        margin-bottom: 30px;
    }

    .access-info .item:nth-child(4) {
        margin-bottom: 0px;
    }

    .access-info .item-title {
        font-size: 18px;
    }
}

.l-blue {
    background-color: #293949;
}

.section-title {
    font-size: 48px;
    color: #fff;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
    margin-bottom: 40px;
    font-weight: bold;
}

.section-title .capital {
    font-size: 1.3em;
}

.org-layout {
    display: flex;
    margin-bottom: 80px;
}

.org-layout:last-child {
    margin-bottom: 0px;
}

.org-layout:nth-child(odd) {
    flex-direction: row-reverse;
}

.org-layout .text-area {
    position: relative;
    width: 50%;
    padding: 50px 2%;
    margin-left: auto;
    margin-right: -5%;
    max-width: 600px;
    z-index: 2;
}

.org-layout:nth-child(odd) .text-area {
    margin-left: -5%;
    margin-right: auto;
}

.org-layout .text-bg {
    background-color: #fff;
    padding: 100px 50px;
}

.org-title {
    font-size: 38px;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000;
    font-family: "Noto Serif JP", serif;
    letter-spacing: .1em;
}

.org-title::before {
    content: "";
    width: 1.5em;
    height: 3px;
    background-color: #293949;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.org-layout:nth-child(odd) .org-title {
    text-align: right;
}

.org-layout:nth-child(odd) .org-title::before {
    left: auto;
    right: 0;
}

.org-txt {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
}

.org-layout .img-area {
    width: 50%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.img-area .org-img,
.img-area .uk-slidenav-position {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.img-area .uk-slidenav-position .uk-slideshow,
.img-area .uk-slidenav-position .uk-slideshow li,
.img-area .uk-slidenav-position .uk-slideshow li div {
    width: 100%;
    height: 100%;
}

.org-img>img,
.img-area .uk-slidenav-position .uk-slideshow li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width:1024px) {
    .section-title {
        font-size: 34px;
    }

    .org-layout .text-area {
        width: 55%;
    }

    .org-layout .text-bg {
        padding: 70px 20px;
    }

    .org-layout {
        margin-bottom: 50px;
    }

    .org-title {
        font-size: 34px;
    }
}

@media(max-width:599px) {
    .section-title {
        font-size: 28px;
        letter-spacing: -.05em;
    }

    .org-layout {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .org-layout:last-child {
        margin-bottom: 0px;
    }

    .org-layout:nth-child(odd) {
        flex-direction: column;
    }

    .org-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .org-layout .text-area {
        width: 96%;
        padding: 0 2%;
        margin-left: auto;
        margin-right: auto;
        order: 2;
        /* margin-top: -70px; */
        margin-top: -20px;
    }

    .org-layout .text-bg {
        padding: 30px 15px;
    }

    .org-layout:nth-child(odd) .text-area {
        margin-left: 0;
        margin-right: 0;
    }

    .org-layout .img-area {
        width: 100%;
        height: 250px;
        order: 1;
        margin-bottom: 0px;
    }
    
    .org-layout .img-area.slide {
        height: 310px;
    }    

    .org-layout:nth-child(odd) .org-title {
        text-align: left;
    }

    .org-layout:nth-child(odd) .org-title::before {
        left: 0;
        right: auto;
    }
}










.clm-layout {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #fff;
}

.clm-layout .img-area {
    width: 48%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.img-area .clm-img,
.img-area .uk-slidenav-position {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.img-area .uk-slidenav-position .uk-slideshow,
.img-area .uk-slidenav-position .uk-slideshow li,
.img-area .uk-slidenav-position .uk-slideshow li div {
    width: 100%;
    height: 100%;
}

.clm-img>img,
.img-area .uk-slidenav-position .uk-slideshow li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.clm-layout .text-area {
    width: 48%;
    padding: 150px 0;
}

.clm-title {
    font-size: 30px;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    letter-spacing: .1em;
}

.clm-txt {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
}

@media(max-width:1024px) {
    .clm-layout .img-area {
        width: 25%;
    }

    .clm-layout .text-area {
        width: 70%;
        padding: 40px 0px;
    }

    .clm-title {
        font-size: 26px;
    }

    .clm-layout {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

@media(max-width:1024px) {
    .clm-layout {
        flex-direction: column;
    }

    .clm-layout .img-area {
        width: 100%;
        /* height: 200px; */
        height: 510px;
    }

    .clm-layout .text-area {
        width: 90%;
        margin-left: 10%;
        margin-top: -60px;
        /* background-color: #2c3e508f; */
        background-color: #0204058f;
        padding: 15px 0px 15px 10px;
        z-index: 1;
    }

    .clm-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

@media(max-width:599px) {
    .clm-layout .img-area {
        height: 310px;
    }    
}








.trs-list {
    max-width: 1200px;
    margin: 0 auto;
}

.trs-list>ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.trs-list .item {
    width: 30%;
}

.trs-list .item-img {
    width: 100%;
    display: block;
    position: relative;
}

.trs-list .item-img::after {
    content: "";
    width: 100%;
    display: block;
    position: relative;
    padding-top: 70%;
}

.trs-list .item-img::before {
    /* content: ""; */
    content: none;
    width: 100%;
    display: inline-block;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    bottom: 0;
    right: 0;
    border: 1px solid #fff;
    z-index: 2;
}

.trs-list .item-img-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.trs-list .item-img-inner .uk-slidenav-position {
    position: relative;
}

.trs-list .item-img-inner .uk-slidenav-position,
.trs-list .item-img-inner .uk-slidenav-position .uk-slideshow,
.trs-list .item-img-inner .uk-slidenav-position .uk-slideshow li,
.trs-list .item-img-inner .uk-slidenav-position .uk-slideshow li div {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.trs-list .item-img-inner .uk-slidenav-position .uk-slideshow li div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.trs-list .item-title {
    color: #fff;
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.trs-list .item-txt {
    color: #fff;
    font-family: "Noto Sans JP",
        sans-serif;
}

@media(max-width:1024px) {
    .trs-list .item {
        width: 32%;
    }

    .trs-list .item-img::after {
        padding-top: 100%;
    }

    .trs-list .item-img::before {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
    }

    .trs-list .item-img-inner {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
    }

    .trs-list .item-title {
        font-size: 24px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media(max-width:1024px) {
    .trs-list .item {
        width: 100%;
        margin-bottom: 40px;
    }

    .trs-list .item:last-child {
        margin-bottom: 0px;
    }


    .trs-list .item-img::after {
        padding-top: 70%;
    }

    .trs-list .item-img::before {
        width: calc(100% - 15px);
        height: calc(100% - 15px);
    }

    .trs-list .item-img-inner {
        width: calc(100% - 15px);
        height: calc(100% - 15px);
    }

    .trs-list .item-title {
        font-size: 22px;
        margin-top: 5px;
        margin-bottom: 10px;
    }
}

@media(max-width:599px) {
    .trs-list .item.slide .item-img::before {
        height: 310px;
    }

/*     .trs-list .item.slide .item-img-inner {
    height: 290px;
} */

    #asahikawa-lp_04 .trs-list .item.slide .item-img-inner {
        height: 100%;
    }
    
/*     .trs-list .item.slide .item-img::after {
    padding-top: 86.1%;
} */
    
    .trs-list .item-img-inner {
        width: 100%;
    }
}


.footer {
    position: relative;
    display: block;
    width: 100%;
}

.footer>img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
}

.footer .inner {
    position: relative;
    padding: 50px 0;
    z-index: 2;
}

.footer-wbg {
    width: 100%;
    padding: 50px 0;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-btn>a {
    color: #fff;
    background: #76756d;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    margin: 0 30px;
    transition: .4s;
    display: block;
}

.f-btn>a:hover {
    color: #76756d;
    background: #fff;
    opacity: 1;
}

@media(max-width:1024px) {
    .f-btn>a {
        font-size: 16px;
    }
}

@media(max-width:1024px) {
    .footer .inner {
        padding: 40px 0;
    }

    .footer-wbg {
        flex-direction: column;
        padding: 40px 0;
    }

    .f-btn {
        width: 80%;
        max-width: 300px;
    }

    .f-btn:nth-child(2) {
        margin-top: 15px;
    }

    .f-btn>a {
        width: 100%;
        margin: 0;
        text-align: center;
    }
}

.copy {
    background: #1d2635;
    color: #fff;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    padding: 10px 0;
}

.asahikawa-lp .uk-slidenav-position .uk-slidenav-previous {
  display:none;
}

.asahikawa-lp .uk-slidenav-position .uk-slidenav-next {
  display:flex!important;
  align-items: center;
  justify-content: center;
  color:#fff;
  border:4px solid #fff;
  z-index: 1;
  margin-top: 0px;
  border-radius:50%;
  z-index:8;
}

.asahikawa-lp .uk-slidenav {
    width: 40px;
    line-height: 40px;
    height:40px;
    font-size: 40px;
}

.asahikawa-lp .uk-slidenav-next:before {
    padding-left: 4px;
    padding-bottom: 2px;
}


.asahikawa-lp .org-layout .uk-slidenav-position .uk-slidenav-next {
  top: 30px;
  right: 60px;
}

.asahikawa-lp .clm-layout .uk-slidenav-position .uk-slidenav-next {
  top: 30px;
  right: 30px;
}

.asahikawa-lp .trs-list .uk-slidenav-position .uk-slidenav-next {
    top: 20px;
    right: 10px;
}

@media(max-width:1024px){
  .asahikawa-lp .org-layout .uk-slidenav-position .uk-slidenav-next {
 top: 30px;
    right: 40px;
}

.asahikawa-lp .trs-list .uk-slidenav-position .uk-slidenav-next {
 top: 30px;
    right: 10px;
}
}

@media(max-width:599px){
  .asahikawa-lp .org-layout .uk-slidenav-position .uk-slidenav-next {
 top: 20px;
    right: 20px;
}

.asahikawa-lp .clm-layout .uk-slidenav-position .uk-slidenav-next {
  top: 20px;
  right: 20px;
}
}

@media screen and (min-width:1025px) {
  .pc-br{
    display: block;
  }
}

/* 2025/05/27 */
.introduce-container .item-txt {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 2.5;
    font-size: 18px;
}

@media(max-width:599px) {
.introduce-container .item-txt {
    line-height: 1.5;
    font-size: 16px;
}    
}

.main-visual .pc{
  width: 100%;
  height: 100%
} 

.main-visual .sp{
  display: none;
  width: 100%;
  height: 100%;
}

.main-visual video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width:599px) {
.main-visual .sp{
  display: block;
}

.main-visual .pc{
  display: none;
} 
}

/* 05/28 */
.plus-icon {
    background: rgb(44 63 80);
    border-radius: 50%;
    padding: 13px 14px 12px 14px;
    transition: background 0.3s;
    pointer-events: none;
    color: #fff;
    position: absolute;
    left: 20px;
    top: 30px;
}

#asahikawa-lp_02 .plus-icon {
    left: 60px;
    top: 30px;
}

.fa-plus:before {
    content: "\f00e";
    font-size: 20px;
}

.clm-layout ul li a{
  height: 100%;
  width: 100%;
}

.org-layout ul li a{
  height: 100%;
  width: 100%;
}

/* 2025/06/03 */

/* .trs-list ul li a{
  height: 100%;
  width: 100%;
} */

.main-visual .logo{
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 150px;
}

.trs-list .plus-icon {
  top: 20px;
}

@media screen and (max-width:599px) {
 .main-visual .logo{
  left: 10px;
  bottom: 10px;
  width: 100px;
}

.plus-icon {
    top: 20px;
}

#asahikawa-lp_02 .plus-icon {
    left: 10px;
    top: 20px;
}

.trs-list .plus-icon {
  top: 30px;
}
}

.trs-list ul{
  height: auto;
}

.trs-list ul li a, .trs-list ul li img{
  width: 100%;
  height: 100%;
}

/* 2025/06/16 */

@media screen and (max-width:1024px) {
.clm-layout .text-area {
margin-top: -20px;  
} 
}

@media screen and (max-width:599px) {
.main-visual{
   height: 100svh;
}

.asahikawa-lp .uk-slidenav {
  width: 35px;
  line-height: 30px;
  height: 35px;
  font-size: 30px;
}

.plus-icon {
  padding: 10px 10px 10px 11px;
}

#asahikawa-lp_03 .plus-icon {
  top: 19px;
  left: 17px;
}

#asahikawa-lp_04 .plus-icon {
  top: 19px;
  left: 17px;
}

#asahikawa-lp_04 .trs-list .uk-slidenav-position .uk-slidenav-next {
  top: 20px;
  right: 20px;
}
}

.scrolldown2 {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.4rem;
  padding-bottom: 9rem;
  box-sizing: border-box;
}

.scrolldown2:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1.3px;
    height: 39px;
    background-color: #293949;
    animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
}

.scrolldown2 span {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2rem;
  padding-left: 5px;
  box-sizing: border-box;
}

.scrolldown2:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 1.3px;
    height: 125px;
    background: rgb(41 57 73 / 60%);
}

/* 下からの距離が変化して丸の全体が上から下に動く */
@keyframes circlemove{
      0%{bottom:5.5rem;}
     100%{bottom:-0.3rem;}
 }
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
	100%{opacity:0;}
}

/* 2025/06/27 */
.item-list{
  margin-top: 20px;
}

.item-list li{
  color: #fff;
  padding-left: 1em;
  text-indent: -1em;
}

.item-list li::before{
  content: "・";
}

.org-btn{
  margin-top: 20px;
}

.org-btn a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 50px;
    border: 2px solid;
    position: relative;
    padding: 0.5em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    text-align: center;
}

.org-btn a::after{
  content: "＋";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.uk-slidenav-position.ver02 {
  overflow: hidden;
}

.uk-slidenav-position.ver02:after {
  display: block;
  padding-top: 65%;
  content: "";
}

.uk-slidenav-position.ver02 .uk-slideshow {
  position: absolute;
  top: 0;
  height: 100% !important;
}

.uk-slidenav-position.ver02 .uk-slideshow>li {
  height: 100% !important;
}

.uk-slidenav-position.ver02 .uk-slideshow>li>div {
  width: 100%;
  height: 100%;
}
    

@media(max-width:599px) {
.item-list{
  margin-top: 10px;
}    
}

/* 2025/07/08 */

.w-bb-1{
  border-bottom: 1px solid #fff;
}

.access-box{
  background: #fff;
  padding: 10px;
}

.access-box .item-txt{
  color: #293949;
}

.access-box .navy-bb-1{
  border-bottom: 1px solid #293949;
}

.access-box .item-txt a{
  color: #0077dd;
}

@media screen and (max-width:1024px) {
.item-txt .heightLine-accessdtl{
  height: auto;
}

.access-box div{
  text-align: center;
}
}

/* 08/22 */

.p-events-auto a{
  pointer-events: initial !important;
}

/* 08/26 */

#enlp .main-visual .mv-catch {
  top: auto;
  bottom: 35%;
  right: 5%;
  writing-mode: lr;
}

#enlp .main-visual .mv-catch span{
  white-space: pre-wrap;
}

#enlp .mv-catch .fz-26{
  font-size: 26px;
}

@media screen and (max-width:599px) {
#enlp .main-visual .mv-catch{
  align-items: flex-start;
} 
}

