/* General element styling --------------------------------------------- */

@font-face {
	font-family: 'HGSGothicM';
	src: url('fonts/HGSGothicM.woff') format('woff'),
		url('fonts/HGSGothicM.woff2') format('woff2');
	font-weight: 400;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('/fonts/century_gothic-webfont.woff') format('woff'),
         url('/fonts/century_gothic-webfont.woff2') format('woff2'),
}

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 32px;
	color: #1F1F1F;
	font-family: "BIZ UDPGothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: 500;
	margin: 0 0 20px;
}

a {
	color: #112288;
}

img {
	max-width: 100%;
}

button {
	cursor: pointer;
}

html {
	scroll-behavior: smooth;
}

/* General re-usable styling ------------------------------------------- */

.am-container {
	width: calc(100% - 40px);
	margin: 0 auto;
	max-width: 1440px;
}

.am-container.style2 {
	max-width: 1000px;
}

.am-container.style3 {
	max-width: 1200px;
}

.am-container.style5 {
	width: calc(100% - 120px);
}

.am-container.bg-grey {
	background: #F5F5F5;
}

.am-flex {
	display: flex;
}

.am-flex.wrap {
	flex-wrap: wrap;
}

.am-flex.between {
	justify-content: space-between;
}

.am-flex.center {
	justify-content: center;
}

.am-flex.vert-center {
	align-items: center;
}

.am-flex.vert-stretch {
	align-items: stretch;
}

.am-flex.vert-fl-end {
	align-items: flex-end;
}

.am-col1 {
	width: calc(100% / 12);
}

.am-col2 {
	width: calc(100% / 12 * 2);
}

.am-col3 {
	width: calc(100% / 12 * 3);
}

.am-col4 {
	width: calc(100% / 12 * 4);
}

.am-col5 {
	width: calc(100% / 12 * 5);
}

.am-col6 {
	width: calc(100% / 12 * 6);
}

.am-col7 {
	width: calc(100% / 12 * 7);
}

.am-col8 {
	width: calc(100% / 12 * 8);
}

.am-col9 {
	width: calc(100% / 12 * 9);
}

.am-col10 {
	width: calc(100% / 12 * 10);
}

.am-col11 {
	width: calc(100% / 12 * 11);
}

.am-hide {
	display: none;
}

.am-center {
	text-align: center;
}

.am-sp {
	display: none;
}

.am-pc {
	display: block;
}

.am-modal__min-btn {
    border: unset;
    background: unset;
    margin: 0 auto;
	padding: 0;
    display: block;
}

dialog.am-modal__max {
    width: 100%;
    height: 100%;
    border: unset;
    background: #0003;
}

.am-modal__max-cont {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(calc(50vw - 50% - 3px), -50%);
    background: #FFF;
    border-radius: 10px;
    width: auto;
    height: auto;
    text-align: center;
	padding: 20px;
	max-width: calc(100% - 60px);
}

.am-modal__max-scroll {
    border-radius: 10px;
    width: auto;
    height: auto;
    max-height: calc(100vh - 140px);
    text-align: center;
    overflow-y: auto;
    overflow-x: clip;
}

.am-modal__max-pix {
    width: calc(100% - 100px);
    height: calc(100% - 150px);
    overflow: auto;
    padding: 50px;
    box-shadow: 0 0 10px #8888 inset;
    border: 1px solid #888;
    padding: 0;
    width: 100%;
    height: calc(100% - 50px);
/*     margin: 0 0 20px; */
}

.am-modal__max-pix > img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: auto;
    /* 	cursor: zoom-in; */
}

.am-modal__max-pix.zoom > img {
    width: auto;
    height: auto;
    max-width: 200vw;
    max-height: 200vh;
    /* 	cursor: zoom-out; */
}

.am-modal__max-close.lp-btn {
    margin: 10px auto;
    display: block;
    padding: 10px;
    min-width: 140px;
}

.am-modal__max-close.lp-btn::after {
    content: unset;
}

.am-modal__max-prev, .am-modal__max-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    background: unset;
    border: unset;
    color: #FF9800;
}

.am-modal__max-prev {
    left: -40px;
}

.am-modal__max-next {
    right: -40px;
}

.am-bg-layout {
	position: relative;
}

.am-bg-pix {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.am-bg-pix > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.am-bg-cont {
	position: relative;
	z-index: 1;
}

.am-bg-layout.style2 .am-bg-pix {
	position: relative;
	top: unset;
	left: unset;
	height: auto;
}

.am-bg-layout.style2 .am-bg-pix > img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.am-bg-layout.style2 .am-bg-cont {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translatey(-50%);
	height: auto;
}

#sect-banner .am-bg-pix > img {
	object-position: right;
}

.am-modal__max-close {
    margin: 20px 0 0;
    background-color: #593004;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 10px;
}

.bnr__title {
	margin: 0;
	font-size: 50px;
	padding: 200px 0;
}

.sect-cont {
	padding: 80px 0;
}

.sect-cont.style2 {
	padding: 60px 0;
}

.af-topgap {
	height: 100px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	/*background-image: url("../images/bg-header.png");*/
	background: #ffffffcc;
}

.hdr__layout {
	height: 100px;
}

.hdr__logo {
	margin: 0 auto 0 0;
}

.hdr__logo>a>img {
	height: auto;
}

.hdr__navi-menu {
	display: block;
}

.hdr__navi-menu {
	display: flex;
	justify-content: flex-end;
	padding: 0;
	margin: 0 10px 0 0;
}

.hdr__navi-menu li {
	list-style: none;
	text-align: center;
	display: block;
	line-height: 1;
}

.hdr__navi-menu li:last-child {
	border-width: 0;
}

.hdr__navi-menu li a {
	text-decoration: none;
	color: #593004;
	font-weight: 500;
	padding: 5px 20px;
	width: calc(100% - 40px);
	display: block;
	white-space: nowrap;
}

.hdr__navi-lang a {
	color: #ffff;
	text-decoration: none;
}

.hdr__navi-lang a.active {
	color: blue;
}

.hdr__navi-button {
	color: #fff;
	background-color: #593004;
	text-decoration: none;
	padding: 0 25px;
	border-radius: 20px;
}

.hdr__navi-button-img {
	width: 10px;
	margin: -5px 0 0 10px;
	vertical-align: middle;
}

.slider__layout {
	position: relative;
}

.slider__item {
/* 	height: calc(100vh - 70px); */
	min-height: 780px;
}

.slider__item.slick-initialized.slick-slider img {
    height: calc(100vh - 100px);
    object-fit: cover;
	width: 100%;
	min-height: 780px;
}

