@charset "utf-8";

::selection {
	background-color: #333;
	color: #fff;
}

a {
	transition: all .3s;
}

a:hover {
	opacity: 0.7;
}

#wrap {
	margin: 0 auto;
}

html{
	scroll-behavior: smooth;
}

body {
	background: #F1F5F8;
	color: #414D55;
}

img {
	max-width: 100%;
}

#header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 10px;
}
#header .inner {
	display: flex;
	justify-content: space-between;
	padding: 20px;
	max-width: 1400px;  /* 2000pxから1400pxに変更 */
	width: 100%;
	margin: 0 auto;
	align-items: center;
	background-color: #fff !important; /* 白背景に戻す - 強制適用 */
}
/* ヘッダーの背景色を強制的に白に設定 */
#header .inner {
	background-color: #fff !important;
}

#header h1 img {
	width: 180px;
	vertical-align: middle;
	cursor: pointer;
}

#header h1 span {
	display: inline-block;
	vertical-align: middle;
	font-size: 10px;
	padding: 9px 10px;
	background: #F1F5F8;
	border-radius: 10px;
	margin: 0 0 0 10px;
}

#header .hd_btn1 {
	background: #1E2939;
	color: #fff;
	font-size: 10px;
	border: 0px none;
	cursor: pointer;
	width: 95px;
	height: 26px;
	border-radius: 20px;
	vertical-align: middle;
	transform: translateY(5px) !important; /* 5px下に移動してAI分析ボタンと下部を揃える */
}

#header .hd_btn1 img {
	width: 11px;
	vertical-align: middle;
}

#header .hd_btn1 span {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 7px;
	font-weight: bold;
}

#header .hd_btn2 {
	border: 1px solid #1E2939;
	color: #1E2939;
	background: #fff;
	font-size: 10px;
	cursor: pointer;
	width: 131px; /* 元のサイズに戻す */
	height: 26px;
	border-radius: 20px;
	margin: 0 0 0 20px;
	vertical-align: middle;
	transform: translateY(5px) !important; /* 5px下に移動してAI分析ボタンと下部を揃える */
}

#header .hd_btn2 img {
	width: 11px;
	vertical-align: middle;
}

#header .hd_btn2 span {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 7px;
	font-weight: bold;
}

#header .btn_login {
	border: 1px solid #1E2939;
	color: #1E2939;
	background: #fff;
	font-size: 10px;
	cursor: pointer;
	width: 60px;
	height: 26px;
	border-radius: 20px;
	margin: 0 0 0 20px;
	font-weight: bold;
	vertical-align: middle;
}

.notification-bell {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 20px;
    cursor: pointer;
}

.notification-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.notification-bell:hover .notification-icon {
    transform: scale(1.1);
    opacity: 0.8;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #EF4444;
    border-radius: 50%;
    color: white;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 通知モーダルのスタイル */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification-modal.show {
    opacity: 1;
}

.notification-modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 400px;
    max-height: 80vh;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification-modal.show .notification-modal-content {
    transform: translateX(0);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.notification-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #374151;
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    position: relative;
}

.notification-item:hover {
    background-color: #f9fafb;
}

.notification-item.unread {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    transform: translateY(-50%);
}

.notification-icon {
    font-size: 20px;
    margin-right: 12px;
    margin-top: 2px;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    font-size: 14px;
}

.notification-message {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.notification-time {
    color: #9ca3af;
    font-size: 12px;
}

.notification-link {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    margin-top: 8px;
    transition: background-color 0.2s ease;
}

.notification-link:hover {
    background-color: #2563eb;
}

.notification-actions {
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.mark-read {
    background-color: #f3f4f6;
    color: #6b7280;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mark-read:hover {
    background-color: #e5e7eb;
    color: #374151;
}

.notification-footer {
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    text-align: center;
}

.mark-all-read {
    background-color: #6b7280;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mark-all-read:hover {
    background-color: #4b5563;
}

/* スクロールバーのスタイル */
.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.notification-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.notification-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

#header .mypage {
	position: relative;
	display: inline-block;
	width: 40px;
	vertical-align: middle;
	margin: 0 0 0 20px;
	cursor: pointer;
}

#header .mypage .mypage_con {
	display: none;
	z-index: 12;
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 220px;
	background: #fff;
	padding: 5px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}

.mypage_con figure {
	text-align: center;
	padding: 10px 0;
	border-bottom: 1px dashed #A2C0D4;
	margin: 0 0 5px;
}

.mypage_con figure img {
	width: 60px;
}

.mypage_con figure figcaption {
	display: block;
	font-size: 13px;
	font-weight: bold;
	margin: 7px 0 0;
}

.mypage_con ul li a {
	display: block;
	padding: 5px 8px;
}

.mypage_con ul li a img {
	width: 20px;
	vertical-align: middle;
}

.mypage_con ul li a span {
	font-weight: bold;
	font-size: 13px;
	vertical-align: middle;
	margin: 0 0 0 10px;
}

.mypage_con ul li.mp_upgrade a span {
	color: #1E2939;
}

.mypage_con ul li.mp_logout {
	border-top: 1px dashed #A2C0D4;
	padding: 5px 0 0;
	margin: 15px 0 0;
}

.container {
	position: relative;
	max-width: 1600px;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	padding: 0;
	gap: 0;
	z-index: 11;
}
.left-panel {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 25%;
	min-width: 300px;
	padding-right: 20px;
	min-height: 550px;
}
.step-container.step2-box {
/*	height: 229px;*/
height: auto;
display: flex;
flex-direction: column;
flex-grow: 1;
/*	background: #fff url('../img/bg_map.png') no-repeat 50% 50%;*/
	background-size: 65%;
}
.middle-panel {
	position: relative;
	width: 75%;
	min-width: 400px;
	padding-left: 0;
/*	height: 493px;*/
}
.right-panel {
	width: 25%;
	min-width: 300px;
}
.step-container {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}
.step-title {
	display: flex;
	align-items: center;
	margin-bottom: 15px !important;
	padding-bottom: 10px !important;
}

.step-title h2 {
	margin: 0 !important;
	font-size: 18px !important;
	font-weight: 600 !important;
	color: #333 !important;
}

.explain {
	font-size: 12px !important;
	color: #666 !important;
	margin-bottom: 15px !important;
	line-height: 1.5 !important;
}

.dropdown-btn {
	font-size: 13px !important;
	padding: 8px 12px !important;
	border: 1px solid #e9ecef !important;
	border-radius: 6px !important;
}

.step-number {
	background: #000000 !important;
	color: white !important;
	padding: 6px 12px !important;
	border-radius: 15px !important;
	font-weight: bold !important;
	font-size: 12px !important;
	margin-right: 10px !important;
	min-width: 60px !important;
	text-align: center !important;
}

.custom-checkbox {
	width: 16px !important;
	height: 16px !important;
	border: 1px solid #ddd !important;
	border-radius: 3px !important;
	display: inline-block !important;
	position: relative !important;
	transition: all 0.3s ease !important;
}

.radio-custom {
	width: 16px !important;
	height: 16px !important;
	border: 1px solid #ddd !important;
	border-radius: 50% !important;
	display: inline-block !important;
	position: relative !important;
	margin-right: 8px !important;
	transition: all 0.3s ease !important;
}

.radio-label {
	font-size: 13px !important;
	font-weight: 500 !important;
	color: #333 !important;
}

.option-label {
	font-size: 12px !important;
	font-weight: bold !important;
	color: #555 !important;
	min-width: 15px !important;
	text-align: center !important;
}
.step-title span {
	background: #000000 !important;
	color: white !important;
	padding: 6px 12px !important;
	border-radius: 15px !important;
	font-weight: bold !important;
	font-size: 12px !important;
	margin-right: 10px !important;
	min-width: 60px !important;
	text-align: center !important;
	display: inline-block !important;
}
.step-content {
	margin-top: 10px;
}

.step2-box .step-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.option-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}
.option-label {
	font-weight: bold;
	margin-right: 10px;
}
.select-box {
	width: 90%;
	padding: 10px;
	border-radius: 5px;
	border: 0px none;
	background: #f8f9fb;
}
.radio-icon {
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 1px solid #3367d6;
	border-radius: 50%;
	position: relative;
	margin: 0 5px 0 0;
}
.radio-icon::after {
	content: "";
	width: 8px;
	height: 8px;
	background-color: #3367d6;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.explain {
	font-size: 13px;
	font-weight: bold;
	margin: 15px 0;
}

/* センターコンテンツ -------------------------------------------------------------------- */
.middle-panel  input[type=radio] {
/*  display: none;*/
margin: 0 8px 0 0;
}
.level-radio{
	display: flex;
/*  justify-content: center;*/
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #d5d5d5;
    border-radius: 10px;
    padding: 10px 15px;
}
.level-radio label {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
}

/* ファネル -------------------------------------------------------------------- */
svg {
  height: 420px;
  position: relative;
  top: -12px;
  z-index: 1;
}

.level {
  cursor: pointer;
/*  opacity: 0.6;*/
}

.level:hover {
	opacity: 0.8;
}

.level.active {
  -webkit-transform: translateY(-2px);
		  transform: translateY(-2px);
  opacity: 0.6;
}
.dropdown.inactive{
	pointer-events: none;
}
.balloonLv.inactive {
  display: none;
}
.balloonLv .st5:first-child{
	opacity: 0.6;
}

