@charset "utf-8";

/* ===== リセット・共通スタイル ===== */
body {
	margin: 0;
	padding: 0;
	color: #101A34;
}

a {
	text-decoration: none;
}

/* ===== 見出しスタイル ===== */
.pt_h1 {
    font-size: 2.5rem !important;
}

.pt_h2 {
    font-size: 2.25rem !important;
}

.pt_h3 {
    font-size: 1.5rem !important;
}

.pt_h4,
.pt_h5,
.pt_h6 {
    font-size: 1rem !important;
}

.pt_h5 {
    margin: 0 0 10px 0;
}

/* ===== メインセクション ===== */
#pt_mainsection {
	position: relative;
}

.l-content {
	overflow-x: hidden;
}

/* ===== ボタン共通スタイル ===== */
.btn-common {
	display: inline-block;
	border: none;
	border-radius: 6px;
	padding: 10px 30px;
	color: white !important;
	font-weight: 700;
	background-color: #333333;
	cursor: pointer;
	transition: 0.5s;
	white-space: nowrap;
}

.btn-common::after {
	display: inline-block;
	content: '';
	width: 10px;
	height: 10px;
	border-top: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
	transform: rotate(45deg);
	vertical-align: baseline;
	margin-left: 9px;
}

/* 進めるボタン共通 */
#btn_result,
.pt-rescopy,
.pt_inquiry-a {
	width: 300px;
	background-color: #2b373f;
	margin: 30px 0 20px 0;
	padding: 9px 6px;
	color: white;
	border-radius: 3px;
	font-weight: 600;
}

/* ===== メインコンテンツエリア ===== */
.pt_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pt_outerbox {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	width: 90%;
	height: 100%;
	background-color: #FFFFFF;
	box-shadow: black 0.1px 0.1px 6px 0.1px;
	z-index: 9;
	margin: 20px 0 20px;
}

.pt_innerbox {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 40%;
}

/* 全体の調整 */
[data-result-section] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
@media all and (max-width: 568px) {
    .pt_form > form {
        align-items: center;
    }

    .pt_item-title,
    .choice-list,
    .date-picker-container,
    .connection-config,
    .symptom-textarea-container,
	.connection-config,
    .notice-area {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .date-picker-container {
        justify-content: center;
    }
}

@media all and (max-width: 480px) {
    .pt_form > form {
        align-items: center;
    }

    .pt_item-title,
    .choice-list,
    .date-picker-container,
    .connection-config,
    .symptom-textarea-container,
	.connection-config,
    .notice-area {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ===== formセクション ===== */
.pt_form_area {
	margin: 10px 0 30px 0;
	display: block;
}

.pt_form {
	display: flex;
	justify-content: center;
	width: 100%;
}

.pt_form>form {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 500px;
}

.pt_item-title {
	margin-top: 30px;
	background-color: #202020;
	border-radius: 3px;
	color: white;
	letter-spacing: 0.2em;
	padding: 6px;
	width: 500px;
}

.pt_item-title > h3 {
	font-weight: normal !important;
}

.choice-list {
	display: flex;
	flex-flow: wrap;
}

.choice-item {
	border: none;
	border-radius: 3px;
	width: 238px;
	height: 60px;
	background-color: #c8cfdb;
	margin: 6px !important;
	font-size: 1rem;
	position: relative;
	box-shadow: 0.1px 0.1px 4px 1px #ccc;
	transition: all 0.3s ease;
}

/* 接続構成スタイル */
.connection-config {
	width: 500px;
	margin: 10px 0;
}

.config-item {
	display: flex;
	align-items: center;
	width: 480px;
    flex-wrap: wrap;
}

.config-item .byte-counter {
    text-align: right;
}

.config-item label {
	width: 80px;
	text-align: left;
	font-weight: 600;
	margin-right: 10px;
}

.config-item-input {
	width: 480px;
}

.config-item input[type="text"] {
	flex: 1;
	padding: 8px 12px;
	border: 2px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
}

.config-item input[type="text"]:focus {
	border-color: #0078d4;
	outline: none;
}

.config-item input[type="text"].over-limit {
	border-color: #c40000;
}

.config-item-input.over-limit{
	color: #c40000;
	box-shadow: 0 0 8px 2px rgba(211, 47, 47, 0.3);
}

/* ラジオボタンスタイル */
input[type=radio] {
	display: none;
}

input[type="radio"]:checked+label {
	background: white;
	transition: 0.2s;
}

label {
	display: block;
	border-radius: 6px;
	width: 100%;
	height: 100%;
	padding: 16px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

/* ランプカラー - 選択時のみ発光 */
.pt_green input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(0, 128, 0, 0.6), 0 0 25px 5px rgba(0, 128, 0, 0.3);
	border: 2px solid green;
}

.pt_orange input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(255, 165, 0, 0.6), 0 0 25px 5px rgba(255, 165, 0, 0.3);
	border: 2px solid orange;
}

.pt_yellow input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(255, 255, 0, 0.6), 0 0 25px 5px rgba(255, 255, 0, 0.3);
	border: 2px solid yellow;
}

.pt_blue input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(0, 0, 255, 0.6), 0 0 25px 5px rgba(0, 0, 255, 0.3);
	border: 2px solid blue;
}

