@charset "utf-8";

header {
    position: relative;
    height: 60px;
    border-bottom: 1px solid #ddd;
    z-index: 9999;
    background-color: #fff;
}

.header-inner {
    padding: 0 4%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#fixed-header {
    display: none;
}

/* ----------------------

    SP用ヘッダー

----------------------*/

/* ロゴ */
.header-logo {
    position: relative;
    z-index: 999;
    max-width: 160px;
}

/* ハンバーガーメニューアイコン */

.openbtn {
    position: relative;
    z-index: 999;
    background: #D93F8A;
    cursor: pointer;
    width: 60px;
    height: 60px;
    right: -4%;
}

.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 17px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
	top:20px;
}

.openbtn span:nth-of-type(2) {
	top:28px;
}

.openbtn span:nth-of-type(3) {
	top:36px;
}

.openbtn.active span:nth-of-type(1) {
    top: 23px;
    left: 21px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 35px;
    left: 21px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* スマホメニュー */

#g-nav{
    position:fixed;
    z-index: 99;
	top:60px;
    right: -120%;
	width: 80%;
    height: 100vh;
	background:#fff;
	transition: all 0.6s;
    border-left: 1px solid #ddd;
}

#g-nav.panelactive{
    right: 0;
}

#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    position: absolute;
    z-index: 99;
    top:0;
    left:0;
    width: 100%;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
}

#g-nav li a{
	color: #595757;
	text-decoration: none;
	padding: 20px 30px;
	display: block;
    width: 100%;
	letter-spacing: 0.1em;
	font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.pc-nav {
    display: none;
}


@media(max-width: 1024px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99;
    }
}

