@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* CSSコード */
    .popup-banner {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
    }

    .outer {
      display: none;
    }

    .in-box {
      display: none;
      position: relative;
      max-width: 300px;
      background-color: #ffffff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 5px;
      overflow: hidden;
    }

    .in-box img {
      display: block;
      width: 100%;
      height: auto;
    }

    .buttonBox {
      display: flex;
      justify-content: space-around;
      padding: 10px;
    }

    .buttonBox__no,
    .buttonBox__yes {
      border: none;
      padding: 5px 10px;
      font-size: 14px;
      cursor: pointer;
    }

    .buttonBox__no {
      background-color: #999;
      color: #fff;
    }

    .buttonBox__yes {
      background-color: #f00;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 767px) {
      .in-box {
        max-width: 90%;
      }
    }
