/**************************************

遠隔読影支援サービス 

**************************************/

/* 共通部位 */
html {
	scroll-behavior: smooth;
	scroll-padding-top:100px;
}
#contents_tab {
	display:block;
}
#contents_tab .back_all {
	display: block;
}
#contents_tab .back_all a {
	display: inline-block;
    height: 45px;
    line-height: 45px;
    font-size: 130%;
    padding-left: 20px;
    background: url(/common/img/large_arrow_back.png) no-repeat left center;
}
@media screen and (max-width: 940px){
	#contents_tab .back_all {
		display: block;
		background: #2063a8;
        line-height: 45px;
        height: 45px;
        padding-left: 10px;
        font-size: 110%;
        cursor: pointer;
	}
	#contents_tab .back_all a {
		color: #fff;
	}
}

.gantei_content_wrap {
    padding: 0 30px;
    max-width: 1240px;
    margin: 0 auto;
}
.gantei_nav{
	border-top: 1px solid #dbdce4;
	border-bottom: 1px solid #dbdce4;
	width: 100%;
}
.gantei_nav ul{
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	border-left: 1px solid #dbdce4;
}
.gantei_nav ul li{
	width: 50%;
	border-right: 1px solid #dbdce4;
	position: relative;
}
.gantei_nav ul li a,
.gantei_nav ul li span{
	width:100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #000000;
	font-size: 15px;
	line-height: 1.2;
	text-decoration: none;
}
.gantei_nav ul li.active a{
	background-color: #2b93e0;
	color: #ffffff;
}
.gantei_nav ul li span.comingsoon{
	position: absolute;
	top:0;
	left: 0;
	z-index: 2;
	background:rgba(0, 0, 0, .7) ;
	color: #ffffff;
}
.eye-frail_banner {
    text-align: right;
    padding: 80px 0px 0;
}

@media screen and (max-width: 760px){
	.gantei_nav ul {
		flex-flow: column;
		border-bottom:none;
	}
	.gantei_nav ul li {
		width:100%;
		border-right:none;
		border-bottom:1px solid #dbdce4
	}
}

/* end 共通部位 */

.c-container {
	max-width: 1240px;
	padding: 0 30px;
	margin: 0 auto;
}
.gantei_header_wrap {
    position: relative;
    max-width: 1240px;
    padding: 0 30px;
    height: 620px;
    margin: 0 auto 40px auto;
}

.gantei_header_mv {
    position: relative;
    width: 100%;
    height: 100%;
}

.gantei_header_mv picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gantei_header_mv picture.active {
    opacity: 1;
}

.gantei_header_mv picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.gantei_header_mv_txt {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
    color: #ffffff;
    max-width: 600px;
    padding: 40px;
    background-color: #0b56a7;
}

