@charset "UTF-8";

/* @font-face {
    font-family: "NotoSansJP";
    src:url(../fonts/NotoSansJP-VariableFont_wght.ttf) format("truetype");
} */
/* 全体について------------------------------------------------------------------------- */
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-self;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.8;
}
body:after {/*擬似要素をつくる*/
    position: fixed;/*固定配置*/
    top: 0; left: 0;/*左上に固定*/
    width: 100%;
    height: 100%;/*画面全体を覆う*/
    content: "";
    background: #631216;/*保険用*/
    background: -moz-linear-gradient(top, #A0292B 0%,#631216 100%);
    background: -webkit-linear-gradient(top, #A0292B 0%,#631216 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbcacb', endColorstr='#f79697',GradientType=0 );
    background: linear-gradient(to bottom, #A0292B 0%,#631216 100%);
    z-index: -1;
}
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    padding: 0;
}
img{
    width: 100%;
    vertical-align: bottom;
}
a{
    color: #fff;
    text-decoration: none;
}
ol,
ul{
    list-style: none;
}
.inner{
    max-width: 1100px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.fadein{
    opacity: 0;
}
/* トップページリンク */
.to_top {
    display: block;
    position: fixed;
    color: #fff;
    background-color: #A0292B;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    z-index: 1990;
    right: 10px;
    bottom: 10px;
    height: 50px;
    width: 50px;
    line-height: 65px;
    font-size: 1.2rem;
    transition: 0.4s;
    opacity: 0;
}
.to_top:hover {
    transform: translate3d(0,-10px,0);
    transition-duration: 0.5s, 0.3s;
    transition-timing-function: ease, ease;
    transition-delay: 0s, 0s;
    background-color: #a14547;
}
.topbar{
    width: 10px;
    height: 1.5px;
    background-color: #fff;
    left: 5px;
    position: absolute;
}
.topbar1{
    top: 15px;
    left: 16px;
    rotate: -45deg; /* degは角度 */
}
.topbar2{
    top: 15px;
    left: 22px;
    rotate: 45deg; /* degは角度 */
}
.title{
    font-size: calc(30/1100*100vw);
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    margin-top: 80px;
    text-align: center;
}
.subtitle{
    margin-top: 0;
    color: #E0D044;
    text-align: center;
}
/*ボタン*/
.btnarrow5{
    position: relative;
    font-family: 'Noto Serif JP', serif;
    border: 1px solid #fff;
    padding: 8px 100px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    outline: none;
    transition: all .2s linear;
    margin: 50px;
}

.btnarrow5:hover{
    background:rgb(255, 255, 255, .3);
    color:#fff;
}
.btnarrow5::before{
    content:"";
    position: absolute;
    top:50%;
    right:-26px;
    width:40px;
    height:1px;
    background:#fff;
    transition: all .2s linear;
}
.btnarrow5::after{
    content:"";
    position: absolute;
    top: 20%;
    right: -21px;
    width:1px;
    height:12px;
    background:#fff;
    transform:skewX(45deg);
    transition: all .2s linear;
}
.btnarrow5:hover::before{
    right:-30px;
}
.btnarrow5:hover::after{
    right:-25px;
}
/* ハンバーガーボタン */
.trigger{
    display: block;
    background-color: #A0292B;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 1100;
    border: none;
}
.bar{
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
    left: 5px;
    position: absolute;
}
.bar1{
    top: 14px;
}
.bar2{
    top: 24px;
}
.bar3{
    top: 34px;
}
body.open{
    overflow: hidden;
}
.open .bar1{
    top: 24px;
    rotate: -45deg;
}
.open .bar2{
    opacity: 0;
}
.open .bar3{
    top: 24px;
    rotate: -135deg;
}
.open .trigger{
    background-color: rgb(197, 61, 67,0);
}
/* ナブ */
.open .nav{
    left: 0;
}
/* 変化の設定 */
.nav,
.bar{
    transition: 0.4s cubic-bezier(0.54,-0.18, 0.52, 1.29);
}
.nav{
    position: fixed;
    display: flex;
    justify-content: right;
    left: -200vw;
    background-color: #A0292B;
    opacity: 85%;
    backdrop-filter: blur(30px);
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 999;
    font-family: 'Noto Serif JP', serif;
    padding-right: 100px;
    padding-top: 100px;
    top: 0;
}
.nav-list{
    display: block;
    flex-direction: column;
    text-align: left;
    gap: 40px;
}
.nav-list p{
    border-bottom: #fff 1px solid;
}
.nav-list a{
    color: #fff;
    font-size: 2.0rem;
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    display: inline-block;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
    padding: 0px 10px;
    font-size: 2.0rem;
}
.nav-list a{
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    display: inline-block;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
    padding: 0px 10px;
}
.nav-list img{
    width: 80%;
}
.nav-item a:hover{
    color: #A0292B;
}
.nav-item a span{
    position: relative;
}
.bgskew::before {/*　背景が流れる（斜め） */
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: -150%;
    /*色や形状*/
    background: #fff;
    width:120%;
    height: 100%;
    transform: skewX(-25deg);
}
.bgskew:hover::before {/*hoverした時のアニメーション*/
    animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}
@keyframes skewanime {
    100% {
        left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
    }
}
/* 文字表示 */
.slide-in {
    overflow: hidden;
    display: inline-block;
}
.slide-in_inner {
    display: inline-block;
}
.leftAnime{
    opacity: 0;
}
.slideAnimeLeftRight {
    animation-name:slideTextX100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX100 {
    from {
    transform: translateX(-100%); 
        opacity: 0;
    }

    to {
    transform: translateX(0);
    opacity: 1;
    }
}
.slideAnimeRightLeft {
    animation-name:slideTextX-100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX-100 {
    from {
    transform: translateX(100%);
    }
    to {
    transform: translateX(0);
    opacity: 1;
    }
}

/* カルーセル */
.slider {
    width:94%;
    margin:0 auto;
}
.slider img {
    width:60vw;
    height:auto;
}
.slider .slick-slide {
	transform: scale(0.8);
	transition: all .5s;
	opacity: 0.5;
}
.slider .slick-slide.slick-center{
	transform: scale(1);
	opacity: 1;
}
.slick-prev, 
.slick-next {
    position: absolute;
    top: 50%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 15px;
    width: 15px;
}
.slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}
.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}

.intro-list{
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    align-items: center;
    border-top: #fff 1px solid;
}
h3{
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    margin-top: 20px;
    font-size: 2.0rem;
}
.intro-list img{
    width: 600px;
    margin-top: 20px;
}
.intro-p{
    text-align: left;
    margin-top: 20px;
    width: calc(700/1100*100vw);
}
.intro-p h4{
    font-family: 'Noto Serif JP', serif;
    color: #A0292B;
    background-color: #fff;
    margin-top: 15px;
    width: 100px;
    text-align: center;
}
/* アサイド */
.aside{
    padding: 200px 0;
    margin-top: 150px;
    margin-bottom: 50px;
    background-image: url(../images/footer/footer.jpg);
}
.aside-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.share{
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
}
.aside-nav-list{
    display: flex;
    gap: 15px;
    padding-top: 15px;
    align-items: center;
}
.aside-nav-list img{
    width: 60px;
    background-color: #fff;
    border-radius: 100vw;
}
.aside-nav-list img:hover{
    opacity: 90%;
}
.subnav{
    color: #fff;
    font-size: 1.2rem;
    display: flex;
}
.subnav li{
    padding: 0 10px;
    margin-top: 30px;
}
.subnav li:hover{
    color: #c6c6c6;
}
.subnav li+li{
    position: relative;
}
.subnav li+li::before{
    content: "";
    display: block;
    height: 1em;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0%;
    margin: auto;
}
.cautionarynote{
    font-size: 1.0rem;
    text-align: center;
    color: #fff;
    margin-top: 30px;
}

/* フッター */
.footer{
    /* background-color: #A0292B; */
    background-color: #631216;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.footer small{
    font-size: 1rem;
} 


/* -----------------------------------------------モバイル版----------------------------------------------  */
@media( max-width: 700px ){  
    .inner{
        max-width: 750px;
        width: 85%;
    } 
    /* 共通 */
    .title{
        font-size: 3.0rem;
        margin-top: 80px;
    }
    .subtitle{
        font-size: 1.2rem;
    }
    body::before{
        position:fixed;
        top:0;
        left:0;
        z-index:-1;
        width:100vw;
        height:100vh;
        -webkit-background-size:contain;
        background-size:contain;
        content:"";
        background-position: center center;
    }
    
    /* 共通 */
    .title{
        font-size: 3.0rem;
        margin-top: 80px;
    }
    .subtitle{
        font-size: 1.2rem;
    }
    /* カルーセル */
    .slider img {
        width:250px;
    }
    .intro-p{
        font-size: 1.2rem;
    }
    /* アサイド */
    .aside{
        position: relative;
        margin-top: 250px;
        margin-bottom: 0;
        object-fit: cover;
        object-position: center;

    }
    .share{
        display: flex;
        flex-direction: column;
        text-align: center;
        color: #fff;
        font-size: 1.0rem;
    }
    .aside-nav-list{
        padding-top: 5px;
    }

    .aside-nav-list img{
        width: 35px;
    }
    .subnav{
        font-size: 0.8rem;
    }
    .subnav li{
        margin-top: 10px;
    }
    
    .cautionarynote{
        font-size: 0.8rem;
        text-align: center;
        color: #fff;
        margin-top: 5px;
    }
    /* フッター */
    .footer{
        background-color: #c53d43;
        color: #fff;
        padding: 20px 0;
        text-align: center;
    }
    .footer small{
        font-size: 1rem;
    } 
}