/*
 * Theme Name: HTMLレイアウト標準テンプレート共通CSS
 * Theme URI:
 * Description: ４ブランド共通で使うスタイル
 * Created Date: 2018.02.28
 * Update Date: 2018.04.27
 */


/*------------------------------------
Color
------------------------------------*/

body {
    color: #333;
}

/*------------------------------------
Font
------------------------------------*/

body {
    /* win:游ゴシック優先、mac:ヒラギノ角ゴシック優先 */
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic';    /* 標準のフォントサイズを 1.6rem=16pxに設定 */
    font-size: 16px;
    letter-spacing: .05em;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 100;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 200;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 300;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}


/*------------------------------------
Common
------------------------------------*/
*,
    *:after,
    *:before {
    	box-sizing: border-box;
    }

    body {
    	height: 100%;
    	margin: 0;
    }

    a:link {
    	text-decoration: none;
    }

    a:visited {
    	text-decoration: none;
    }

    a:hover {
    	text-decoration: none;
    }

    a:active {
    	text-decoration: none;
    }

    a {
    	cursor: pointer;
    }


    /*------------------------------------
    Text
    ------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd {
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 1em;
}

/*------------------------------------
title
------------------------------------*/
.content-main .ttl-primary:first-of-tye {
    margin-bottom: 50px;
}

/*------------------------------------
General
------------------------------------*/
.img-liquid {
    width: 100%;
    height: auto;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.text-center {
    text-align: center;
}

.align-right {
    float: right;
    margin: 0 0 1em 1em;
}

.align-left {
    float: left;
    margin: 0 1em 1em 0;
}

.clearfix::after {
    display: block;
    clear: both;
    content: '';
}

.clear {
    clear: both;
}

/*------------------------------------
Layout:block
------------------------------------*/
.container-wrap {
    background-color: #fff;
}

.container {
    width: 1000px;
    margin: 0 auto;
}

.section-secondary,
.section-tertiary,
.section-quaternary {
    margin: 40px 0;
}

.section-primary .sec-content {
    margin: 50px 0;
}

.section-secondary .sec-content,
.section-tertiary .sec-content,
.section-quaternary .sec-content {
    margin: .5em 0;
}


/*------------------------------------
Layout:float
------------------------------------*/

.float-left {
    float: left;
}

.float-right {
    float: right;
}


/*------------------------------------
Layout:column
------------------------------------*/
.col-flex {
    display: flex;
    min-height: 1px;
    margin-right: -15px;
    margin-left: -15px;

    flex-wrap: wrap;
    justify-content: space-between;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    padding-right: 15px;
    padding-left: 15px;
}

.col-1 {
    max-width: 8.33333333%;

    flex: 0 0 8.33333333%;
}

.col-2 {
    max-width: 16.666666%;

    flex: 0 0 16.666666%;
}

.col-3 {
    max-width: 25%;

    flex: 0 0 25%;
}

.col-4 {
    max-width: 33.333333%;

    flex: 0 0 33.333333%;
}

.col-5 {
    max-width: 41.66667%;

    flex: 0 0 41.66667%;
}

.col-6 {
    max-width: 50%;

    flex: 0 0 50%;
}

.col-7 {
    max-width: 58.33333%;

    flex: 0 0 58.33333%;
}

.col-8 {
    max-width: 66.66666667%;

    flex: 0 0 66.66666667%;
}

.col-9 {
    max-width: 75%;

    flex: 0 0 75%;
}

.col-10 {
    max-width: 83.33333%;

    flex: 0 0 83.33333%;
}

.col-11 {
    max-width: 91.6666%;

    flex: 0 0 91.6666%;
}

.col-12 {
    max-width: 100%;

    flex: 0 0 100%;
}

.col-box-2 .col-6,
.col-box-2 .col-4 {
    margin-bottom: 30px;
}

.col-box-2 img,
.col-box-3 img {
    margin-bottom: 15px;
}