.st0{fill:#03045E;}
  .st1{fill:#FFFFFF;}
  .st2{font-family:'HiraginoSans-W5-83pv-RKSJ-H';}
  .st3{font-size:14px;}
  .st4{letter-spacing:2;}
  .st5{fill:#023E8A;}
  .st6{fill:#0077B6;}
  .st7{fill:#0096C7;}
  .st8{fill:#fff;}
  .st9{fill:#00B4D8;}
  .st10{font-size:13.5236px;}
  .st11{letter-spacing:1;}
  .st12{font-size:15.3574px; fill: #fff; font-weight: bold;}
  .st13{fill:#B3B3B3;}
  .st14{fill:none;stroke:#005A82;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;}
  .st15{font-size:16px;}
  .st16{fill:none;stroke:#1296C6;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;}
  .st17{opacity:0.1;fill:#000;}
  .st18{fill:none;stroke:#0087BD;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;}
  .st19{font-size:15px;}
  .st20{font-size:14.0776px;}
  .st21{letter-spacing:3; font-weight: bold;}
  .st22{fill:none;stroke:#1296C6;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;}
  .st23 {
	  fill: #414D55;
	  font-weight: bold;
  }
  .st24 {
	  text-shadow: 0px 0px 2px rgba(0,0,0,0.6);
  }
  #userInterest,
  .level {
	  font-weight: bold;
  }
  
.large-section {
position: relative;
width: 1570px;
margin: 20px auto 40px;
box-sizing: border-box;
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
  
  .btn_advanced {
	  cursor: pointer;
	  position: absolute;
	  right: 40px;
	  top: 20px;
  }
  
  .btn_advanced::after {
	  content: "";
	  display: inline-block;
	  margin: 0 0 0 15px;
	  transform: translateY(-50%) rotate(-45deg);
	  width: 8px;
	  height: 8px;
	  border-left: 3px solid #414D55;
	  border-bottom: 3px solid #414D55;
	  vertical-align: middle;
  }
  
  .advanced-options {
	  display: flex;
	  justify-content: space-between;
	  flex-wrap: wrap;
	  padding: 20px;
	  gap: 20px;
  }
  .advanced-column {
	  flex: 1;
	  min-width: 250px;
  }
.dropdown {
  position: relative;
  display: inline-block;
  width: 90%;
}
.dropdown-btn {
	position: relative;
	width: 100%;
	padding: 10px 30px 10px 10px;
	min-height: 37px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 0px none;
	background: #FAFBFD;
  cursor: pointer;
  text-align: left;
  display: block;
}
.dropdown-btn::after {
	margin-top: -20px;
	display: block;
    content: "";
	position: absolute;
	top: 50%;
	margin-top: -3.5px;
	right: 14px;
	background: url('../img/ico_arrow.png') no-repeat 50% 50%;
	width: 12px;
	height: 7px;
	background-size: 100%;
}
.dropdown-btn.dropdown-open::after {
	background-image: url('../img/ico_arrow_rev.png');
}
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 10;
}
.dropdown-menu div {
  padding: 10px;
  cursor: pointer;
  font-size: 12px;
}
.dropdown-menu .title {
 
  cursor: default;
  font-size: 12px;
}
.dropdown-menu div:hover:not(.title,.textarea) {
  background-color: #1E2939;
  color: #fff;
}

.dropdown-menu .textarea {
	font-weight: bold;
	cursor: default;
}

.dropdown-menu .textarea textarea {
	font-size: 14px;
	width: 100%;
	height: 60px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	resize: none;
}
.dropdown-menu .textarea input {
	font-size: 14px;
	width: 100%;
	height: 30px;
	padding: 0 5px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	resize: none;
}

.selected-option {
	display: inline-block;
	background: #F1F5F8;
	font-size: 13px;
	padding: 4px 6px;
	border-radius: 3px;
	margin: 0 4px 6px 0;
}

.selected-option::after {
	display: inline-block;
	content: "";
	width: 10px;
	height: 10px;
	background: url('../img/arrow_close.png') no-repeat 50% 50%;
	background-size: 100%;
	margin: 0 0 0 5px;
}

.calendar-container {
	display: none;
	position: absolute;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 10px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 10;
}
.right-panel .dropdown {
	width: 100%;
	margin: 5px 0;
}
.large-section .dropdown {
	width: 100%;
	margin: 5px 0;
}
.search-container {
	display: flex;
	align-items: center;
}
.search-button {
	background-color: #8B9398;
	color: #fff;
	border: none;
	height: 39.5px;
	box-sizing: border-box;
	width: 55px;
	cursor: pointer;
	font-weight: bold;
	border-radius: 0 5px 5px 0;
}
.input_box {
	padding: 5px 0;
}
.input_box input {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: 0px none;
	background: #f8f9fb;
	text-align: left;
	height: 39.5px;
	box-sizing: border-box;
}
.search-container input {
	border-radius: 5px 0 0 5px;
}

.large-section h2 {
	text-align: center;
	font-size: 13px;
	color: #ff0000;
}

.large-section h2 span {
	display: inline-block;
	padding: 5px 35px;
	background: #ff0000;
	color: #fff;
	font-size: 14px;
	border-radius: 15px;
	margin: 0 15px 0 0;
}

.btn_free {
	position: absolute;
	left: 50%;
	margin-left: -193.93px;
	top: 630px;
	z-index: 11;
}

/*
.btn_free {
	position: relative;
	text-align: center;
	margin: -45px 0 20px;
	z-index: 12;
}
*/

.btn_free .button {
	background: rgba(0, 90, 156, 0.6) !important;
	color: #fff !important;
	font-size: 14px;
	display: inline-block;
	padding: 15px 120px;
	border-radius: 50px;
	font-weight: bold;
	cursor: pointer;
}

/* より詳細なセレクタで初期色を設定 */
.btn_free.p1 .button {
	background: rgba(0, 90, 156, 0.6) !important;
	background-color: rgba(0, 90, 156, 0.6) !important;
}

.btn_free img {
	width: 15px;
	margin: .5px 3px 0 0;
}

.btn_free .button span {
	font-size: 12px;
}

.btn_face {
	text-align: center;
	margin: 40px 0 0;
}

.btn_face div {
	display: inline-block;
/*	background: #D9D9D9;*/
  background: #8e8e8e;
	color: #fff;
	padding: 10px 20px;
	border-bottom: 4px solid #BFBFBF;
	border-radius: 15px;
	cursor: pointer;
}

.btn_face img {
	width: 72px;
}

.btn_face div span {
	display: block;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.4em;
}

#footer {
	  background: #fff;
	  font-size: 14px;
	  padding: 20px 0 0;
  }
#footer .inner {
  overflow: hidden;
  border-top: 1px solid #F1F5F8;
  padding: 25px 0 35px;
  max-width: 1570px;
  margin: 0 auto;
}
.footer-logo {
  float: left;
  width: 90px;
}
.footer-links {
  float: left;
  margin: 7px 0 0;
}
.footer-links a {
 display: inline-block;
 margin: 0 0 0 40px;
 font-size: 14px;
}
#footer p {
  float: right;
  font-size: 12px;
}

.btm-box {
	display: none;
	background: #fff;
	margin: 40px 0 0;
}

.online_ad {
	max-width: 1600px;
	margin: 0 auto;
	padding: 50px 15px 0;
	box-sizing: border-box;
}

.online_ad.online_ad_second {
	padding: 0 15px 50px;
}

.online_ad_slide-ttl {
	background: #414D55;
	color: #fff;
	text-align: center;
	padding: 13px 0;
	cursor: pointer;
	border-radius: 10px;
	font-weight: bold;
}

.online_ad_slide-ttl p {
	display: inline-block;
	font-size: 20px;
	vertical-align: middle;
}
.online_ad_slide-ttl p::after {
  content: "";
  display: inline-block;
  margin: 0 0 0 15px;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  vertical-align: middle;
}
.graph_box {
	display: flex;
	padding: 40px 0;
}

.chart-section {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 20px;
}
.chart-container {
	text-align: center;
}
canvas {
	width: 100% !important;
	height: 290px !important;
}
.chart-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.graph_line {
	flex: 70%;
	padding: 0 50px 0 0;
}
.graph_circle {
	flex: 30%;
}

.graph_circle {
	display: flex;
	align-items: center;
	justify-content: center;
}
.graph_circle .chart-container {
	position: relative;
	width: 55%;
	max-width: 400px;
}
.graph_circle .chart-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}
.graph_circle .custom-legend {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-left: 20px;
	font-size: 14px;
}
.graph_circle .legend-row {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 8px;
}
.graph_circle .legend-item {
	display: flex;
	align-items: center;
	margin: 5px;
	white-space: nowrap;
	font-size: 12px;
}
.graph_circle .legend-color {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 6px;
}

.online_ad_slide-con {
	position: relative;
}

.online_ad_slide-con .copy_clipboard {
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

.copy_clipboard img {
	width: 20px;
	vertical-align: middle;
}

.copy_clipboard span {
	font-size: 13px;
	font-weight: bold;
	vertical-align: middle;
}

.ad_generation-ttl {
	position: relative;
	padding: 14px 0;
	background: #8B9398;
}

.ad_generation-ttl h3 {
	color: #fff;
	text-align: center;
	font-size: 20px;
}

.ad_generation-ttl .btn_refresh {
	position: absolute;
	right: 20px;
	top: 11px;
	display: block;
	background: #1E2939;
	color: #fff;
	font-size: 13px;
	padding: 5px 20px;
	border-radius: 20px;
	cursor: pointer;
}

.ad_generation-ttl .btn_refresh img {
	width: 17px;
	vertical-align: middle;
}

.ad_generation-ttl .btn_refresh span {
	display: inline-block;
	vertical-align: middle;
}

.ad_generation-ttl .btn_copy_all {
	position: absolute;
	right: 200px;
	top: 11px;
	display: block;
	background: #28a745;
	color: #fff;
	font-size: 13px;
	padding: 5px 20px;
	border-radius: 20px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.ad_generation-ttl .btn_copy_all:hover {
	background: #218838;
}

.ad_generation-ttl .btn_copy_all.copied {
	background: #17a2b8;
}

.ad_generation-ttl .btn_copy_all img {
	width: 17px;
	vertical-align: middle;
}

.ad_generation-ttl .btn_copy_all span {
	display: inline-block;
	vertical-align: middle;
}

.ad_generation-con {
	position: relative;
	background: #F1F5F8;
	padding: 35px 0;
}

.ad_generation-con p {
	text-align: center;
	font-size: 32px;
	font-weight: bold;
}

.ad_generation-con .copy_clipboard {
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

/* 広告コピー生成スクロール部分のスタイル */
.ad_generation-scroll {
	max-height: 400px;
	overflow-y: auto;
	background: #F1F5F8;
}

.ad_generation-item {
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
}

.ad_generation-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.media-name {
	background: #8B9398;
	color: #fff;
	padding: 8px 15px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
	border-radius: 4px 4px 0 0;
}

.ad_generation-item .ad_generation-con {
	background: #fff;
	padding: 20px;
	border-radius: 0 0 4px 4px;
	position: relative;
}

.ad_generation-item .ad_generation-con p {
	font-size: 24px;
	margin: 0;
	padding-right: 60px;
}

.ad_generation-item .ad_generation-con .copy_clipboard {
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.ad_generation-item .ad_generation-con .copy_clipboard:hover {
	opacity: 0.8;
}

.ad_generation-item .ad_generation-con .copy_clipboard.copied {
	opacity: 0.6;
}

.ad_generation-item .ad_generation-con .copy_clipboard span {
	font-size: 12px;
	font-weight: bold;
	vertical-align: middle;
}

/* スクロールバーのスタイリング */
.ad_generation-scroll::-webkit-scrollbar {
	width: 8px;
}

.ad_generation-scroll::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

.ad_generation-scroll::-webkit-scrollbar-thumb {
	background: #8B9398;
	border-radius: 4px;
}

.ad_generation-scroll::-webkit-scrollbar-thumb:hover {
	background: #6B7B82;
}

.ads-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	padding: 20px 0;
}

.ads-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px;
	width: fit-content;
}

.group-title {
	font-size: 13px;
	font-weight: bold;
	background: #F1F5F8;
	padding: 10px;
	width: 100%;
	text-align: center;
	margin: 0 0 10px;
}

.ads-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 15px;
	width: 100%;
}

.ad-card {
	text-align: center;
	width: 148px;
	box-sizing: border-box;
}

.ad-header {
	padding: 10px 0;
}

.ad-header p {
	font-size: 13px;
	font-weight: bold;
	margin: 10px 0;
	line-height: 1.4em;
	height: 20px;
}

.metrics-ttl {
	display: flex;
}

.metrics-ttl p {
	flex: 1;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}

.grid {
	margin: 10px 0 0;
}

.group-web .grid {
	display: grid;
	grid-template-columns: 1fr 1px 1fr;
	grid-template-rows: 1fr 1px 1fr;
	align-items: center;
	justify-content: center;
	margin: 10px 0 0;
}

.grid p {
	font-size: 13px;
	font-weight: bold;
	color: #555;
	margin: 0;
	font-weight: bold;
	padding: 10px 5px;
}

.grid p strong {
	font-size: 30px;
}

.grid .grid_blue {
	color: #023E8A;
}

.divider {
	width: 1px;
	height: 100%;
}

.horizontal-divider {
	display: block;
	width: 100%;
	height: 1px;
	background-color: #000;
}

.cross {
	width: 1px;
	height: 1px;
}

.group-web .divider,
.group-web .cross {
	background-color: #000;
}

.ads-group_ttl {
	padding: 190px 0 0 50px;
}

.ads-group_ttl p {
	height: 50px;
	line-height: 50px;
	background: #F1F5F8;
	font-size: 13px;
	padding: 0 20px;
	border-top: 1px solid #fff;
	font-weight: bold;
}

.ads-group_ttl.online p{
	background: #000000;
	color: #FFFFFF;
}

.online_ad_second {
	margin-top: 50px;
}

.online_ad_second .ads-wrapper {
	position: relative;
	padding: 20px 0 20px 130px;
}

.online_ad_second .ads-group_ttl  {
	padding: 0;
}

.online_ad_second .ads_ttl7 {
	position: absolute;
	left: 0px;
	top: 144px;
}

.online_ad_second .ads_ttl8 {
	position: absolute;
	left: 0px;
	top: 369px;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 100;
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	border-radius: 10px;
	display: none;
	min-width: 600px;
	max-width: 80%;
	text-align: center;
	z-index: 101;
}

.close-modal {
	position: absolute;
	top: -40px;
	right: -40px;
	background: transparent;
	border: none;
	font-size: 50px;
	color: #000;
	cursor: pointer;
}

.input-group {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
	justify-content: center;
}

.input-group input {
	flex: 1;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.login-btn {
	padding: 10px 20px;
	background-color: #28a745;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	margin-top: 10px;
}

@media (max-width: 768px) {
	.modal {
		min-width: 90%;
	}
	
	.input-group {
		flex-direction: column;
	}
}

.bto-radio {
	position: absolute;
	top: 20px;
	right: 3%;
	display: flex;
	justify-content: center;
	gap: 20px;
	align-items: center;
	border: 1px solid #d5d5d5;
	border-radius: 10px;
	padding: 10px 15px;
}

.bto-radio label {
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: bold;
	cursor: pointer;
}

.bto-radio input[type="radio"] {
	display: inline-block;
	margin-right: 8px;
	width: 13px;
	height: 13px;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 10px;
}

.checkbox-group label {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
	width: 14px;
	height: 14px;
	margin-right: 8px;
}

.modal-save h3 {
	font-size: 14px;
	background: #F1F5F8;
	padding: 10px 0;
}

.btn_modal_save {
	text-align: right;
	padding: 15px 0;
}

.btn_modal_save div {
	display: inline-block;
	margin: 0 0 0 20px;
	cursor: pointer;
}

.btn_modal_save img {
	vertical-align: middle;
	margin: 0 5px 0 0;
}

.btn_modal_save span {
	display: inline-block;
	font-size: 13px;
	font-weight: bold;
	vertical-align: middle;
}

.checkbox-group {
	background: #F1F5F8;
	padding: 20px;
}

.checkbox-group label {
	font-size: 14px;
	font-weight: normal;
}

.btn_modal_confirm {
	padding: 20px 0 10px;
}

.btn_modal_confirm button {
	background: #1E2939;
	color: #fff;
	font-size: 15px;
	display: inline-block;
	padding: 13px 100px;
	border-radius: 50px;
	font-weight: bold;
	border: 0 none;
	cursor: pointer;
}

.only_tb {
	display: none;
}

.windows_login {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(65, 77, 85, 0.98);
	z-index: 20;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	overflow-y: auto;
	padding: 40px 0;
}

.windows_login .login_con {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	border-radius: 10px;
	min-width: 600px;
	max-width: 80%;
	text-align: center;
	z-index: 21;
	color: #fff;
}

.windows_login .login_con h3 img {
	width: 208px;
}

.windows_login .login_con h3 span {
	display: block;
	font-size: 40px;
	font-weight: bold;
	margin: 30px 0;
}

.windows_login .login_con p {
	border: 1px solid #fff;
	max-width: 700px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1.4em;
	border-radius: 10px;
	text-align: left;
	margin: 30px 0;
}

.google-signin {
	text-align: left;
	padding: 0 0 0 20px;
	width: 360px;
	height: 42px;
	font-size: 16px;
	font-weight: bold;
	color: black;
	background-color: #F1F5F8;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	transition: background 0.2s ease-in-out;
	font-weight: normal;
}

.google-signin img {
	width: 20px;
	margin: 0 5px 0 0;
}

.google-signin:hover {
	background-color: #ebebeb;
}

/* レスポンシブ対応: ログイン画面のレスポンシブ対応 */
@media (max-width: 768px) {
	.google-signin {
		width: 70% !important;
		max-width: 70% !important;
		font-size: 13px !important;
		height: 34px !important;
		text-align: center !important;
		padding: 0 !important;
	}
	
	.google-signin img {
		width: 18px !important;
		height: 18px !important;
		margin: 0 !important;
	}
}

@media (max-width: 480px) {
	.google-signin {
		width: 85% !important;
		max-width: 85% !important;
		height: 38px !important;
		font-size: 12px !important;
		gap: 8px !important;
		padding: 0 !important;
		text-align: center !important;
	}
	
	.google-signin img {
		width: 16px !important;
		height: 16px !important;
		margin: 0 !important;
	}
}

@media (max-width: 360px) {
	.google-signin {
		width: 90% !important;
		max-width: 90% !important;
		height: 40px !important;
		font-size: 11px !important;
	}
}

/* ログイン画面の入力欄とボタンのレスポンシブ対応 */
@media screen and (max-width: 768px) {
	.windows_login .login-input,
	.windows_login input.login-input,
	.windows_login .w-full.login-input,
	.login-form .login-input,
	.login-form input.login-input,
	.login-form .w-full.login-input {
		width: 70% !important;
		max-width: 70% !important;
	}
	
	.windows_login .btn-login-size,
	.windows_login button.btn-login-size,
	.login-form .btn-login-size,
	.login-form button.btn-login-size {
		width: 60% !important;
		max-width: 60% !important;
	}
}

@media screen and (max-width: 480px) {
	.windows_login .login-input,
	.windows_login input.login-input,
	.windows_login .w-full.login-input,
	.login-form .login-input,
	.login-form input.login-input,
	.login-form .w-full.login-input {
		width: 85% !important;
		max-width: 85% !important;
		height: 38px !important;
	}
	
	.windows_login .btn-login-size,
	.windows_login button.btn-login-size,
	.login-form .btn-login-size,
	.login-form button.btn-login-size {
		width: 85% !important;
		max-width: 85% !important;
		height: 38px !important;
	}
}

@media screen and (max-width: 360px) {
	.windows_login .login-input,
	.windows_login input.login-input,
	.windows_login .w-full.login-input,
	.login-form .login-input,
	.login-form input.login-input,
	.login-form .w-full.login-input {
		width: 90% !important;
		max-width: 90% !important;
		height: 40px !important;
	}
	
	.windows_login .btn-login-size,
	.windows_login button.btn-login-size,
	.login-form .btn-login-size,
	.login-form button.btn-login-size {
		width: 90% !important;
		max-width: 90% !important;
		height: 40px !important;
	}
}

/* ログイン画面の中央コンテンツとフォームコンテナのレスポンシブ対応 */
/* すべての画面サイズでFlexboxレイアウト */
.windows_login .center_content {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	transform: none !important;
	width: 90% !important;
	max-width: 90% !important;
	margin-bottom: 30px !important;
}

.windows_login .login_form_container {
	position: relative !important;
	bottom: auto !important;
	left: auto !important;
	transform: none !important;
	width: 90% !important;
	max-width: 90% !important;
	margin-top: 30px !important;
}

/* 注意: 入力欄とボタンのサイズは既存のメディアクエリ（1825行目以降）で管理されています
   以下のクラスでサイズが設定されています:
   - .login-input, input.login-input: メディアクエリで幅と高さを設定
   - .btn-login-size, button.btn-login-size: メディアクエリで幅と高さを設定
   - .google-signin: デフォルトで width: 360px, height: 42px、メディアクエリで調整
   これらは変更されていません。 */

/* 中サイズPC画面 (1400px以下) */
@media screen and (max-width: 1400px) {
	.windows_login {
		padding: 35px 0 !important;
	}
	
	.windows_login .center_content {
		padding: 35px 25px !important;
		margin-bottom: 35px !important;
	}
	
	.windows_login .center_content p {
		font-size: 15px !important;
		line-height: 21px !important;
		margin: 25px auto !important;
		max-height: 400px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		margin-top: 35px !important;
	}
}

/* 中サイズPC画面で低い画面の場合 (1400px以下かつ高さ750px以下) - Flexboxレイアウトに切り替え */
@media screen and (max-width: 1400px) and (max-height: 750px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 25px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 30px 20px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 25px !important;
	}
	
	.windows_login .center_content p {
		font-size: 14px !important;
		line-height: 20px !important;
		margin: 20px auto !important;
		max-height: 350px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 25px !important;
	}
}

/* 小さいPC画面 (1200px以下) */
@media screen and (max-width: 1200px) {
	.windows_login {
		padding: 30px 0 !important;
	}
	
	.windows_login .center_content {
		padding: 30px 20px !important;
		margin-bottom: 30px !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 170px !important;
	}
	
	.windows_login .center_content p {
		font-size: 14px !important;
		line-height: 20px !important;
		margin: 20px auto !important;
		padding: 12px !important;
		max-height: 350px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		margin-top: 30px !important;
	}
}

/* 小さいPC画面で低い画面の場合 (1200px以下かつ高さ750px以下) - Flexboxレイアウトに切り替え */
@media screen and (max-width: 1200px) and (max-height: 750px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 20px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 25px 18px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 20px !important;
	}
	
	.windows_login .center_content p {
		font-size: 13px !important;
		line-height: 18px !important;
		margin: 15px auto !important;
		padding: 10px !important;
		max-height: 300px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 20px !important;
	}
}

/* より小さいPC画面 (1024px以下) */
@media screen and (max-width: 1024px) {
	.windows_login {
		padding: 25px 0 !important;
	}
	
	.windows_login .center_content {
		padding: 25px 18px !important;
		margin-bottom: 25px !important;
	}
	
	.windows_login .center_content h3 {
		margin: 0 0 15px 0 !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 150px !important;
	}
	
	.windows_login .center_content p {
		font-size: 13px !important;
		line-height: 18px !important;
		margin: 15px auto !important;
		padding: 10px !important;
		width: 85% !important;
		max-width: 85% !important;
		max-height: 300px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		margin-top: 25px !important;
	}
}

/* さらに小さいPC画面 (950px以下) */
@media screen and (max-width: 950px) {
	.windows_login {
		padding: 22px 0 !important;
	}
	
	.windows_login .center_content {
		padding: 22px 15px !important;
		margin-bottom: 22px !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 130px !important;
	}
	
	.windows_login .center_content p {
		font-size: 12px !important;
		line-height: 17px !important;
		margin: 14px auto !important;
		padding: 9px !important;
		max-height: 280px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		margin-top: 22px !important;
	}
}

/* 小さなPC画面 (900px以下) */
@media screen and (max-width: 900px) {
	.windows_login {
		padding: 20px 0 !important;
	}
	
	.windows_login .center_content {
		padding: 20px 15px !important;
		margin-bottom: 20px !important;
	}
	
	.windows_login .center_content h3 {
		margin: 0 0 12px 0 !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 120px !important;
	}
	
	.windows_login .center_content p {
		font-size: 11px !important;
		line-height: 16px !important;
		margin: 12px auto !important;
		padding: 8px !important;
		width: 88% !important;
		max-width: 88% !important;
		max-height: 250px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		margin-top: 20px !important;
	}
}

/* 小さなPC/タブレット境界 (800px以下) */
@media screen and (max-width: 800px) {
	.windows_login {
		padding: 18px 0 !important;
	}
	
	.windows_login .center_content {
		padding: 18px 12px !important;
		margin-bottom: 18px !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 110px !important;
	}
	
	.windows_login .center_content p {
		font-size: 11px !important;
		line-height: 15px !important;
		margin: 11px auto !important;
		padding: 7px !important;
		width: 90% !important;
		max-width: 90% !important;
		max-height: 250px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		margin-top: 18px !important;
	}
}

/* 低い画面 (高さ750px以下の場合) - 幅が狭い場合はFlexboxレイアウトに切り替え */
@media screen and (max-height: 750px) and (max-width: 768px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 20px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 18px 12px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 20px !important;
	}
	
	.windows_login .center_content h3 {
		margin: 0 0 10px 0 !important;
	}
	
	.windows_login .center_content p {
		font-size: 11px !important;
		line-height: 15px !important;
		margin: 10px auto !important;
		padding: 8px !important;
		max-height: 300px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 20px !important;
	}
}

/* 低い画面 (高さ750px以下の場合) - 幅が広い場合でもFlexboxレイアウトに切り替え */
@media screen and (max-height: 750px) and (min-width: 769px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 20px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 18px 12px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 20px !important;
	}
	
	.windows_login .center_content h3 {
		margin: 0 0 8px 0 !important;
	}
	
	.windows_login .center_content p {
		font-size: 11px !important;
		line-height: 15px !important;
		margin: 8px auto !important;
		padding: 8px !important;
		max-height: 300px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 20px !important;
	}
}

/* 幅と高さの両方が小さい場合の重なり防止 (幅800px以下かつ高さ750px以下) - Flexboxレイアウト */
@media screen and (max-width: 800px) and (max-height: 750px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 15px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 15px 10px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 15px !important;
	}
	
	.windows_login .center_content p {
		font-size: 11px !important;
		line-height: 15px !important;
		margin: 10px auto !important;
		padding: 7px !important;
		max-height: 300px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 15px !important;
	}
}

/* 低い画面 (高さ700px以下の場合) - 幅が狭い場合はFlexboxレイアウトに切り替え */
@media screen and (max-height: 700px) and (max-width: 900px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 15px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 15px 10px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 15px !important;
	}
	
	.windows_login .center_content h3 {
		margin: 0 0 8px 0 !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 100px !important;
	}
	
	.windows_login .center_content p {
		font-size: 10px !important;
		line-height: 14px !important;
		margin: 8px auto !important;
		padding: 6px !important;
		max-height: 250px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 15px !important;
	}
}

/* 低い画面 (高さ700px以下の場合) - 幅が広い場合でもFlexboxレイアウトに切り替え */
@media screen and (max-height: 700px) and (min-width: 901px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 15px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 15px 10px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 15px !important;
	}
	
	.windows_login .center_content h3 {
		margin: 0 0 6px 0 !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 100px !important;
	}
	
	.windows_login .center_content p {
		font-size: 10px !important;
		line-height: 14px !important;
		margin: 6px auto !important;
		padding: 6px !important;
		max-height: 250px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 15px !important;
	}
}

/* 幅と高さの両方が小さい場合の重なり防止 (幅768px以下かつ高さ700px以下) - Flexboxレイアウト */
@media screen and (max-width: 768px) and (max-height: 700px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 15px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 15px 10px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 15px !important;
	}
	
	.windows_login .center_content p {
		font-size: 12px !important;
		line-height: 16px !important;
		margin: 10px auto !important;
		padding: 10px !important;
		max-height: 250px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 15px !important;
	}
}

/* 低い画面 (高さ600px以下の場合) - Flexboxレイアウトに切り替え */
@media screen and (max-height: 600px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 20px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 12px 8px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 20px !important;
	}
	
	.windows_login .center_content h3 {
		margin: 0 0 6px 0 !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 90px !important;
	}
	
	.windows_login .center_content p {
		font-size: 9px !important;
		line-height: 13px !important;
		margin: 6px auto !important;
		padding: 5px !important;
		max-height: 200px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 20px !important;
	}
}

/* 幅と高さの両方が小さい場合の重なり防止 (幅480px以下かつ高さ600px以下) - Flexboxレイアウト */
@media screen and (max-width: 480px) and (max-height: 600px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 15px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 12px 8px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 15px !important;
	}
	
	.windows_login .center_content p {
		font-size: 11px !important;
		line-height: 15px !important;
		margin: 8px auto !important;
		padding: 8px !important;
		max-height: 200px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 15px !important;
	}
}

@media screen and (max-width: 768px) {
	.windows_login {
		padding: 30px 0 !important;
	}
	
	.windows_login .center_content {
		padding: 30px 20px !important;
		width: 95vw !important;
		max-width: 95vw !important;
		margin-bottom: 30px !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 150px !important;
	}
	
	.windows_login .center_content p {
		font-size: 14px !important;
		line-height: 20px !important;
		width: 90% !important;
		max-width: 90% !important;
		padding: 15px !important;
		margin: 20px auto !important;
		max-height: 350px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		width: 95vw !important;
		max-width: 95vw !important;
		margin-top: 30px !important;
	}
}

/* タブレット横向きや低い画面での重なり防止 (幅768px以下かつ高さ900px以下) */
@media screen and (max-width: 768px) and (max-height: 900px) {
	.windows_login {
		padding: 25px 0 !important;
	}
	
	.windows_login .center_content p {
		margin: 20px auto !important;
		max-height: 300px !important;
	}
	
	.windows_login .login_form_container {
		margin-top: 25px !important;
	}
}

@media screen and (max-width: 480px) {
	.windows_login {
		padding: 20px 0 !important;
	}
	
	.windows_login .center_content {
		padding: 20px 15px !important;
		margin-bottom: 20px !important;
	}
	
	.windows_login .center_content h3 {
		margin: 0 0 15px 0 !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 120px !important;
	}
	
	.windows_login .center_content p {
		font-size: 12px !important;
		line-height: 18px !important;
		width: 95% !important;
		max-width: 95% !important;
		padding: 12px !important;
		margin: 15px auto !important;
		max-height: 250px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		width: 98vw !important;
		max-width: 98vw !important;
		margin-top: 20px !important;
	}
}

/* モバイルで低い画面の場合 (幅480px以下かつ高さ700px以下) - Flexboxレイアウト */
@media screen and (max-width: 480px) and (max-height: 700px) {
	.windows_login {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: center !important;
		overflow-y: auto !important;
		padding: 15px 0 !important;
	}
	
	.windows_login .center_content {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 15px 10px !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-bottom: 15px !important;
	}
	
	.windows_login .center_content p {
		font-size: 12px !important;
		line-height: 18px !important;
		margin: 15px auto !important;
		padding: 12px !important;
		max-height: 250px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		margin-top: 15px !important;
	}
}

@media screen and (max-width: 360px) {
	.windows_login {
		padding: 15px 0 !important;
	}
	
	.windows_login .center_content {
		padding: 15px 10px !important;
		margin-bottom: 15px !important;
	}
	
	.windows_login .center_content h3 img {
		max-width: 100px !important;
	}
	
	.windows_login .center_content p {
		font-size: 11px !important;
		line-height: 16px !important;
		padding: 10px !important;
		margin: 12px auto !important;
		max-height: 200px !important;
		overflow-y: auto !important;
	}
	
	.windows_login .login_form_container {
		margin-top: 15px !important;
	}
}

.free_overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	z-index: 10;
	box-sizing: border-box;
	padding: 20px 0 0;
	text-align: center;
	border-radius: 10px;
}

.free_btns {
	margin: 30px 0 0;
}

.free_btns div {
	background: #1E2939;
	color: #fff;
	font-size: 14px;
	display: inline-block;
	padding: 11px 0;
	width: 370px;
	height: 40px;
	box-sizing: border-box;
	border-radius: 50px;
	font-weight: bold;
	cursor: pointer;
}

.free_btns div img {
	width: 16px;
	vertical-align: middle;
	margin: 0 5px 0 0;
}

.free_btns div span {
	vertical-align: middle;
	font-size: 14px;
}

.free_btns div:last-child {
	margin: 0 0 0 50px;
}

.prohibited-icon {
	width: 150px;
	height: 150px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.prohibited-icon::before {
	content: "";
	width: 150px;
	height: 150px;
	border: 14px solid white;
	border-radius: 50%;
	position: absolute;
}

.prohibited-icon::after {
	content: "";
	width: 160px;
	height: 14px;
	background-color: white;
	position: absolute;
	transform: rotate(45deg);
}

.modal.cs_modal {
	background: none;
	position: fixed;
	top: 0;
	left: 0;
	transform: none;
	display: none;
	min-width: auto;
	max-width: 100%;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.cs_modal .modal-content {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	border-radius: 10px;
	min-width: 600px;
	max-width: 80%;
	text-align: center;
	z-index: 11;
}

.cs_modal .modal-content p {
	color: #fff;
	margin: 50px 0 0;
	line-height: 1.6em;
	font-size: 17px;
}

.cs_modal .modal-content p strong {
	display: block;
	font-size: 35px;
	margin: 0 0 40px;
}

.cs_modal .close-modal {
	top: 40px;
	right: 40px;
}

.prohibited-icon {
	margin: 0 auto;
}

/********************************New Styles********************************/

.language-switch-btn a{
	font-family: "Noto Sans JP", serif;
	font-size: 14px;
	font-weight: 700;
	color: #99A1AF;
}
.language-switch-btn a.active, .language-switch-btn a:hover{
	color: #414D55;
}
.language-switch-btn a.en-lag {
    padding-left: 8px;
}
.language-switch-btn a.jp-lag:after {
    content: '';
    background-color: #99A1AF;
    height: 20px;
    width: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.language-switch-btn a.jp-lag {
    position: relative;
    padding-right: 10px;
}
span.language-switch-btn img.globe {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
span.language-switch-btn {
    position: relative;
    padding-left: 17px;
    margin-left: 21px;
	margin-right: -2px;
}
.st9 {
    fill: #99A1AF;
}
.st7 {
    fill: #6A7282;
}
.st6 {
    fill: #00B4D8;
}
path.st5{
	fill:#0077B6;
}
.st0{
	fill: #023E8A;
}
.middle-panel {
    width: 50%;
}
.middle-panel.step-container svg {
    margin-left: 75px;
}
.right-panel {
    width: 100%;
}
.right-panel-inner {
    display: flex;
	flex-wrap: wrap;
	gap: 2%;
}
.right-panel-inner.on-top{
	position: relative;
	z-index: 999;
}
.right-panel-inner-left {
	width: 20%;
}
.right-panel-inner-right .dropdown {
    margin: 0;
}
.right-panel-inner-right .input_box {
    padding: 0;
}
.right-panel-inner-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 78%;
	gap: 10px;
    column-gap: 15px;
}
.right-panel-inner-right .button {
/*	background: #D9D9D9;	*/
    background: #8e8e8e;
    color: #fff;
    font-size: 14px;
    display: block;
    padding: 11px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}
.right-panel-inner-right .button.active {
    background: rgb(0,94,236);
	background: linear-gradient(90deg, rgba(0,94,236,1) 0%, rgba(36,192,234,1) 100%);
}
.right-panel-inner-right .btn_free {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    z-index: 11;
    bottom: auto;
    margin: 0;
    text-align: center;
}
span.border-box {
    width: 100%;
    display: block;
    height: 1px;
    background-color: #F3F4F6;
    margin: 16px 0;
}
.large-section h2 {
    color: #A65F00;
    background-color: #FEFCE8;
    display: table;
    margin: 0 auto;
    padding: 20px 22px 20px 18px;
    border-radius: 6px;
	line-height: 19px;
}
.large-section {
    background: #E5E7EB;
}
.btn_face.active div{
	background: #2662F0;
}

/* Hide default checkbox */
.option-container .option-label input[type="checkbox"] {
	display: none;
}

/* Custom Checkbox */
.option-container .option-label .custom-checkbox {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid #99A1AF;
	border-radius: 4px;
	position: relative;
	cursor: pointer;
}

/* Checkmark (Hidden by Default) */
.option-container .option-label .custom-checkbox::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 10px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 2px;
    left: 6px;
    opacity: 0;
    transition: opacity 0.2s;
}

/* Checked State */
.option-container .option-label input[type="checkbox"]:checked + .custom-checkbox {
	background-color: transparent;
}

.option-container .option-label input[type="checkbox"]:checked + .custom-checkbox::after {
	opacity: 1;
}
#header .hd_btn2 {
    background: #1E2939;
    color: #ffffff;
}
#header .hd_btn2 img {
    width: 12px;
}
.tab-list-out {
	border-bottom:1px #D1D5DC solid;
}
.tab-list {
    border:1px #D1D5DC solid;
	background-color: #F3F4F6;
    min-height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;		
}
.tab-list span {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 95px;
	border-right:1px #D1D5DC solid;
	border-radius: 7px 0 0 7px;
	font-size: 14px;
	font-weight: 500;
}
.tab-list span:last-child {
	border-right:0px #D1D5DC solid;	
}
.tab-list span.active {	
	font-weight: 700;
}
.tab-list span:hover{
	cursor: pointer;
}



.tab.active {
	background-color: #ffffff;
	border-bottom: 3px #2562f0 solid;
}

.tab-content {
	display: none;
	margin-top: 44px;
}

.tab-content.active {
	display: block;
}


.modal {
    min-width: 990px;
	padding: 39px 20px;
	font-family: "Noto Sans JP", serif;
}
.own-information-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
	gap: 10px;	
	margin-bottom: 40px;
}
.own-information-list h2{
	padding-bottom: 11px;
	padding-left: 15px;
}
.oi-inner-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.oi-inner-list span input[type="text"] {
    background-color: #f9fafc;
    padding: 15px 15px 13px 15px; 
	border-radius: 8px;
	font-size: 13px;
	font-weight: 400;
	border: none;
	outline: none;
	width: calc(100% - 30px);
}
.oi-inner-list .input_box{
	padding: 0;
}
.oi-inner-list input[type="text"]{
	padding: 15px 15px 13px 15px; 
	border: none;
	outline: none;
	width: calc(100% - 30px);
}
.checkbox-group {
    border: 2px #E5E7EB solid;
    border-radius: 10px;
    background: transparent;
}
.checkbox-group {
    gap: 26px;
}
.checkbox-group .input-box {
    border: 1px #E5E7EB solid;
    border-radius: 5px;
    background: transparent;
    margin-left: 19px;
    min-width: 848px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.checkbox-group .input-box input[type='text']{
	border:none;
	background: transparent;
	width: 100%;
	font-size: 16px;
	font-weight: 700;
	padding-left: 14px;
	color: #111928;
	outline: none;
}
.checkbox-group .input-box .input-box-btn {
    position: absolute;
    right: 8px;
    background: #2761f0;
    color: #ffffff;
    padding: 10px 10px 10px 30px;
    border-radius: 9px;
	font-size: 14px;
	font-weight: 500;
	
}
.checkbox-group .input-box .input-box-btn:before {
    content: '';
    background-image: url('../img/pencil-alt.svg');
    width: 16px;
    height: 16px;
    position: absolute;
    left: 10px;
}
.checkbox-group label {
    font-size: 16px;
	font-weight: 700;
}
.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}
.btn-modal{
	background: #2761f0;
    color: #ffffff;
    padding: 16px 25px;
    border-radius: 9px;
	font-size: 16px;
	font-weight: 700;
	display: table;
    margin: 0 auto;
}
.dropdown-menu.dropdown-menu-cb div {
    display: flex;
    align-items: center;
}
.balloonLv path {
    fill: #fff;
    stroke: #99A1AF;
	stroke-width: 1;
        rx: 20;
        ry: 20; /* Adds border radius */
}
.balloonLv text, .balloonLv text tspan {
    fill: #1E2939;
}
.balloonLv text{
		fill: white;
}
.balloonLv text.st21{
		fill: #1E2939;
}
.balloonLv text.st22{
	stroke: white;
	stroke-width: 1;
}
#A3.level.active .st5,
#A2.level.active .st5,
#A1.level.active .st5{
	fill: transparent;
}
.ad_generation-ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
}
.ad_generation-ttl h3 {
	font-family: "Noto Sans JP", serif;
    font-size: 20px;
    font-weight: 700;
}
.warning-icon {
    margin-left: 25px;
    width: 30px;
    height: 30px;
}
.warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 100;
}
.warning.active .modal, .warning.active .warning-overlay{
    display: block;
}
.warning-icon-grey{
	width: 82px;
	height: 72px;
}
.warning .modal {
    min-width: 600px;
    padding: 52px 0 46px 0;
}
.warning .modal-content {
    display: table;
    text-align: left;
	font-size: 16px;
	line-height: 24px;
	margin: 0 auto;
}
.warning-icon-grey {
    width: 82px;
    height: 72px;
    margin: 0 auto 29px;
    display: table;
}
.mp_setting button {
    background: transparent;
    border: none;
	display: block;
    padding: 5px 8px;
}
.mp_setting button:hover {
	cursor: pointer;
}
.mp_setting button img{
	width: 20px;
    vertical-align: middle;
}
.mp_setting button span {
    font-weight: bold;
    font-size: 13px;
    vertical-align: middle;
    margin: 0 0 0 10px;
	color: #1E2939;
}
.dropdown.header-dropdown {
    width: 267px;
    z-index: 99;
	font-family: "Noto Sans JP", serif;
    font-size: 16px;
    font-weight: 500;
	color: #6B7280;
	align-self: flex-end !important; /* right-section内で下部に配置（AI分析ボタンの下部に合わせる） */
	display: flex !important; /* flexboxとして扱う */
	flex-direction: column !important; /* 縦方向に配置 */
	margin-bottom: 0 !important; /* 下部のマージンを削除 */
	padding-bottom: 0 !important; /* 下部のパディングを削除 */
}
.dropdown.header-dropdown .dropdown-btn{
	width: 247px;
	background: transparent;
	border: 1px #D1D5DC solid;
	color: #6B7280;
	padding: 8px 30px 8px 17px !important; /* padding-topとpadding-bottomを8pxに変更してAI分析ボタンと完全に揃える */
	font-size: 16px !important;
	margin: 0 !important; /* すべてのマージンを0に */
	margin-bottom: 0 !important; /* 下部に揃えるための調整 */
	box-sizing: border-box !important; /* borderを含めた高さ計算 */
	line-height: 1 !important; /* analyze-labelと同じline-height（margin: 0と合わせて） */
	height: auto !important; /* 高さを自動に */
	min-height: auto !important; /* 最小高さも自動に */
	vertical-align: bottom !important; /* 下部に揃える */
	display: inline-flex !important; /* AI分析ボタンと同じdisplay */
	align-items: center !important; /* AI分析ボタンと同じalign-items */
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif !important; /* analyze-labelと同じフォント */
	border-radius: 0 !important; /* border-radiusを明示的に0に */
	transform: translateY(5px) !important; /* 5px下に移動して完全に揃える */
}
.dropdown.header-dropdown .dropdown-btn span{
	color: #1E2939;
	font-weight: 700;
}
.dropdown.header-dropdown .dropdown-menu {
	margin-top: 11px;
	margin-bottom: 11px;
}
/* ドロップダウンメニューが閉じている時は影響しないように */
.dropdown.header-dropdown:not(:hover) .dropdown-menu[style*="display: none"] {
	margin: 0 !important;
	padding: 0 !important;
}
.dropdown.header-dropdown .dropdown-menu div {
    padding: 11px 17px;
    cursor: pointer;
    font-size: 14px;
}
.dropdown.header-dropdown .dropdown-menu span {
    font-size: 14px;
    font-weight: 700;
    color: #2662F0;
    text-align: center;
    padding: 16px 0;
    display: block;
    border-top: 1px #f3f4f6 solid;
}
.step-container-upper{
	z-index: 12;
}
#header {
    position: relative;
    z-index: 99;
}
.modal.modal1 {
    min-width: 576px;
    color: #4A5565;
    padding: 39px 55px;
}
.modal.modal1 h3{
	font-family: "Noto Sans JP", serif;
    font-size: 32px;
    font-weight: 700;
	line-height: 48px;
	color: #4A5565;
}
.modal.modal1 p{
	text-align: left;
	font-size: 16px;
	font-weight: 500;
	margin-top: 38px;
	margin-bottom: 38px;
}
.modal.modal1 .btn_modal_confirm button {
    background: #d1d6dc;
	width: 165px;
	height: 40px;
	font-family: "Noto Sans JP", serif;
    font-size: 14px;
    font-weight: 700;
	line-height: 20px;
	color:#1E2939;
	padding: 0;
}
.modal.modal-success {
    min-width: 520px;
    padding: 50px 40px 50px 40px;
	color: #4A5565;
}
.modal.modal-success h3{
	font-weight: 700;
	font-size: 32px;
	line-height: 48px;
	margin-top: 27px;
	margin-bottom: 4px;
}
.modal.modal-success p{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.modal.modal-success .btn_modal_confirm button {
    background: #1C64F2;
    color: #fff;
    font-size: 16px;
	line-height: 24px;
	font-weight: 500;
    display: inline-block;
    padding: 14px 22px;
    border-radius: 8px;
}
.modal.modal-success .btn_modal_confirm{
	padding: 0;
	text-align: right;
	margin-top: 21px;
}
.middle-panel.step-container .bto-radio input[type="radio"] {
    margin: 0 8px 0 0;
}
.bto-radio {
    right: auto;
    left: 380px;
}
.grid p {
    padding: 5px;
}
.group-web .grid.grid1 {
    grid-template-columns: repeat(3, 1fr);
	grid-template-rows:auto;
}
.grid.grid1 p:nth-child(1), .grid.grid1 p:nth-child(2), .grid.grid1 p:nth-child(3) {
    border-bottom: 1px #000 solid;
}
.grid.grid1 p {
    border-right: 1px #000 solid;
    padding: 5px 0px;
}
.grid.grid1 p:nth-child(3n+3) {
    border-right: 0;
}
.ads-container {
    gap: 20px 17px;
}
.ad-header p.google-title{
	margin-bottom: -2px;
}
.grid p strong {
    font-size: 25px;
}
.ads-group_ttl {
    padding: 178px 0 0 0px;
}
.ads-container.ads-container-new .ad-card {
    width: 163px;
}
.ad-card {
    text-align: center;
    width: 128px;
    box-sizing: border-box;
}
.microsoft-group-web{
	width: 160px;
}
.google-group-web{
	width: 295px;
}
.yahoo-group-web{
	width: 160px;
}
.google-group-web img.logo-google, .microsoft-group-web img.logo-microsoft, .yahoo-group-web img.logo-yahoo{
	width: 128px;
}

.modal-setting .tab-content h3 {
    text-align: left;
    margin-bottom: 30px;
    padding: 0px 0px 8px 0px;
}
input.tab-name {
    display: block;
    margin-bottom: 30px;
    padding: 10px;
	border-radius: 5px;
    font-size: 14px;
	color: #414D55;
	border: 1px #E5E7EB solid;;
}
input.tab-name::placeholder {
    font-size: 20px;
    color: #414D55;
    font-weight: bold;
}
input.tab-name:focus{
	border: 1px #E5E7EB solid;;
	outline:none;
}


.privacy-policy-container{
	max-width: 1400px;
	margin: 0 auto;
	display: block;
	padding: 0 20px;
}
.privacy-policy-container h2{
	font-size: 44px;
	text-align: center;
	color: #414D55;
	margin-top: 115px;
    margin-bottom: 138px;	
}
.privacy-policy-container .privacy-policy-box {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 85px 68px 85px 85px;
    font-size: 15px;
    color: #414D55;
    font-weight: 100;
    line-height: 28px;
	margin-bottom: 92px;
}
.privacy-policy-container .privacy-policy-box h3{
	font-size: 24px;
	color: #414D55;
	margin-bottom: 25px;
}
.privacy-policy-container .privacy-policy-box .m25{
	margin-bottom: 25px;
}
.privacy-policy-container .privacy-policy-box .m24{
	margin-bottom: 24px;
}
.privacy-policy-container .privacy-policy-box h4{
	font-size: 20px;
	margin-bottom: 25px;
}
.privacy-policy-container .privacy-policy-box a{
	color: #4466ae;
}
.modal img.recycle-bin {
    width: 17px;
    padding-left: 15px;
}

/* データインポート機能のスタイル */
.data-import-section {
	background: #fff;
	margin: 20px auto;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	max-width: 1200px;
}

.data-import-header {
	text-align: center;
	margin-bottom: 30px;
}

.data-import-header h2 {
	font-size: 24px;
	font-weight: bold;
	color: #1E2939;
	margin-bottom: 10px;
}

.data-import-header p {
	color: #6B7280;
	font-size: 16px;
}

.upload-area {
	border: 2px dashed #D1D5DC;
	border-radius: 10px;
	padding: 40px;
	text-align: center;
	background: #F9FAFB;
	transition: all 0.3s ease;
	margin-bottom: 30px;
}

.upload-area:hover {
	border-color: #3B82F6;
	background: #F0F9FF;
}

.upload-area.dragover {
	border-color: #3B82F6;
	background: #F0F9FF;
	transform: scale(1.02);
}

.upload-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.upload-icon {
	font-size: 48px;
	margin-bottom: 10px;
}

.upload-content h3 {
	font-size: 18px;
	font-weight: bold;
	color: #1E2939;
	margin: 0;
}

.upload-content p {
	color: #6B7280;
	margin: 0;
}

.upload-btn {
	background: #3B82F6;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.upload-btn:hover {
	background: #2563EB;
}

.template-section {
	margin-bottom: 30px;
}

.template-section h3 {
	font-size: 18px;
	font-weight: bold;
	color: #1E2939;
	margin-bottom: 15px;
}

.template-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.template-btn {
	background: #F3F4F6;
	color: #374151;
	border: 1px solid #D1D5DC;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.template-btn:hover {
	background: #E5E7EB;
	border-color: #9CA3AF;
}

.uploaded-files-section h3 {
	font-size: 18px;
	font-weight: bold;
	color: #1E2939;
	margin-bottom: 15px;
}

.files-list {
	background: #F9FAFB;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	padding: 20px;
	min-height: 100px;
}

.no-files {
	color: #6B7280;
	text-align: center;
	margin: 20px 0;
	font-style: italic;
}

.file-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	margin-bottom: 10px;
}

