@charset "UTF-8";
/*
Theme Name: HANA-BIRA
Description: HANA-BIRA WEBSITE
Author: KOKORO企画
Version: 1.0.0
*/

/* common
---------------------------------------- */
html {
    font-size: 100%;
}
body {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: #2C2C2C;
    opacity: 0;
    animation: fadeInPage 0.6s ease forwards;
    animation-delay: 0.6s;
}
@keyframes fadeInPage {
    from { opacity: 0; }
    to   { opacity: 1; }
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
a {
    text-decoration: none;
    transition: .3s;
}
ul {
    padding-left: 0;
}
li {
    list-style: none;
}
p {
    text-align: justify;
}
/* btn */
.btn {
    max-width: 240px;
    margin-left: auto;
}
.btn a {
    position: relative;
    display: block;
    width: 240px;
    padding: 14px 60px;
    text-decoration: none;
    text-align: center;
    color: #2C2C2C;
    border: 1px solid #2C2C2C;
    border-radius: 80px;
}
.btn a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid #2C2C2C;
    border-right: 1px solid #2C2C2C;
    transform: rotate(45deg);
    box-sizing: border-box;
    transition: .3s;
}
.btn a:hover {
    background-color: #C375BA;
    border: 1px solid #C375BA;
    color: #FFF;
}
.btn a:hover::after {
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
}

/* fadeIn */
.fadeIn {
    opacity: 1; /* デフォルトで表示 */
    transition: opacity 2s;
}

/* JavaScriptで.js-readyが追加されたら、アニメーション準備 */
body.js-ready .fadeIn:not(.is-show) {
    opacity: 0;
}

body.js-ready .fadeIn.is-show {
    opacity: 1;
}

/* スクロール時のふわっと表示アニメーション */
/* デフォルトは通常表示（JavaScriptなしでも見える） */
.inview {
    opacity: 1;
    transform: translateY(0);
}

/* JavaScriptで.js-readyが<body>に追加されたら、アニメーション準備完了 */
body.js-ready .inview:not(.is-show) {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* 画面内に入ったら表示 */
body.js-ready .inview.is-show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

::selection {
  background-color: #F2E6F0;
}

/* header
---------------------------------------- */
header {
    position: relative;
    max-width: 1520px;
    margin: auto;
    margin-bottom: 45px;
    height: 105px;
    height: 95.5vh;
}
.header-nav {
    position:fixed;
    width: 100%;
    height: 93px;
    transition: .8s;
    z-index: 1;
}
.header-nav.change-color {
    background-color:rgba(255,255,255,0.9);
}
.nav-pc {
    display: none;
}
h1.header-logo {
    padding-top: 23px;
    padding-left: 8%;
}
h1.header-logo img {
    position:fixed;
    max-width: 200px;
}
/* Toggle */
.Toggle {
	position:fixed;
	cursor: pointer;
	top: 23px;
	right: 4.4%;
    width: 60px;
    height: 60px;
    z-index: 1000;
}
.Toggle span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 17px;
    height: 1px;
    background: #2C2C2C;
    width: 45%;
}
.Toggle span:nth-of-type(1) {
    top: 20px; 
}
.Toggle span:nth-of-type(2) {
    top: 30px;
}
.Toggle.active span:nth-of-type(1) {
    top: 23px;
    left: 22px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #2C2C2C;
}
.Toggle.active span:nth-of-type(2){
    top: 35px;
    left: 22px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #2C2C2C;
}

/* nav SP */
.nav-sp {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255,255,255,0.95);
    z-index: 999;
    padding-top: 23px;
    padding-left: 8%;
    
    /* ふわっと表示させるアニメーション設定 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
}

.nav-sp.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease-in-out, visibility 0s linear 0s;
    overflow-y: auto;
}

h1.logo-nav-sp img {
    max-width: 200px;
}

.nav-sp > ul {
    margin-top: 95px;
    text-align: center;
}

.nav-sp > ul > li {
    margin-right: 8%;
    margin-bottom: 25px;
    font-size: 1rem;
}

.nav-sp > ul > li > a {
    position: relative;
    display: block;
    color: #2C2C2C;
}

.nav-sp > ul > li > a:hover {
    color: #C6BFB8;
    text-decoration: none;
}

.nav-sp > ul > li > a:hover:before {
    width: 20px;
}

.nav-btn-sp .btn {
    margin: auto;
    margin-bottom: 60px;
}

/* SP言語切り替えスタイル */
.nav-sp .bogo-language-switcher {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}
.nav-sp .bogo-language-switcher li {
    margin: 0 !important;
}
.nav-sp .bogo-language-switcher .bogo-language-name a {
    padding: 0 2px;
    font-size: 1rem;
    color: #2C2C2C;
}
.nav-sp .bogo-language-switcher a:hover {
    color: #C375BA;
}
.nav-sp .bogo-language-switcher a.current {
    color: #C375BA;
    font-weight: 500;
}

