@charset "UTF-8";

/* header */
.hy_header {
    height: 75px;
    background-color: #191833;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 998;
}
.hy_header #navList {
    display: flex;
}
.hy_header #navList li {
    list-style: none;
    margin-left: 20px;
}
.hy_header li a {
    color: #fff;
    text-decoration: none;
}

.hy_header li a:hover {
    opacity: .7;
}

.openbtn1{
    display: none;
}

@media screen and (max-width: 850px) {
    .hy_header #navList {
        display: block;
        position: fixed;
        z-index: 999;
        top: 75px;
        right: -120%;
        height: 100vh;
        width: 100%;
        background-color: rgba(25, 24, 51, 0.9);
        transition: all 0.6s;
    }

    .hy_header #navList li {
        font-size: 16px;
        /* margin-top: 20px; */
        margin: 0 20px;
        text-align: center;
        border-bottom: 1px solid #fff;
    }

    .hy_header #navList a {
        display: block;
        width: 100%;
        padding: 20px 0;
    }

    .hy_header #navList a:hover {
        text-decoration: none;
        opacity: .7;
    }

    .hy_header #navList.active {
        right: 0;
    }

    .openbtn1{
        display: block;
        position: relative;/*ボタン内側の基点となるためrelativeを指定*/
        cursor: pointer;
        width: 50px;
        height:50px;
      }
      
      /*ボタン内側*/
      .openbtn1 span{
        display: inline-block;
        transition: all .4s;/*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #fff;
        width: 45%;
        }
      
      .openbtn1 span:nth-of-type(1) {
        top:15px; 
      }
      
      .openbtn1 span:nth-of-type(2) {
        top:23px;
      }
      
      .openbtn1 span:nth-of-type(3) {
        top:31px;
      }
      
      /*activeクラスが付与されると線が回転して×に*/
      
      .openbtn1.active span:nth-of-type(1) {
          top: 18px;
          left: 18px;
          transform: translateY(6px) rotate(-45deg);
          width: 30%;
      }
      
      .openbtn1.active span:nth-of-type(2) {
        opacity: 0;/*真ん中の線は透過*/
      }
      
      .openbtn1.active span:nth-of-type(3){
          top: 30px;
          left: 18px;
          transform: translateY(-6px) rotate(45deg);
          width: 30%;
      }
}

/* 
#mainimage {
    height: 240px;
    background-size: 30%;
    display: flex;
    align-items: center;
    margin-top: 75px;
    padding-bottom: 0;
} */

#pageTitle {
    display: flex;
    align-items: center;
}

#pageTitle h1 {
    margin: 0;
    margin-right: 90px;
    font-size: 32px;
}

#pageTitle .mini {
    font-size: 16px;
    position: relative;
}

#pageTitle .mini::before, #pageTitle .mini::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 1px;
    background-color: #000238;
    top: 50%;
    transform: translateY(-50%);
}

#pageTitle .mini::before {
    left: -30px;
}

#pageTitle .mini::after {
    right: -30px;
}

@media screen and (max-width: 690px) {
    #pageTitle {
        display: block;
    }
    #pageTitle h1 {
        margin-right: 0;
    }
    #pageTitle .mini {
        display: inline-block;
        margin-left: 35px;
        margin-top: 10px;
    }
}

.titleLine {
    position: relative;
}

.secTitle .title {
    font-size: 26px;   
    font-weight: bold;
    display: inline-block;
    padding-right: 20px;
    position: relative;
    z-index: 0;
    background-color: #fff;
}

.titleLine::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-color: #C7C7D3;
    z-index: -1;
}

.hybox01,
.hybox01 .boxIn01,
.hybox01 .boxIn02 {
    display: flex;
    flex-wrap: wrap;
} 

.hybox01 .sub {
    color: #999999;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.hybox01 .name {
    color: #000238;
    font-weight: bold;
    font-size: 16px;
}

.hybox01 .boxIn01 {
    margin-right: 20px;
    width: calc(48% - 10px);
    height: 240px;
    justify-content: space-between;
}

.hybox01 .centering {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: calc(100% - 150px);
}

.hybox01 .centering .pWrap {
   width: 100%;
   margin: 10px 0;
}

.hybox01 .boxIn02 {
    width: calc(52% - 10px);
    justify-content: space-between;
}

.hybox01 .boxIn01 p {
    text-align: center;
}

.hybox01 .boxIn01 figure {
    height: 150px;
}

.hybox01 .one {
    width: calc(50% - 10px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.hybox01 .boxIn02 .one {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hybox01 .boxIn02 .one:nth-child(-n + 2) {
    margin-bottom: 20px;
}

.hybox01 .boxIn02 figure {
    width: 100px;
    height: 100%;
    margin-right: 10px;
}

.hybox01 figure img {
    transition: .3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hybox01 figure .h-100 {
    width: auto;
    height: 100%;
    object-fit: fill;
}

.hybox01 .one:hover figure img {
    transform: scale(1.2);
}

.hybox01 .boxIn02 .text {
    width: calc(100% - 110px);
    height: 100%;
}

@media screen and (max-width: 980px) {
    .hybox01 .boxIn01 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .hybox01 .boxIn02 {
        width: 100%;
    }
}

@media screen and (max-width: 690px) {
    .hybox01 .boxIn02 figure {
        width: 100%;
        margin-right: 0;
        height: 150px;
    }
    .hybox01 .boxIn02 .text {
        width: 100%;
        text-align: center;
        height: calc(100% - 150px);
    }
   
}


#cvArea {
    background-image: url(../image/hybrid_bg04.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
}

#cvArea .mask {
    width:  100%;
    height: 100%;
    background: rgba(245, 245, 245, 0.2);
}

#cvArea .title {
    font-size: 26px;   
    font-weight: bold;
}

#cvArea .btnWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#cvArea .btnWrap a {
    display: flex;
    align-items: center;
    max-width: 280px;
    width: 24%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    padding: 20px;
}

#cvArea .document {
    background-color: #FFFFFF;
    color: #000238;
}

#cvArea .contact {
    background-color: #F2E131;
    color: #000238;
}

#cvArea .reservation {
    background-color: #5FD1F7;
    color: #fff;
}

#cvArea .catalog {
    background-color: #000238;
    color: #fff;
}

@media screen and (max-width: 690px) {
    #cvArea .btnWrap a {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }
    #cvArea .title {
        font-size: 24px;
    }
}

/* topパンくず非表示 */
.page_hybrid_top #locator_template_c3,
.page_exhibition00 #locator_template_c3,
.page_exhibition #locator_template_c3 {
    display: none;
}

/* パンくず */
#locator_template_c3 {
    background-color: #F5F5F5;
    padding: 10px 0;
    font-size: 12px;
}
#locator_template_c3 .inner {
    justify-content: flex-end;
}