.file-item:last-child {
	margin-bottom: 0;
}

.file-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.file-icon {
	font-size: 24px;
}

.file-details h4 {
	font-size: 16px;
	font-weight: bold;
	color: #1E2939;
	margin: 0 0 5px 0;
}

.file-details p {
	font-size: 14px;
	color: #6B7280;
	margin: 0;
}

.file-actions {
	display: flex;
	gap: 10px;
}

.file-action-btn {
	background: none;
	border: 1px solid #D1D5DC;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.file-action-btn:hover {
	background: #F3F4F6;
}

.file-action-btn.delete {
	color: #DC2626;
	border-color: #FCA5A5;
}

.file-action-btn.delete:hover {
	background: #FEF2F2;
}

.file-action-btn.toggle {
	color: #059669;
	border-color: #6EE7B7;
}

.file-action-btn.toggle:hover {
	background: #F0FDF4;
}

.file-action-btn.toggle.active {
	background: #059669;
	color: #fff;
}

.file-action-btn.edit {
	color: #3B82F6;
	border-color: #93C5FD;
}

.file-action-btn.edit:hover {
	background: #F0F9FF;
}

.error-message {
	background: #FEF2F2;
	color: #DC2626;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #FCA5A5;
	margin-bottom: 20px;
}

.success-message {
	background: #F0FDF4;
	color: #059669;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #6EE7B7;
	margin-bottom: 20px;
}