.slider__item > img, .slider__item > video {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.slider-nav .slick-slide .slider-nav__image {
	filter: saturate(0);
}

.slider-nav .slick-slide.slick-current .slider-nav__image {
	filter: unset;
}

.slider-navi {
	text-align: center;
	margin: 15px 0;
	display: block;
	width: 100%;
	white-space: nowrap;
	padding: 0;
}
.slider-navi button {
	background-color: unset;
	 color: #f19602;
	border: unset;
	font-size: 35px;
	cursor: pointer;
	display: inline-block;
	width: fit-content;
	max-width: unset;
	padding: 0 5px;
	margin: 0;
}

.slider-navi .slick-prev, .slider-navi .slick-next {
    position: relative;
    transform: unset;
}

.slider-navi .slick-prev::before, .slider-navi .slick-next::before {
    content: unset;
}

.slider-navi .slick-prev:hover, .slider-navi .slick-prev:focus,
.slider-navi .slick-next:hover, .slider-navi .slick-next:focus {
    color: #f1960288;
    outline: none;
}

.slider-nav__item:focus-visible .slider-nav__image {
	position: relative;
	z-index: -1;
}

.slider__ov {
	position: absolute;
	left: 50%;
	top: calc(50% - 20px);
	transform: translate(-50%, -50%);
	width: auto;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	margin: 0;
}

.slider__ov-main-title {
	font-size: 30px;
	line-height: 1.8;
/* 	font-family: "BIZ UDPMincho", serif; */
	font-weight: 400;
	font-style: normal;
	color: #000;
	background-color: #fff8;
	padding: 20px 50px;
	max-width: 1440px;
}

i.fa-solid.fa-circle-arrow-left {
	color: #3C6F36;
}

i.fa-solid.fa-circle-arrow-right {
	color: #3C6F36;
}

i.fa-solid.fa-pause {
	color: #f19602;
}


.footer__cont {
	max-width: 1200px;
	margin: 0  auto;
}

footer {
	background-color: #FFFCF6;
	border-width: 1px 0 0 0;
}

footer .footer__container {
	padding: 80px 0;
}

.ftr__logo {
    display: block;
    margin: 0 0 10px;
}

.ftr-business-days {
    background-color: #593004;
    color: #fff;
    padding: 7px 26px;
    border-radius: 20px;
    font-size: 15px;
    margin: 0 10px 0 0;
}

.ftr-phone-num span {
    color: #593004;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
}

.ftr-phone-num img {
    vertical-align: middle;
    margin: 0 10px 0 0;
}

.footer-table table tr td {
    border: 1px solid #DCBD9C;
    padding: 0 15px;
}

.footer-table table {
    border-collapse: collapse;
    margin: 15px 0;
}

.bg-gray {
	background-color: #F4EFE9;
}

.bg-brown {
	background-color: #F9EFE5;
}

/* .footer-address {
    line-height: 2.5;
} */

/* SP menu btn ---------------------------------------------*/

.hdr__menu-btn {
	position: absolute;
	top: calc(80px / 2);
	right: 30px;
	border: 2px solid #593004;
	background: transparent;
	width: 50px;
	height: 50px;
	transform: translateY(-50%);
	display:none;
}

.hdr__menu-btn-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.hdr__menu-btn-icon::before,
.hdr__menu-btn-icon::after,
.hdr__menu-btn-icon>span {
	content: "";
	width: 30px;
	height: 2px;
	background: #593004;
	display: block;
	margin: 8px 0;
	transition: 0.5s ease;
	opacity: 1;
}

header.hdr__menu--show {
	height: 100vh;
	overflow: auto;
	background-color: #fff;
}


.sect-news__cont a {
	text-decoration: none;
}

.sect-news__item-title {
	color: #000;
}

.sect-news__cont {
	margin: 80px auto 50px;
	max-width: 1000px;
}

.sect-news__item-date {
	color: #006533;
	font-weight: 700;
	margin: 0 80px 0 0;
	white-space: nowrap;
}

.sect-news-single__cont {
	max-width: 1000px;
	margin: 80px auto;
}

.sect-news-single__item-date {
	color: #006533;
	font-weight: 500;
	margin: 20px 0 5px 0;
	font-size: 14px;
}

.sect-news-single__item-date > img {
	width: 25px;
	height: 26px;
	vertical-align: middle;
	margin: 0 12px 0 0;
}

.sect-news-single__item-title {
	font-weight: 700;
	font-size: 20px;
	padding: 0 0 8px;
	border-bottom: 1px solid #ccc;
}

.sect-news-single__item-date i {
	font-size: 25px;
	margin: 0 10px 0 0;
}

.sect-news-single__item-content {
	line-height: 32px;
}

.sect-news__cont-item {
	display: flex;
	border-bottom: 1px solid #cccccc;
	padding: 0 0 20px;
	margin: 0 0 35px;
}

.ii-pgnavi__btn.ii-pgnavi__current {
	background: #593004;
	color: #FFF;
	cursor: revert;
}

.ii-pgnavi__btn {
	background-color: #593004;
	padding: 10px 14.79px;
	color: #fff;
	font-weight: 500;
	border: 1px solid #593004;
	margin: 0 5px;
	cursor: pointer;
	font-size: 16px;
	border-radius: 50px;
}

.ii-pgnavi__btn i {
	background-color: #fff;
	color: #593004;
}

button.ii-pgnavi__btn.next {
	background-color: #fff;
	padding: 12px 13.79px;
}

button.ii-pgnavi__btn.previous {
	background-color: #fff;
	padding: 12px 13.79px;
}

.sect-news__pagenavi{
	text-align: center;
	margin: 0 0 100px;
}

.sect-news__pagenavi .btn-style-1 {
	text-decoration: unset;
	display: inline-block;
	margin: 0 10px;
	width: 150px;
	position: relative;
}

.sect-news__pagenavi .btn-style-1 {
	text-decoration: unset;
	display: inline-block;
	margin: 0 10px;
	width: 150px;
	position: relative;
	background: linear-gradient(90deg, #3F8837 0%, #8FDF86 100%);
}

.ll-button {
	background-color: #006533;
	border-radius: 50px;
	color: #fff;
}

.chev-left {
	padding: 5px 20px 5px 15px;
}

.chev-right {
	padding: 5px 15px 5px 20px;
}

.chev-left::before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 700;
	font-size: 10px;
	width: 18px;
	height: 18px;
	border: 2px solid;
	display: inline-block;
	border-radius: 50%;
	vertical-align: bottom;
	position: absolute;
	top: 22%;
	right: 0;
	left: 15px;
	line-height: 1.8;
}

.chev-right::after {
	font-family: 'Font Awesome 6 Free';
	font-weight: 700;
	font-size: 10px;
	width: 18px;
	height: 18px;
	border: 2px solid;
	display: inline-block;
	border-radius: 50%;
	vertical-align: bottom;
	position: absolute;
	top: 22%;
	right: 0;
	left: 75%;
	line-height: 1.8;
}

.chev-left::before {
	content: "\f053";
	margin: 0 10px 4px 0;
}

.chev-right::after {
	content: "\f054";
	margin: 0 0 4px 10px;
}

.sect-blog__item-img {
	width: calc(100% - 30px);
	margin: 0 30px 0 0;
	border: 2px solid #ccc;
	border-radius: 20px;
	height: 200px;
	object-fit: cover;
}

.sect-blog__item-cont {
	margin: 0 0 30px;
	border-bottom: 1px solid #C0B8B8;
	padding: 0 0 30px 0;
}

.sect-blog__item-date {
	font-size: 14px;
}

.sect-blog__item-excerpt {
	font-size: 16px;
	line-height: 160%;
}

.sect-blog__item-title {
	font-size: 18px;
	margin: 10px 0;
	font-weight: 700;
}

.sect-blog__title {
	font-size: 22px;
	border-bottom: 4px solid #A4A2A2;
	padding: 0 0 10px 0;
	margin: 0;
}

ul.wp-block-categories-list.wp-block-categories {
	list-style: none;
	padding-left: 0;
}

.sect-blog__sidebar {
	width: calc(100% - 40px);
	margin: 0 0 0 40px;
}

.sect-blog__title ul li a {
	text-decoration: unset;
}

.wp-block-categories li a {
	text-decoration: unset;
	color: #000;
	padding: 0 0 20px 0;
	font-size: 16px;
}

.wp-block-categories li {
	border-bottom: 1px dashed #a4a2a2;
}

.sect-blog__post a {
	text-decoration: unset;
	color: #000;
}

.wp-block-categories li:first-child {
	padding: 0 0 10px;
}

.cat-item .wp-block-categories__item-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin: 0 10px 0 0;
    vertical-align: middle;    
}

