@charset "UTF-8";

body.no-scroll {
  overflow: hidden; /* 背景スクロールを無効化 */
}

.cycle {
    position: relative;
    z-index: 4;
}

.bubble {
    position: relative;
    z-index: 2;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* 半透明な黒の背景 */
    justify-content: center;
    align-items: center;
    z-index: 10000; /* 他の要素より前面に表示 */
    overflow: hidden; /* 画面外に出ないようにする */
	
}

.popup-content {
	width: 98%;
    height: auto;
    padding: 30px;
    background-color: #012f0d;
    overflow: auto;
    box-sizing: border-box;
    height: 85%;
    overflow: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    scrollbar-width: none;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 30px;
    font-weight: bold;
    color: #baaf6f;
    cursor: pointer;
    padding: 3px 10px;
    border-radius: 50%;
}

.popup_box_wrapper {
	background-image: url(../images/cycle-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
    border: solid #baaf6f 2px;
    padding: 3% 5%;
	font-family: "Noto Sans JP", sans-serif;
}

h3.popup_h3 {
    font-size: 1.6rem;
    color: #decf79;
    font-weight: 400;
    text-align: center;
}
	 
.popup_box_wrapper>p {
    font-size: 1.1rem;
	font-weight: 100;
}
	
	 
p.popup-sabu {
	font-size: 1.4rem;
    color: #decf79;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
}
	 
.popup_box_wrapper>img {
    width: 44%;
    display: block;
    margin: 24px auto;
}
	 
.extract-box {
    display: flex;
    align-items: center;
    width: 12%;
    margin: 18px auto;
    justify-content: center;
}

.extract-box > img:nth-of-type(1) {
    width: 100%;
}
	 
.extract-box > img:nth-of-type(2) {
    padding: 0 3px;
    margin: 0 24px;
	width: 100%;
}

.extract-box > img:nth-of-type(3) {
    width: 93%;
}
 
.popup_box_wrapper p.popup-mini{
    font-size: 0.75rem;
    text-align: right;
    margin-top: 24px;
}

@media only screen and (max-width: 1000px) {
	
.popup_box_wrapper {
    padding: 10% 2%;
}
	
.popup-content {
	padding: 12px;
	overflow: auto;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
	
.extract-box {
    width: 25%;
}
	
h3.popup_h3 {
    font-size: 1.1rem;
}
	
p.popup-sabu {
    font-size: 1rem;
}

.popup_box_wrapper>p {
    font-size: 1rem;
}
	

.popup-close {
	top: 8px;
    right: 10px;
}
	
}	