.progress-bar {
	width: 100%;
	height: 8px;
	background: #E5E7EB;
	border-radius: 4px;
	overflow: hidden;
	margin-top: 10px;
}

.progress-fill {
	height: 100%;
	background: #3B82F6;
	transition: width 0.3s ease;
}

/* モーダル内のデータインポートスタイル */
.modal-data-import .modal-content {
	max-width: 800px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 30px;
}

.modal-data-import .data-import-header h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.modal-data-import .data-import-header p {
	font-size: 14px;
	margin-bottom: 20px;
}

.modal-data-import .upload-area {
	padding: 30px 20px;
	margin-bottom: 20px;
}

.modal-data-import .template-section {
	margin-bottom: 20px;
}

.modal-data-import .template-section h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

.modal-data-import .uploaded-files-section h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

.modal-data-import .files-list {
	min-height: 80px;
	padding: 15px;
}

/* ヘッダーマッピングモーダルのスタイル（旧スタイル - 無効化） */
/* 以下のスタイルは新しいデザインに置き換えられました */

/* 新しいマッピングモーダルのスタイル */
#mappingModal.modal-header-mapping .modal-content {
	padding: 0 !important;
	max-width: none !important;
	max-height: none !important;
	overflow-y: visible !important;
}

.modal-header-mapping .slide-container {
	width: 100%;
	min-height: 720px;
	display: flex;
	flex-direction: column;
	background-color: white;
	overflow: hidden;
}