.sect-blog__single-cont {
	font-size: 18px;
	line-height: 48px;
}

.sect-blog__single-cont img {
	width: auto;
	display: block;
	margin: 30px auto;
}

.sect-blog__single-cont-title {
	font-size: 30px;
	text-align: center;
}

.sect-blog__single-cont-date {
	display: inline-block;
}

.sect-blog__single-cont-tags {
	display: inline-block;
	margin: 0 0 0 10px;
	background-color: orange;
	color:#FFF;
	width: 90.1px;
	border-radius: 30px;
	text-align: center;
	font-size: 14px;
	line-height: 30px;
}

.header-blog {
	font-weight: 700;
	color: #555;
	line-height: 140%;
	border-bottom: 3px solid #38393c;
	font-size: 26px;
	text-align: left;
}

.widgettitle {
	font-weight: 700;
	color: #555;
	line-height: 140%;
	border-bottom: 3px solid #38393c;
	font-size: 26px;
	text-align: left;
	margin: 60px 0 0;
}

.widgettitle:last-child {
	margin: 60px 0 0 0;
}

.sect-blog__sidebar ul li {
	list-style: none;
	border-bottom: 1px solid #efefef;
	padding: 10px 0;
}

div#calendar_wrap {
	width: 100%;
}

table#wp-calendar {
	width: 100%;
	margin: 20px 0 0;
	table-layout: fixed;
}

#wp-calendar tbody td {
	background: #f5f5f5;
	border: 1px solid #fff;
	text-align: center;
	padding: 8px;
}

.sidebar ul li a {
	color: #000;
}

#sect-blog a:hover {
	color: #000;
	text-decoration: underline;
}

.widgettitle:first-child {
	margin: 0;
}

.wp-calendar-nav-prev a {
	text-decoration: none;
	color: #007bff;
	font-weight: 700;
}

#wp-calendar a {
	color: #007bff;
	font-weight: 700;
	text-decoration: none;
}

caption {
	padding-top: .75rem;
	padding-bottom: .75rem;
	color: #6c757d;
	text-align: left;
	caption-side: bottom;
}

#wp-calendar caption {
	text-align: right;
	color: #333;
	font-size: 14px;
	margin-top: 10px;
	margin-bottom: 15px;
}

.slider__container-aboutus {
    width: 96%;
    height: 97%;
    position: absolute !important;
    left: 50%;
    top: 1%;
    transform: translateX(-50%);
    border-radius: 14%;
    overflow: hidden;
}

.slider__layout-aboutus {
    position: relative;
    width: calc(100% - 60px);
    margin-right: auto;
}

#dl-aboutus .am-col3 .vid-frame {
    position: relative;
    width: 100%;
    height: auto;
}

.slider__item-aboutus > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__item-aboutus {
    height: 100%;
}

.slider__container-aboutus .slick-list,
.slider__container-aboutus .slick-track {
	height: 100% !important;
}


.am-anchor {
    position: relative;
}

.am-anchor > span {
    position: absolute;
    top: -100px;
}

header .hdr__navi-button {
    width: 80px;
    display: block;
    align-self: center;
	text-align: center;
	line-height: 1.8;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    font-size: 16px;
    padding: 15px 0 15px 10px;
    line-height: 1.5;
}

.title-icon img {
    display: block;
}

.dogshow__img {
    margin-bottom: 20px;
}

.widget img, .entry-content img, .item-description img {
    max-width: 100%;
    height: auto;
}


.am-anchor {
    position: relative;
}

.am-anchor > span {
    position: absolute;
    top: -100px;
}

.hdr__ftr.ftr__cont {
    display: none;
}


.blog-item__pix {
	width: 100%;
	height: 240px;
	object-fit: cover;
	margin: 0 0 20px;
}

.blog-item__head {
	font-size: 14px;
	padding: 14px 16px;
	margin: 0 0 28px;
	background: #efeff0;
	display: flex;
	align-items: center;
	position: relative;
}

.blog-item__head::after {
    content: "\f061";
    font-family: 'FontAwesome';
    position: absolute;
    right: 15px;
    font-size: 17px;
    color: #4a4a4a;
}

.blog-item__head-date {
	margin: 0 20px 0 0;
}

.blog-btn__cont button {
	margin: 0 0 20px;
}

.slider__top-btn {
    position: absolute;
    top: 30px;
    right: 0;
    width: auto;
    color: #fff;
   	display: inline-block;
    background-color: #F19602;
    margin: 0 14% 0 0;
    padding: 3px 30px;
    border-radius: 40px;
}
	
.slider__top-btn img {
	vertical-align: middle;
	margin: 0 0 0 10px;
}

.slider__side-btn img {
    margin: 10px 0 0 0;
}

.slider__side-btn {
    position: fixed;
    z-index: 3;
    /* top: 18%; */
    top: 110px;
    right: 0;
    width: auto;
    color: #fff;
    display: inline-block;
    background-color: #F19602;
    /* margin: 0 50px 0 0; */
    padding: 15px 10px;
    /* border-radius: 40px; */
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 1pt;
    height: 90px;
}

.ftr-sns-logo {
    text-align: right;
    margin: 10px 0 0;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #D4B99D;
    font-size: 14px;
}

.ftr__navi {
    width: 100%;
    background: #F4EFE9;
	position: relative;
	margin: 0 0 40px;
}

.ftr__navi-list {
    padding: 20px 0;
    list-style: none;
    display: flex;
    justify-content: center;
	margin: 0;
}

.ftr__navi-item > a {
    padding: 0 20px;
    color: #593004;
    text-decoration: unset;
}

.at-title {
    text-align: center;
    padding: 50px 0 0;
}

.at-title span {
    display: block;
}

.title-jp {
    color: #F69802;
    font-size: 20px;
    font-weight: 700;
}

.at-news__cont {
    max-width: 1000px;
    margin: 50px auto 0 auto;
    padding: 0 0 50px;
}

.at-news__cont .am-col10 a {
    text-decoration: none;
    color: #000;
}

.wp-block-group {
    margin: 0 0 40px;
}

.at-bnr__pix img {
    width: 100%;
	height: 36vw;
/* 	height: 377.56px;
	object-fit: cover; */
}