.gantei_header_mv_txt h1 {
    font-size: 36px;
    font-weight: bold;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.gantei_header_mv_txt_company {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.gantei_header_mv_txt_catch {
    font-size: 16px;
    line-height: 1.6;
}

@media screen and (max-width: 760px) {
    .gantei_header_mv picture img {
        border-radius: 0;
    }

    .gantei_header_wrap {
		margin: 0;
        padding: 0;
        height: 500px;
    }

    .gantei_header_mv_txt {
        bottom: 0;
        left: 0;
        max-width: 100%;
        width: 100%;
        padding: 15px;
    }
    
    .gantei_header_mv_txt_company {
        font-size: 12px;
    }

    .gantei_header_mv_txt h1 {
        font-size: 18px;
    }
    
    .gantei_header_mv_txt_catch {
        font-size: 13px;
    }
	.eye-frail_banner {
        text-align: right;
        padding: 40px 0px 0;
    }
}

/* 遠隔読影支援 ナビゲーション */
.gantei_inner_nav {
	position: sticky;
	background-color: #FFF;
	top: 0;
	margin-top: 40px;
	z-index: 1000;
}
.gantei_inner_nav ul {
	border:1px solid #ccc;
	padding: 20px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.gantei_inner_nav ul li {
	display: inline-block;
}
.gantei_inner_nav ul li a {
	font-weight: bold;
}
.gantei_inner_nav_ttl {
	display: none;
}
@media screen and (max-width: 960px) {
	.gantei_inner_nav_ttl {
		display: block;
		background-color: #0b56a7;
		padding: 15px 20px;
		font-size: 16px;
		font-weight: bold;
		color: #10539a;
		position: relative;
		cursor: pointer;
		color: #FFF;
	}
	.gantei_inner_nav_ttl::after {
		content: '';
		position: absolute;
		right: 20px;
		top: 50%;
		width: 10px;
		height: 10px;
		border-right: 2px solid #FFF;
		border-bottom: 2px solid #FFF;
		transform: translateY(-60%) rotate(45deg);
		transition: transform 0.3s;
	}
	.gantei_inner_nav_ttl.active::after {
		transform: translateY(-40%) rotate(-135deg);
	}
	.gantei_inner_nav ul {
		display: none;
		padding: 0;
		border: none;
	}
	.gantei_inner_nav ul.active {
		display: block;
		background-color: #edf2ff;
	}
	.gantei_inner_nav ul li {
		display: block;
		border-bottom: 1px solid #ccc;
	}
	.gantei_inner_nav ul li:last-child {
		border-bottom: none;
	}
	.gantei_inner_nav ul li a {
		display: block;
		padding: 15px 20px;
		font-size: 14px;
	}
}

.content_ttl h2 {
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
	padding: 60px 0;
	text-align: center;
}

.content_ttl_txt {
	margin-bottom: 40px;
	padding: 30px 0;
    text-align: center;
    width: 100%;
	border-top: 1px solid #dbdce4;
    border-bottom: 1px solid #dbdce4;
}

.content_ttl_txt span {
	font-size: 20px;
	line-height: 1.6;
	color: #2b93e0;
    font-weight: bold;
}

.content_service {
	padding: 0 30px;
    max-width: 1240px;
	margin: 0 auto;
}

.content_service .img-wrap {
    width: 100%;
    overflow-x: scroll;
}
.content_service img {
	width: 100%;
	border-radius: 20px;
}

@media screen and (max-width: 760px) {
	.content_ttl h2 {
		font-size: 6vw;
	}
	.content_ttl_txt {
		text-align: left;
	}
	.content_ttl_txt span {
		font-size: 16px;
	}
	.content_service {
		max-width: 100%;
		padding: 0;
	}
	.content_service .img-wrap {
		padding: 0 30px;
	}
	.content_service img {
		width: 900px;
		height: auto;
	}
}

/* 特徴 */
.gantei_ttl {
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
	padding: 60px 0 40px 0;
	text-align: center;
	color: #2b93e0;
}
.gantei_ttl br {
	display: none;
}

.content_feature_box {
	display: flex;
	flex-flow: column;
	gap: 3vh;	
}

.feature_single {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4vw;
}

.feature_single:nth-child(2n) {
	flex-direction: row-reverse;
}

.feature_single_img {
	width: 50%;
}
.feature_single_img img {
	width: 100%;
	border-radius: 20px;
}

.feature_single_explain {
	width: 50%;
}

.feature_single_number {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	line-height: 1;
	margin-bottom: 15px;
	padding: 10px 20px;
	background-color: #20d195;
	border-radius: 50rem;
}

.feature_single_explain h4 {
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 20px;
}

.feature_single_txt {
	font-size: 16px;
	line-height: 1.6;
}

@media screen and (max-width: 960px) {
	.feature_single {
		flex-direction: column;
		gap:20px
	}
	.feature_single:nth-child(2n) {
		flex-direction: column;
	}
	.feature_single_img {
		width: 100%;
	}
	.feature_single_img img {
		border-radius: 10px;
	}
	.feature_single_number {
		font-size: 12px;
		padding: 5px 10px;
	}
	.feature_single_explain {
		width: 100%;
	}
}
@media screen and (max-width: 760px) {
	.gantei_ttl {
		font-size: 20px;
		line-height: 1.2;
		padding: 30px 0 20px 0;
	}
	.gantei_ttl br {
		display: block;
	}
	.feature_single_number {
		font-size: 12px;
	}
	.feature_single_explain h4 {
		font-size: 20px;
	}
	.feature_single_txt {
		font-size: 14px;
	}
}

/* 対応モダリティと所属医師 */
.modality_box {
	background-color: #edf2ff;
	text-align: center;
	padding: 3em 10em;
	border-radius: 20px;
}
.modality_box_img {
	width: 100%;
}
.modality_box_img img {
	width: 100%;
}
.modality_box_txt {
	display:none;
	margin-top: 20px;
    text-decoration: underline;
    font-weight: bold;
    color: #0b56a7;
    font-size: 16px;
	cursor: pointer;
}
.modality_box_txt:hover {
	text-decoration: none;
}
@media screen and (max-width: 960px) {
	.modality_box {
		padding: 40px;
		border-radius: 10px;
	}
}
@media screen and (max-width: 760px) {
	.modality_box {
		padding: 20px;
	}
	.modality_box_txt {
		display:block;
		margin-top: 20px;
		text-decoration: underline;
		font-weight: bold;
		color: #0b56a7;
		font-size: 14px;
		cursor: pointer;
	}
}

/* サービスフロー */
.flow_box {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.flow_box_single {
	display: grid;
    position: relative;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 20px;
	background-color: #FFF;
	box-shadow: 0px 0px 10px 0px rgba(163, 163, 163, 0.35);
}
.flow_box_single::after {
	position: absolute;
	right: -27px;
	bottom: calc(50% - 13px);
	width: 14px;
	height: 26px;
	background: url(img/arrow.svg) no-repeat center center;
	content: "";
}
.flow_box_single:last-child::after {
	display: none;
}
.flow_box_single_step {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	background-color: #20d195;
	color: #FFF;
	padding: 20px;
}
.flow_box_single_img {
	display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 20px;
}
.flow_box_single_img img {
	max-width: 100%;
}
.flow_box_single_txt {
	padding: 0 20px 20px 20px;
	line-height: 1.6;
}

@media screen and (max-width: 960px) {
	.flow_box {
		grid-template-columns: repeat(1, 1fr);
	}
	.flow_box_single::after {
		bottom: -27px;
        left: calc(50% - 13px);
        width: 26px;
        height: 14px;
        background: url(img/arrow.svg) no-repeat center center;
        content: "";
		transform: rotate(90deg);
	}
	.flow_box_single_txt {
		font-size: 14px;
	}
}

/* 返却レポート */
.report_box {
	background-color: #edf2ff;
	padding: 5em 10em;
	border-radius: 20px;
}
.report_box_inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
@media screen and (max-width: 960px) {
	.report_box {
		padding: 3em;
		gap:30px;
	}
}
@media screen and (max-width: 760px) {
	.report_box {
		border-radius: 10px;
	}
	.report_box_inner {
		gap: 30px;
	}
}
@media screen and (max-width: 560px) {
	.report_box_inner {
		grid-template-columns: repeat(1, 1fr);
	}
	.report_box {
		padding: 20px;
	}
}
.report_box_single {
	text-align: center;
}
.report_box_single_ttl {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	background-color: #20d195;
	color: #FFF;
	margin-bottom: 20px;
	padding: 10px 60px;
	text-align: center;
}
.report_box_single_content {
}
.report_box_single_txt_img {
	max-width: 80%;
	width: 100%;
	margin: 0 auto;
}
.report_box_single_txt_img:hover {
	opacity: 0.8;
}
.report_box_single_txt_img img {
	width: 100%;
}
.report_box_single_txt_modal {
	margin-top: 20px;
	text-decoration: underline;
	font-weight: bold;
	color: #0b56a7;
	font-size: 16px;
}
.report_box_single_txt_modal:hover {
	text-decoration: none;
}
.report_memo {
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
	margin-top: 40px;
}
@media screen and (max-width: 760px) {
	.report_box_single_ttl {
		font-size: 16px;
	}
	.report_memo {
		text-align: left;
	}
	.report_box_single_txt_modal {
		font-size: 14px;
	}
}


/*モーダルを開くボタン*/
.modal-open{
	cursor: pointer;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,80%);
	padding: 40px 20px;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
    display: none; 
	z-index: 10000;
}

/* モーダルが開いている時の背景スクロール防止 */
.modal-container.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.modal-container.active ~ body {
    overflow: hidden;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
	display: block; /* active時に表示 */
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 900px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	overflow-x: hidden;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
	top: 5px;
	right: 5px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
	z-index: 10001;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
}
.modal-content img {
	width: 100%;
}




/* 料金 */
.price_box {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
	background-color: #edf2ff;
	padding: 3em;
	border-radius: 20px;
}
.price_box table a {font-weight: bold; text-decoration: underline;}
.price_box table a:hover {text-decoration: none;}
.price_box table {
	width: 100%;
	border-top: 1px solid #0b56a7;
	border-left: 1px solid #0b56a7;
}
.price_box table thead {
}
.price_box table thead tr th {
	background-color: #0b56a7;
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
}
.price_box table tr th,
.price_box table tr td {
	padding: 20px;
	text-align: center;
	border-right: 1px solid #0b56a7;
	border-bottom: 1px solid #0b56a7;
	background-color: #FFF;
	color: #0b56a7;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
}
.price_box table tr th {
	width: 35%;
}

@media screen and (max-width: 760px) {
	.price_box {
		padding: 20px;
		border-radius: 10px;
	}
	.price_box table tr th,.price_box table tr td {display: block; padding: 10px;}
	.price_box table tr th {width: 100%; background-color: #eaf1f8;}
}
@media screen and (max-width: 560px) {
	.price_box table thead tr th { font-size: 16px;}
	.price_box table tr th {font-size: 14px;}
	.price_box table tr td {font-size: 12px;}
}

/* 導入までの流れ */
.step_box {
	background-color: #edf2ff;
	padding: 3em;
	border-radius: 20px;
}
.step_box_single {
	display: flex;
	align-items: stretch;
	margin-bottom: 40px;
	position: relative;
}
.step_box_single::after {
	position: absolute;
	bottom: -32px;
	left: calc(50% - 15px);
	width: 30px;
	height: 24px;
	background: url(img/arrow.svg) no-repeat center center;
	content: "";
	transform: rotate(90deg);
}
.step_box_single:last-child::after {
	display: none;
}
.step_box_single:last-child {
	margin-bottom: 0;
}
.step_box_single_step {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	background-color: #0b56a7;
	color: #FFF;
	padding: 20px;
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.step_box_single_txt {
	font-size: 16px;
	line-height: 1.6;
	background-color: #FFF;
	border-top:1px solid #0b56a7;
	border-bottom:1px solid #0b56a7;
	border-right:1px solid #0b56a7;
	padding: 30px;
	flex: 1;
}
.step_box_single_txt_ttl {
	font-size: 18px;
	font-weight: bold;
	color: #0b56a7;
	margin-bottom: 10px;
}
@media screen and (max-width: 760px) {
	.step_box {
		padding: 20px;
		border-radius: 10px;
	}
	.step_box_single {
		flex-direction: column;
	}
	.step_box_single_step {
		width: 100%;
		padding: 10px;
	}
	.step_box_single_txt_ttl {
		line-height: 1.4;
		font-size: 16px;
	}
	.step_box_single_txt {
		padding: 10px;
		border-top: none;
		border-right: none;
		border-bottom: none;
		font-size: 14px;
	}
}

/* よくある質問 */
.p-faq-list {
	display: block;
}
.p-faq-item {
	margin-bottom: 20px;
}
.p-faq-item:last-child {
	margin-bottom: 0;
}
.p-faq-item__header {
	position: relative;
	cursor: pointer;
	background-color: #edf2ff;
	padding: 20px 30px;
	border-radius: 5px;
}
.p-faq-item__header::after,
.p-faq-item__header::before {
	content: '';
	position: absolute;
	right: 30px;
	top: 50%;
	width: 20px;
	height: 2px;
	background-color: #10539a;
	transition: all 0.3s ease;
}
.p-faq-item__header::after {
	transform: rotate(90deg);
}
.p-faq-item__header.is-open::after {
	opacity: 0;
}

.p-faq-item__title {
    margin: 0;
	color: #10539a;
    font-size: 18px;
    font-weight: bold;
    padding-right: 40px;
}

.p-faq-item dd {
    display: none;
    margin: 0;
}

.p-faq-item dd[data-ac-collapse] {
    transition: all 0.3s ease;
}

.p-faq-item__body {
    font-size: 14px;
    line-height: 1.6;
}

/* アコーディオンが開いているときのスタイル */
.p-faq-item__header.is-open + dd {
    display: block;
	margin: 20px 0;
	padding: 20px;
}

.p-faq-item__single {
	margin-bottom: 20px;
	padding-bottom: 30px;
	border-bottom: 1px dashed #dbdce4;
}
.p-faq-item__single:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.p-faq-item__single_q {
    display: block;
    color: #2b93e0;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 10px 0;
    padding-left: 60px;
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
}
.p-faq-item__single_q::before {
    content: "Q";
    font-size: 18px;
    color: #FFF;
    font-weight: bold;
    background-color: #2b93e0;
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 20px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.p-faq-item__single_a {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 60px;
    position: relative;
    margin-top: 10px;
}
.p-faq-item__single_a::before {
    content: "A";
    font-size: 18px;
    color: #FFF;
    font-weight: bold;
    background-color: #20d195;
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 20px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}
.p-faq-item__single_a p {
    margin: 0 0 1em;
}
.p-faq-item__single_a p:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 760px) {
	.p-faq-item__header {
		padding: 20px;
	}
    .p-faq-item__title {
        font-size: 14px;
    }
    
    .p-faq-item__body {
        font-size: 13px;
    }
    
    .p-faq-item dd {
        padding: 15px;
    }
	.p-faq-item__header.is-open + dd {
		margin: 10px 0;
		padding: 10px 0;
	}
	.p-faq-item__single_q {
		font-size: 16px;
	}
	.p-faq-item__single_a {
		font-size: 14px;
	}
}

/* お客様の声 */
.voice_box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.voice_box_single {
	border: 1px solid #ccc;
	padding: 30px;
}
.voice_box_placeholder {
	display:flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 14px;
}
.voice_box_single_ttl {
	font-size: 24px;
	font-weight: bold;
	color: #10539a;
	margin-bottom: 20px;
	line-height: 1.4;
}
.voice_box_single_txt {
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 1.4;
}
.voice_box_single_btn {
	font-size: 16px;
	color: #FFF;
	background-color: #10539a;
	padding: 20px;
	border-radius: 50rem;
	text-align: center;
	font-weight: bold;
	transition: background-color 0.3s;
}
.voice_box_single_btn:hover {
	background-color: #2b93e0;
}
.voice_client_detail {
	padding: 30px;
}
.voice_client_detail_ttl {
	font-size: 24px;
	font-weight: bold;
	color: #10539a;
	margin-bottom: 10px;
	line-height: 1.4;
}
.voice_client_detail_txt {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #ccc;
}
.voice_client_detail_list {
	margin-bottom: 20px;
	line-height: 1.4;
}
.voice_client_detail_list:last-child {
	margin-bottom: 0;
}
.voice_client_detail_list dt {
	font-size: 16px;
	font-weight: bold;
}
@media screen and (max-width: 760px) {
	.voice_box_single_ttl {
		font-size: 20px;
	}
	.voice_client_detail_ttl {
		font-size: 20px;
	}
	.voice_box {
		grid-template-columns: repeat(1, 1fr);
	}
	.voice_client_detail_txt {
		font-size: 14px;
	}
	.voice_client_detail_list dt {
		font-size: 14px;
	}
	.voice_client_detail_list dd {
		font-size: 14px;
	}
}

.content_contact {
	margin-top: 60px;
	text-align: center;
}

.content_contact_inner {
	padding: 60px;
	background-color: #10539a;
	border-radius: 20px;
}

.contact_ttl {
	font-size: 28px;
	font-weight: bold;
	color: #FFF;
}

.content_contact_inner a {
	display:flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	text-decoration: none;
	background-color: #FFF;
	max-width: 300px;
	margin: 20px auto 0 auto;
	font-weight: bold;
	padding: 20px;
	border-radius: 50rem;
	transition: background-color 0.3s;
}
.content_contact_inner a:hover {
	background-color: #2b93e0;
	color: #FFF;
}

.content_contact_inner a img {
	width: 20px;
	margin-right: 10px;
}

@media screen and (max-width: 760px) {
	.content_contact {
		margin: 0;
		padding-top: 60px;
	}
	.contact_ttl {
		font-size: 18px;
	}
	.content_contact_inner {
		padding: 30px;
		border-radius: 10px;
	}
	.content_contact_inner a {
		font-size: 16px;
		max-width: 100%;
	}
	.content_contact_inner a img {
		width: 16px;
		height: 100%;
	}
	
}

.modal-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border-top: 1px solid #dbdce4;
}

.modal-nav button {
    padding: 10px 20px;
    background: #10539a;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.modal-nav button:hover:not(:disabled) {
    background: #2b93e0;
}

.modal-nav button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media screen and (max-width: 760px) {
    .modal-nav {
        padding: 15px;
    }
    
    .modal-nav button {
        padding: 8px 15px;
        font-size: 14px;
    }
}