.modal-header-mapping .flex-1 {
	flex: 1;
}

.modal-header-mapping .p-12 {
	padding: 48px;
}

#mappingModal.modal-header-mapping .mapping-container {
	max-width: 800px;
	margin: 0 auto;
	display: block !important;
	grid-template-columns: none !important;
	gap: 0 !important;
}

.modal-header-mapping .text-2xl {
	font-size: 1.5rem;
	line-height: 1.75rem;
}

.modal-header-mapping .font-bold {
	font-weight: 700;
}

.modal-header-mapping .text-gray-800 {
	color: #1F2937;
}

.modal-header-mapping .mb-2 {
	margin-bottom: 0.5rem;
}

.modal-header-mapping .text-gray-600 {
	color: #4B5563;
}

.modal-header-mapping .mb-6 {
	margin-bottom: 1.5rem;
}

.modal-header-mapping .bg-white {
	background-color: white;
}

.modal-header-mapping .rounded-lg {
	border-radius: 0.5rem;
}

.modal-header-mapping .border {
	border-width: 1px;
}

.modal-header-mapping .border-gray-200 {
	border-color: #E5E7EB;
}

.modal-header-mapping .p-6 {
	padding: 1.5rem;
}

.modal-header-mapping .shadow-sm {
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.modal-header-mapping .text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.modal-header-mapping .font-medium {
	font-weight: 500;
}

.modal-header-mapping .text-gray-700 {
	color: #374151;
}

.modal-header-mapping .mb-4 {
	margin-bottom: 1rem;
}

.modal-header-mapping .text-gray-400 {
	color: #9CA3AF;
}

.modal-header-mapping .mx-4 {
	margin-left: 1rem;
	margin-right: 1rem;
}

.modal-header-mapping .mapping-row {
	display: flex;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #F3F4F6;
}

.modal-header-mapping .mapping-row:last-child {
	border-bottom: none;
}

.modal-header-mapping .mapping-col-left {
	width: 45%;
	padding-right: 20px;
}

.modal-header-mapping .mapping-col-right {
	width: 55%;
	position: relative;
}

.modal-header-mapping .mapping-arrow {
	width: 30px;
	text-align: center;
	color: #9CA3AF;
}

.modal-header-mapping .mapping-arrow p {
	margin: 0;
}

.modal-header-mapping .mapping-select {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #E5E7EB;
	border-radius: 6px;
	background-color: white;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	font-size: 14px;
	color: #374151;
	cursor: pointer;
}

.modal-header-mapping .mapping-select:focus {
	outline: none;
	border-color: #3B82F6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modal-header-mapping .mapping-select-disabled {
	background-color: #F3F4F6;
	color: #9CA3AF;
	cursor: not-allowed;
}

.modal-header-mapping .pro-badge {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 12px;
	background-color: #F3F4F6;
	color: #6B7280;
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 4px;
	pointer-events: none;
}

.modal-header-mapping .csv-item {
	background-color: #F9FAFB;
	border: 1px solid #E5E7EB;
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 14px;
	color: #374151;
}

.modal-header-mapping .warning-box {
	background-color: rgba(251, 191, 36, 0.1);
	border-left: 3px solid #F59E0B;
	padding: 10px 16px;
	margin: 16px 0;
}

.modal-header-mapping .text-amber-700 {
	color: #B45309;
}

.modal-header-mapping .mt-6 {
	margin-top: 1.5rem;
}

.modal-header-mapping .mr-2 {
	margin-right: 0.5rem;
}

.modal-header-mapping .text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.modal-header-mapping .mt-1 {
	margin-top: 0.25rem;
}

.modal-header-mapping .flex {
	display: flex;
}

.modal-header-mapping .justify-between {
	justify-content: space-between;
}

.modal-header-mapping .items-center {
	align-items: center;
}

.modal-header-mapping .gray-button {
	background-color: #F3F4F6;
	color: #4B5563;
	border: 1px solid #E5E7EB;
	border-radius: 6px;
	padding: 10px 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
}

.modal-header-mapping .gray-button:hover {
	background-color: #E5E7EB;
}

.modal-header-mapping .blue-button {
	background-color: #2563EB;
	color: white;
	border: none;
	border-radius: 6px;
	padding: 10px 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.modal-header-mapping .blue-button:hover {
	background-color: #1D4ED8;
}

.modal-header-mapping .pro-tip-box {
	background-color: #F3F4F6;
	border-radius: 6px;
	padding: 12px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal-header-mapping .pro-link {
	color: #2563EB;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
}

.modal-header-mapping .pro-link:hover {
	color: #1D4ED8;
	text-decoration: underline;
}

.modal-header-mapping .text-blue-500 {
	color: #3B82F6;
}

.modal-header-mapping .text-gray-500 {
	color: #6B7280;
}

.modal-header-mapping .ml-1 {
	margin-left: 0.25rem;
}

.modal-header-mapping .text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

.modal-header-mapping .text-gray-300 {
	color: #D1D5DB;
}

.modal-header-mapping .bg-gray-100 {
	background-color: #F3F4F6;
}

.modal-header-mapping .rounded-md {
	border-radius: 0.375rem;
}

.modal-header-mapping .px-3 {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.modal-header-mapping .py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.data-import-section {
		margin: 10px;
		padding: 20px;
	}
	
	.upload-area {
		padding: 30px 20px;
	}
	
	.template-buttons {
		flex-direction: column;
	}
	
	.file-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.file-actions {
		width: 100%;
		justify-content: flex-end;
	}
	
	.modal-data-import .modal-content {
		padding: 20px;
		max-height: 95vh;
	}
	
	.modal-header-mapping .modal-content {
		padding: 20px;
		max-height: 95vh;
	}
	
	.mapping-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.header-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.mapping-select {
		width: 100%;
		min-width: auto;
	}
	
	.mapping-actions {
		flex-direction: column;
		gap: 10px;
	}
	
	.btn {
		width: 100%;
	}
}

/**************************************************************************/
@media (min-width: 1600px) {
	.exchanges_container{padding: 0 15px;}
}

/* 大画面対応 - 100%ズームでも美しく表示 */
@media (min-width: 1920px) {
	.container, #footer .inner {
		max-width: 2200px;
	}
	#header .inner {
		max-width: 1600px !important;  /* ヘッダーをより狭くして中央寄りに */
		background-color: #fff !important; /* 白背景に戻す */
	}
	.privacy-policy-container {
		max-width: 1600px !important;  /* ヘッダーと同じ幅 */
	}
	.large-section {
		max-width: 2200px;
	}
}

/* 超大型画面対応 */
@media (min-width: 2560px) {
	.container, #footer .inner {
		max-width: 2600px;
	}
	#header .inner {
		max-width: 1800px !important;  /* ヘッダーをより狭く */
	}
	.privacy-policy-container {
		max-width: 1800px !important;  /* ヘッダーと同じ幅 */
	}
	.large-section {
		max-width: 2600px;
	}
}