.at-bnr__pix.blog img {
    width: 100%;
	object-fit: cover;
    max-height: 687px;
}

.at-bnr__bannner-title {
    text-align: center;
}

.at-bnr__bannner-title span {
    display: block;
}

.at-promote-health__cont .am-col7 {
    width: calc(100% /12*7 - 70px);
    margin: 0 70px 0 0;
}

.at-promote-health__cont {
    max-width: 1100px;
    margin: 50px auto 0 auto;
	padding: 0 0 50px;
}

#at-promote-health .am-col5 {
    text-align: center;
}

.at-promote-health__img {
    margin: 50px auto 0 auto;
    text-align: center;
}

.at-btn__cont {
    text-align: center;
    margin: 80px 0 0;
}

.at-btn__cont a {
    background-color: #593004;
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 30px;
}

#at-approach .at-btn__cont a {
    padding: 5px 0;
    white-space: nowrap;
    display: block;
}

.at-btn__cont img {
    vertical-align: middle;
    margin: 0 0 0 10px;
}

.at-testimonials__cont {
    max-width: 1050px;
    margin: 50px auto 0 auto;
}

.at-testimonials__title {
    font-weight: 700;
    display: block;
}

#at-testimonials .am-col5.mrg-right {
    width: calc(100% / 12*5 - 50px);
    margin: 0 50px 0 0;
}

#at-testimonials .am-col5.mrg-left {
    width: calc(100% / 12*5 - 50px);
    margin: 0 0 0 50px;
	text-align: end;
}

#at-testimonials .at-btn__cont {
    padding: 0 0 50px;
	margin: 50px 0 0 0;
}

.at-testimonials__item {
    margin: 0 0 40px;
}

.at-chiropractic-care__cont {
    max-width: 1100px;
    margin: 50px auto 0 auto;
    padding: 0 0 70px;
}

#at-chiropractic-care .am-col7 {
    width: calc(100% / 12*7 - 80px);
    margin: 0 80px 0 0;
}

.at-chiropractic-care__subtitle {
    color: #F69802;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0;
}

.at-chiropractic-care__item {
    /*border: 1px solid #000;*/
}

.at-chiropractic-care__video .am-col3 {
    width: calc(100% / 12* 3 - 30px);
    margin: 0 30px 0 0;
}

.at-chiropractic-care__video .am-col3:last-child {
    margin: 0;
}

.am-col3.at-chiropractic-care__item span {
    background-color: #fff;
    display: block;
    margin: -10px 0 0 0;
    text-align: center;
}

#at-approach .am-col2 {
    margin: 0 30px 30px 0;
    width: calc(100% / 5 - 30px);
    display: flex;
    flex-direction: column;
}

.at-approach__cont {
    text-align: center;
    max-width: 1120px;
    margin: 50px auto 0 auto;
}

.at-approach__title {
    background-color: #fff;
    width: 153px;
    height: 153px;
    border-radius: 50%;
    font-size: 13px;
    border: 2px solid #C8B6A2;
    color: #F69802;
	align-content: center;
	margin: 0 auto;
}

.at-approach__subtitle {
    display: block;
    font-size: 15px;
    color: #000;
	line-height: 0;
}

#at-approach .at-btn__cont {
    margin: unset;
    padding: 20px 0 0;
}

.at-approach__desc {
    margin: 10px 0 0;
    display: block;
	text-align: left;
}

#at-approach .am-col2.last {
    margin: 0;
}

#at-approach .am-flex.wrap {
    justify-content: center;
}

.at-before-after__cont {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 0 0 50px;
}

#at-before-after .am-col2 {
    margin: 0 0 20px 0;
}

.at-our-staff__cont {
    max-width: 1200px;
    margin: 50px auto 0 auto;
	padding: 0 0 50px;
}

#at-our-staff .am-col4 {
    margin: 0 50px 0 0;
    width: calc(100% / 12*4 - 50px);
}

.title-en {
    font-size: 30px;
    color: #6F4C27;
    display: block;
	width: fit-content;
	margin: 0 auto;
	position: relative;
	padding: 0 70px;
	font-family: 'Century Gothic', sans-serif;
}

.title-en::before {
    content: "";
    height: 1px;
    width: 50px;
    display: block;
    background: #6F4C27;
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    top: 50%;
}

.title-en::after {
    content: "";
    height: 1px;
    width: 50px;
    display: block;
    background: #6F4C27;
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    top: 50%;
}

 .gradient-text { 
	 background: linear-gradient(90deg, #AF8659, #6F4C27);
	 -webkit-background-clip: text;
	 -webkit-text-fill-color: transparent;
}

.at-gallery__cont {
    max-width: 1200px;
    margin: 50px auto 0 auto;
	padding: 0 0 50px;
}

.at-gallery__cont .am-col2 {
    width: calc(100% / 5 - 20px);
    margin: 0 20px 20px 0;
    text-align: center;
}

#at-gallery .am-col2.mrg-0 {
    margin: 0;
}

.at-gallery__cont .am-flex.wrap {
    justify-content: center;
}

.subtitle-1 {
    color: #F69802;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
	margin: 0 0 30px;
}

.at-gallery-review__cont {
    margin: 30px 0 0;
}

.at-gallery-review__cont .am-col2 {
    width: calc(100% / 5 - 60px);
    margin: 0 60px 0 0;
}

.at-gallery-review__cont .am-col2:nth-child(5n) {
	margin: 0;
}

.at-gallery-review__cont .am-flex.wrap {
	justify-content: space-around!important;
}

.at-gallery-review__cont .am-flex.wrap .am-col2 img {
    width: 100%;
}

.at-gallery__cont .am-col2 img {
    width: 100%;
}

.br-tab {
	display: none;
}

#at-our-staff .am-col4 img {
    margin: 0 0 20px 0;
}

#at-promote-health .am-bg-pix:nth-child(2) {
	z-index: 2;
	width: 22%;
	max-width: 321px;
	height: auto;
	top: unset;
	bottom: 0;
}

#at-promote-health .am-bg-pix:nth-child(3) {
    z-index: 2;
    max-width: 291px;
    width: 20%;
    height: auto;
    top: unset;
    bottom: 0;
    left: unset;
    right: 0;
}

.at-bnr__layout {
    position: relative;
}

.at-whatis__cont {
    max-width: 1200px;
    margin: 50px auto 0 auto;
	padding: 0 0 50px 0;
}

#at-whatis .am-col7 {
    width: calc(100% / 12 * 7 - 50px);
    margin: 0 50px 0 0;
}

#at-whatis .subtitle-1 {
    margin: 20px 0 10px;
    display: block;
    text-align: left;
}

span.mgb-10 {
    display: block;
    margin: 0 0 10px;
}

.at-whatis__item {
    margin: 0 0 20px;
}

.at-whatis__item span {
    display: block;
    font-weight: 700;
	font-size: 20px;
}

#at-whatis .am-col5 img {
    margin: 0 0 20px;
}

#at-pro-cons .subtitle-1 {
    text-align: left;
}

#at-about-doctor .am-col7 {
    width: calc(100% / 12 * 7 - 50px);
    margin: 0 50px 0 0;
}

