@charset "UTF-8";
/* 以下適用するスタイル */
sub {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.appointment-section {
	box-sizing: border-box;
	width: 100%;
	color: #193b87;
	text-align: center;
  margin-bottom: 60px;
}

.appointment-section__header {
	display: flex;
  position: relative; /* 追加: 子要素の絶対配置の基準に */
  justify-content: center;
}

.appointment-section__header-ttl {
    margin-right: 60px; /* アイコン分のスペースを空ける */
    flex-shrink: 0;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    margin: 40px 0 0px 0 !important;
    
}


.appointment-section__header-ttl::before,.appointment-section__header-ttl::after{
    content: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
    border: none !important;
}

.appointment-section__header-icon {
    position: absolute;
    right:30%;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-section__item {
  margin-top: 28px;
}

.appointment-section__item-ttl {
  font-size: 1.8rem !important; 
  font-weight: 700  !important;
  color: #193b87;
  margin:30px 0 0 0  !important;
  padding: 0 !important;
  background: none;
  border: none;
  box-shadow: none;
	display: block;
	text-align: center;
}

.appointment-section__item-ttl::after{
  content: none !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
}

.section-sonota {
	box-sizing: border-box;
	border: 2px solid #193b87;
	padding: 0 8px 18px;
	text-align: center;
}

.cta {
    max-width: 400px;
    margin: 12px auto 0;
}
.cta__actions {
	margin: 0 auto; /* 追加: 横方向中央寄せ */
	text-align: center; /* 追加: 子要素のインライン要素も中央寄せ */
}

.cta__txt {
	text-decoration: none;
	display: block;
	line-height: 1.5;
	color: #193b87;
  text-align: left;
}

.cta__button {
	display: flex;
	position: relative;
	text-decoration: none;
	color: #fff;
	background-color: #193b87;
	text-align: center;
	line-height: 56px;
	height: 56px;
	font-size: 1.6rem;
	margin: 8px 8px 0px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 60, 0.4));
}

.cta__button {
  margin: 8px 0 ;
}

.cta__button::before {
	content: "";
	width: 30px;
	height: 30px;
	background-color: #fff;
	position: absolute;
	right: 14px;
	border-radius: 999px;
}

.cta__button::after {
	content: "";
	box-sizing: border-box;
	border: 9px solid transparent;
	border-left: 12px solid #193b87;
	position: absolute;
	right: 12px;
}

.cta__button--secondary {
	vertical-align: middle;
	background-color: #ff7825;
  margin-bottom: 12px;
  padding-right: 24px;
}

.cta__button--secondary::after {
	content: "";
	box-sizing: border-box;
	border: 9px solid transparent;
	border-left: 12px solid #ff7825;
	position: absolute;
	right: 12px;
}

.cta__button--primary:hover {
    background-color: #142e6b !important; /* 少し暗い青 */
    filter: none !important; /* シャドウを外す */
    transition: background 0.2s;
}

.cta__button--secondary:hover {
    background-color: #cc631e !important; /* 少し暗いオレンジ */
    filter: none !important; /* シャドウを外す */
    transition: background 0.2s;
}

.appointment-section__item .cta .cta__add{
  color: #222;
  background-color: #eee;
  padding: 16px;
  text-align: left;
}

.appointment-section__item.tokyoprkn .cta__txt{
  color: #222;
}

.appointment-section__item.tokyoprkn .cta .cta__txt a[target="_blank"]:not([class]):after  {
    background: url(/wordpress/wp-content/themes/haramedical2/images/common/i-blank.png) no-repeat center;
    background-size: contain;
    content: '';
    display: block;
    height: 6px;
    position: absolute;
    right: 0;
    top: 5px;
    width: 8px;
}


/* SPスタイル */

@media (max-width: 768px) {
.appointment-section__header-icon {
    right: 20px;
}
}