/* 中型画面対応 */
@media (max-width: 1400px) and (min-width: 1200px) {
	.container {
		padding: 10px;
		gap: 15px;
	}
	#header .inner {
		max-width: 1200px !important;  /* ヘッダーを狭く */
	}
	.privacy-policy-container {
		max-width: 1200px !important;  /* ヘッダーと同じ幅 */
	}
}

/* 小型デスクトップ対応 */
@media (max-width: 1199px) and (min-width: 1024px) {
	.container {
		padding: 8px;
		gap: 12px;
	}
	#header .inner {
		max-width: 1000px !important;  /* ヘッダーを狭く */
	}
	.privacy-policy-container {
		max-width: 1000px !important;  /* ヘッダーと同じ幅 */
	}
}

@media all and (max-width:1200px){
	/* .ads-group_ttl {
		padding: 9.270vw 0 0 0px;
	}
	.ad-card {
		width: 6.666vw;
	}
	.microsoft-group-web{
		width: 8.333vw;
	}
	.google-group-web{
		width: 15.364vw;
	}
	.yahoo-group-web{
		width: 8.333vw;
	}
	.google-group-web img.logo-google, .microsoft-group-web img.logo-microsoft, .yahoo-group-web img.logo-yahoo{
		width: 6.666vw;
	} */
}