.at-about-doctor__cont {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 0 0 50px;
}

#at-about-doctor .am-col5.image {
    text-align: end;
    margin: 0;
}

.at-conditions__cont {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 0 0 50px;
}

.at-conditions__cont .am-col7 {
    width: calc(100% / 12 * 7 - 50px);
    margin: 0 50px 0 0;
}

.at-conditions__cont .am-col5.image {
    margin: 0;
    text-align: end;
}

.at-kids-benefits__cont {
    max-width: 1200px;
    margin: 50px auto 20px auto;
    padding: 0 0 50px;
}

span.mgb-20 {
    display: block;
    margin: 0 0 20px;
}

span.mgb-40 {
    display: block;
    margin: 0 0 40px;
}

#at-kids-benefits .am-col7 {
    width: calc(100% / 12 * 7 - 50px);
    margin: 0 50px 0 0;
}

#at-kids-benefits .am-col5.image {
    text-align: end;
}

#at-whatis .am-col5.image {
    text-align: end;
}

#at-about-doctor .am-col5.image {
    text-align: end;
}

#at-prenatal-postpartum .at-btn__cont {
    margin: 0;
    padding: 0 0 50px;
}

#at-kids-benefits .at-btn__cont {
    margin: 0;
    padding: 0 0 50px;
}

#at-prenatal-postpartum .am-col7 {
    width: calc(100% / 12 * 7 - 50px);
    margin: 0 50px 0 0;
}

#at-prenatal-postpartum .am-col5.image {
    text-align: end;
}

.at-prenatal-postpartum__cont {
    max-width: 1200px;
    margin: 50px auto 20px auto;
}

.at-prenatal-postpartum-v2__cont {
    max-width: 1200px;
    margin: 50px auto 20px auto;
    padding: 0 0 50px;
}

#at-prenatal-postpartum-v2 .am-col7 {
    width: calc(100% / 12 * 7 - 50px);
    margin: 0 50px 0 0;
}

#at-prenatal-postpartum-v2 .am-col5.image {
    text-align: end;
}

#at-prenatal-postpartum-v2 .at-btn__cont {
    margin: 0;
    padding: 0 0 50px;
}

.at-effectiveness-safety__cont {
    max-width: 1200px;
    margin: 50px auto 20px auto;
    padding: 0 0 50px;
}

#at-effectiveness-safety .am-col7 {
    width: calc(100% / 12 * 7 - 50px);
    margin: 0 50px 0 0;
}

#at-effectiveness-safety .am-col5.image {
    text-align: end;
}

.at-effectiveness-safety__reference {
    margin: 60px 0 0;
}

.at-link {
    color: #000;
}

#bnr_atsumi {
    margin: 0 0 40px;
}

#at-importance-maintenance {
    margin: -20px 0 0;
}

.at-importance-maintenance__img {
    margin: 40px auto 20px auto;
}

.fc-blue {
    color: #0B51F4;
    font-weight: 700;
}

.fc-red {
    color: #FF2323;
    font-weight: 700;
}

.at-importance-maintenance__img-cont {
    text-align: center;
}

.at-importance-maintenance__cont {
    padding: 0 0 50px;
    max-width: 1200px;
    margin: 5px auto 0 auto;
}

.at-difference__cont {
    max-width: 1200px;
    margin: 50px auto 20px auto;
    padding: 0 0 50px;
}

#at-difference .am-col7 {
    width: calc(100% / 12 * 7 - 50px);
    margin: 0 50px 0 0;
}

#at-difference .am-col5.image {
    text-align: end;
}

#at-difference .am-col5 img {
    margin: 0 0 20px 0;
}

section#at-difference {
    margin: 0 0 -20px;
}

.at-testimonials__name {
    display: block;
    font-weight: 700;
}

.at-testimonials-pg__cont {
	max-width: 1200px;
	margin: 50px auto 0 auto;
	padding: 0 0 50px 0;
}

#at-testimonials .am-col4 {
    text-align: center;
}

#at-ourtreatment .am-bg-cont {
	padding: 0 0 50px;
}

.at-ourtreatment__txt {
	text-align: center;
	margin: 30px 0 0;
}

#at-procedure .at-title {
	margin: 0 0 50px;
}

.at-procedure__item {
	max-width: 1058px;
	margin: 0 auto;
	padding: 0 0 80px;
}

.at-procedure__item-title {
	margin: 0 auto 40px;
	color: #f69802;
	font-weight: bold;
	text-align: center;
	font-size: 24px;
}

/* procedure__item 1st Item */

.at-procedure__item:nth-child(1) .at-procedure__item-pix {
	width: 51%;
}

.at-procedure__item:nth-child(1) .at-procedure__item-txt {
	width: calc(0.85 * 49%);
	margin: 0 0 0 auto;
}

.at-procedure__item:nth-child(1) .at-procedure__item-pix > img:nth-child(1) {
	width: calc(70% - 20px);
	max-width: 350px;
	margin: 0 20px 0 0;
}

.at-procedure__item:nth-child(1) .at-procedure__item-pix > img:nth-child(2) {
	width: 30%;
	max-width: 166px;
}

/* procedure__item 2nd Item */

.at-procedure__item:nth-child(2) .at-procedure__item-pix {
	width: 33%;
	max-width: 350px;
}

.at-procedure__item:nth-child(2) .at-procedure__item-txt {
	width: 52%;
	max-width: 550px;
	margin: 0 auto 0 0;
}

/* procedure__item 3rd Item */

.at-procedure__item:nth-child(3) {
	flex-wrap: wrap;
}

.at-procedure__item:nth-child(3) .at-procedure__item-title {
	width: 100%;
}

.at-procedure__item:nth-child(3) .at-procedure__item-pix {
	gap: 20px;
}

.at-procedure__item:nth-child(3) .at-procedure__item-pix > div {
	width: calc(25% - 15px);
	margin: 0 auto;
}

/* procedure__item 4th Item */

.at-procedure__item:nth-child(4) .at-procedure__item-desc {
	max-width: 1058px;
	margin: 0 auto 40px;
}

.at-procedure__item:nth-child(4) .at-procedure__item-pix {
	display: flex;
	justify-content: space-between;
	margin: 0 0 40px;
}

.at-procedure__item:nth-child(4) .at-procedure__item-pix > img {
	width: 28.4%;
	max-width: 300px;
}

/* procedure__item 5th Item */

.at-procedure__item:nth-child(5) .at-procedure__item-pix {
	max-width: 1058px;
	margin: 0 auto 40px;
}

.at-procedure__item:nth-child(5) .at-procedure__item-pix > img:first-child {
	width: 29%;
}

.at-procedure__item:nth-child(5) .at-procedure__item-pix > img:last-child {
	width: 52%;
}

/* procedure__item 6th Item */

.at-procedure__item:nth-child(6) .at-procedure__item-pix {
	width: 33%;
	max-width: 350px;
}

.at-procedure__item:nth-child(6) .at-procedure__item-txt {
	width: 67%;
	max-width: calc(100% - 350px - 70px);
	margin: 0 0 0 70px;
}

.at-procedure__item:nth-child(6) .at-procedure__item-pix > img {
	display: block;
	width: 100%;
}

