@charset "utf-8";
/* ===========================================================
 CSS information
 file name : history.css
 style info : history page style
============================================================== */

@media print, screen and (min-width: 751px) {
  h1 {
    min-width: 960px;
    width: 100%;
    height: 125px;
    background: url("../images/history/h1.png") repeat-x top center;
    background-size: 1032px;
    padding: 75px 0 0 0;
    font-size: 32px;
    letter-spacing: 3.2px;
    text-align: center;
  }
    .history li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .history li + li { margin-top: 80px; }
    .text { width: 480px; }
    .text p { margin: 0 !important; }
    .year {
        font-size: 24px;
        letter-spacing: 8px;
        color: #F08D8D;
        display: block;
        text-align: left;
        position: relative;
    }
    .year::after {
        content: "";
        width: 360px;
        height: 2px;
        background: #F08D8D;
        position: absolute;
        right: 0;
        top: calc(50% - 1px);
    }
    .title {
        all: initial;
        font-size: 20px;
        color: #F08D8D;
    }
    .img {
        width: 100px;
        text-align: center;
    }
    .img div {
        width: 100px;
        height: 100px;
        background: #F08D8D;
        border-radius: 50%;
        position: relative;
    }
    .img div img {
        width: 80px;
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .img .img_center img { bottom: 24px; }
    .img span { font-size: 10px; }
}

@media screen and (max-width: 750px) {
  h1 {
    width: 100%;
    height: 38.92vw;
    background: url("../images/history/h1.png") repeat-x top center;
    background-size: 200vw;
    padding: 10.66vw 0 0 0;
    font-size: 5.33vw;
    letter-spacing: 0.85vw;
    text-align: center;
  }
    .history li {
        width: 90vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .history li + li { margin-top: 16vw; }
    .text {
        width: 60vw;
        padding: 0;
    }
    .text p { margin: 0 !important; }
    .year {
        font-size: 5.6vw;
        letter-spacing: 1vw;
        color: #F08D8D;
        display: block;
        text-align: left;
        position: relative;
    }
    .year::after {
        content: "";
        width: 36vw;
        height: 0.5vw;
        background: #F08D8D;
        position: absolute;
        right: 0;
        top: calc(50% - 0.25vw);
    }
    .title {
        all: initial;
        font-size: 4.8vw;
        color: #F08D8D;
    }
    .img {
        width: 24vw;
        text-align: center;
    }
    .img div {
        width: 24vw;
        height: 24vw;
        background: #F08D8D;
        border-radius: 50%;
        position: relative;
    }
    .img div img {
        width: 20vw;
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .img .img_center img { bottom: 5.6vw; }
    .img span { font-size: 2.4vw; }
}