@media(min-width: 1025px) {
    header {
        height: 100px;
        border-bottom: none;
        background-color: #fff;
    }

    .header-inner {
        position: relative;
        justify-content: flex-end;
    }

    .header-inner::before {
        position: absolute;
        top: 100px;
        left: 190px;
        content: "";
        width: 50px;
        height: 50px;
        background-image: url(../images/radius_top_left.svg);
        background-repeat: no-repeat;
    }

    .openbtn {
        display: none;
    }

    #g-nav {
        display: none;
    }

    .header-logo {
        position: absolute;
        top: 0;
        left: 0;
        width: 190px;
        max-width: 100%;
        padding: 20px 30px;
        background-color: #fff;
        border-bottom-right-radius: 20px;
    }

    .header-logo::before {
        position: absolute;
        bottom: -50px;
        left: 2.5vw;
        content: "";
        width: 50px;
        height: 50px;
        background-image: url(../images/radius_top_left.svg);
        background-repeat: no-repeat;
    }

    .header-logo a {
        transition: all .4s;
    }

    .header-logo a:hover {
        opacity: .6;
    }

    /* PCナビ */
    .pc-nav {
        display: block;
    }

    .pc-nav ul {
        display: flex;
        align-items: center;
    }

    .pc-nav ul li {
        margin-right: 50px;
    }

    .pc-nav ul li a {
        position: relative;
        text-decoration: none;
        color: #595757;
        font-size: 14px;
        font-weight: bold;
        transition: all .4s;
    }

    .pc-nav ul li a::before {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 10px;
        background-color: #D93F8A;
        opacity: 0;
        transition: all .4s;
    }

    .pc-nav ul li a:hover::before {
        opacity: 1;
    }

    /* 下層のメニュー */
    .pc-nav li.has-child i {
        margin-left: 5px;
        font-size: .85em;
        line-height: 14px;
        transition: all .4s;
    }

    .pc-nav li.has-child a:hover i {
        transform: rotate(180deg);
    }

    .pc-nav li.has-child .under-menu{
        position: absolute;
        right: 0;
        top:100px;
        z-index: -1;
        background:#fff;
        width:80%;
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
        border-top: 1px solid #ddd;
    }

    .pc-nav li.has-child:hover > .under-menu,
    .pc-nav li.has-child .under-menu li:hover > .under-menu,
    .pc-nav li.has-child:active > .under-menu,
    .pc-nav li.has-child .under-menu li:active > .under-menu {
        visibility: visible;
        opacity: 1;
    }

    .pc-nav .under-menu {
        display: flex;
        padding: 30px 60px;
        border-bottom-left-radius: 20px;
        align-items: center;
        justify-content: space-between;
    }

    .pc-nav .under-menu .menu-title {
        width: 25%;
        border-right: 1px solid #ddd;
    }

    .pc-nav .under-menu .menu-title .main {
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 2em;
    }

    .pc-nav .under-menu .menu-title .font-en.se {
        color: #D93F8A;
        font-size: .85em;
        font-weight: bold;
        letter-spacing: .05em;
        text-transform: uppercase;
        margin-bottom: 40px;
    }

    .pc-nav .under-menu .menu-title .more-btn::before {
        content: none;
    }

    .pc-nav .under-menu ul {
        display: flex;
        width: 70%;
        flex-wrap: wrap;
        grid-gap: 10px;
    }

    .pc-nav .under-menu ul li {
        width: 32%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .pc-nav .under-menu ul li span {
        letter-spacing: .05em;
        transition: all .5s;
        font-size: .85em;
    }

    .pc-nav .under-menu ul li:hover span {
        font-weight: bold;
        color: #D93F8A;
    }

    .pc-nav .under-menu ul li a {
        position: relative;
        display: block;
        width: 100%;
        height: 120px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0px 2px 4px #ddd;
        transition: all .4s;
        margin-bottom: 5px;
    }

    .pc-nav .under-menu ul li a:hover {
        opacity: .6;
    }

    .pc-nav .under-menu ul li a::before {
        content: none;
    }

    .pc-nav .under-menu ul li a img {
        max-width: 180px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* company menu */

    .company-menu .under-menu .menu-title .font-en.se {
        margin-bottom: 20px;
    }

    .company-menu .under-menu {
        justify-content: space-between;
        padding: 50px 60px;;
    }

    .company-menu .menu-title {
        border-right: 1px solid #ddd;
        width: 25%;
    }

    .company-menu ul {
        width: 65%;
    }

    .company-menu .under-menu ul li {
        margin-bottom: 15px;
    }

    .company-menu .under-menu ul li a {
        height: auto;
        box-shadow: none;
        transition: all .4s;
    }

    .company-menu .under-menu ul li a:hover {
        color: #D93F8A;
        opacity: 1;
    }

    .company-menu .under-menu ul li a span {
        display: block;
        color: #d9d9d9;
        letter-spacing: .1em;
        font-size: .75em;
        text-transform: uppercase;
    }

    /* contact menu */

    .contact-menu {
        margin-right: 0 !important;
    }

    .contact-menu a {
        border: 1px solid #D93F8A;
        display: inline-block;
        padding: 10px 40px;
        border-radius: 50px;
    }

    .contact-menu a:hover {
        background-color: #D93F8A;
    }

    .contact-menu a::before {
        content: none !important;
    }

    .contact-menu a i {
        margin-right: 10px;
        transition: all .4s;
    }

    .contact-menu a:hover i {
        color: #fff !important;
    }

    .contact-menu a span {
        font-size: 12px;
        color: #D93F8A;
        transition: all .4s;
    }

    .contact-menu a:hover span {
        color: #fff;
    }

    /* 固定用ヘッダー */
    #fixed-header {
        position: fixed;
        display: block;
        top: -80px;
        width: 100%;
        height: 80px;
        transition: .5s;
        z-index: 99;
    }

    #fixed-header.is-show {
        top: 0;
    }

    #fixed-header .header-inner {
        height: 80px;
        background-color: #fff;
        justify-content: space-between;
    }

    #fixed-header .header-inner::before{
        content: none;
    }

    #fixed-header .header-logo {
        position: relative;
        padding: 0;
    }

    #fixed-header .pc-nav li.has-child .under-menu {
        top: 80px;
    }
}