/* mv
---------------------------------------- */
.mv-video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mv-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-video-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(255,255,255,0.6);
    pointer-events: none; /* 動画操作を邪魔しない */
}
.mv {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.mv-text {
    width: 91%;
    margin: 0 8%;
    position: absolute;
    top: 50%;
    transform: translate(-3%, -50%);
    
    /* 初期状態は透明 */
    opacity: 0;
    
    /* ゆっくりフェードイン（1.5秒かけて表示、0.8秒遅延） */
    animation: fadeInMvText 1.5s ease-in-out 0.8s forwards;
}

@keyframes fadeInMvText {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeinlogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.mv-text-en {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.1875rem;
    font-weight: 800;
}
.mv-text-jp {
    width: 90%;
    line-height: 2;
    font-size: 0.75rem;
}

/* contents
---------------------------------------- */
/* common */
.section-wrapper {
    margin: 150px 8%;
}
h2.section-ttl {
    margin-bottom: 50px;
    line-height: 0.6;
    font-size: 2.8125em;
    font-weight: 400;
    color: #C375BA;
}
h2.section-ttl .section-ttl-jp {
    font-size: 0.75rem;
    color: #2C2C2C;
}
.sec-btn {
    margin-top: 35px;
}

/* Mission */
.mission-text {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.mission-text h3,
.mission-text p {
    margin-bottom: 50px;
}
.mission-img {
    width: 100%;
    margin-top: 50px;
}
.mission-img img {
    width: 100%;
    aspect-ratio: 16 / 18;
    object-fit: cover;  
}

/* News */
#news {
    position: relative;
    width: 100%;
    height: 720px;
    background-image: url(./image/news-bg-sp.jpg);
    background-position: 50% 50%;
}
.news-list-wrapper {
    top: 120px;
    padding: 50px 20px;
    background-color:rgba(255,255,255,0.9);
}
.news-list a {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 15px;
    border-bottom: 1px solid #E8E8E8;
    color: #2C2C2C;
}
.news-list a:hover {
    color: #9A9A9A;
}
.news-list a:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid #716455;
    border-right: 1px solid #716455;
    transform: rotate(45deg);
    box-sizing: border-box;    
}
.news-list li:last-child {
    border-bottom: none;
}
.news-date {
    display: block;
    font-size: 0.812rem;
}
#news .news-ttl {
    display: block;
    width: 85%;
}
.news-btn {
    margin: auto;
    margin-top: 50px;
}

/* Service */
#service .service-container div span {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1875rem;
    color: #C375BA;
}
#service .service-container div h3 {
    margin-top: 10px;
    font-size: 0.875rem;
}
#service .service-container div {
    margin-bottom: 100px;
}
#service .service-container div img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 15;
    object-fit: cover;  
}
.service-btn {
    margin: auto;
}

/* footer
---------------------------------------- */
#contact {
    margin: 150px 4% 0;
    line-height: 1.3;
    padding: 140px 8%;
    background: url(./image/contact-bg.jpg) center center no-repeat;
    background-size: cover;
    color: #FFF;
}
#contact p {
    margin: auto;
    line-height: 2;
}
.contact-inner p {
    text-align: center;
    color: #2C2C2C;
    font-size: 0.75rem;
}

/* contact btn */
.contact-btn {
    width: 260px!important;
    margin: auto;
    margin-bottom: 10px;
}
.contact-btn a {
    position: relative;
    display: block;
    width: 260px!important;
    padding: 20px 60px;
    text-decoration: none;
    text-align: center;
    background-color: #FFF;
    color: #2C2C2C;
    border: 1px solid #2C2C2C;
    border-radius: 80px;
}
.contact-btn a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid #2C2C2C;
    border-right: 1px solid #2C2C2C;
    transform: rotate(45deg);
    box-sizing: border-box;
    transition: .3s;
}
.contact-btn a:hover {
    background-color: #C375BA;
    border: 1px solid #C375BA;
    color: #FFF;
}
.contact-btn a:hover::after {
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
}


/* footer */
footer {
    position: relative;
}
footer::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1200px;
    top: 168px;
    background-color: #FAFAFA;
    z-index: -1;
}
.footer-address {
    margin: 0 8%;
    margin-top: 50px;
}
.footer-address-wrapper {
    margin-bottom: 50px;
}
.footer-address-wrapper address {
    color: #2C2C2C;
    font-style: normal;
    border-bottom: 1px solid #C4C4C4;
}
.arrow-top {
    width: 70px;
    margin-top: -85px;
    margin-left: 85%;
}
.arrow-top a {
    display: inline-block;
    position: relative;
    line-height: 0;
}
/* 元の画像（通常時表示） */
.arrow-top a img {
    display: block;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease-in-out;
}