@media (max-width: 1599px) {
	.container {
		width: 97%;
		padding: 15px 0;
		display: flex;
	}
	.exchanges_container{padding: 0; padding-top: 5px;}
	.step-4containerWrap{padding-top: 0;}
	.large-section {
		width: 97%;
		margin: 5px auto 40px;
	}
	.left-panel {
		width: 100%;
		display: flex;
		flex-direction: inherit;
	}
	.step-container {
		flex: 1;
	}
	.middle-panel {
		width: 100%;
		box-sizing: border-box;
		margin: 20px 0 0;
		height: auto;
	}
	.middle-panel svg {
		height: 47vw;
	}
	.right-panel {
		width: 100%;
		box-sizing: border-box;
		margin: 20px 0 0;
	}
	.only_tb {
		display: block;
	}
	.large-section h2 {
		line-height: 1.4em;
	}
	.advanced-options {
		display: block;
	}
	.advanced-options .dropdown,
	.advanced-options .input_box {
		display: inline-block;
		width: 31%;
		margin: 0 1% 2% 0;
		vertical-align: top;
	}
	.input_box {
		padding: 0;
	}
	.btn_face div span {
		display: inline-block;
		margin: 0 0 0 15px;
	}
	.btn_face div {
		padding: 20px 60px;
	}
	.graph_box {
		display: block;
	}
	.graph_line {
		padding: 20px 0 40px;
	}
	.ad_generation-con {
		padding: 60px 0 35px;
	}
	.ad_generation-con p {
		font-size: 25px;
	}
	.ads-group_ttl {
		display: none;
	}
	.ads-wrapper {
		position: relative;
		padding: 20px 0 20px 120px;
	}
	.only_tb .ads-group_ttl {
		padding: 0;
	}
	.only_tb .ads_ttl1 {
		position: absolute;
		left: 0;
		top: 211px;
		display: block;
	}
	.only_tb .ads_ttl2 {
		position: absolute;
		left: 0;
		top: 529px;
		display: block;
	}
	.only_tb .ads_ttl3 {
		position: absolute;
		left: 0;
		top: 847px;
		display: block;
	}
	.only_tb .ads_ttl4 {
		position: absolute;
		left: 0;
		top: 1164px;
		display: block;
	}
	.only_tb .ads_ttl5 {
		position: absolute;
		left: 0;
		top: 1482px;
	}
	.only_tb .ads_ttl6 {
		position: absolute;
		left: 0;
		top: 1800px;
	}
	.online_ad_second .ads_ttl7 {
		position: absolute;
/*		left: 0;*/
		top: 124px;
		display: block;
	}
	.online_ad_second .ads_ttl8 {
		position: absolute;
/*		left: 0;*/
		top: 348px;
		display: block;
	}
	.only_tb .ads_ttl9 {
		position: absolute;
		left: 0;
		top: 636px;
	}
	.online_ad_second .ads-wrapper {
		padding: 0 0 0 120px;
	}
	#footer .inner {
		max-width: 97%;
	}
	.step-container.step2-box {
		height: auto;
		background-size: auto 90%;
	}
	.btn_free {
		margin: 5px auto 20px;
		position: relative;
		left: 0;
		top: 0;
		text-align: center;
	}

	/********************************New Styles Responsive********************************/

	.only_tb .ads_ttl1 {
        top: 199px;
    }
	.only_tb .ads_ttl2 {
        top: 499px;
    }
	.only_tb .ads_ttl3 {
        top: 800px;
    }
	.only_tb .ads_ttl4 {
        top: 1100px;
    }
	.only_tb .ads_ttl5 {
        top: 1400px;
    }

	/*************************************************************************************/
	
}