.pt_red input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(255, 0, 0, 0.6), 0 0 25px 5px rgba(255, 0, 0, 0.3);
	border: 2px solid red;
}

.pt_cyan input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(0, 255, 213, 0.6), 0 0 25px 5px rgba(0, 0, 0, 0.3);
	border: 2px solid black;
}

.pt_none input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.6), 0 0 25px 5px rgba(0, 0, 0, 0.3);
	border: 2px solid black;
}

/* ===== 点滅アニメーション（汎用化） ===== */

/* 緑色の点滅 */
.pt_green.blink input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(0, 128, 0, 0.6), 0 0 25px 5px rgba(0, 128, 0, 0.3);
	border: 2px solid green;
	animation: fadeFlash-green 1.5s ease-in-out infinite;
}

/* オレンジ色の点滅 */
.pt_orange.blink input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(255, 165, 0, 0.6), 0 0 25px 5px rgba(255, 165, 0, 0.3);
	border: 2px solid orange;
	animation: fadeFlash-orange 1.5s ease-in-out infinite;
}

/* 赤色の点滅 */
.pt_red.blink input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(255, 0, 0, 0.6), 0 0 25px 5px rgba(255, 0, 0, 0.3);
	border: 2px solid red;
	animation: fadeFlash-red 1.5s ease-in-out infinite;
}

/* 黄色の点滅 */
.pt_yellow.blink input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(255, 255, 0, 0.6), 0 0 25px 5px rgba(255, 255, 0, 0.3);
	border: 2px solid #d4d400;
	animation: fadeFlash-yellow 1.5s ease-in-out infinite;
}

/* 青色の点滅 */
.pt_blue.blink input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(0, 0, 255, 0.6), 0 0 25px 5px rgba(0, 0, 255, 0.3);
	border: 2px solid blue;
	animation: fadeFlash-blue 1.5s ease-in-out infinite;
}

/* シアンの点滅 */
.pt_cyan.blink input[type="radio"]:checked+label {
	box-shadow: 0 0 15px 3px rgba(0, 255, 213, 0.6), 0 0 25px 5px rgba(0, 0, 0, 0.3);
	border: 2px solid black;
	animation: fadeFlash-cyan 1.5s ease-in-out infinite;
}

/* ===== フェード点滅キーフレーム ===== */
@keyframes fadeFlash-green {

	0%,
	100% {
		box-shadow: 0 0 8px 2px rgba(0, 128, 0, 0.3), 0 0 15px 3px rgba(0, 128, 0, 0.15);
		opacity: 0.6;
	}

	50% {
		box-shadow: 0 0 20px 4px rgba(0, 128, 0, 0.8), 0 0 35px 8px rgba(0, 128, 0, 0.5);
		opacity: 1;
	}
}

@keyframes fadeFlash-orange {

	0%,
	100% {
		box-shadow: 0 0 8px 2px rgba(255, 165, 0, 0.3), 0 0 15px 3px rgba(255, 165, 0, 0.15);
		opacity: 0.6;
	}

	50% {
		box-shadow: 0 0 20px 4px rgba(255, 165, 0, 0.8), 0 0 35px 8px rgba(255, 165, 0, 0.5);
		opacity: 1;
	}
}

@keyframes fadeFlash-red {

	0%,
	100% {
		box-shadow: 0 0 8px 2px rgba(255, 0, 0, 0.3), 0 0 15px 3px rgba(255, 0, 0, 0.15);
		opacity: 0.6;
	}

	50% {
		box-shadow: 0 0 20px 4px rgba(255, 0, 0, 0.8), 0 0 35px 8px rgba(255, 0, 0, 0.5);
		opacity: 1;
	}
}