/* hover用の画像を疑似要素で背景に配置 */
.arrow-top a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('./image/top-back-hover.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* hover時 */
.arrow-top a:hover img { 
    opacity: 0;
}
.arrow-top a:hover::before {
    opacity: 1;
}

.footer-nav {
    margin-top: 50px;
}
.footer-nav li {
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.875rem;
}
.footer-nav li a {
    position: relative;
    font-size: 1rem;
    color: #2C2C2C;
}
.footer-nav li a:before {
    content: "";
    position: absolute;
    display: block;
    background-color: #FFF;
    width: 0;
    height: 1px;
    bottom: -9px;
    left: 0;
    -webkit-transition: .4s ease 0s;
    transition: .4s ease 0s;
}
.footer-nav li a:hover {
    color: #9A9A9A;
    text-decoration: none;
}
.footer-nav li a:hover:before {
    width: 20px;
}
.instagram-icon-footer img {
    width: 23px;
    display: inline-block;
    transition: .3s;
}
.instagram-icon-footer img:hover {
    opacity: 0.6;
}
.instagram-icon-footer a:hover:before {
    display: none;
}
h1.footer-logo {
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 200px;   
}
.footer-address-wrapper address p  {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.4;
}
.footer-address-wrapper address p a:hover {
    color: #D8D8D8;
}
.footer-address-wrapper address ul {
    margin-bottom: 50px;
}
.footer-address-wrapper address ul li a {
    display: inline-block;
    color: #C375BA;
}
.footer-address-wrapper address ul li a:hover {
    opacity: 0.6;
}
.copyright {
    font-size: 0.625rem;
    color: #2C2C2C;
    text-align: center;
}

/* -----------------------------
	tablet 760px〜
-------------------------------- */
@media screen and (min-width: 760px){
    /* contents
    ---------------------------------------- */
    /* contact */
    #contact {
        margin: 150px 4% 0;
        line-height: 1.3;
        padding: 140px 8%;
        background: url(./image/contact-bg-pc.jpg) center center no-repeat;
        background-size: cover;
        color: #FFF;
    }
    .contact-inner {
        max-width: 1040px;
        margin: auto;
        display: flex;
        justify-content: space-between;
    }
}

