@charset "utf-8";
/* ---------------------------------- **
        Modal Window
** ---------------------------------- */
#layer_board_area {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 3vw;
    overflow-y: auto;
    box-sizing: border-box; /*スクロールバーを非表示*/
    -ms-overflow-style: none; /*スクロールバーを非表示*/
    scrollbar-width: none; /*スクロールバーを非表示*/
    z-index: 2;
}
#layer_board_area::-webkit-scrollbar {
    display:none; /*スクロールバーを非表示*/
}
.layer_board_bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    cursor: pointer;
    background: #000;
    z-index: 0;
}
/* --modalWindow ポップアップ部分-- */
.layer_board {
    display: none;
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 5em auto 0;
    padding: 4em;
    border-radius: 5px;
    box-sizing: border-box;
    background: #fff;
    z-index: 10;
    overflow: hidden;
    overflow-y: scroll;
    height: 640px;
}
.layer_board.shortLayer {
    margin: 0;
    top: 54%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* --modalWindow バツ(閉じる)ボタン-- */
.layer_board .mdl_btn_close.circle_btn {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: #012c3d;
    background-image: url("https://marunihotel.comhttp://www.marunihotel.com/img/top/btn_close.png");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 50%;
    border-radius: 50%;
    border: 1px solid #ccc;
    transition: .15s;
}
.layer_board .mdl_btn_close.circle_btn:hover {
    background-color: #f8444e;
    border: 1px solid #f8444e;
}

/* --↑必須なのはここまで↑-- */

/* --modalWindow タイトル部分-- */
.layer_borad_title {
    font-size: 2.7rem;
    color: #f8444e;
    text-align:center;
    font-weight:600;
}
/* --modalWindow コンテンツ部分-- */
.layer_borad_content {
    margin: 1em auto 1.5em;
    text-align: center;
}
.layer_borad_content p.single{
	display: block;
	margin:20px 0;
	font-size: 2rem;
	font-weight: 600;
}
.layer_borad_content p.single span{
	color: #f8444e;
	font-size: 2.8rem;
	padding-left: 5px;
}
.bousi_area {
    margin: 0 auto;
    padding: 30px 0;
    box-sizing: border-box;
    border-radius: 10px;
}
.bousi_area.flex{
    justify-content: center;
}
.bousi_area li {
    width: 30%;
    background-color: #f7f8f4;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 15px;
    box-sizing: border-box;
    margin:0 10px 20px 10px;
}
.bousi_area li img{
    width: 70%;
    display: block;
    margin:0 auto;
}
.bousi_area li p{
    font-size:1.3rem;
    text-align:center;
}
.layer_board::-webkit-scrollbar{
  width: 10px;
}
.layer_board::-webkit-scrollbar-track{
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #777; 
}
.layer_board::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 10px;
  box-shadow: none;
}
/* --modalWindow 四角ボタン-- */
.layer_board .square_btn {
	display: block;
    background-color: #012c3d;
    border: solid 1px #012c3d;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    border-radius: 5px;
    max-width: 320px;
    margin:0 auto;
}
@media all and (-ms-high-contrast: none) {
.layer_board .square_btn {
    margin:0 auto 30px;
}
}
.layer_board .square_btn:hover {
	background-color: #fff;
    color: #012c3d;
}
.layer_borad_content img {
    display: block;
    margin: 30px auto;
    max-width: 50%;
}
@media screen and (max-width:768px) {
.layer_borad_title {
    font-size: 2rem;
}
.layer_borad_content img {
    max-width: 70%;
}
}
@media screen and (max-width:480px) {
.layer_borad_title {
    font-size: 1.7rem;
    text-align: left;
}
.layer_borad_content {
    text-align: left;
}
.layer_borad_content br{
    display: none;
}
.layer_borad_content p.single {
    text-align: center;
}
.layer_borad_content img {
    max-width: 100%;
    margin: 10px auto 0;
}
.layer_board {
    width: 90%;
    margin: 3em auto;
    padding: 1.5em;
}
.layer_board .mdl_btn_close.circle_btn {
    width: 26px;
    height: 26px;
    background-size: 14px;
}
.layer_board {
    height: 450px;
}
.bousi_area li {
    width: 46%;
    padding: 10px;
    margin: 0 5px 10px 5px;
}
.bousi_area li p br{
    display: none;
}
}
@media screen and (max-width:375px) {
.layer_borad_title {
    font-size: 1.5rem;
}
}
@media screen and (max-width:320px) {
.layer_borad_content img {
    display: none;
}
.layer_board {
    padding: 2.5em 1.5rem;
}
.bousi_area li {
    width: 45%;
}
}