.at-kids-chiropractic-care__cont {
    margin: 50px auto 0 auto;
	max-width: 1100px;
}

.at-kids-chiropractic-care__text {
    text-align: left;
    margin: 0 auto;
    width: fit-content;
}

#at-kids-chiropractic-care .am-col6:nth-child(2) img {
	margin: 0 20px 20px 0;
	width: calc(50% - 24px);
	max-width: 235px;
    height: 170px;
	object-fit: cover;
}

#at-kids-chiropractic-care .am-col6:nth-child(2) {
	text-align: end;
}

.at-kids-chiropractic-care__text {
    margin: 0;
}

#at-kids-chiropractic-care .am-flex.wrap {
    margin: 50px 0 0;
}

.at-kids-chiropractic-care__desc {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    padding: 30px 0 40px;
}

.kids-chiropractic-benefits__cont {
    max-width: 1100px;
    margin: 0 auto;
}

.kids-chiropractic-benefits__cont .subtitle-1 {
    text-align: center;
    display: block;
    padding: 50px 0 0;
}

.at-kids-chiropractic-care__point {
    margin: 0 0 30px;
}

.kids-chropractic-benefits__cont .am-flex.wrap {
    margin: 0 0 20px 0;
}

.kids-chiropractic-benefits__cont .am-flex.wrap {
    padding: 0 0 40px;
	justify-content: space-between;
}

.kids-chiropractic-benefits__cont .am-col4 {
    text-align: left;
    margin: 0 50px 0 0;
    width: calc(100% / 12*4 - 100px);
}

.kids-chiropractic-benefits__cont .am-col4 img {
    width: 100%;
}

.kids-chiropractic-benefits__cont .am-col4:last-child {
    margin: 0;
}

.kids-chiropractic-benefits__gal .am-col3 img {
    width: 100%;
}

.kids-chiropractic-benefits__gal .am-col3 {
    width: calc(100% / 12*3 - 30px);
    margin: 0 30px 0 0;
}

.kids-chiropractic-benefits__gal .am-col3:last-child {
    margin: 0;
}

#at-before-after .am-col2 img {
    width: 170px;
    height: 170px;
}

#at-prenatal-postpartum .subtitle-1 {}

#at-prenatal-postpartum-treatmentpg .subtitle-1 {
    text-align: center;
    display: block;
    margin: 40px 0;
}

.at-prenatal-postpartum-treatmentpg__desc {
    font-size: 16px;
    font-weight: 700;
    padding: 40px 0;
}

#at-prenatal-postpartum-treatmentpg .am-col6:last-child {
    text-align: end;
}

.at-prenatal-postpartum-treatmentpg__cont {
    max-width: 1100px;
    margin: 50px auto 0 auto;
}

.ftr-sns-logo_img {
    width: 36px;
    height: 36px;
    margin: 0 10px 0 0;
}

.ftr-sns-logo_img.mrg-0 {
    margin: 0;
}

.at-prenatal-postpartum-treatmentpg__gal {
    max-width: 1100px;
    margin: 0 auto;
}

.at-prenatal-postpartum-treatmentpg__gal .am-col4 {
    margin: 0 40px 40px 0;
    width: calc(100% / 12*4 - 40px);
}

.at-prenatal-postpartum-treatmentpg__gal .am-col4 img {
    width: 100%;
}

.at-prenatal-postpartum-treatmentpg__gal .am-col4.mrg-0 {
    margin: 0;
}

#at-prenatal-postpartum-treatmentpg .am-flex.wrap {
    justify-content: space-between;
}

.at-prenatal-postpartum-treatmentpg__desc.pd-adj {
    padding: 0 0 50px;
	font-size: 16px;
	width: 95%;
	margin: 0 auto;
}

.at-senior-chiropractic-care__cont {
    max-width: 1100px;
    margin: 40px auto 0 auto;
}

/* .at-senior-chiropractic-care__item .am-col6:last-child {text-align: center;}
 */
.at-senior-chiropractic-care__item2 .am-col6:last-child {
    text-align: start;
}

#at-senior-chiropractic-care span.subtitle-1 {
    margin: 40px 0;
    text-align: center;
    display: block;
}

.at-senior-chiropractic-care__item2 .am-col6:first-child {
    margin: 0 30px 0 0;
    width: calc(100% / 12*6 - 30px);
}

.at-senior-chiropractic-care__item2 {
    margin: 30px 0 0;
}

.at-senior-chiropractic-care__text.benefits {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 40px;
}

.at-senior-chiropractic-care__gal {
    padding: 0 0 50px;
}

.at-senior-chiropractic-care__gal .am-col3 {
    margin: 0 30px 20px 0;
    width: calc(100% / 12*3 - 30px);
    text-align: center;
}

.at-senior-chiropractic-care__gal .am-col3.mrg-0 {
    margin: 0;
}

.first-img {
    margin: 0 20px 0 0;
}

.at-senior-chiropractic-care__gal .am-flex.wrap {
    justify-content: space-between;
}

#at-fees div#bnr_atsumi img {
    width: 100%;
}

.at-fees__cont {
    max-width: 1100px;
}

.at-notes__cont {
    max-width: 865px;
    margin: 0 auto;
    padding: 0 0 50px 0;
}

.fc-yellow {
    color: #F69802;
}

#at-faq div#bnr_atsumi img {
    width: 100%;
}

.at-faq__item span {
    display: block;
}

.at-faq__item {
    margin: 0 0 30px;
	background-color: #fff;
}

h3.faq__question {
    font-size: 16px;
    margin: 0;
	position: relative;
}

.faq__question span {
    display: inline-block;
    color: #000;
    width: 40px;
    height: 40px;
    text-align: center;
    justify-content: center;
    padding: 0 0 0 2px;
    font-weight: 700;
	margin: 0 20px 0 0;
	align-content: center;
	font-size: 30px;
}

.faq__question {
    border: 1px solid #000;
/* 	border-width: 1px 1px 0 1px; */
    padding: 14px;
	align-items: center;
}

.faq__answer span {
    display: inline-block;
    background-color: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    justify-content: center;
    padding: 0 0 0 2px;
    font-weight: 700;
	margin: 0 20px 0 0;
	align-content: center;
}

.show .faq-pg__answer {
    max-height: 500px;
    padding: 18px;
	border: 1px solid #d55757;
}

.faq__question h3 {
    margin: 0;
    font-size: 16px;
}

/* .faq__question:after {
	content: "\f054";
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	color: #000;
	transition: transform 0.5s ease;
	font-weight: 600;
	color: #000;
}

.at-faq__item.show .faq__question:after {
    transform: translateY(-50%) rotate(90deg);
} */

.faq__answer span {
    display: inline-block;
    background-color: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    justify-content: center;
    padding: 4px 8px;
	font-size: 30px;
    font-weight: 700;
	margin: 0 20px 0 0;
	align-content: center;
}

.faq__answer {
/*     border: 1px solid #000;
	border-width: 0 1px 1px 0; */
	align-items: center;
	padding: 10px 15px;
/* 	max-height: 0;
	transition: max-height 0.25s ease, padding 0.25s ease; */
	overflow: hidden;
}