@keyframes fadeFlash-yellow {

	0%,
	100% {
		box-shadow: 0 0 8px 2px rgba(255, 255, 0, 0.3), 0 0 15px 3px rgba(255, 255, 0, 0.15);
		opacity: 0.6;
	}

	50% {
		box-shadow: 0 0 20px 4px rgba(255, 255, 0, 0.8), 0 0 35px 8px rgba(255, 255, 0, 0.5);
		opacity: 1;
	}
}

@keyframes fadeFlash-blue {

	0%,
	100% {
		box-shadow: 0 0 8px 2px rgba(0, 0, 255, 0.3), 0 0 15px 3px rgba(0, 0, 255, 0.15);
		opacity: 0.6;
	}

	50% {
		box-shadow: 0 0 20px 4px rgba(0, 0, 255, 0.8), 0 0 35px 8px rgba(0, 0, 255, 0.5);
		opacity: 1;
	}
}

@keyframes fadeFlash-cyan {

	0%,
	100% {
		box-shadow: 0 0 8px 2px rgba(0, 255, 213, 0.3), 0 0 15px 3px rgba(0, 255, 213, 0.15);
		opacity: 0.6;
	}

	50% {
		box-shadow: 0 0 20px 4px rgba(0, 255, 213, 0.8), 0 0 35px 8px rgba(0, 255, 213, 0.5);
		opacity: 1;
	}
}

/* ホバー時の軽い発光効果 */
.pt_green:hover {
	box-shadow: 0 0 8px 2px rgba(0, 128, 0, 0.3);
}

.pt_orange:hover {
	box-shadow: 0 0 8px 2px rgba(255, 165, 0, 0.3);
}

.pt_yellow:hover {
	box-shadow: 0 0 8px 2px rgba(255, 255, 0, 0.3);
}

.pt_blue:hover {
	box-shadow: 0 0 8px 2px rgba(0, 0, 255, 0.3);
}

.pt_red:hover {
	box-shadow: 0 0 8px 2px rgba(255, 0, 0, 0.3);
}

.pt_cyan:hover {
	box-shadow: 0 0 8px 2px rgba(0, 255, 213, 0.3);
}

.pt_none:hover {
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.3);
}

/* ===== 通知エリア共通 ===== */
.notice-area {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0 20px;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease 0.1s,
        margin 0.3s ease;
    text-align: start;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.notice-area.active {
    max-height: 1000px;
    opacity: 1;
    margin: 6px 20px;
	padding: 0 10px;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        margin 0.3s ease;
}

.notice-area a {
    color: #1d3994;
    font-weight: 600;
}

/* ===== notice-area 内のレイアウトヘルパー ===== */
/* 左揃え */
.notice-area__left {
    display: flex;
    justify-content: flex-start;
    margin: 8px 0;
}

/* 中央揃え（横方向） */
.notice-area__center {
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

/* 右揃え */
.notice-area__right {
    display: flex;
    justify-content: flex-end;
    margin: 8px 0;
}

/* 横並び（複数要素を並べる） */
.notice-area__row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 8px 0;
}

/* 縦並び（左揃え） */
.notice-area__stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

/* 縦並び＋中央揃え */
.notice-area__stack-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

/* 縦並び＋右揃え */
.notice-area__stack-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin: 8px 0;
}


/* ===== 結果セクション ===== */
.pt_resultbtnarea {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 10px 0 16px 0;
}

.pt_result-box {
	display: none;
}

.pt_result-box.active {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.pt_result-box>.addtext {
	margin: 0 20px;
}

.pt_resultarea {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: auto;
}

.pt_outer-resltarea {
	display: flex;
	justify-content: center;
	text-align: center;
	width: auto;
}

.result-area {
	text-align: start;
	font-weight: 900;
	margin: 2em auto;
	background-color: #FFFFFF;
	padding: 3em 2em 2em;
	position: relative;
	border-radius: 3px;
	border: 2px solid #333333;
}

.result-area .result-frame {
	background-color: #333333;
	font-size: 1rem;
	color: #fff;
	padding: 7px 10px;
	line-height: 1;
	position: absolute;
	top: -10px;
	left: 20px;
}

.pt_inquiry-name {
	text-align: center;
	margin-top: 0px !important;
}

.resultlamp {
	width: 330px;
}

/* ===== ボタンスタイル ===== */
#btn_result {
	width: auto;
	margin-top: 10px;
}

