@charset "UTF-8";
/* CSS Document */

.mainVisualBack{
	background-image: url("../img/background_pc.jpg");
	background-position: center;
}

.mainVisualBack2{
	background-image: url("../img/background2_pc.png");
	background-position: center top;
	background-color: #f0f3f7;
	background-repeat: no-repeat;
}

.mainVisualBack2sp{
	background-image: url("../img/komarigoto2_sp.png");
	background-position: center top;
	background-color: #f0f3f7;
	background-repeat: no-repeat;
	background-size: cover;
}

.mainVisualBack3{
	background-image: url("../img/background3_pc.png");
	background-position: right bottom;
	background-repeat: no-repeat;
}

.mainVisualBack4{
	background-color: #e3e3e3;
}

.mainVisualBack4sp{
	background-color: #e3e3e3;
}

.mainVisualBack5{
	background-image: url("../img/step1_pc.png");
	background-position: center top;
	background-color: #ffffff;
	background-repeat: no-repeat;
}

.mainVisualBack6{
	background-color: #e3e3e3;
}

.mainVisualBack7{
	background-color: #f0f3f7;
}

.kakumaru {
  border-top-left-radius: 10px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 40px;
background-color: #ffffff;
	padding: 20px;
}

.balloon1 {
  position: relative;
  display: inline-block;
  background: #e0edff;
	
  border-top-left-radius: 10px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 40px;
background-color: #ffffff;
	padding: 20px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 30px solid #ffffff;
}

/* ===============================
241115ポップアップ表示用に追加
=============================== */

/* ポップアップ全体の背景を設定 */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

/* ポップアップの内容 */
.popup-content {
    background-color: #eef1f6;
    padding: 0px 0px 20px;
    /*border-radius: 5px;*/
    width: 300px;
    text-align: center;
    position: relative;
    z-index: 10000;
}

/* 閉じるボタン */
.close-button {
    margin-top: 20px !important;
    padding: 5px 10px;
    cursor: pointer !important;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 3px !important;
}

/* 右下の格納ボタン */
.popup-trigger {
    position: fixed;
    bottom: 25px;
    right: 80px;
    padding: 10px 20px;
    background-color: #f0891d;
    color: #fff;
    border: none;
    border-radius: 50px !important;
    cursor: pointer;
    font-size: 16px !important;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px; /* アイコンとテキストの間隔 */
    z-index: 1000;
}

.popup-trigger:hover {
    background-color: #0c439d;
    transform: scale(1.05); /* ホバー時に少し拡大 */
}

.popup-trigger i {
    font-size: 20px;
}

/* 画面幅が1000px以下（タブレット）の場合調整 */
@media screen and (max-width: 1000px) {
    .popup-trigger {
        bottom: 20px;
        right: 20px;
    }
    .popup-trigger i{
    }
    #Pagetop{
        display: none;
    }
}