.show .faq__answer {
    max-height: 500px;
    padding: 18px;
/* 	border: 1px solid #000; */
}

.faq__question h3 {
    margin: 0;
    font-size: 16px;
}

.at-faq__cont {
    padding: 0 0 50px 0;
}

.at-inquiry__cont {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 50px 0 30px;
}

table.tbl-enquiry {
    width: 100%;
    border-collapse: collapse;
    max-width: 1040px;
    margin: 0 auto;
}

table.tbl-enquiry tr {
    margin-bottom: 10px;
}

table.tbl-enquiry tr td:first-child {
    width: 33%;
    color: #000;
    text-align: left;
    position: relative;
    top: -8px;
    font-size: 16px;
}

table.tbl-enquiry tr td:last-child {
    width: auto;
    text-align: left;
    vertical-align: middle;      
}

table.tbl-enquiry tr td span.required-blue {
    background: #D55757;
    color: #fff;
    border: 1px solid #D55757;
    border-radius: 25px;
    width: fit-content;
    padding: 5px 30px;
    text-align: center;    
    font-size: 14px;
    margin-right: 10px;
}

table.tbl-enquiry tr td span.norequired {
    background: #EDA4A4;
    color: #fff;
    border: 1px solid #D55757;
    border-radius: 25px;
    width: fit-content;
    padding: 5px 30px;
    text-align: center;    
    font-size: 14px;
    margin-right: 10px;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required.form-control3 {
    font-size: 16px;
    margin-left: -20px;
    position: relative;
    top: 15px;
}

table.tbl-form p {
    color: #000;
    position: relative;
    top: 10px;
}

table.tbl-enquiry p {
    font-size: 16px;
}

#inquiry .btn-submit {
    display: block;
    margin: 60px auto 40px;
}

#inquiry-form input[type="checkbox"] {
    outline: 1px auto #009EC0;
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
}

table.tbl-enquiry ::placeholder {
  color: rgba(167, 163, 163, 1);
}

table.tbl-enquiry ::-ms-input-placeholder { /* Edge 12 -18 */
  color: rgba(167, 163, 163, 1);
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    padding: 10px;
    font-size: 16px;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    width: 100%;
    padding: 10px;
}

textarea {
    width: 100%;
    padding: 10px;
}

span.wpcf7-list-item-label {
    color: #000;
}

table.tbl-form {
    width: 100%;
    border-collapse: collapse;
    max-width: 1040px;
    margin: 0 auto;
}

table.tbl-form tr {
    margin-bottom: 10px;
}

table.tbl-form tr td:first-child {
    width: 30%;
    color: #000;
    text-align: left;
    position: relative;
    top: -8px;
    font-size: 16px;
}

table.tbl-form tr td:last-child {
    width: auto;
    text-align: left;
    vertical-align: middle;    
}

table.tbl-form tr td span.required {
    background: #ff901e;
    color: #fff;
    border-radius: 25px;
    width: fit-content;
    padding: 5px 30px;
    text-align: center;
    float: right;
    font-size: 14px;
    margin-right: 40px;
}



.form-control {
    height: 37px;
    border: 1px solid #593004;
    width: 100%;
    border-radius: 1px;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
}

.form-control02 {
    height: 175px;
    border: 1px solid #593004;
    width: 100%;
    border-radius: 1px;
    font-size: 16px;
}

textarea {
    font-size: 16px;
}

.btn-submit {
    background: #f19602;
    color: #fff;
    border: none;
    padding: 0 40px;
    width: fit-content;
    margin: 40px auto -16px;
    cursor: pointer;
    text-align: center;
    display: block;
	border-radius: 30px;
}

.btn-submit span {
    font-size: 16px;
    position: relative;
    top: -10px;
}

.btn-submit .img-arrow {
    position: relative;
    top: 5px;
    right: -16px;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #000;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {    
    color: #dc3232 !important;
    text-align: center;
    width: fit-content;
    display: block;
    margin: 30px auto;
    padding: 5px 30px;
}

.tal-c {
    text-align: center;
}

.at-inquiry__cont.mrg-adj {
    margin: 0 auto;
    padding: 0 0 40px;
}

.at-book-appt__cont {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 0 50px 0;
}

#at-staff-profile .am-col8 {
    width: calc(100% / 12*8 - 80px);
    margin: 0 80px 0 0;
}

.at-staff-profile__cont {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 0 0 50px;
}

.at-staff-profile__title {
	font-weight: bold;
	font-size: 20px;
}

#at-staff-profile2 .am-col8 {
    width: calc(100% / 12*8 - 80px);
    margin: 0 80px 0 0;
}

.at-staff-profile2__cont {
    max-width: 1200px;
    margin: 0 auto 0 auto;
    padding: 50px 0;
}

#at-staff-profile2 .am-col4 {
    text-align: center;
}

.at-philosophy-mission__cont {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 0 50px;
}

.at-philosophy-mission__title {
	font-weight: bold;
	font-size: 20px;
}

.at-philosophy-mission__img span {
    display: block;
    font-size: 20px;
    color: #F69802;
	font-weight: 700;
}

.at-philosophy-mission__img {
    text-align: center;
    margin: 20px 0;
}

.at-philosophy-mission__img img{
    margin: 20px 0 50px;
}


.at-oath__cont {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 0 50px;
}

.at-gallery-pg__cont {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* .slick-list.draggable img {
    margin: 0 10px;
} */

.slick-prev {
    left: 0;
    z-index: 5;
    transform: translate(-80%, -100%);
}

.slick-next {
    right: 0;
    z-index: 5;
    transform: translate(80%,-100%);
}

.slick-prev:before {
    content: '🔺'!important;
}

.at-gallery__slider-cont {
    margin: 30px 0 0;
}

#at-gallery-pg h3.subtitle-1 {
    margin: 0 0 15px;
}

.slick-prev:before {
	content: '\f0d9';
	font-family: 'FontAwesome';
    color: #f69802;
    font-size: 45px;
}

.slick-next:before {
	content: '\f0da';
	font-family: 'FontAwesome';
    color: #f69802;
    font-size: 45px;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0px;
}

.slick-prev:before {
	content: '\f053';
	font-family: 'FontAwesome';
	color: #f69802;
    font-size: 20px;
	background: #FFFE;
	padding: 20px 8px;
}

.slick-next:before {
	content: '\f054';
	font-family: 'FontAwesome';
    color: #f69802;
    font-size: 20px;
	background: #FFFE;
	padding: 20px 8px;
}

.slider__item .slick-prev {
    left: 40px;
}

.slider__item .slick-next {
    right: 40px;
}

.slider__item .slick-prev:before {
    font-size: 45px;
}

.slider__item .slick-next:before {
    font-size: 45px;
}

#at-gallery-pg .slick-next {
	right: 33px;
}

#at-gallery-pg .slick-prev {
	left: 28px;
}

.at-gallery__slider-cont.last {
    padding: 0 0 50px;
}

.at-gallery__slider {
    width: calc(100% - 40px);
    margin: 0 auto;
}

.at-whatis__desc.mrg-adj {
    margin: 65px 0 0 0;
}