.pt-rescopy {
	margin: 10px 0 -6px 0;
}

.pt-rescopy>img {
	height: 20px;
	padding: 0 0 0 10px;
	vertical-align: middle;
}

.pt-rescopy-outer {
	margin: -30px 0 50px 0;
}

.pt-rescopy-inner {
	margin: 0 0 15px 0;
}

/* ===== 問い合わせセクション ===== */
.pt_inquiry {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 30px;
}

.pt_inquiry p {
	font-size: 0.875rem;
	font-weight: 600;
}

.pt_inquiry>.addtext {
	display: flex;
	text-decoration: none;
	margin: 10px 10px 0 10px;
	font-weight: 600;
}

.pt_inquiry>.addtext>ul>li>span {
	position: absolute;
}

.pt_inquiry>.addtext>ul>li>div {
	margin-left: 1.5em !important;
}

.pt_inquiry-a {
	margin: 10px 0 -6px 0;
}

.pi_notice {
	display: flex;
	justify-content: center;
}

.addtext {
	width: auto;
	text-align: justify;
	text-decoration: underline;
	text-decoration-color: rgb(127, 164, 175);
	transition: 2s;
	font-weight: 600;
	font-size: 0.875rem;
}

/* ===== フォーカススタイル ===== */
:focus {
	outline: 2px solid #0078d4;
	outline-offset: 2px;
	border-radius: 2px;
	transition: outline 0.2s ease;
}

:focus-visible {
	outline: 3px solid #0078d4;
	outline-offset: 2px;
	box-shadow: 0 0 0 1px white;
}

:focus:not(:focus-visible) {
	outline: 1px solid rgba(0, 120, 212, 0.5);
	outline-offset: 1px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: 2px solid #0078d4;
	box-shadow: 0 0 4px rgba(0, 120, 212, 0.5);
}

a:focus {
	text-decoration: underline;
	text-underline-offset: 2px;
}

input[type="radio"]:focus+label,
input[type="checkbox"]:focus+label {
	background-color: rgba(0, 120, 212, 0.1);
}

@supports selector(:focus-visible) {
	:focus:not(:focus-visible) {
		outline: 1px solid rgba(0, 120, 212, 0.3);
	}

	:focus-visible {
		outline: 3px solid #0078d4;
		outline-offset: 2px;
	}
}

/* ===== レスポンシブデザイン ===== */
@media screen and (max-width: 820px) {
	.pt_outer-resltarea {
		width: 400px;
	}
}

@media screen and (max-width: 768px) {
	.resultlamp {
		width: 240px !important;
	}

	#btn_result {
		width: 260px;
		white-space: normal;
	}
}

@media all and (max-width: 568px) {
	.pt_item-title {
		width: 260px;
	}

	.choice-list {
		flex-direction: column;
	}

	.pt_mediah2 {
		font-size: 1.25rem !important;
	}

	.pt_mediah3 {
		font-size: 0.9375rem !important;
		margin-top: 20px !important;
	}

	.pt_outer-resltarea {
		width: 300px;
	}

	.result-area {
		width: 300px;
	}

	.resultlamp {
		width: 250px;
	}

	.pt_innerbox {
		width: 90%;
	}

	.connection-config {
		width: 280px;
	}

	.config-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.config-item label {
		width: 100%;
		margin-bottom: 4px;
	}

	.config-item input[type="text"] {
		box-sizing: border-box;
	}
}

@media all and (max-width: 480px) {
	.pt_form>form {
		width: 280px;
	}

	.pt_item-title {
		width: 280px;
	}

	.choice-item {
		width: 260px;
	}

	.resultlamp {
		width: 220px;
	}

	.result-area {
		width: 260px;
		padding: 2em 1em 1em;
	}
}

/* ===== カスタムポップアップスタイル ===== */
.custom-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #333333;
	color: white;
	padding: 20px 30px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	z-index: 9999;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.custom-popup.show {
	opacity: 1;
	visibility: visible;
}

.custom-popup.hide {
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -50%) scale(0.9);
}

/* ===== 日付ピッカースタイル ===== */
.date-picker-container {
	width: 500px;
	margin: 10px 0;
	display: flex;
	justify-content: center;
}

.date-picker {
	width: 300px;
	padding: 12px 16px;
	border: 2px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	background-color: #ffffff;
	color: #333333;
	transition: all 0.3s ease;
	box-shadow: 0.1px 0.1px 4px 1px #ccc;
}

