@charset "utf-8";
/*****************************************************************************************
Home Hero
*****************************************************************************************/
.home_hero_wrap {
    position: relative;
}
.home_hero_bg {
    background: #770532;
    width: 50%;
    height: 275px;
    position: absolute;
    left: 0;
    top: 0;
}

.home_hero {
    height: 550px;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    background-color: #FFF;
    background-image: url("../img/home_hero_img_1.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto 550px;
}
.home_hero_layer {
    width: 100%;
    position: absolute;
    top: 0;
}
.home_hero_layer_in {
    max-width: 1160px;/* (1080+40+40) */
    margin: 0 auto;
    position: relative;
}

img.home_hero_img_2 {
    height: 275px;
    position: absolute;
    left: 0;
    top: 0;
}
img.home_hero_img_3 {
    height: 350px;
    position: absolute;
    right: 40px;
    top: 75px;
}

@media screen and (max-width: 1050px) {
.home_hero {
    background-size: auto 500px;
}
img.home_hero_img_2 {
    height: 183px;/* (550/3) */
}
}

@media screen and (max-width: 900px) {
.home_hero {
    background-size: auto 450px;
}
img.home_hero_img_3 {
    right: 30px;
    top: 30px;
}
}
@media screen and (max-width: 800px) {
.home_hero {
    background-size: auto 400px;
}
}

@media screen and (max-width: 700px) {
.home_hero {
    background-size: auto 300px;
}
img.home_hero_img_3 {
    height: 275px;
    right: 20px;
    top: 20px;
}
}

/* 英語版 調整 *****************************/
body.lang_en img.home_hero_img_3 {
    height: 200px;
}
@media screen and (max-width: 1050px) {
body.lang_en img.home_hero_img_3 {
    height: 175px;
}
}
@media screen and (max-width: 700px) {
body.lang_en img.home_hero_img_2 {
    height: 150px;
}
body.lang_en img.home_hero_img_3 {
    height: 150px;
    top: 100px;
}
}








/*****************************************************************************************
Home お知らせ
*****************************************************************************************/
.home_info {
    background-image: linear-gradient(180deg, #FFFBC5 0%, #FED518 100%);
    padding: 0 15px 60px 15px;
}
.home_info > div {
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 40px;
}

/* お知らせページのリストをアレンジ */
.home_info ul.info_list {
    border: none;
    background: #FFF;
}
.home_info li.info_data {
    border: none;
    padding-left: 15px;
    padding-right: 15px;
}

.home_info ul.info_list li:nth-child(even) {
    background: #efefef;
}

img.info_pin {
    height: 16px;
    margin-right: 8px;
}