@media (max-width: 1528px) {
	.only_tb .ads_ttl5 {
		display: block;
	}

	/********************************New Styles Responsive********************************/
	.right-panel-inner {
		gap: 2%;
	}
	.right-panel-inner-left {
		width: 22%;
	}
	.right-panel-inner-right {
		width: 76%;
	}
	/*************************************************************************************/
}

@media (max-width: 1468px) {
	.only_tb .ads_ttl5 {
		display: block;
	}

	/********************************New Styles Responsive********************************/
	.right-panel-inner {
		gap: 2%;
	}
	.right-panel-inner-left {
		width: 26%;
	}
	.right-panel-inner-right {
		width: 72%;
	}
	/*************************************************************************************/
}

@media (max-width: 1305px) {
	.only_tb.ads-group_ttl.ads_ttl9 {
		position: absolute;
		left: 0;
		top: 622px;
		display: block;
	}
}

@media (max-width: 1192px) {
	.only_tb .ads_ttl6 {
		display: block;
	}

	/********************************New Styles Responsive********************************/
	.right-panel-inner {
		gap: 2%;
	}
	.right-panel-inner-left {
		width: 30%;
	}
	.right-panel-inner-right {
		width: 68%;
	}
	/*************************************************************************************/
}

/* タブレット対応 */
@media (max-width: 1024px) and (min-width: 768px) {
	.container {
		flex-direction: column;
		padding: 10px;
		gap: 15px;
	}
	.left-panel, .middle-panel, .right-panel {
		width: 100%;
		min-width: auto;
	}
	.middle-panel svg {
		height: 50vw;
	}
	.modal.modal-setting {
        min-width: 90%;
        max-width: 850px;
    }
	.checkbox-group .input-box {
		min-width: 87%;
	}
	.modal img.recycle-bin {
		padding-left: 10px;
	}
}

/* モバイル対応 */
@media (max-width: 767px) {
	body {
		min-width: 320px;
		font-size: 14px;
	}
	.container {
		flex-direction: column;
		padding: 8px;
		gap: 10px;
	}
	.left-panel, .middle-panel, .right-panel {
		width: 100%;
		min-width: auto;
	}
	.middle-panel svg {
		min-height: 300px;
		height: 60vw;
	}
	.modal.modal-setting {
        min-width: 95%;
        max-width: 100%;
    }
	.checkbox-group .input-box {
		min-width: 100%;
	}
	.modal img.recycle-bin {
		padding-left: 5px;
	}
	#header .inner {
		padding: 15px 10px;
		flex-wrap: wrap;
		gap: 10px;
	}
	#header h1 img {
		width: 150px;
	}
	.btn_free .button {
		padding: 12px 60px;
		font-size: 12px;
	}
	.step-title span {
		font-size: 10px;
		padding: 4px 8px;
	}
	.explain {
		font-size: 12px;
	}
	.dropdown-btn {
		font-size: 12px;
		padding: 8px 25px 8px 8px;
	}
	.option-label {
		font-size: 12px;
	}
}

/* 超小型モバイル対応 */
@media (max-width: 480px) {
	body {
		font-size: 13px;
	}
	.container {
		padding: 5px;
		gap: 8px;
	}
	#header .inner {
		padding: 10px 5px;
	}
	#header h1 img {
		width: 120px;
	}
	.step-container {
		padding: 15px;
	}
	.btn_free .button {
		padding: 10px 40px;
		font-size: 11px;
	}
	.step-title span {
		font-size: 9px;
		padding: 3px 6px;
	}
	.explain {
		font-size: 11px;
	}
}

::placeholder {
	color: rgb(189, 189, 189);
	font-size: 12px;
  }
  
  @media screen and (min-width: 2334px) {
	  .online_ad_second .ads_ttl8 {
		  display: none;
	  }
  }

  .step-container.step1-box {
/*	height: 244px;*/
height: 50%;
}
@media (max-width: 1599px) {
	.step-container.step1-box {
		height: auto;
	}

}

	/********************************  英語版スタイリング  ********************************/
#header .hd_btn1:lang(en) {
	width: 115px;
}
#header .hd_btn2:lang(en) {
	width: 155px;
}
.checkbox-group .input-box:lang(en) {
	min-width: 818px;
}
.ads-group_ttl p:lang(en) {
	padding:10px 12px 0;
	line-height: 16px;
	height: 44px;
}
.metrics-ttl p:lang(en).mt-adjust{
	margin-top: -12px;
}

@media (max-width: 1024px) {
    .checkbox-group .input-box:lang(en) {
        min-width: 85%;
    }
}