.fs-24 {
	font-size: 24px;
}

.fs-20 {
	font-size: 20px;
}

.slider__side-btn a {
    color: #fff;
    text-decoration: none;
}

.at-procedure__item-subtitle {
    text-align: center;
    display: block;
    background-color: #F19602;
    width: fit-content;
    padding: 2px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 20px;
}

#bnr_atsumi.voices-banner {
    margin: 0 0 -10px;
}

#bnr_atsumi.treatment-banner {
    margin: 0 0 -10px;
}

.at-philosophy-mission__img img {
    width: 350px;
    height: 230px;
    object-fit: contain;
}

.btn-cont {
    padding: 0 0 50px;
}

#bnr_atsumi.thanks-banner {
    margin: 0 0 -10px;
}

section#at-thanks .at-inquiry__cont {
    margin: 0 auto;
}

.tal-c.fees-img {
    margin: 40px 0 0 0;
	padding: 0 0 50px;
}

#at-fees .at-title {
    margin: 0 0 40px;
}

.sh-book-appt {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 40px 0;
}

#at-faq .at-title {
    margin: 0 0 50px;
    padding: 70px 0 0;
}

#at-testimonials .am-col4 img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.hdr__navi-menu .tabbed {
    position: relative;
}

.hdr__navi-tab {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	transition: 0.25s ease;
	max-height: 0;
	overflow: hidden;
	width: auto;
	position: absolute;
	left: 50%;
	top: calc(100% + 37px);
	background: #FFF;
	transform: translateX(-50%);
}

.hdr__navi-tab.active {
	max-height: 500px;
}

.hdr__navi-tabitem {
	padding: 10px 20px;
	border-bottom: 2px solid #F19602;
}

.hdr__navi-tabitem:hover {
    background: #FFFD;
}

.hdr__navi-tabitem > a {
	color: #000;
	text-decoration: unset;
	position: relative;
	display: block;
}

/* .hdr__navi-tabitem > a::after {
	content: "\f054";
	font-family: 'Font Awesome 6 Free';
	margin: 0 0 2.5px 5px;
	border: 1px solid #f69802;
	border-radius: 50%;
	letter-spacing: 0;
	font-size: 9px;
	line-height: 1.6;
	color: #f69802;
	width: 14px;
	height: 14px;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	font-weight: 600;
} */

.fc-orange {
    color: #f19602;
}

.fs-12 {
    font-size: 12px;
}

.video-cont {
    max-width: 865px;
    margin: 50px auto 0 auto;
}

.at-procedure__item-desc {
    max-width: 1058px;
    margin: 50px auto 0 auto;
}

.at-procedure__item-desc.step5 {
    max-width: unset;
	margin: 0;
	justify-content: end;
}

.at-pro5 .am-col6:nth-child(2) {
    text-align: end;
}

.mrg-right {
    margin: 0 15px;
}

.am-flex.wrap.at-senior-chiropractic-care__item2 img {
    width: 250px;
    height: 170px;
}

.am-flex.wrap.at-senior-chiropractic-care__item img {
    width: 250px;
    height: 170px;
}

.at-senior-chiropractic-care__desc {
    margin: 0 0 30px;
}

.mgb-20 {
	margin-bottom: 20px;
}

#at-gallery-pg .slick-list.draggable .am-modal__min-btn img {
    margin: 0 10px 0 10px;
    width: 170px;
    height: 170px;
    object-fit: cover;
}

.fees-table1 table tr td, .fees-table2 table tr td, .fees-table3 table tr td {
    border: 1px solid #000;
    padding: 10px;
}

.fees-table1 table, .fees-table2 table, .fees-table3 table {
    border-collapse: collapse;
    width: 100%;
}

.fees-table3 table {
   margin: 0 0 40px;
}

.fees-table3 tr td:first-child {
    width: 29%;
}

.table2-desc {
    margin: 0 0 25px;
}

.at-senior-chiropractic-care__subtext {
    margin: 30px 0 0;
}

.at-senior-chiropractic-care__item .am-col6:first-child {
    margin: 0 30px 0 0;
    width: calc(100% /12*6 - 30px);
}

.mrg-20 {
    margin: 20px 0 0;
}

.wi-adj-2 {
    width: 245px;
    height: 330px;
}

.wi-adj-1 {
    width: 245px;
    height: 180px;
}

#bnr_atsumi.intro-banner {
	margin: 0 0 -10px;
}

#bnr_atsumi.at-banner.staff-introduction-banner {
	margin: 0 0 -10px;
}

h2.at-title {
    margin: 0;
}

#at-our-staff .at-btn__cont {
    margin: 50px 0 0;
}

#at-notes .at-title {
    padding: 50px 0;
}

div#wpcf7-f265-o1 {
    margin: 50px 0 0 0;
}

.btn-submit img {
    margin: 0 0 0 10px;
    width: 25%;
	padding: 0 0 4px 0;
}

.at-approach__title img {
    width: auto;
    height: 98px;
    display: block;
    margin: 0 auto;
}

.btn-pc {
	display: block;
}

.btn-sp {
	display: none;
}

.at-procedure__item-desc.at-mrg-adj {
    margin: 0 auto 30px auto;
}

.at-procedure__item.at-mrg-adj-ab {
	margin: 30px auto 0 auto;
}

.step5 > img:first-child {
    width: 32%;
}

.step5 > img:last-child {
    width: 56%;
}

.mgb-10 {
    margin-bottom: 10px;
}

.at-bnr__pix.cat img {
    object-fit: cover;
}

/*  Custom */
.slider__thumbs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.slider__thumbs .thumb-item {
    width: 150px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.slider__thumbs .thumb-item.active {
    opacity: 1;
    border: 2px solid #your-accent-color;
}

.slider__thumbs .slick-slide img {
    cursor: pointer;
}

.slider__dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 20px;
}

.slider__dot {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(241, 150, 2, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider__dot.active {
    background-color: #F19602;
}

.at-testimonials__item p {
    margin: 0 0 15px 0;
}

.ftr-phone-num a {
    text-decoration: none;
    color: #000;
}

.fees-link {
    color: #000;
    text-decoration: none;
}

.am-modal__close-btn {
    position: absolute;
    left: 50%;
	bottom: 15px;
	transform: translateX(-50%);
    background: #fff;
    border: none;
    padding: 10px 20px;
	background-color: #593004;
	color: #fff;
    cursor: pointer;
    z-index: 10;
}

.ftr-sns-logo_img.yt-icon {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.slider__side-btn.line-btn {
    background-color: #06c755;
    /* top: 30%; */
    top: calc(110px + 205px);
    padding: 15px 10px 0;
    width: auto;
}

.slider__side-btn.tel-btn {
    background-color: #593004;
    /* top: 30%; */
    top: calc(110px + 120px);
    padding: 15px 10px 0;
    width: auto;
	height: 70px;
}

.slider__side-btn.line-btn img {
    width: 52px;
}

.slick-next, .slick-prev {
    top: 50%;
    transform: translateY(-50%);
	width: auto;
	height: auto;
}

.slider__item .slick-next:before {
    font-size: 20px;
}

.slider__item .slick-prev:before {
    font-size: 20px;
}