.date-picker:focus {
	border-color: #0078d4;
	outline: none;
	box-shadow: 0 0 8px 2px rgba(0, 120, 212, 0.3);
}

.date-picker:hover {
	border-color: #0078d4;
	box-shadow: 0 0 4px 1px rgba(0, 120, 212, 0.2);
}

/* ===== 症状テキストエリアスタイル ===== */
.symptom-textarea-container {
	width: 500px;
	margin: 10px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.symptom-textarea {
	width: 480px;
	height: 120px;
	padding: 12px 16px;
	border: 2px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 400;
	background-color: #ffffff;
	color: #333333;
	transition: all 0.3s ease;
	box-shadow: 0.1px 0.1px 4px 1px #ccc;
	resize: vertical;
	font-family: 'BIZ UDGothic', sans-serif;
	line-height: 1.5;
}

.symptom-textarea:focus {
	border-color: #0078d4;
	outline: none;
	box-shadow: 0 0 8px 2px rgba(0, 120, 212, 0.3);
}

.symptom-textarea:hover {
	border-color: #0078d4;
	box-shadow: 0 0 4px 1px rgba(0, 120, 212, 0.2);
}

.symptom-textarea.over-limit {
	color: #c40000;
	border-color: #c40000;
	box-shadow: 0 0 8px 2px rgba(211, 47, 47, 0.3);
}

.byte-counter {
	width: 480px;
	text-align: right;
	margin-top: 5px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #666;
}

.byte-counter.over-limit {
	color: #c40000;
}

/* 未選択時のスタイル */
/* ===== TAランプグループ グレーアウト ===== */
.ta-lamp-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s ease;
}

.ta-lamp-group.is-disabled {
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

.ta-lamp-group.is-disabled .pt_item-title {
    background-color: #494949;
}

/* エラー項目のハイライト */
[data-input-type].has-error .pt_item-title {
    background-color: #c40000;
    transition: background-color 0.3s ease;
}

[data-input-type].has-error .choice-list,
[data-input-type].has-error .date-picker,
[data-input-type].has-error .config-item input,
[data-input-type].has-error textarea {
    border-color: #c40000;
}

/* エラー時のタイトル背景を赤に */
.pt_item-title.has-error {
    background-color: #c40000;
    transition: background-color 0.3s ease;
}

/* 既存の選択肢ハイライトはそのまま残す場合 */
[data-input-type].has-error .choice-list,
[data-input-type].has-error .date-picker,
[data-input-type].has-error .config-item input,
[data-input-type].has-error textarea {
    border-color: #c40000;
}

/* 問い合わせボタン無効化 */
.pt_inquiry.is-disabled .pt_inquiry-a {
    background-color: #999999;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: auto; /* クリックを拾うためautoのまま */
}

.pt_inquiry.is-disabled .pt_inquiry-a:hover {
    background-color: #999999;
}

/* コピーボタン無効化 */
.pt-rescopy-outer.is-disabled .pt-rescopy {
    background-color: #999999;
    cursor: not-allowed;
    opacity: 0.6;
}

.pt-rescopy-outer.is-disabled .pt-rescopy:hover {
    background-color: #999999;
}

/* レスポンシブ対応 */
@media all and (max-width: 568px) {
	.symptom-textarea-container {
		width: 280px;
	}

	.symptom-textarea {
		width: 260px;
	}

	.config-item-input {
		width: 280px;
	}

	.byte-counter {
		width: 260px;
	}
}

@media all and (max-width: 480px) {
	.symptom-textarea-container {
		width: 280px;
	}

	.symptom-textarea {
		width: 260px;
		font-size: 1rem;
	}

	.config-item-input {
		width: 280px;
	}

	.byte-counter {
		width: 260px;
		font-size: 0.6875rem;
	}
}

/* レスポンシブ対応 */
@media all and (max-width: 568px) {
	.date-picker-container {
		width: 280px;
	}

	.date-picker {
		width: 260px;
	}
}

@media all and (max-width: 480px) {
	.date-picker-container {
		width: 280px;
	}

	.date-picker {
		width: 260px;
		font-size: 0.875rem;
	}
}

/* レスポンシブ対応 */
@media screen and (max-width: 480px) {
	.custom-popup {
		padding: 15px 25px;
		font-size: 0.875rem;
		max-width: 280px;
		text-align: center;
	}
}

/* このページ専用 h1 */
.m-heading-level2__text {
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
	.m-heading-level2__text {
		font-size: 1.2rem;
	}
}