﻿@import url(https://fonts.googleapis.com/css?family=Raleway:400,300,700);

*, *:before, *:after {
    box-sizing: border-box;
}

body {
}

table {
    border-collapse: collapse; /* テーブルのセルの枠線を合体させる */
    border-spacing: 0; /* セル間の隙間を0に設定 */
}

td {
    padding: 0;
    margin: 0;
}


/********************************************
   フォント
*********************************************/

/* 手書き明朝体フォント「テゴミン」 */
/*@font-face {
    font-family: 'YujiSyuku';
    src: url('../fonts/YujiSyuku-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/

/* 日本語フォント：手書き明朝体フォント「テゴミン」 */
/*body {
        font-family: 'YujiSyuku', sans-serif;
}*/


/********************************************
   アルバム・コンポ：コンテナ
*********************************************/
.album-compo-container {
    top: 20%;
    left: 90px;

    min-width: 450px;
    width: 800px;
    height: 700px;

    margin-left: 85px;
    margin-bottom: 150px;

    border: 0;
    display: inline-block;
}

.album-compo-container:after {
    -webkit-filter: blur(8px);

    filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.8);
    bottom: -2px;
    content: " ";
    display: block;
    height: auto;
    left: 19px;
    transform: rotate(-3deg);
}
