@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.2
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/*ポイント マップ用CSS*/
.map {
    width: 100%;
    position: relative;
}
.map > div > img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}
.map-off {
    position: relative;
    z-index: 0;
}
.map-on {
    position: absolute;
    top: 0;
    z-index: 1;
}
.map-on > img {
  opacity: 0;
}
.point-on > .map-on > img {
  opacity: 1;
}
/*btn*/
.map-btn-box {
    margin-top: -9px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-btn-box > p {
    padding-right: .8em;
}
.map-btn {
    width: 100px;
    height: 2em;
    background: #EBF7FB;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    position: relative;
    transition: 0.5s ease all;
    cursor: pointer;
}
.map-btn > span {
    background: #03A8F4;
    width: 50%;
    height: 1.5em;
    border-radius: 5px;
    position: absolute;
    top: 0.25em;
    left: 3%;
    transition: 0.3s ease all;
    z-index: 0;
}
.map-btn:before {
    content: "OFF";
    color: #EBF7FB;
    font-size: 1em;
    text-align: center;
    line-height: 100%;
    width: 45%;
    margin-left: 5%;
    padding: 0.5em 0;
    display: block;
    position: relative;
    z-index: 1;
    transition: 0.5s ease all;
}
.map-btn:after {
    content: "ON";
    color: #777;
    font-size: 1em;
    text-align: center;
    line-height: 100%;
    width: 45%;
    margin-right: 5%;
    padding: 0.5em 0;
    display: block;
    position: relative;
    z-index: 2;
    transition: 0.5s ease all;
}
.point-on .map-btn {
    background: #FBEBEB;
}
.point-on .map-btn > span {
    background: #F34336;
    left: 47%;
}
.point-on .map-btn:before {
    color: #777;
}
.point-on .map-btn:after {
    color: #fff;
}