/* -----------------------------
	PC 961px〜
-------------------------------- */
@media screen and (min-width: 961px){
    /* common
    ---------------------------------------- */
    body {
        font-size: 1rem;
    }
    .wrapper {
        margin: 0 3%;
    }
    h2.section-ttl {
        margin-bottom: 80px;
        font-size: 3.75rem;
        line-height: 0.6;
    }
    h2.section-ttl .section-ttl-jp {
        font-size: 0.875rem;
    }
    .btn a,
    .contact-btn a {
        width: 260px;
        font-size: 1rem;
    }

    /* header
    ---------------------------------------- */
    h1.header-logo img {
        margin-top: 0;
    }
    header {
        max-width: none;
    }
    h1.header-logo {
        padding-top: 20px;
        padding-left: 3%;
    }
    h1.header-logo img {
        max-width: 280px;
    }
    .header-sp {
        display: none;
    }
    .Toggle {
        display: none !important;
    }
    .nav-sp {
        display: none !important;
    }
    .header-nav {
        height: 115px;
    }
    .header-pc {
        max-width: 1520px;
        margin: auto;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        height: 115px;
    }
    .nav-pc {
        display: inline-block;
        padding-right: 5%;
    }
    .nav-pc ul {
        display: flex;
        padding-top: 30px;
        align-items: center;
    }
    .nav-pc ul li {
        margin-right: 18px;
        font-size: 0.875rem;
    }
    .nav-pc a {
        position: relative;
        color: #2C2C2C;  
    }
    .nav-pc li a:hover {
        color: #9A9A9A;
    }
    .nav-pc li a:hover:before {
        width: 20px;
    }
    .nav-pc ul li.nav-btn-pc {
        margin-right: 0;
    }
    .nav-btn-pc a:hover {
        color: #FFF!important;
    }
    .nav-btn-pc a:hover:before {
        display: none;
    }
    .nav-btn-pc a {
        font-size: 1rem;
    }
    .nav-btn-pc a.change-color-btn:hover {
        background: rgba(195,117,186,0.5);
        color: #FFF;
        transition: .3s;
    }
    .nav-btn-pc a.change-color-btn:hover::after {
        border-top: 1px solid #FFF;
        border-right: 1px solid #FFF;
    }

    
    /* 言語切り替えスタイル */
    ul.bogo-language-switcher.list-view {
        padding-top: 0!important;
    }
    .bogo-language-switcher {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        padding-top: 0;
        gap: 0;
    }
    .bogo-language-switcher li {
        margin: 0 !important;
        padding: 0;
    }
    .bogo-language-switcher .bogo-language-name {
        display: block;
    }
    .bogo-language-switcher a {
        display: block;
        padding: 0 3px;
        font-size: 1.125rem;
        color: #2C2C2C;
        text-decoration: none;
        transition: color 0.3s;
    }
    .bogo-language-switcher a:hover {
        color: #C375BA;
    }
    .bogo-language-switcher a.current {
        color: #C375BA;
        font-weight: 500;
    }

    /* mv
    ---------------------------------------- */
    .mv-text {
        max-width: 1520px;
        margin: auto;
        padding: 0 4%;
        transform: translate(3%, -50%);
    }
    .mv-text-jp {
        width: 600px;
        font-size: 1.0625rem;
    }
    .mv-text-en {
        width: 1000px;
        font-size: 2.5rem;
        line-height: 1.5;
    }

    /* contents
    ---------------------------------------- */
    /* common */
    .section-ttl:before {
        width: 20.5%;
        top: 40px;
        left: -19%;
    }
    .section-wrapper {
        max-width: 1520px;
        margin: auto;
        /* margin: 200px 8% 0; */
        padding: 0 4%;        
    }

    /* Mission*/
    #misson {
        max-width: 1520px;
        margin: auto;
        margin-bottom: 150px;
        padding: 0 4%;
        margin-top: 77px;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    .mission-img {
        width: 50%;
        margin-top: 0;
    }
    .mission-text-wrapper {
        width: 40%;
        margin-top: 120px;
    }

    /* News */
    #news {
        position: relative;
        width: 100%;
        height: 720px;
        background-image: url(./image/news-bg.jpg);
        background-position: 50% 50%;
    }
    .news-list-wrapper {
        max-width: 1200px;
        margin: auto;
        margin-left: 105px;
        padding: 125px 120px 50px;
    }
    .news-list li a {
        display: flex;
    }
    #news .news-date {
        width: 20%;
    }
    .news-ttl {
        width: 70%;
    }
    .mission-text-wrapper {
        position: relative;
    }
    #news h2.section-ttl {
        position: absolute;
        top: 320px;
        margin-bottom: 0;
    }


    /* Service */
    #service {
        max-width: 1520px;
        margin: auto;
        padding: 100px 4% 0;
    }
    .service-container {
        display: flex;
        gap: 3%;
        justify-content: space-between;
    }
    #service .service-container div {
        width: 33.3%;
    }
    #service .service-container div h3 {
        margin-top: 20px;
        font-size: 1rem;
    }
    #service .service-container div {
        margin-bottom: 60px;
    }
    .service-btn {
        margin-right: 0;
        margin-bottom: 200px;
    }

    /* footer
    ---------------------------------------- */
    .contact-container {
        max-width: 1520px;
        margin: auto;
        padding: 0 4%;
    }
    #contact {
        margin: 150px 0% 0;
    }
    #contact h2.section-ttl {
        margin-bottom: 0;
    }
    #contact p {
        font-size: 1rem;
    }

    footer::before {
        height: 700px;
    }
    h1.footer-logo {
        max-width: 250px;
        width: 250px;
        line-height: 1;
    }
    .footer-address {
        max-width: 1520px;
        margin: 0 auto;
        padding: 0 4%;
        font-size: 0.875rem;
    }
    .footer-address-wrapper {
        margin-top: 60px;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
    }
    .footer-logo-wrapper {
        border-right: 1px solid #C4C4C4;
    }
    .footer-address-wrapper address ul {
        padding-right: 150px;
    }
    .footer-address-wrapper address ul:last-child {
        margin-bottom: 0;
    }
    .footer-nav {
        display: flex;
        margin-top: 128px;
        margin-bottom: 20px;
    }
    .footer-nav li {
        margin-bottom: 0;
    }
    .footer-address-wrapper address {
        border-bottom: none;
    }
    .footer-address-wrapper address p {
        margin-bottom: 25px;
        font-size: 1.03125rem;
    }
    .footer-address-wrapper address p:last-child {
        margin-bottom: 0;
    }

    .arrow-top {
        width: 90px;
        margin-top: -44px;
        margin-bottom: 0;
        margin-left: 88%;
    }
    .footer-nav li {
        margin-right: 40px;
    }
    .footer-nav li:last-child {
        margin-right: 0;
        margin-top: -1px;
    }
    .footer-nav li a {
        font-size: 1rem;
    }
    .contact-btn {
        display: block;
        margin-top: 0;
        margin-bottom: 0;
    }
    .copyright {
        text-align: right;
    }
}

/* -----------------------------
	PC向け 1160px〜
-------------------------------- */
@media screen and (min-width: 1160px){
    .nav-pc ul li {
        margin-right: 40px;
        font-size: 1.125rem;
    }
}