@charset "UTF-8";
/*-----------------------------------------------------------

    このファイルにはブログパーツのスタイルのみを記述します

------------------------------------------------------------*/

/* -----------------------------
 * アンカーリンク 
-------------------------------*/

.anchor-link-wrapper {
    border-radius: 60px 60px 0 0;
}

.Anchor-link a {
    background: none;
    border-radius: 0;
    box-shadow: none;
    font-family: "Zen Old Mincho";
    font-weight: 400;
    font-size: 16px;
    line-height: 2.09;
    letter-spacing: 0.03em;
    color: #333333;
    transition: all 0.3s;
    padding: 0;
    justify-content: space-between !important;
    width: 100%;
    text-align: left;
}

.Anchor-link a:hover {
    box-shadow: none;
    opacity: 0.5;
}

.Anchor-link a span {
    width: 90%;
}

.Anchor-link a:hover span {
    opacity: 0.5;
}

.Anchor-link svg {
    fill: #111722;
}

/* -----ホバーアニメーション ---------*/

/* 基準点作成 */
.Anchor-link a {
    position: relative;
}

/* アニメーション中身 */
.Anchor-link a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #333333;
    bottom: -8px;
    /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);
    /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top;
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s;
    /*変形の時間*/
}

.Anchor-link a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
}


/* -----------------------------
 * 下層ページ汎用 リンクボタン
-------------------------------*/
.General-btn a {
    font-family: "Zen Old Mincho";
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.025em;
    color: #FFFFFF;
    text-align: center;
    padding: 24px 64px;
    border-radius: 0px;
    border: none;
    box-shadow: none;
    background-color: #111722;
}