/* ----------------------

    メインビジュアル

----------------------*/

.main-visual {
    width: 100%;
    position: relative;
}

.main-visual::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 2.5vw;
    height: 100%;
    background-color: #fff;
    z-index: 10;
}

.main-visual .slider .slick-slide {
    height: calc(100vh - 140px);
    aspect-ratio: 9 / 8;
    margin: 0 5px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.slider.slick-initialized.slick-slider {
    overflow: hidden;
}

/* キャッチコピー */

.catch-block {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 20;
    padding-left: 78px;
    padding-bottom: 50px;
}

.catch-block::before {
    position: absolute;
    bottom: -20px;
    left: 0;
    content: "";
    display: block;
    width: 25vw;
    height: 25vw;
    max-width: 405px;
    max-height: 405px;
    min-width: 243px;
    min-height: 243px;
    border-radius: 50%;
    z-index: -1;
    background: #D93F8A;
    background: linear-gradient(227deg,rgba(217, 63, 138, 1) 0%, rgba(255, 173, 198, 1) 97%);
    transform: translateX(-35%);
}

.catch-block::after {
    position: absolute;
    bottom: -30px;
    left: 90px;
    content: "";
    width: 50px;
    height: 50px;
    background: url(../images/main_right.png) no-repeat;
    background-size: cover;
    z-inde: -1;
}

.catch-block .text {
    color: #fff;
    letter-spacing: .1em;
    font-size: 1em;
}

.catch-block h1 {
    color: #fff;
    font-size: 3.5em;
    line-height: 1.5;
    letter-spacing: .05em;
}

/* スクロールダウン */

.mv-line {
    position: absolute;
    width: 2px;
    height: 6.831vw;
    max-height: 104.28px;
    bottom: 5px;
    left: 18px;
}

.mv-line::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 6.831vw;
    max-height: 104.28px;
    background-color: #fff;
    left: 0;
    animation: mv_line 1.5s infinite ease
}

@keyframes mv_line {
  0% {
    top: unset;
    bottom: 0;
    height: 6.831vw;
  }
  34% {
    top: unset;
    bottom: 0;
    height: 0;
  }
  35% {
    top: 0;
    bottom: unset;
    height: 0;
  }
  70% {
    top: 0;
    bottom: unset;
    height: 6.831vw;
  }
}

@media(max-width: 1025px) {
    .main-visual {
        margin-top: 80px;
    }

    .main-visual .slider .slick-slide {
        height: calc(100vh - 200px);
        width: 400px;
    }

    .slick-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .catch-block {
        padding-left: 20px;
        bottom: 140px;
    }
}

@media(max-width: 600px) {

    .main-visual .slider .slick-slide {
        height: calc(100vh - 200px);
        width: 300px;
    }

    .catch-block {
        padding-left: 20px;
        bottom: 100px;
    }

    .catch-block::before {
        min-width: 200px;
        min-height: 200px;
        bottom: 40px;
    }

    .catch-block::after {
        bottom: 20px;
        left: 50px;
    }
}

/* news */
.news-block {
    margin-top: 20px;
}

.news-slider a{
    background:#fff;
    padding:20px;
}

.news-slider span.date {
    display:inline-block;
    font-size:0.8rem;
    margin-right:10px;
    color:#777;
}

.bx-wrapper {
    margin-bottom: 0;
    box-shadow: none;
}

.news-slider .more-btn {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

.news-slider .more-btn .left .top {
    margin-bottom: 8px;
}

.news-slider .more-btn .left .top .cat {
    color: #D93F8A;
    display: inline-block;
    border: 1px solid #D93F8A;
    font-size: .85em;
    padding: 5px 10px;
}

.news-slider .more-btn .left .bottom p{
    text-decoration: none;
    color: #595757;
}

@media(min-width: 1025px) {
    .news-block {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 45vw;
        margin-top: 0;
    }

    .bx-wrapper {
        border-top-left-radius: 20px;
        padding: 10px;
    }
}