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

@font-face {
	font-family: Yu Gothic UI;
	src: url('../font/YuGothM.ttc') format('opentype')
}

@font-face {
	font-family: Century Gothic ;
	src: url('../fonts/centurygothic.ttf') format('opentype')
}

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	line-height: 32px;
	color: #000;
	font-weight: 400;
}

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-col12 {
	width: calc(100% / 12 * 12);
}

.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;
}

.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 {
	background-color: #F37B0B;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	font-family: "Noto Sans JP";
}

.hdr__layout {
	height: 100px;
}

.hdr__logo {
    margin: 0 auto 0 0;
}

.hdr__logo>a>img {
	/* height: auto; */
	height: 60px;
	vertical-align: middle;
	padding-bottom: 10px;
}

.hdr__navi-menu {
	display: block;
}

.hdr__navi-menu {
	display: flex;
	justify-content: flex-end;
	padding: 0;
	margin: 0 10px 0 0;
	width: 450px;
	font-family: 'BIZ UDPGothic';
	align-self: center;
}

.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: #fff;
	font-weight: 400;
	padding: 5px 20px;
	width: calc(100% - 40px);
	display: block;
	white-space: nowrap;
	font-size: 18px;
	font-family: "BIZ UDPGothic", sans-serif;
}

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

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

.hdr__logo a {
    color: #fff;
    text-decoration: none;
}
.hdr__logo span {
    display: block;
}

.hdr__logo small {
    font-size: 20px;
	display: block;
}

.hdr__navi-button {
    background-color: #3C2A16;
    width: 130px;
    display: block;
    text-align: center;
    line-height: 1.5;
    padding: 8px 30px 10px 20px;
    position: relative;
}

a.hdr__navi-button {
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
	font-family: 'BIZ UDPGothic';
}

img.hdr__arrow {
    width: 15%;
    vertical-align: bottom;
}

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

.hdr__menu-btn {
	position: absolute;
	top: calc(90px / 2);
	right: 15px;
	border: 2px solid #000;
	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: #000;
	display: block;
	margin: 8px 0;
	transition: 0.5s ease;
	opacity: 1;
}

header.hdr__menu--show {
	height: 100vh;
	overflow: auto;
}

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

.bnr__pix > video {
	width: 100%;
	height: auto;
}

.bnr__ov {
	position: absolute;
	bottom: 25px;
	right: 10px;
}

/* Project styling ---------------------------------------------*/

#sect-intro {
    color: #fff;
	padding: 0 0 50px;
}

.intro__item {
    font-size: 16px;
    text-align: center;
}

.intro__item-pix {
    background: transparent;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    padding: 50px;
    margin: 0 auto;
}

.intro__item-pix > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.intro__item-subtext {
    margin: 30px 0 0;
    font-size: 16px;
}

h3.intro__item-title {
    margin: 0;
    padding: 0;
    font-size: 25px;
}

#sect-about {
    color: #fff;
}

.af-title {
    text-align: left;
    font-size: 60px;
	margin: 0 0 50px;
}

.af-title.style2 {
    text-align: left;
    font-size: 30px;
    margin: 0 0 30px;
}

#sect-case .af-title.style2 {
    font-size: 35px;
}

.af-title.style2 > span {
    margin: 0 20px 0 0;
}

.af-text {
    font-size: 16px;
}

.af-tech-style1 > .af-text {
	width: 75%;
	margin: 0 0 0 auto;
}

.about__cont {
    text-align: left;
}

.about__cont a {
    color: #fff;
    text-decoration: none;
/*     margin: 0 60px 0 0;
    font-size: 30px; */
	margin: 0 30px 0 0;
	font-size: 1.5vw;
}

.news__item,
.links__item {
    display: flex;
    padding: 40px 0;
    border-bottom: 1px solid #1a2a58;
    color: #FFF;
    text-decoration: unset;
}

.news__cont.am-content {
    width: 70%;
    padding-left: 30%;
}

.news__item-date {
    width: 140px;
}

.news__item-txt {
    width: calc(100% - 140px);   
}

.links__cont.am-content {
    width: 70%;
    padding-left: 30%;
}

.links__item-desc {
    margin:0 20px 0 0;   
}

.links__item-link > a{
	color: #FFF;
	text-underline-offset: 4px;
}

.inq__btn {
    display: block;
    padding: 100px 20px;
    text-align: center;
    color: #FFF;
    text-decoration: unset;
    background: url(./images/btn-02.png);
	background-repeat: no-repeat;
	position: relative;
}

.inq__btn > span {
    position: relative;
    display: inline-block;
	font-size: 28px;
}

.inq__btn > span::after {
    content: "";
    width: 38px;
    height: 12px;
    border: solid #FFF;
    display: block;
    position: absolute;
    top: 45%;
    right: -56px;
    border-width: 0 3px 2px 0;
    transform: skew(50deg, 0deg) translateY(-50%);
}

.af-btn__cont {
	text-align: center;
	margin: 50px 0 0;
}

.ku-btn {
    display: inline-block;
    height: 50px;
    line-height: 2;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    width: 132px;
    background-color: #fff;
    border-radius: 20px;
}

span.wpcf7-spinner {
    display: block;
}

#sect-prod-details {
    padding: 60px 0;
}
/*kenji*/
.prd-intro__cont {
    text-align: center;
}
/*.prd-intro__cont {
    text-align: left;
}*/

.prd-intro__cont > p {
    font-size: 20px;
}

.prd-intro__hlight {
    font-size: 30px;
    font-weight: 700;
	line-height: 1.8;
}

.prd-sidepix {
    margin: 40px 0 0;
}

.prd-sidepix__pix {
    width: calc(100% - 50px);
/*     margin: 0 0 0 50px; */
    background: #FFF;
    text-align: center;
    padding: 36px 0;
}

.prd-sidepix__title {
    position: relative;
}

.prd-sidepix__title::after {
    content: "";
    width: calc(100% - 60px);
    height: 1px;
    background: #8c8d8e;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
}

.case__pix > iframe {
    width: 100%;
    height: 25vw;
    max-height: 360px;
}

.case__pix {
    width: calc(100% - 20px);
    margin: 0 auto 0 0;
}

.case__row > div:nth-child(2n) .case__pix {
    margin: 0 0 0 auto;
}

.case__pix-caption {
    text-align: center;
	font-size: 18px;
	margin: 0 0 40px;
}

.contact__item {
    display: flex;
    margin: 0 0 30px;
	padding: 10px;
}

.contact__item-lbl {
    width: 170px;
}

.contact__item-field {
    width: calc(100% - 170px);
}

.contact__item-field > input[type='text'], .contact__item-field > textarea {
    width: calc(100% - 32px);
    padding: 15px;
    border: 1px solid #163a6e;
    background: #000;
    color: #FFF;
}

.contact__item-field > span > input[type='text'], .contact__item-field > span > textarea, .contact__item-field > span > input[type='email'] {
    width: calc(100% - 32px);
    padding: 15px;
    border: 1px solid #163a6e;
    background: #000;
    color: #FFF;
	font-size: 16px;
}

.contact__item-field > span > textarea {
    width: calc(100% - 32px);
    min-height: 150px;
}

.contact__chkbox {
    margin: 60px auto 70px auto;
    width: fit-content;
}

.contact__chkbox > input[type='checkbox'] {
    color: #FFF;
    background: #000;
    border: 1px solid blue;
}

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

.contact__cont {
    padding: 40px 0;
}

.prd-intro__cont a {
    color: #fff;
    text-decoration: none;
    margin: 0 40px;
    font-size: 30px;
}

.mgt-50 {
	margin-top: 50px;
}

header .ftr__cont {
    display: none;
}

#sect-news .af-title {
    text-align: left;
}

.side-title a {
    display: inline-block;
}

.side-title a:last-child {
    margin: 20px 0 0;
}


/* Footer --------------------------------------------------------------------- */

.force__cont .prd-sidepix__pix {
    padding: 0;
}

/* .hdr__navi-menu li.active a {
    color: blue;
} */

#sect-thanks .af-title.style2 {
    text-align: center;
}

.thanks__cont {
    text-align: center;
}

section#sect-thanks {
    min-height: calc(100vh - 676px);
}

.side-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.side-title .af-title {
    width: 30%;
}

.side-title .am-content {
    width: 70%;
	margin: 70px 0 0;
}

.intro__item-subtext.price {
    margin: 0;
}

#sect-product-spidarg p {
    margin: 0 0 20px;
}

.prd-sidepix__price {
    text-align: right;
    margin: 30px 0 0 0;
	font-size: 30px;
    padding: 0 100px 0 0;
}

#sect-product-spidargs p {
    margin: 0 0 20px;
}

#sect-product-spidarw p {
    margin: 0 0 20px;
}

/* #sect-inertia .inertia__cont {
    display: flex;
}

#sect-inertia .af-title.style2 {
    width: 25%;
}

#sect-inertia .af-text {
    margin: 40px 0 0;
    width: 75%;
}

#sect-stiffness .stiffness__cont {
    display: flex;
}

#sect-stiffness .af-title.style2 {
    width: 25%;
}

#sect-stiffness .af-text {
    margin: 40px 0 0;
    width: 75%;
}

#sect-degree-freedom .degree-freedom__cont {
    display: flex;
}

#sect-degree-freedom .af-title.style2 {
    width: 25%;
}

#sect-degree-freedom .af-text {
    margin: 40px 0 0;
    width: 75%;
}

#sect-realization-wearable .prd__cont {
    display: flex;
}

#sect-realization-wearable .af-title.style2 {
    width: 25%;
}

#sect-realization-wearable .af-text {
    margin: 40px 0 0;
    width: 75%;
}

#sect-cost .cost__cont {
    display: flex;
}

#sect-cost .af-title.style2 {
    width: 25%;
}

#sect-cost .af-text {
    margin: 40px 0 0;
    width: 75%;
} */


.case__cont-item {
    margin: 40px 0 0;
}

#sect-case .am-col6 img {
    margin: 0px 15px 0 0;
    width: calc(100% - 30px);
}

.item-text span {
    font-size: 14px;
}

.item-text {
    font-size: 18px;
}

.item-cont {
    margin: 30px 0;
}

.ftr {
    font-size: 16px;
}

.ftr__cpright {
    font-size: 15px;
}

.ftr__navi-menu {
    align-items: flex-start;
}

.ftr__cont {
    padding: 60px 0 30px;
}

.ftr__socmed-link {
    color: #FFF;
    text-decoration: unset;
}

.ftr__cpright {
    background: #994928;
    color: #FFF;
    padding: 10px;
    text-align: center;
    position: absolute;
    width: calc(100% - 20px);
}

footer {
    background-color: #3C2A16;
	color: #fff;
}

.ftr.type2 .ftr__cont {
    text-align: center;
}

.ftr.type2 .ftr__logo,
.ftr.type2 .ftr__addr {
    margin: 0 0 20px;
}

.ftr.type2 .ftr__socmed-link,
.hdr__ftr .ftr__socmed-link {
    display: inline-block;
    background: #000;
    width: 200px;
    margin: 0 7px 40px;
    border: 1px solid #8f9195;
    border-radius: 20px;
}

.ftr.type2 .ftr__navi-menu {
    justify-content: center;
    margin: 0;
    width: 100%;
}

.ftr__cpright.type2 {
    background: #040d17;
    padding: 30px 0;
    text-align: center;
}

.ftr__addr {
    display: block;
    margin: 0 0 0 30px;
}

.slider__item {
    height: auto;
}

.slider__item > img,
.slider__item > video {
    height: auto;
    width: 100%;
    object-fit: contain;
/*     min-height: 675px; */
/* 	margin-top: -30px; */
	display: block;
}

.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;
    display: block;
    width: 100%;
    white-space: nowrap;
    padding: 0;
	margin: 0 0 50px;
}

.slider-navi button {
    background-color: unset;
    color: #000;
    border: unset;
    font-size: 35px;
    cursor: pointer;
    display: inline-block;
    width: fit-content;
    max-width: 15%;
    padding: 0 10px;
    margin: 0;
}

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

.slider__layout {
    position: relative;
}

.slider__ov {
    position: absolute;
    left: 50%;
    top: calc(50% - 45px);
    transform: translateY(-50%);
    width: auto;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
	font-family: 'BIZ UDPGothic';
}

.slider__ov-main-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 70px;
    margin: 0;
}

.slider__ov-sub-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
}

#sect-slider {
    background-color: #F6F6F6;
}

.news-cont {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 0 50px 0;
	color: #000;
}

.title-jp {
    font-size: 26px;
    display: block;
    margin: 0 0 25px 0;
    color: #000;
    text-align: center;
	font-weight: 700;
	line-height: 1.2;
}

.news-title {
	margin: 0 30px 0 0;
    background-color: #E1E7EF;
    padding: 10px;
    display: inline-block;
    font-size: 1rem;
    width: 132px;
    text-align: center;
}

.title1 {
    text-align: center;
}

.title-en {
    font-size: 24px;
    font-family: impact, sans-serif;
    color: #994928;
    text-align: center;
}

.am-bg-pix.sh-title-img img {
    object-fit: contain;
}

.fun-learn-sect {
    text-align: center;
}

.fun-learn-cont {
    margin: 0 auto;
    text-align: left;
    max-width: 1200px;
    width: calc(100% - 40px);
	position: relative;
}

.fun-learn-cont__img {
    margin: 0 25px 0 0;
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
}

.fun-learn-cont__txt {
    margin: 0 0 70px;
}

.fun-learn-cont__img2 {
    position: absolute;
    right: 0;
    top: -150px;
	max-width: 275px;
	height: auto;
}

#sect-news .title-en {
    font-size: 80px;
    font-family: impact, sans-serif;
    color: #000;
}

.message-desc {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 40px 0;
    line-height: 2;
}

.message-cont {
    max-width: 1200px;
    margin: 0 auto;
    color: #000;
    padding: 50px 15px;
}

.ku-sh {
    color: #33BA12;
    display: block;
    font-size: 30px;
    text-align: center;
    margin: 0 0 10px;
}

.tal-r {
    display: block;
    text-align: right;
}

.message-item .am-col5 img {
    border-radius: 30px;
}

.concept-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

figcaption {
    text-align: center;
    border: 1px solid;
}

.concept-cont .am-col4 img {
    width: 100%;
}

.concept-cont .am-col4 {
    margin: 0 30px 0 0;
}

.am-col4.concept-item:last-child {
    margin: 0;
}

.concept-item__cont {
    margin: 50px 0 0;
}

.main-patients-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 15px;
}

#sect-main-patients .title1 .title-en {
    color: #000;
}

.main-patients-item__cont {
    margin: 50px 0 0;
}

.main-patients-item {
    background-color: #FDFF90;
    margin: 0 20px 20px 0;
    padding: 15px;
    height: 8vh;
    border-radius: 15px;
	align-items: center;
    display: flex;
}

.main-patients-button {
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
	background-color: #fff;
	transition: 0.5s;
	font-size: 16px;
	color: #000;
}

#sect-main-patients .btn-cont-main-patients.first {
    text-align: right;
	margin: 50px 15px 0 0;
}

.services-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.services-cont .am-col5 {
    margin: 0 30px 0 0;
}

.services-item {
    margin: 50px 0 0 0;
}

#sect-main-patients .am-col6:first-child {
    margin: 0 50px 0 0;
}

.btn-cont-services {
    text-align: center;
    margin: 30px 0 0;
}

.advantages-item {
    margin: 50px 0 0;
}

.advantages-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

#sect-advantages .title-en {
    color: #000;
}

.advantages-icon .am-col3 img {
	width: 130px;
	height: 130px;
	object-fit: contain;
	filter: opacity(0.5);
}

.advantages-icon .am-col3 {
    text-align: center;
}

.advantages-icon {
	margin: 50px 0 0;
}

.patient-voices-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.patient-voices-cont .am-col4 {
    margin: 0 30px 0 0;
}

.patient-voices-item {
    margin: 50px 0 0;
}

.patient-voices-item h3 {
    font-size: 24px;
}

.patient-voices-item .am-bg-pix > img {
    object-fit: contain;
}

.patient-voices-cont .am-col4.mrg-left {
    margin: 0 0 0 30px;
}

.btn-patient-voices, .btn-staff-intro {
    text-align: center;
    margin: 50px 0 0;
}

.btn-patient-voices button, .btn-staff-intro button {
    font-size: 24px;
}

.btn-cont-services button, .btn-staff-intro {
    font-size: 24px;
}

#sect-main-patients .btn-cont-main-patients {
    margin: 50px 0 0 0;
}

.staff-intro-item {
    margin: 50px 0 0;
}

#sect-staff-intro .title1 .title-en {
    color: #000;
}

.btn-staff-intro button {
    font-size: 24px;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #fff;
	transition: 0.5s;
	color: #000;
}

.access-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.access-item {
    margin: 50px 0 0;
}

.access-item .am-col6:first-child {
    margin: 0 40px 0 0;
}

.access-item span {
    display: block;
}

.access-item .am-col6 a {
    color: #000;
}

.btn-access button {
    font-size: 24px;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #f2f7c9;
	border: none;
	transition: 0.5s;
	color: #000;
}

.btn-access {
    text-align: center;
    margin: 50px 0 0;
}

.instagram-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.instagram-item {
    margin: 50px 0 0;
}

.instagram-item .am-col3 img {
	width: 250px;
	height: 250px;
}

.instagram-item .am-col3 {
    margin: 0 20px 40px 0;
    width: calc(100% / 4 - 40px);
}

.instagram-item .am-col3.mrg-0 {
    margin: 0 0 20px 0;
}

.blog-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 0 50px 0;
}

.blog-item {
    margin: 30px 0 0;
}

#sect-blog .title-en {
    color: #000;
}

.blog-title {
    background-color: #fff;
    border: 1px solid;
    padding: 5px 15px;
}

.blog-item img {
    width: 100%;
}

.blog-item .am-col4 {
    margin: 0 40px 0 0;
}

.faq-cont {
    max-width: 1200px;
    margin: 0 auto;
	padding: 50px 0;
}

.faq-item {
    margin: 50px 0 0;
}

.faq-question {
    background-color: #00983C;
    color: #fff;
    padding: 10px 20px;
	margin: 0;
}

.faq-question span {
    font-size: 30px;
    margin: 0 10px 0 0;
	font-family: impact, sans-serif;
}

span.faq-answer {
    display: flex;
	border: 1px solid;
}

.faq-answer p {
    font-size: 30px;
    margin: 0 10px 0 0;
    font-weight: 700;
	font-family: impact, sans-serif;
}

.faq-answer {
    padding: 10px 20px;
}

.btn-faq {
	justify-content: center;
	margin: 50px 0 0;
}

.faq-button {
    font-size: 24px;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #f2f7c9;
}

.faq-button.first {
    margin: 0 80px 0 0;
}

.faq-button, .patients-button  {
    font-size: 24px;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #f2f7c9;
	transition: 0.5s;
	color: #000;
}

.services-button  {
    font-size: 24px;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #fff;
	border: none;
	transition: 0.5s;
	color: #000;
}

.message-item .am-col5 {
    margin: 0 30px 0 0;
}

.blog-item .am-col4:last-child {
    margin: 0;
}

.news-item {
    font-size: 24px;
    line-height: 1.8;
	padding: 0 0 10px 0;
}

.main-patients-button:hover {
    background-color: #00983C;
    color: #fff;
}

.services-button:hover {
    background-color: #00983C;
    color: #fff;
}

.patients-button:hover, .staff-intro-button:hover, .access-button:hover, .faq-button:hover {
    background-color: #00983C;
    color: #fff;
}

.blog-item a {
    text-decoration: none;
    color: #000;
}

.patient-voices-cont article:nth-of-type(even) .am-col4 {
    order: 1;
	margin: 0 0 0 40px;
}

.about-us-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 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% - 20px);
    margin-right: auto;
}

.vid-frame {
    position: relative;
    width: 100%;
    height: auto;
}

.slider__item-aboutus > video,
.slider__item-aboutus > iframe {
    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;
}

.slider-nav__arrows-aboutus {
	width: calc(100% - 60px);
	margin-right: auto;
}

.slider__item-aboutus {
	width: 100%;
	height: 100%;
}

.about-us-item {
	margin-top: 80px;
}

.about-us-item .am-col8 {
    align-content: center;
}

.content-wrap {
    padding: 0 30px
}

.btn-about-us {
    text-align: left;
    /* margin: 300px 0 0 110px; */	
    margin: -110px 0 0 110px;
}

.about-us-button {
    font-size: 24px;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #f2f7c9;
    transition: 0.5s;
    color: #000;
}

.about-us-button:hover {
    background-color: #00983C;
    color: #fff;
}

#sect-about-us button.slick-prev.slider-navi__prev.slick-arrow, #sect-about-us button.slick-next.slider-navi__next.slick-arrow {
	display: none!important;
}

.sect-banner__layout {
    width: 100%;
    height: auto;
}

.sect-banner__layout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	display: block;
	margin-top: 30px
}

.sect-banner__layout.lower-page {
    position: relative;
}

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

#sect-about-hospital .title-en {
    color: #000;
}

.target-users-cont {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

.target-users-item {
    margin: 30px 0 0;
}

.target-users-item h3 {
    margin: 0;
	font-size: 24px;
}

.about-hospital-sh {
    font-size: 24px;
	font-weight: 700;
}

.target-users-item__img img {
    width: 90px;
}

.target-users-item .am-col3 {
	text-align: center;
}

.target-users-item__img {
    align-content: center;
}

#sect-about-hospital .title1, #sect-target-users .title1  {
    margin: 0 0 50px;
}

.treatment-flow-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.treatment-flow-subcont {
    max-width: 1200px;
    margin: 80px auto 0 auto;
}

.target-users-item__img {
    text-align: center;
}

.treatment-flow-item__sh {
    font-size: 24px;
    margin: 0;
}

.treatment-flows-item {
    margin: 30px 0 0 0;
}

.treatment-flows-item:first-child {
    margin: 0;
}

.qna-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.qna-question {
    background-color: #33BA12;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    border: 1px solid #000;
}

.qna-item {
    margin: 30px 0 0;
}

article.qna-item.mgt-50 {
    margin: 50px 0 0;
}

.qna-question span {
    font-size: 30px;
    margin: 0 10px 0 0;
    font-family: Impact;
}

.qna-answer {
    padding: 15px;
    border: 1px solid #000;
    border-width: 0 1px 1px 1px;
}

.qna-answer span {
    font-family: Impact;
    font-size: 30px;
    margin: 0 10px 0 0;
}

.price-list-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.price-list-table1 {
   width: 100%;
    margin: 50px auto 0 auto;
}

.price-list-table1 table {
    width: 100%;
}

.price-list-table1 table tr:first-child td {
    background-color: #33ba12;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border: 1px solid #000;
}

.price-list-table1 table tr td {
    padding: 10px;
    text-align: center;
    border: 1px solid;
}

.price-list-table1 table {
    border-collapse: collapse;
}

#sect-treatment-flow .title1 .title-jp {
    color: #000;
}

#sect-treatment-flow .title1 .title-en {
    color: #000;
}

.prict-list-item {
    margin: 30px 0 0;
}

.prict-list-item h3 {
    margin: 0;
    background-color: #33ba12;
    padding: 9px 20px;
    color: #fff;
    font-size: 24px;
}

.prict-list-item span {
    background-color: #fff;
    display: block;
    padding: 5px;
}

.prict-list-item.mgt-50 {
    margin: 50px 0 0;
}

.reservation-inquiry-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

#sect-reservation-inquiry .title-en {
    color: #DDDDDD;
}

.reservation-inquiry-cont p {
    font-weight: 700;
}

.contact__item-lbl {
    width: 25%;
	align-self: center;
}

.contact__item-field {
    width: calc(74% - 22px);
}

.contact__item-field > input[type='text'], .contact__item-field > textarea {
    width: calc(100% - 32px);
    padding: 15px;
    border: 1px solid #163a6e;
    background: #000;
    color: #FFF;
}

.contact__item-field > span > input[type='text'], .contact__item-field > span > textarea, .contact__item-field > span > input[type='email'] {
    width: calc(100% - 32px);
    padding: 15px;
    border: 1px solid #163a6e;
    background: #fff;
    color: #000;
	font-size: 16px;
}

.contact__item-field > span > textarea {
    width: calc(100% - 32px);
    min-height: 150px;
}

.contact__chkbox {
    margin: 60px auto 70px auto;
    width: fit-content;
}

.contact__chkbox > input[type='checkbox'] {
    color: #FFF;
    background: #000;
    border: 1px solid blue;
}

.contact__submit {
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: center;
}

.contact__cont {
    padding: 40px 0;
}

.contact__item {
    background-color: #fff;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    padding: 15px;
	border: 1px solid #ccc;
	width: 100%;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    width: 100%;
    border: 1px solid #ccc;
    padding: 15px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 15px;
}

input.wpcf7-form-control.wpcf7-text.walcf7-datetimepicker {
    margin: 0 0 10px;
}

.reservation-inquiry-subcont span {
    background-color: #33BA12;
    display: block;
    color: #fff;
    padding: 0 0 0 10px;
}

.reservation-inquiry-subcont p {
    font-weight: 400;
    background-color: #fff;
    margin: 0;
    padding: 15px;
}

span.reservation-inquiry-sh {
    font-size: 24px;
    background-color: #fff;
    color: #000;
}

table.ftr__table tr td {
    background-color: #fff;
    border: 1px solid;
    padding: 10px;
}

.ftr__table {
    border-collapse: collapse;
	table-layout: fixed;
    width: 100%;
	text-align: center;
}

.ftr__table tr td:first-child {
    width: 30%;
}

.ftr__table tr td {
    width: 10%;
}

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

.ftr__addr .am-flex img {
    margin: 0 20px 0 0;
}

.ftr__cont .am-col6 iframe {
    width: 100%;
    height: 440px;
}

table.price-list2 {
    width: 100%;
    margin: 20px 0 0;
    border-collapse: collapse;
}

table.price-list2 tr td {
    border: 1px solid;
    background-color: #fff;
    text-align: center;
    padding: 5px 0 5px 20px;
}

table.price-list2 tr td:first-child {
    text-align: left;
    width: 50%;
}

h1.hdr__logo {
    font-size: 32px;
	font-family: Century Gothic;
	font-weight: 700;
}

.price-list-item-caption {
    margin: 10px 0 40px;
}

.price-sh {
    font-size: 24px;
}

.price-list-desc {
    margin: 0 0 40px;
}

.price-list-table1.tr-pg tr td {
    width: calc(100% / 3);
}

.ftr__addr h3 {
    font-size: 20px;
	font-family: 'Century Gothic';
    font-weight: 700;
}

.ftr-logo {
    margin: 0 0 20px;
}

.am-col6.sns-images {
    align-self: end;
    text-align: end;
}

img.sns-icon.mrg-0 {
    margin: 0;
}

#sect-concept .title-en {
    color: #000;
}

.concept-sh {
    background-color: #FDFF90;
    margin: 0;
	font-size: 24px;
    padding: 5px;
}

.concept-item {
    background-color: #fff;
    margin: 0 0 20px;
}

.concept-item__desc {
    padding: 5px;
    display: block;
}

#sect-concept .title1 {
    padding: 0 0 30px;
}

.concept-img img {
    width: 100%;
}

.concept-img {
    margin: 100px 0 30px;
}

#sect-patient-voices .title-en {
    color: #000
}

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

.staff-intro-cont .am-col4.mrg-right {
    margin: 0 60px 0 0;
}

.staff-intro-cont .am-col4.mrg-left {
    margin: 0 0 0 60px;
}

#sect-staff-intro-pg .title-en {
    color: #000;
}

.staff-intro-item:nth-child(odd) .am-col4 {
	order: 2;
	margin: 0 0 0 60px;
}

.logo-text-ft-sm {
	font-size: 32px;
	display: block;	
}

.img-price {
	width: 100%;	
}

.patient-voices-item img {
	border-radius: 25px;
}

.slider-button {
    background-color: #3C2A16;
    color: #fff;
    width: 42%;
    margin: 10px auto 0 0;
    border-radius: 30px;
    text-align: center;
    padding: 10px 10px 10px 2px;
    position: relative;
}

a.slider-button {
    text-decoration: none;
}

.slider-button img {
    width: 8%;
}

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

.ftr__tel {
    display: block;
    margin: 20px 0 0 0;
}

.ftr__tel a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

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

.ftr-btn {
    background-color: #F37B0B;
    display: block;
    text-align: center;
    line-height: 1.5;
    margin: 15px 0 0;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    display: flex;
	position: relative;
	padding: 10px 15px 10px 5px;
    width: 30%;
}

a.ftr-btn {
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
}

img.hdr__arrow {
    width: 20px;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-button img.hdr__arrow {
   	width: 20px;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 60%;
    transform: translateY(-50%);
}

.senior-junior-item__cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 55px;
    justify-content: space-between;
}

.senior-junior-item span {
    display: block;
    text-align: center;
}

.am-col4.senior-junior-item {
    text-align: center;
}

#senior-junior .am-bg-pix > img {
    object-fit: contain;
    object-position: bottom;
    background: #fdebe1;
}

.senior-junior-item > img {
    height: calc(100% - 32px);
    display: block;
    width: 100%;
    object-fit: cover;
}

.senior-junior-item__cont > .am-flex {
    gap: 20px;
}

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

span.voices-point__title {
    display: flex;
    align-items: center;
	margin: 0 0 20px;
}

.voices-point__number p {
    width: 50px;
    height: 50px;
    background-color: #994928;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    line-height: 2.8;
    font-size: 18px;
    margin: 0 10px 0 0;
	justify-content: center;
    align-items: center;
    display: flex
}

.voices-point {
    border-bottom: dotted #994928;
    margin: 0 0 20px;
}

span.voices-point__number {
    display: block;
}

.voices-point__cont-title {
    display: block;
    margin: 6px 0 0px;
	color: #994928;
	font-weight: 700;
}

.fs-32 {
	font-size: 32px!important;
}

.message__cont {
	max-width:1000px;
	margin: 0 auto;
	width: calc(100% - 40px);
}

@media screen and (max-width:1366px) {
    .intro__item-pix {
        width: 22vw;
        height: 22vw;
        padding: 3vw;
    }
}

@media screen and (max-width:991px) {
    .intro__cont {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .intro__cont > div {
        width: 50%;
    }
    
    .intro__item-pix {
        width: 30vw;
        height: 30vw;
        padding: 5vw;
    }
	
	.about__cont a {
		font-size: 30px;
		margin: 0 0 20px;
		display: block;
	}
	
	.ftr.type2 .ftr__socmed-link {
		width: 150px;
	}
	
	.prd-intro__cont a {
		margin: 0 10px;
		font-size: 20px;
	}
	
	.access-item .am-col6:first-child iframe {
		width: 100%;
		height: 340px;
	}
	
	.access-item .am-col6:first-child {
        width: 50%;
    }
	
	.instagram-item .am-col3 img {
        width: 100%;
        height: 150px;
    }
	
	.ftr__layout.am-col6 {
        width: 50%;
    }
	
	.ftr__layout.am-col6 iframe {
		width: 100%;
	}
	
	.faq-button, .btn-access button, .btn-staff-intro button, .btn-patient-voices button, .btn-cont-services button{
		font-size: 16px;
	}
	
	.blog-item .am-col4 {
		margin: 0 20px 0 0;
	}
	
	.hdr__navi-menu li a {
		padding: 5px 12px;	
		font-size: 17px;
	}
	
	h1.hdr__logo {
		font-size: 24px;
	}
	
	.sns-images img {
		width: 40px;
	}
	
	.main-patients-item,
	#sect-main-patients .btn-cont-main-patients,
	#sect-main-patients .btn-cont-main-patients.first {
		margin: 0 0 20px 0;
	}
	
	.wpcf7 form .wpcf7-response-output {
		bottom: 60px;
	}
}

@media screen and (max-width: 834px) {
	.logo-text-sm {
		font-size: 12px;
		bottom: -28px;
	}
}

@media screen and (max-width: 768px) {
	.prd-intro__cont a {
		display: block;
		font-size: 25px;
		margin: 10px 0;
	}
	
	.hdr__navi-menu li a {
        padding: 5px 10px;
    }
}

@media screen and (max-width: 767px) {
	.af-topgap {
		height: 90px;
	}
	
	.hdr__menu-btn {
		display: block;
	}
	
	header {
		position: fixed;
		z-index: 5;
		width: 100%;
		top: 0;
		left: 0;
		/* border-bottom: 1px solid #163a6e; */
	}
	
	header .am-container {
		width: 100%;
	}

	.hdr__logo > a {
		display: block;
		position: absolute;
		top: 45px;
		width: calc(100% - 70px);
		text-align: left;
		transform: translateY(-50%);
		padding: 0 0 0 20px;
	}

	.hdr__logo img {
		width: auto;
		height: 50px;
	}

	.hdr__layout {
		display: block;
		height: auto;
		width: 100%;
		position: relative;
	}

	.hdr__logo {
		text-align: center;
		height: 90px;
	}
	
	.hdr__navi {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.5s linear;
		flex-wrap: wrap;
		display: block;
	}

	.hdr__navi-cont {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: space-between;
		min-height: max(710px, calc(100vh - 125px));
	}

	.hdr__navi-menu {
		position: relative;
		margin: 0;
		width: calc(100% - 1px);
	}

	.hdr__navi-menu-bg {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	.hdr__navi-menu {
		display: block;
		position: relative;
		z-index: 2;
	}

	.hdr__navi-menu li,
	.hdr__navi-menu li:last-child {
		border: solid #000;
		border-width: 1px 0 0;
	}
	
	.hdr__navi-menu li:last-child {
		border: solid #000;
		border-width: 1px 0;
	}

	.hdr__navi-menu li a,
	.hdr__navi-menu li:last-child a {
		padding: 30px 0;
		color: #000;
		font-weight: 400;
		width: 100%;
		text-align: center;
		font-size: 20px;
	}

	.hdr__navi-btn-cont .hdr__navi-btn:last-child,
	.hdr__navi-btn-cont .hdr__navi-btn:first-child {
		border-radius: 25px;
		display: block;
		margin: 50px auto 10px;
		font-size: 16px;
	}
	
	.hdr__navi-lang {
		position: absolute;
		top: 60px;
		transform: translateY(-50%);
		right: 80px;
	}

	.hdr__navi-btn-cont .hdr__navi-btn:last-child {
		margin: 0 auto;
	}

	.hdr__navi-btn-cont {
		text-align: center;
	}
	
	.hdr__menu--show .hdr__menu-btn-icon>span {
		opacity: 0;
	}

	.hdr__menu--show .hdr__menu-btn-icon::before {
		transform: translateY(10px) rotate(225deg);
	}

	.hdr__menu--show .hdr__menu-btn-icon::after {
		transform: translateY(-10px) rotate(-225deg);
	}

	.hdr__menu--show .hdr__navi {
		max-height: 1000px;
	}
	
	header .ftr__cont {
		display: block;
	}
	
	.hdr__ftr.ftr__cont {
		padding: 30px 0 0;
		min-height: calc(100vh - 461px);
		display: flex;
		flex-direction: column;
	}

	.hdr__ftr .ftr__socmed {
		padding: 0 10px;
	}

	.hdr__ftr .ftr__addr {
		margin: auto 20px 30px;
		text-align: center;
		display: none;
	}
	
	.hdr__ftr .ftr__socmed-link {
		text-align: center;
		width: calc(50% - 25px);
		margin: 0 10px 20px;
		padding: 5px 0;
	}
	
	.hdr__ftr .ftr__cpright {
		margin: auto 0 0;
		padding: 15px 0;
	}
	
	.intro__cont > div {
		width: 100%;
	}
	
	.news__item {
		display: block;
		width: 100%;
	}
	
	.links__item {
		display: block;
	}

	.inq__btn {
		padding: 50px 20px;
	}

	.inq__btn span {
		font-size: 18px;
	}

	.news__item-txt {
		width: 100%;
	}
	
	.about__cont a {
		font-size: 20px;
	}
	
	.intro__item-pix {
		width: 70vw;
		height: 70vw;
	}
	
	.intro__item {
		margin: 50px 0 0;
	}
	
	.prd-intro__hlight {
		font-size: 25px;
		text-align: left;
	}

	.prd-intro__cont > p {
		font-size: 18px;
		text-align: left;
	}

	.prd-sidepix {
		display: block;
	}

	#sect-force-presentation .am-col3 {
		width: 100%;
	}

	#sect-force-presentation .am-col9 {
		width: 100%;
	}

	.force__cont .prd-sidepix__pix {
		margin: 30px 0 0;
		width: 100%;
	}

	.bnr__title {
		text-align: center;
		padding: 90px 0;
		font-size: 46px;
	}
	
	.af-title.style2 {
		font-size: 25px;
	}
	
	#sect-prod-details .prd-sidepix__pix {
		width: 100%;
	}

	#sect-prod-details .am-col4 {
		width: 100%;
	}

	#sect-product-spidarg .am-col8 {
		width: 100%;
		margin: 30px 0 0;
	}

	.prd-sidepix__list {
		width: 100%;
		margin: 20px 0 0;
	}

	#sect-product-spidarw .am-col8 {
		width: 100%;
		margin: 30px 0 0;
	}

	#sect-product-spidargs .am-col8 {
		width: 100%;
		margin: 30px 0 0;
	}
	
	.prd-intro__cont a {
		display: block;
		margin: 20px 0;
		font-size: 20px;
	}

	#sect-case .case__row {
		display: block;
	}

	#sect-case .am-col6 {
		width: 100%;
	}

	.case__pix {
		width: 100%;
	}

	.case__pix iframe {
		height: auto;
	}

	.case__pix-caption {
		margin: 0 0 30px;
	}

	.contact__item {
		display: block;
	}

	.contact__item-field {
		width: 100%;
		margin: 10px 0;
	}
	
	.side-title {
		display: block;
	}

	.side-title .am-content {
		width: 100%;
	}

	.side-title .af-title {
		width: 100%;
		text-align: center;
	}
	
	.side-title .am-content {
		margin: unset;
	}
	
	#sect-inertia .inertia__cont {
		display: block;
	}

	#sect-inertia .af-title.style2 {
		width: 100%;
	}

	#sect-inertia .af-text {
		margin: unset;
		width: 100%;
	}
	
	#sect-stiffness .stiffness__cont {
		display: block;
	}

	#sect-stiffness .af-title.style2 {
		width: 100%;
	}

	#sect-stiffness .af-text {
		margin: unset;
		width: 100%;
	}
	
	#sect-degree-freedom .degree-freedom__cont {
		display: block;
	}

	#sect-degree-freedom .af-title.style2 {
		width: 100%;
	}

	#sect-degree-freedom .af-text {
		margin: unset;
		width: 100%;
	}
	
	#sect-realization-wearable .prd__cont {
		display: block;
	}

	#sect-realization-wearable .af-title.style2 {
		width: 100%;
	}

	#sect-realization-wearable .af-text {
		margin: unset;
		width: 100%;
	}
	
	#sect-cost .cost__cont {
		display: block;
	}

	#sect-cost .af-title.style2 {
		width: 100%;
	}

	#sect-cost .af-text {
		margin: unset;
		width: 100%;
	}
	
	.prd-sidepix__price {
		padding: unset;
	}
	
	.ftr.type2 .ftr__socmed-link {
		width: 140px;
    	margin: 15px 10px
	}

	.ftr__layout {
		display: block;
	}

	.ftr__logo {
		text-align: center;
	}

	.ftr__navi {
		margin: 50px 0;
	}

	.ftr__cpright {
		text-align: center;
	}
    
    .news__cont.am-content {
        width: 100%;
        padding-left: 0;
    }

    .links__cont.am-content {
        width: 100%;
        padding-left: 0;
    }
	
	.item-text {
		order: 2;
	}

	.item-cont {
		margin: 0 0 40px 0;
	}
	
	.slider__ov {
        height: 180px;
        width: 90%;
    }
	
	slider__item > img, .slider__item > video {
		min-height: 500px;
	} 
	
	.slider__item > img, .slider__item > video {		
		min-height: 200px;
		margin-top: 0;
	}
	
	#sect-blog .am-flex {
		display: block;
	}
	
	.news-cont {
		padding: 20px 15px 50px 15px;
	}
	
	.news-item {
		font-size: 18px;
		line-height: 1.5;
		margin: 0 0 20px 0;
	}
	
	.message-desc {
		font-size: 24px;
		text-align: left;
		line-height: 1.5;
	}
	
	#sect-message .am-flex {
		display: block;
	}

	#sect-message .am-col5 {
		width: 100%;
	}

	#sect-message .am-col7 {
		width: 100%;
	}
	
	.concept-cont {
		padding: 50px 15px;
	}
	
	#sect-concept .am-col4 {
		width: 100%;
		margin: 0 0 30px 0;
	}

	#sect-concept .am-flex {
		display: block;
	}
	
	#sect-main-patients .am-col6 {
		width: 100%;
	}

	#sect-main-patients .am-flex {
		display: block;
	}

	.main-patients-item {
		padding: 25px 15px;
	}
	
	#sect-main-patients .btn-cont-main-patients.first {
		margin: 20px auto 40px;
		text-align: center;
	}
	
	#sect-main-patients .btn-cont-main-patients{
		margin: 20px auto 0;
		text-align: center;
	}
	
	#sect-services .am-flex {
		display: block;
	}

	#sect-services .am-col5, #sect-services .am-col7 {
		width: 100%;
	}
	
	.advantages-icon .am-col3 img {
		width: 100px;
		height: 100px;
	}
	
	#sect-patient-voices .am-flex {
		display: flex;
        width: 100%;
        flex-wrap: wrap;
	}
	
	#sect-patient-voices .am-col8 {
		order: 2;
		width: 100%;
	}

	#sect-patient-voices .am-col4 {
		order: 1;
		width: 100%;
		margin: 0;
	}
	
	#sect-patient-voices .am-col4.mrg-left {
		margin: 0;
	}
	
	#sect-staff-intro .am-flex {
		display: flex;
        width: 100%;
        flex-wrap: wrap;
	}
	
	#sect-staff-intro .am-col4{
		order: 1;
		width: 100%;
		margin: 0;
	}
	
	#sect-staff-intro .am-col8{
		order: 2;
		width: 100%;		
	}
	
	#sect-access .am-flex {
		display: block;
	}
	
	#sect-access .am-col6{
		width: 100%;
	}
	
	.instagram-item .am-col3 {
		margin: 0 0 20px;
		width: calc(100% / 2 - 25px);
	}
	
	#sect-blog .am-col4{
		width: 100%;
		margin: 0;
	}
	
	#sect-instagram .am-flex.between {
		justify-content: space-around;
	}
	
	#sect-faq .am-flex {
		display: block;
	}

	.faq-button.first {
		margin: 0 0 30px;
	}
	
	.faq-button {
		width: 100%;
	}
	
	.faq-question {
		display: flex;
	}
	
	.ftr__layout.am-col6 iframe {
        width: 100%;
        height: 300px;
    }
	

	footer .am-flex {
		display: flex;
		flex-wrap: wrap;
	}
		
	#sect-about-us .am-flex {
		display: block;
	}

	#sect-about-us .am-col4, #sect-about-us .am-col8 {
		width: 100%;
		margin: 0;
	}

	#sect-about-us .am-col3, #sect-about-us .am-col9 {
		width: 100%;
		margin: 0;
	}

	.slider__layout-aboutus {
		margin-right: unset;
		width: 100%;
	}

	.slider-nav__arrows-aboutus.slider-navi {
		width: 100%;
	}
	
	.btn-about-us {
		margin: 50px 0 0;
		text-align: center;
	}

	button.about-us-button {
		font-size: 16px;
		width: fit-content;
	}
	
	.ftr__table tr td:first-child {
		width: 35%;
	}
	
	.sect-banner__layout {
		height: auto;
		margin-bottom: 11px;
	}
	
	.sect-banner__layout.thanks-page {
		margin-bottom: 0;
	}
	
	.sect-banner__layout img {
		object-position: 48%;
		height: 200px;
	}
	
	.about-hospital-sh {
		font-size: 20px;
	}
	
	.target-users-cont {
		padding: 50px 15px;
	}
	
	.target-users-item h3 {
		font-size: 20px;
	}
	
	.target-users-item .am-col3 {
		margin: 0 30px 0 0;
	}
	
	.am-flex.treatment-flow-subcont {
		display: block;
	}

	.treatment-flow-subcont .am-col3 {
		width: 100%;
	}

	.treatment-flow-subcount .am-col9 {
		width: 100%;
	}

	.treatment-flow-subcont .am-col9 {
		width: 100%;
	}

	.target-users-item__img img {
		width: 80%;
	}

	.target-users-item__img {
		text-align: left;
	}

	.am-col3.target-users-item__img {
		width: calc(45% - -18px););
	}
	
	.price-list-table1 table tr td {
		padding: 3px;
	}
	
	.ftr__addr .am-flex {
		display: flex;
	}
	
	h1.hdr__logo {
		font-size: 24px;
		font-family: 'Noto Sans JP';
	}
	
	.ftr__addr h3 {
		font-family: 'Noto Sans JP';
	}
	
	#senior-junior span.title-jp.biz-udp {
		line-height: 1.3;
	}

	.price-list-table1 table tr:first-child td {
		font-size: 18px;	
	}
	
	.am-flex.ftr-sns-add__cont {
		display: block;
	}

	.am-col6.sns-images {
		text-align: left;
		margin: 20px 0;
	}
	
	.prict-list-item h3 {
		font-size: 20px;
	}
	
	.concept-sh {
		font-size: 19px;
	}
	
	.staff-intro-cont .am-col4.mrg-right,
	.staff-intro-cont .am-col4.mrg-left{
		margin: 0;
		width: 100%;
		order: 1;
	}

	.staff-intro-item.am-flex {
		display: flex;
		flex-wrap: wrap;
	}

	.staff-intro-item .am-col8 {
		width: 100%;
		order: 2;
	}

	.content-wrap {
		padding: 0;
	}
}

/*========= BLOG ========= */
.mgb-30 {
    margin-bottom: 30px;
}

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

.header-blog:after {
    border-bottom: 3px solid #000;
}


/* Side Widget Area */
h2.widgettitle {    
    font-size: 24px;
    color: #000;
    padding: 5px;
    border-bottom: 3px solid #000;
    text-align: left;   
    margin-top: 0;
    margin-bottom: 30px;
}

.sidebar {
    padding: 0 15px;       
}

.sidebar-wrap {
    padding: 14px 10px 30px 10px;  
    color: #000;
	margin-top: -20px;
}

.sidebar ul {
    list-style-type: none;
}
.sidebar ul li {
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    font-size: 16px;
    font-weight: 5500;
    letter-spacing: 0;
}
.sidebar ul li a {
    color: #000;
}

#trial-flow .am-bg-pix > img,
#videos .am-bg-pix > img {
    object-position: bottom;
	object-fit: contain;
	background-color: #fdebe1;
}

#trial-contact .am-bg-pix > img,
#member-pix .am-bg-pix > img
{
    object-position: bottom;
	object-fit: contain;
}

section.inquiry__form {
    margin: 85px 0 100px;
}

.inquiry-form__contact-form {
	margin: 0 auto;
	text-align: right;
	max-width: 1200px;
	width: 100%;
}

.required {
    color: #FFF;
    padding: 7px 6px;
    font-size: 14px;
    margin: 0 10px 0 0;
    background-color: #994928;
    border-radius: 20px;
    display: block;
    text-align: center;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.notrequired {
    color: #000;
    padding: 8px 20px;
    font-size: 14px;
    margin: 0 10px 0 0;
    background-color: #fff;
    border-radius: 20px;
	border: 1px solid;
}

.inquiry-form__contact-col label {
	font-size: 16px;
	text-align: left;
	font-weight: 600;
}

.inquiry-form__contact-col input {
    padding: 22px 0 22px 40px;
    width: 100%;
    border: 1px solid #A4A4A5;
}

.inquiry-form__contact-col p {
	width: 100%;
	text-align: left;
}

.inquiry-form__contact-col p textarea {
	/* width: calc(100% - 6px); */
	width: 100%;
	border: 1px solid #a4a4a5;
	padding: 22px 0 22px 40px;
}

.inquiry-form__link {
	font-size: 18px;
}

.inquiry-form__contact-form a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #B1B1B1;
}

.inquiry-form__row.height-adj {
    height: 93px;
}

.inquiry-form__contact-col.inq-item__radio {
	align-self: center;
}

.ii-submit {
	position: relative;
	margin: 50px auto 0;
	width: calc(100% - 20px);
	max-width: 260px;
	padding: 0 0 130px;
}

.wpcf7-submit {
    height: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid #3C2A16;
    background-color: #3C2A16;
    border-radius: 50px;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
}

.wpcf7-form-control.wpcf7-submit.has-spinner p {
	text-decoration: underline;
}

.inquiry-form__row.last .inquiry-form__contact-col:first-child {
    align-self: flex-start;
}

.inquiry-form__row:last-child {
	border-bottom: none;
}

span.wpcf7-list-item {
	width: 15%;
}

.radio-button-adj span.wpcf7-list-item.first {
    width: 12%;
}

input[type="radio"] {
	width: unset;
}

.inquiry-form__submit-cont {
	text-align: center;
}

input, select, textarea {
    background-color: #fff;
}

input[type="checkbox"] {
    width: 20px;	
    height: 20px;
    margin: 0 10px 0 0;
}

span.wpcf7-list-item.first.last {
    line-height: 3;
	width: 100%;
}

.inquiry-form__row.checkbox {
    padding: 0 0 25px;
}

section.inquiry__personal {
    padding: 0 0 50px;
}

.inquiry-personal__item {
    margin: 0 0 20px;
}

.inquiry-personal__item h3 {
    color: #000;
    display: block;
    font-weight: 700;
}

.inquiry-web__content p {
    margin: 0 0 20px;
}

section.inquiry__web {
    margin: 0 0 100px;
}

.inquiry-personal__item ul li {
    list-style: disc;
}

.inquiry-personal__item ul {
    padding: 0 0 0 20px;
}

.inquiry-form__row {
	display: flex;
	padding: 15px 0 25px;
	align-items: center;
}

.inquiry-form__row:last-child {
	border-bottom: none;
}

.inquiry-form__contact-col:nth-child(2n) {
	width: 70%;
	margin: 0;
}

.inquiry-form__contact-col:first-child {
    width: calc(100% - 30px);
    align-self: center;
    text-align: left;
    max-width: 250px;
    margin: 0 30px 0 0;
}

span.wpcf7-form-control.wpcf7-radio {
	display: flex;
}

span.wpcf7-list-item {
    width: 30%;
    text-align: left;
    margin: 0;
}

span[data-name="your-english-learning"] span.wpcf7-list-item.last {
    display: none;
}

input[type="radio"] {
	width: unset;
}

#trial-contact {
    padding: 80px 0 0;
}

.trial-contact__cont p {
    text-align: center;
}

/* ECC Project styling ---------------------------*/

main > section {
    padding: 80px 0 0;
}

main > section#notice {
    padding: 0;
}

.ecc-title {
    position: relative;
    width: 570px;
    margin: 0 auto 60px;
}

.ecc-title > img {
    width: 100%;
    height: auto;
    margin: 0 0 0 -45px;
}

.ecc-title.dual > img {
    padding: 30px 0 0;
}

.ecc-title .title-jp {
    position: absolute;
    top: 30px;
    width: 100%;
    margin: 0;
	font-size: 26px;
}

.ecc-title .title-en {
    position: absolute;
    bottom: -30px;
    width: 100%;
    left: 0;
	font-family: Century Gothic;
    font-weight: 700;
}

.ecc-btn {
    background-color: #3c2a16;
    color: #fff;
    border-radius: 50px;
    padding: 15px 40px 15px 30px;
	font-size: 16px;
	font-weight: 700;
	position: relative;
}

.btn-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7px;
    width: 20px;
}

.ecc-btn__cont {
    margin: 50px auto 0 auto;
    text-align: center;
}

.voices-point__cont {
    margin: 0 0 20px;
}

.voices-point:last-child {
    border-bottom: none;
}

.voices-bubble {
    max-width: 500px;
    margin: 0 0 30px 220px;
}

.am-bg-layout.voices-bubble > .am-bg-cont {
    text-align: center;
    width: 100%;
	top: 40%;
	font-size: 20px;
    font-weight: 700;
}

#free-trial .am-bg-pix {
    background: #fdebe1;
}

#free-trial .am-bg-pix > img {
    max-width: 1200px;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    margin: 0 auto;
}

.am-bg-cont.am-container.free-trial__cont {
    padding: 80px 0 30px;
}

#free-trial .am-col4 {
    margin: 0 40px 0 0;
}

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

.free-trial__subcont {
    padding: 0 0 35px;
}

#message .am-bg-pix > img {
    object-position: bottom right;
	object-fit: contain;
}

#blog .am-bg-pix > img {
    object-position: bottom;
	object-fit: cover;
}

#message .am-bg-pix > img {
    max-width: 1430px;
    margin: 0 auto;
}

#notice .am-bg-pix > img {
    object-position: bottom;
    background: #fdebe1;
    max-width: 1440px;
    margin: 0 auto;
}

#notice .am-bg-pix {
    background: #fdebe1;
}

.message-list img {
    margin: 0 10px 0 0;
}

.message__subcont {
    padding: 0 0 80px;
}

.notice__cont {
    max-width: 1000px;
    padding: 80px 0 60px;
}

.notice-item .title {
    background-color: #fff;
    border-radius: 20px;
    padding: 0 20px 0 0;
}

.notice-item .title span {
    background-color: #3C2A16;
    padding: 7px 20px;
    border-radius: 20px 0 0 20px;
    margin: 0 20px 0 0;
    color: #fff;
    font-weight: 700;
    line-height: 32px;
}

.blog__subcont {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 80px;
}

.blog-item .title span {
    display: inline-block;
    width: 170px;
    background-color: #F5DFD6;
    margin: 0 20px 0 0;
    text-align: center;
    border-radius: 20px;
    font-weight: 700;
}

.blog-item {
    border-bottom: 1px dashed #d7ab9a;
    padding: 0 0 25px;
}

main > section#blog {
    padding: 80px 0 0;
}

main > section#free-trial {
    padding: 50px 0 0;
}

main > section#senior-junior {
    padding: 55px 0 0;
}

#blog .ecc-btn__cont {
    padding: 0 0 55px;
}

#free-trial .ecc-btn__cont {
    padding: 30px 0 55px;
    margin: 0 auto;
}


#voices .ecc-btn__cont {
    padding: 0 0 5px 0;
}

.sect-banner__text {
    position: absolute;
    left: 50%;
    top: calc(50% - 20px);
    transform: translate(-50%, -50%);
    width: auto;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
}

.af-topgap.lower-page {
	height: 60px;
}

.courses-btn__cont {
	max-width: 900px;
	width: calc(100% - 30px);
	margin: 0 auto;
	padding: 50px 0;
	text-align: center;
	justify-content: space-between;
}

.courses-btn__item a {
	text-decoration: none;
	color: #fff;
	display: block;
	position: relative;
}

.courses-btn__item {
	background-color: #3C2A16;
	border-radius: 30px;
	padding: 10px 0;
	margin: 0 0 20px 0;
	width: calc((100% / 3) - 40px);	
}

.courses-btn__item img {
	width: 24px;
	margin: 0 0 0 10px;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

.toddler-class__item > h3 {
	font-weight: bold;
	font-size: 24px;
}

.toddler-class__cont {
	width: calc(100% - 30px);
	max-width: 1200px;
	margin: 0 auto;
}

.toddler-class__item-table tr {
	border-bottom: 2px dashed #a84625;
}

.toddler-class__item-table {
	border-collapse: collapse;
	width: 100%;
}

.toddler-class__item-table tr td, .toddler-class__item-table tr th {
	padding: 20px 0 15px;
}

.toddler-class__item-table tr th {
	width: 130px;
	text-align: left;
	padding: 0 25px 0 10px;
}

.toddler-class__item {
    margin: 20px 0 60px 0;
}

.aboutus-btn.ecc-btn {
    margin: 0 auto -25px;
    display: block;
}

#elementary-school .am-bg-pix > img,
#junior-high-school .am-bg-pix > img,
#adult-senior-class .am-bg-pix > img{
    object-position: bottom;
}

#member-vid .am-bg-pix,
#faq .am-bg-pix,
#junior-high-school .am-bg-pix,
#elementary-school .am-bg-pix {
    background-color: #fdebe1;
    overflow-x: hidden;
}

#member-vid .am-bg-pix > img,
#faq .am-bg-pix > img,
#junior-high-school .am-bg-pix > img,
#elementary-school .am-bg-pix > img {
    max-width: 1200px;
    width: 1200px;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#member-vid .am-bg-pix > img {
	width: 100%;
	height: auto;
	bottom: 0;
	max-width: unset;
}

#junior-high-school .am-bg-pix > img {
	height: auto;
	bottom: 0;
}

#faq .ecc-btn,
#elementary-school .ecc-btn,
#junior-high-school .ecc-btn {
    margin: 120px auto 0;
}

#faq .ecc-btn {
    margin: 50px auto 0;
}

#faq .am-bg-layout,
#elementary-school .am-bg-layout,
#junior-high-school > .am-bg-layout {
	padding: 60px 0 50px;
}

.toddler-class__item .am-col5 img {
    padding: 20px 0 0;
    max-width: 315px;
    height: 217px;
    width: 100%;
    object-fit: contain;
}

.am-anchor {
    position: relative;
}

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

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

.hidden-content {
	  display: none;
}

.clickable {
	cursor: pointer;
	color: #000;
}

.supportive-environment__cont {
    max-width: 1200px;
    margin: 80px auto 0 auto;
    width: calc(100% - 20px);
}

.eiken__cont-layout {
    margin: 80px 0 0;
}

.english-event__layout {
    margin: 80px 0 0;
}

#faq .ecc-title {
    margin: 0 auto 80px;
}

.supportive-environment__content {
    margin: 0 0 0 80px;
}

.supportive-environment__cont > .am-col4 > img {
    width: 100%;
    display: block;
}

#eiken .am-container {
/* 	max-width: 960px; */
}

.eiken__item {
    margin: 20px;
}

.eiken__item-year {
    background: #994928;
    color: #FFF;
    width: fit-content;
    padding: 5px 35px;
    border-radius: 30px;
}

.eiken__item-tbl tr th {
    width: 20%;
    text-align: left;
    vertical-align: top;
    min-width: 180px;
}

.eiken__item-tbl tr td {
    width: 80%;
}

.eiken__item-tbl tr th, .eiken__item-tbl tr td {
    padding: 0 0 20px;
}

.eiken__item-tbl {
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0 0;
	width: 100%;
}

.english-event__gal-item > img,
.english-event__gal-item > video {
    margin: 0 15px 0 0;
    width: calc(100% - 15px);
}

.english-event__gal-item {
    width: 20%;
}

.english-event__gal {
    display: flex;
	margin: 0 0 60px;
}

.english-event__seq-month {
    background: #994928;
    color: #FFF;
    width: 110px;
    text-align: center;
    font-weight: bold;
    border-radius: 20px;
    padding: 5px 0;
    margin: 0 60px 0 0;
}

.english-event__seq-item {
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px dotted #484340;
}

.voices-item .am-col3 img {
    width: 219px;
    height: auto;
}

.voices-item .am-col3 {
    margin: 0 20px 0 0;
    width: calc(100% / 12* 3 - 20px);
}

.voices-item {
    max-width: 1220px;
    margin: 0 auto;
}

.pd-80 {
	padding: 80px 0;
}

.faq__item {
    border-bottom: 2px dashed #994928;
    margin: 0 0 30px 0;
}

.faq__question p {
    background-color: #994928;
/*     display: inline-block; */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px 0 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    align-content: center;
}

.faq__answer span {
    color: #994928;
    font-weight: 700;
    font-size: 24px;
    width: 50px;
    height: 50px;
	text-align: center;
	margin: 0 10px 0 0;
}

.faq__answer {
    margin: 10px 0 20px;
}

.faq__question {
    color: #994928;
    font-weight: 700;
	align-items: center;
}

#faq .am-bg-pix > img {
    object-fit: contain;
    background-color: #fdebe1;
    object-position: bottom;
}

.faq__cont {
    max-width: 960px;
    width: calc(100% - 30px);
    margin: 0 auto;
	padding: 80px 0 0;
}

.access__cont-layout {
    max-width: 960px;
    margin: 80px auto 0 auto;
}

.access__cont {
    max-width: 960px;
	margin: 0 auto;
}

.access__cont .am-col6:first-child {
    margin: 0 30px 0 0;
}

.instructor__cont {
    max-width: 960px;
    width: calc(100% - 30px);
    margin: 0 auto;
	padding-bottom: 105px;
}

#instructor .am-col5 {
    margin: 0 70px 0 0;
}

#instructor .am-col7 {
   line-height: 25px;
}

#instructor .am-col5 img {
    object-fit: cover;
}

#instructor .am-bg-pix > img,
#english-event .am-bg-pix > img{
    object-fit: contain;
    object-position: bottom;
    background-color: #fdebe1;
}

#instructor .am-bg-pix > img {
	object-fit: cover;
}

#instructor .ecc-title {
	margin: 0 auto 120px;
}

.access__cont .am-col6:last-child {
    text-align: end;
}

.aboutus-voices__cont {
    max-width: 1212px;
	margin: 0 auto;
}

.noto-sans {
	  font-family: "Noto Sans JP", serif;
}

.biz-udp {
	font-family: "BIZ UDPGothic", sans-serif;
}

#aboutus-voices {
    padding-bottom: 55px;
}

#aboutus-voices p.tal-c {
    font-weight: 700;
    display: block;
}

.supportive-environment__content h3 {
    font-weight: 700;
	margin: 0;
}

.supportive-environment__text {
    line-height: 25px;
	display: block;
}

.faq__question h3 {
	width: calc(100% - 50px);
	margin: 0;
}

.faq__answer p {
    margin: 0;
    width: calc(100% - 50px);
}

.trial-flow__item-step span {
    background-color: #994928;
    color: #fff;
    display: block;
    padding: 5px;
    text-align: center;
    border-radius: 20px;
    font-weight: 700;
}

.trial-flow__item-cont h3 {
    font-weight: 700;
}

.trial-flow__item {
    margin: 0 0 40px;
    border-bottom: 2px dashed #994928;
}

#trial-flow .am-bg-cont {
    padding: 80px 0;
}

.about-trial__cont {
    padding: 50px 0 0;
}

.trial-flow__cont {
    padding: 50px 0 0;
    max-width: 1000px;
    margin: 0 auto;
}

.trial-flow__item-step.am-col3 {
    margin: 0 30px 0 0;
}

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

#thanks .am-bg-pix > img {
    object-fit: cover;
	object-position: bottom;
}

#thanks .am-bg-cont.am-container {
    padding: 80px 0;
}

.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-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;
    display: none;
}

.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;
	padding: 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;
}

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

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

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

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

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%);
}

.sect-blog__post-single p {
    margin: 0;
}

.newsletter__item > a {
    color: #000;
    text-decoration: unset;
}

.newsletter__item {
    border-bottom: 2px dashed #a84625;
    padding: 9px 0 5px 20px;
}

.newsletter__item-cont {
    padding: 0;
    list-style-position: inside;
}

#newsletter {
    padding: 20px 0 100px 0;
}

#members-btn .courses-btn__cont {
    padding: 70px 0 50px;
}

#member-vid > .am-bg-layout {
    padding: 90px 0 150px;
}

.member-vid__cont {
    background-color: #FFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 9px;
    gap: 9px;
}

.member-vid__item {
    width: calc((100% / 3) - 6px););
}

.member-vid__item > iframe {
    width: 100%;
    height: 18vw;
    max-height: 181px;
    display: block;
}

#member-pix .am-bg-cont {
    padding: 90px 0 180px;
}

.member-pix__cont {
    gap: 10px;
}

.member-pix__item {
    width: calc((100% / 5) - 10px);
}


#member-pix .am-modal__min-btn {
    padding: 0;
}

#member-pix .am-modal__min-btn > img {
    display: block;
    height: 14vw;
    max-height: 210px;
    width: auto;
    object-fit: cover;
}

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

.hidden-content {
	max-height: 0;
	transition: max-height 0.5s ease;
	display: block;
	overflow: hidden;
}

.hidden-content.ecc-showtxt__show {
	max-height: 500px;
}

p.clickable.ecc-showtxt__btn {
	margin: 0;
}

footer img.hdr__arrow {
	margin: 0 0 0 10px;
}

.free-trial__subcont h3 {
    font-size: 22px;
    font-weight: 700;
}

section#courses-btn {
    padding: 0;
}

section#toddler-class {
    padding: 50px 0 0;
}

.newsletter__cont {
    margin: 90px auto 0;
}

.newsletter__group-item-cont {
/*  flex-direction: column; */
/*  height: calc((16px * 2) * 3); */
    width: 100%;
	height: auto;
}

.newsletter__group-year > h3 {
    background-color: #994928;
    color: #FFF;
    width: calc(100% * 2 / 3);
    text-align: center;
    border-radius: 20px;
    padding: 6px 0;
    margin: 0 auto 0 0;
}

.newsletter__group-desc {
    margin: 0;
}

.newsletter__group-item {
    width: calc((100% / 4) - 10px);
    margin: 0 10px 0 0;
}

.newsletter__group-content {
    width: 70%;
	font-weight: 600;
}

.newsletter__group-year {
    width: 30%;
}

.newsletter__group-item > a {
    color: #000;
    text-decoration: unset;
}

.newsletter__group-cont {
    border-bottom: dotted #ccc;
    padding: 0 0 20px;
}

.supportive-environment__item {
    margin: 0 0 20px;
}

.toddler-class__item:last-child {
    margin: 20px 0 120px;
}

.wpcf7-response-output {
    margin-top: 20px !important; /* Adjust the spacing */
    position: relative; /* Change if needed */
    text-align: center; /* Center the text */
}

.wpcf7-form {
    position: relative;
}

.wpcf7-response-output {
    position: absolute;
    bottom: 90px; /* Adjust the value as needed */
    left: 50%;
    transform: translateX(-50%);
    width: auto; /* Adjust width if necessary */
}

.toddler-class__item.last {
    margin: 20px 0 120px 0;
}

#adult-senior-class > .am-bg-layout {
    padding: 60px 0 80px;
}

.slider-pc {
	display: block!important;
}

.slider-sp {
	display: none!important;
}

/* .toddler-class__item-img {
    margin: 0 0 0 50px;
} */

.message-image {
    width: 100%;
    height: 32vw;
    max-height: 414px;
	max-width: 290px;
    object-fit: cover;
    object-position: center 80%;
}

#message .am-flex.message__subcont .am-col6:first-child {
    margin: 0 30px 0 0;
}

#message .am-col3,
#instructor .am-col3 {
    margin: 0 30px 0 0;
    width: 250px;
}

#message .am-col9,
#instructor .am-col9 {
    width: calc(100% - 250px);
}

#message .am-col3 img,
#instructor .am-col3 img {
    width: 100%;
    height: auto;
/*     max-height: 414px; */
    object-fit: cover;
    object-position: center;
}

.toddler-class__item-img img {
    width: 240px;
    height: calc(100% - 50px);
    object-fit: contain;
}

.toddler-class__item .am-col5 img.courses-img_v2 {
    background-color: #fff;
    max-width: 315px;
	width: calc(100% - 20px);
    height: 217px;
    object-fit: contain;
    padding: 10px;
	margin: 10px 0 0;
}

.toddler-class__item .am-col5 img.courses-img_v3 {
    background-color: #fff;
    max-width: 315px;
    width: 100%;
    height: 217px;
    object-fit: contain;
    margin: 20px 0 0;
	padding: 0;
}

.toddler-class__item .am-col5 img.courses-img_v4 {
    max-width: 315px;
    width: 100%;
    height: 217px;
    object-fit: contain;
    margin: 10px 0 0;
}

.toddler-class__item .am-col5 {
    margin: 0 10px 0 0;
    width: calc(100% / 12 *5 - 10px);
}

.access__cont .access__item .am-col6:last-child img{
    max-width: 407px;
    width: 100%;
    height: auto;
}

.phone-number input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
}

.inquiry-form__contact-col.phone-number {
    width: 25%;
}

.wpcf7-not-valid-tip {
    text-align: left;
}

.wpcf7-not-valid-tip {
    margin-top: -4px;
    position: absolute;
}

#trial-contact .am-container.style3 {
    max-width: 1200px;
    padding: 0px 0 50px;
}

.eiken__item.am-flex {
    display: block;
}

#eiken .am-col9 {
    width: 100%;
}

/* Manual Flower BG styling -----------------------------------*/

.am-bg-pix.ecc-color1 {
	background-color: #fdebe1;
}

.am-bg-pix__cont {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
	height: 100%;
}

.am-bg-pix__cont.style1 {
	max-width: 1440px;
}

.am-bg-pix__cont.style2 {
	max-width: 510px;
}

.am-bg-pix__cont.style3 {
    max-width: 540px;
}

.am-bg-pix__cont > .flower {
	position: absolute;
	bottom: 0;
}

.am-bg-pix__cont .flower01 {
	left: 0;
    width: 105px;
}

.am-bg-pix__cont .flower02 {
    right: -5px;
    bottom: -30px;
}

.am-bg-pix__cont .flower03 {
	width: 120px;
	left: 0;
	bottom: -6px;
}

.am-bg-pix__cont .flower04 {
	width: 83px;
	bottom: -28px;
	right: 36px;
}

.am-bg-pix__cont .flower05 {
	width: 270px;
	bottom: 0;
	right: 0;
}

.am-bg-pix__cont .flower08 {
    width: 110px;
    left: 4px;
    bottom: -3px;
}

.am-bg-pix__cont .flower09 {
    width: 100px;
    bottom: -5px;
    right: 28px;
}

.am-bg-pix__cont .flower11 {
	bottom: unset;
	top: 220px;
	right: 0;
	width: 18vw;
	max-width: 270px;
}

.am-bg-pix__cont .flower12 {
	bottom: unset;
	top: 80px;
	right: 14vw;
	width: 5vw;
	max-width: 80px;
}

.newsletter__group-desc a {
    color: #000;
    text-decoration: none;
}

#adult-senior-class .toddler-class__cont {
	padding: 0 0 50px 0;
}

.notice__subcont {
    max-height: 230px;
    overflow-y: scroll;
    border: 1px solid #8b8b8b;
    padding: 20px;
}

.eiken__cont {
    max-width: 660px;
    margin: 0 auto;
}

/* ECC Project styling Responsive ---------------------------*/

@media screen and (max-width:1200px) {
	.slider__ov-main-title {
		font-size: 3.2vw;
		line-height: 1.8;
	}

	.slider__ov {
		top: calc(50% - 20px);
	}

	.slider-button {
		font-size: 1.8vw;
		padding: 1vw;
		width: 20vw;
	}

	.message-image {
		width: calc(100% - 30px);
		margin: 0 30px 0 0;
	}

	#notice .am-bg-pix > img {
		object-fit: contain;
	}

	.notice__cont {
		padding: 80px 0 180px;
	}
	
	.fun-learn-cont__img2 {
        right: unset;
        top: 0vw;
        left: 200px;
        width: 160px;
    }
	
	#english-event .am-bg-cont {
		padding: 80px 0 180px;
	}
}

@media screen and (max-width:1024px) {
	.hdr__navi-menu li a {
		padding: 5px 12px;
	}
	
	.slider-button {
		margin: 10px 0 0 0;
	}
	
	.am-col4.senior-junior-item {
		text-align: center;
		margin: 0 30px 0 0;
	}
	
	.am-col4.senior-junior-item:last-child {
		margin: 0;
	}
	
	main > section {
		padding: 60px 0 0;
	}
	
	.fun-learn-cont__img {
		object-position: top;
		margin: 0;
	}
} 

@media screen and (max-width:991px) {	
	.hdr__logo {
		white-space: nowrap;
	}

	.hdr__layout {
		flex-direction: column;
		justify-content: center;
	}

	.hdr__logo {
		margin: 0 auto;
	}

	.hdr__navi-menu {
		width: auto;
	}

	.hdr__navi {
		width: 100%;
		max-width: unset;
		align-items: center;
		justify-content: center;
	}
	
	.hdr__navi-button {
		white-space: nowrap;
	}
	
	.slider__item > img, .slider__item > video {
		margin-top: 0;
/* 		min-height: 435px; */
		object-fit: cover;
		object-position: 11%;
	}
	
	.hdr__navi-button {
		padding: 3px 10px;
	}
	
	.am-modal__max-cont {
		max-width: calc(100% - 140px);
	}
	
	.am-flex.adult-senior__time {
		display: block;
	}
	
	.am-flex.adult-senior__time .am-col6 {
		width: 100%;
	}

	.toddler-class__item img {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
    .sidebar {
        padding: 0;       
    }  

	#sect-blog .am-col8 {
		width: 100%;
        margin: 0;
	}
	
	.hdr__logo a {
		color: #fff;
	}

	header {
		background-color: #F37B0B;
		transition: 0.5s ease;
	}

	.hdr__navi-menu li a {
		padding: 25px 0;
	}

	.hdr__navi-button {
		margin: 50px auto 0 auto;
	}
	
	.slider__item > img, .slider__item > video {
		height: auto;
		object-position: left;
	}
	
	.slider__ov-main-title {
		font-size: 24px;	
		padding: 10px;
		background-color: #FFFFFFB2;
		margin: 0 auto
	}
	
	.slider-button {
		margin: 0 auto;
		font-size: 16px;
		width: 190px;
		padding: 5px 0;
	}
	
	.ecc-title > img {
		margin: 0; 
	}
	
	.ecc-title .title-jp {
		top: 16px;
	}
	
	.ecc-title {
		width: 100%;
	}
	
	.title-jp {
		font-size: 18px;
	}
	
	.fun-learn-cont.am-flex {
		display: block;
	}
	
	 .fun-learn-cont__img2 {
        top: unset;
        padding: 0;
        position: unset;
        margin: 0 auto 30px;
        text-align: center;
        display: block;
    }
	
	.hdr__menu-btn-icon::before, .hdr__menu-btn-icon::after, .hdr__menu-btn-icon>span {
		background: #fff;
	}
	
	.hdr__menu-btn {
		border: 2px solid #fff;
	}
	
	header.hdr__menu--show {
		background-color: #fff;
	}
	
	.hdr__menu--show .hdr__logo a {
        color: #000;
    }
	
	.hdr__menu--show .hdr__menu-btn-icon::before, .hdr__menu--show .hdr__menu-btn-icon::after, .hdr__menu--show .hdr__menu-btn-icon>span {
		background: #000;
	}
	
	.hdr__menu--show .hdr__menu-btn {
		border: 2px solid #000;
	}
	
	.slider__ov {
        left: 0%;
        width: calc(100% - 20px);
        margin: 0 10px;
        top: 0;
        transform: unset;
		bottom: 0;
    }
	
	.ecc-title {
		width: 100%;
	}

	.ecc-title .title-jp {
		position: relative;
		top: unset;
		margin: 0 0 8vw;
	}

	.ecc-title .title-en {
		position: relative;
		bottom: unset;
		width: 100%;
		display: block;
	}

	.ecc-title > img {
		position: absolute;
		width: calc(100% - 40px);
		bottom: 26px;
		left: 50%;
		transform: translateX(-50%);
		object-fit: cover;
		height: 12vw;
		object-position: 0 -10vw;
	}
	
	.fun-learn-cont__txt {
		margin: 0 0 30px;
	}
	
	#senior-junior .am-flex {
		display: block;
	}

	#senior-junior .am-col4 {
		width: 100%;
		margin: 0 0 30px;
	}

	#senior-junior .am-col4:last-child {
		margin: 0;
	}
	
	article.am-flex.wrap.voices-item {
		display: block;
	}

	#voices .am-col3 {
		width: 100%;
		text-align: center;
	}

	#voices .am-col9 {
		width: 100%;
	}

	.voices-bubble {
		max-width: 100%;
		width: 100%;
		margin: 0;
	}

	#voices .am-col12 {
		width: 100%;
	}
	
	#notice .am-bg-pix {
        background-color: #fdebe1;
        overflow-x: hidden;
    }
    
    #notice .am-bg-pix > img {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200%;
        height: auto;
        object-fit: cover;
        object-position: 60vw 0;
        max-width: unset;
    }

    .notice__cont {
        padding: 80px 0 30px;
	}

	.notice-item .title {
		position: relative;
		border-radius: 0 10px 10px 10px;
		padding: 0 10px;
		margin: 60px 0 0;
	}

	.notice-item .title span {
		position: absolute;
		display: block;
		padding: 0px 20px;
		border-radius: 10px 10px 0 0;
		transform: translateY(-100%);
		left: 0;
	}
	
	main > section#blog, main > section#free-trial {
		padding: 60px 0 0;
	}
	
	.am-bg-cont.am-container.free-trial__cont {
		padding: 60px 0 0;
	}
	
	#free-trial .am-col4 {
		margin: 0;
		width: 100%;
	}

	.free-trial__subcont {
		display: block;
		padding: 0;
	}

	#free-trial .am-col8 {
		width: 100%;
	}
	
	.message__subcont {
		display: block;
		margin: 0;
	}

	.message-image {
		width: calc(100% - 30px);
		margin: 0 30px 0 0;
	}

	.message__subcont > div {
		width: 100%;
	}

	.message-image {
		width: 100%;
		height: auto;
		margin: 0;
		max-width: 100%;
	}
	
	#blog .ecc-btn__cont {
		margin: 0;
	}
	
	.blog__subcont {
		padding: 0 0 60px;
	}
	
	.ftr__addr {
		margin: 0;
	}
	
	.ftr__layout.am-col6 {
        width: 100%;
		order: 1;
		margin: 0 0 30px;
    }
	
	footer .am-col6 {
		width: 100%;
		order: 2;
	}
	
	.sect-banner__layout.lower-page img {
		height: 70vw;
	}
	
	.sect-banner__text {
		left: 50%;
		top: 50%;
		background-color: #FFFFFFB2;
		padding: 20px;
	}
	
	.hdr__navi-button {
        padding: 10px 30px 10px;
    }
	
	.courses-btn__cont {
		display: block;
	}

	.courses-btn__cont .am-col4 {
		width: 100%;
	}
	
	#toddler-class .am-col5,
	#elementary-school .am-col5,
	#junior-high-school .am-col5,
	#adult-senior-class .am-col5,
	#high-class .am-col5 {
		width: 100%;
		text-align: center;
	}

	#toddler-class .am-col7,
	#elementary-school .am-col7,
	#junior-high-school .am-col7,
	#adult-senior-class .am-col7,
	#high-class .am-col7 {
		width: 100%;
	}
	
	.toddler-class__item > h3 {
		text-align: center;
	}
	
	#elementary-class-456 .am-col5 {
		width: 100%;
		text-align: center;
	}
	
	#elementary-class-456 .am-col7{
		width: 100%;
	}
	
	.voices-item .am-col3 img {
		width: 50%;
		height: auto;
		margin: 30px 0 0;
	}
	
	#supportive-environment .am-col4,
	#supportive-environment .am-col8 {
		width: 100%;
	}

	.supportive-environment__content {
		margin: 20px 0 0;
	}
	
	#eiken .am-flex {
		display: block;
	}

	#eiken .am-col3,
	#eiken .am-col9 {
		width: 100%;
	}
	
	.eiken__item {
		margin: 0 0 20px;
	}
	
	.english-event__seq-month {
		width: 90px;
		margin: 0 20px 0 0;
	}
	
	#aboutus-voices .am-col3 {
		width: 100%;
		text-align: center;
	}

	#aboutus-voices .am-col9 {
		width: 100%;
	}
	
	.english-event__seq-act {
		width: calc(100% - 90px);
	}
	
	.fs-32 {
		font-size: 26px !important;
	}
	
	#access .am-col6 {
		width: 100%;
		margin: 0;
	}
	
	#message .am-col3,
	#instructor .am-col3 {
		width: 100%;
		margin: 0;
	}
	
	#message .am-col9,
	#instructor .am-col9 {
		width: 100%;
	}
	
	.pd-80 {
		padding: 50px 0;
	}
	
	.access__cont-layout {
		margin: 40px auto 0 auto;
	}
	
	#faq .ecc-title {
		margin: 0 auto 40px;
	}
	
	.access__item.am-flex {
		flex-wrap: wrap;
	}
	
	#instructor .am-flex {
		flex-wrap: wrap;
	}
	
	 #access .am-col6:first-child {
        order: 2;
    }
	
	
	.slick-prev:before {
		content: '\f053';
		font-family: 'FontAwesome';
		color: #f37b0b;
		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;
	}

	.slick-prev, .slick-next {
		font-size: 0; 
		background: none; 
		border: none; 
		box-shadow: none;
		width: auto;
		height: auto;
	}
	
	 #english-event .ecc-title > img {      
        height: 12vw;
    }
	
	.am-sp {
		display: block;
	}
	
	#sect-banner .sect-banner__text {
		line-height: 1.5;
	}
	
	.about-trial__cont {
		padding: 0;
	}

	#about-trial .am-col4 {
		width: 100%;
	}
	
	#about-trial .am-col8 {
		width: 100%;
	}
	
	#trial-flow .am-bg-cont {
		padding: 50px 20px;
	}

	.trial-flow__cont {
		padding: 0;
	}
	
	.inquiry-form__row {
		display: block;
	}

	.inquiry-form__contact-col:first-child {
		width: 55%;
		margin: 0 0 20px;
	}

	.inquiry-form__contact-col:nth-child(2n) {
		width: 100%;
	}

	.inquiry-form__contact-col input {
		padding: 11px 0 11px 20px;
	}

	.inquiry-form__contact-col p textarea {
        padding: 11px 10px 11px 20px;
    }
	
	.radio-button-adj span.wpcf7-list-item.first {
		width: 25%;
		display: flex;
        align-items: center;
	}

	.width-adj span.wpcf7-list-item.first {
		width: 100%;
	}

	.width-adj span.wpcf7-form-control.wpcf7-radio {
		display: block;
	}

	.width-adj span.wpcf7-list-item.last {
		width: 100%;
	}
	
	textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
		width: calc(100% - 30px);		
	}
	
	input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
		width: calc(100% - 30px);
	}
	
	#sect-blog .am-col5 {
		width: 100%;
		margin: 0;
	}
	
	#sect-blog .am-col5 img{
		width: 100%;
	}
	
	.sect-blog__sidebar {
		width: 100%;
		margin: 50px 0 0;
	}
	
	.newsletter__item {
		margin: 0 0 20px;
	}
	
	.member-vid__cont {
		display: block;
	}
	
	.member-vid__item {
		width: 100%;
		margin: 0 0 30px 0;
	}

	.member-vid__item > iframe {
		width: 100%;
		height: 350px;
	}
	
	.member-vid__item:last-child {
		margin: 0;
	}
	
	.member-pix__cont {
		display: block;
	}

	.member-pix__item {
		width: 100%;
		margin: 0 0 20px 0;
	}
	
	.toddler-class__item > h3 {
		font-weight: bold;
		font-size: 22px;
	}
	
	.am-bg-layout.voices-bubble > .am-bg-cont {
		font-size: 15px;
	}

	#senior-junior .am-bg-pix,
	#free-trial .am-bg-pix,
	#notice .am-bg-pix,
	#adult-senior-class .am-bg-pix,
	#english-event .am-bg-pix,
	#faq .am-bg-pix,
	#instructor .am-bg-pix,
	#trial-flow .am-bg-pix {
		background-color: #fdebe1;
	}

	#senior-junior .am-bg-pix > img,
	#free-trial .am-bg-pix > img,
	#message .am-bg-pix > img,
	#notice .am-bg-pix > img,
	#blog .am-bg-pix > img,
	#adult-senior-class .am-bg-pix > img,
	#english-event .am-bg-pix > img,
	#faq .am-bg-pix > img,
	#instructor .am-bg-pix > img,
	#trial-flow .am-bg-pix > img,
	#trial-contact .am-bg-pix > img {
		display: none;
	}
	
	#trial-contact .am-bg-pix {
		color: #fff;
	}
	
	.sect-banner__text {
		font-size: 25px;
	}
	
	#member-pix .am-modal__min-btn > img {
		height: unset;
		max-height: unset;
	}
	
	.am-modal__max-cont {
		max-width: calc(100% - 120px);
	}
	
	.toddler-class__item .am-col5 img {
		padding: 20px 0 15px;
	}
	
	.ftr-btn {
		width: 50%;
	}
	
	.ii-submit {
		margin: 20px auto 0;
		padding: 0px 0 40px;
	}
	
	.newsletter__group {
		display: block;
	}

	.newsletter__group-year {
		width: 100%;
	}

	.newsletter__group-item-cont {
		display: block;
	}
	
	.newsletter__group-item {
		width: 100%;
	}

	.newsletter__group-item-cont {
		height: auto;
	}
	
	.newsletter__group-item {
		width: 100%;
	}

	.newsletter__group-item-cont {
		height: auto;
	}

	.newsletter__cont {
		margin: 0 auto 40px;
	}

	.newsletter__group-year {
		margin: 0 auto 20px;
	}
	
	.wpcf7 form .wpcf7-response-output {
		margin: 0 auto 1em auto;
	}
	
	 .ii-submit {
        margin: 20px auto 0;
    }
	
	.inquiry-form__contact-form {
		padding: 0 0 30px;
	}
	
	.inquiry-form__row.last {
		margin: 0;
		padding: 0;
	}
	
	.wpcf7 form .wpcf7-response-output {
		width: calc(100% - 30px);
		bottom: -5px;
		left: calc(50% - 8px);
	}
	
	.toddler-class__item.last {
		margin: 20px 0 60px 0;
	}
	
	.slider-pc {
		display: none!important;
	}

	.slider-sp {
		display: block!important;
	}
	
	.toddler-class__item-img {
		margin: 0;
	}
	
	.toddler-class__item .am-col5 {
		margin: 0;
	}
	
	.am-bg-pix__cont {
		display: none;
	}
	
	.phone-number input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
		width: calc(100% - 30px);
	}
	
	textarea.wpcf7-form-control.wpcf7-textarea {
		width: calc(100% - 30px);
	}
	
	#voices .ecc-title > img {
        width: calc(100% - 70px);
		bottom: 25px;
    }
	
	/* Fix for ecc-title multiple line */
	.ecc-title {
		display: flex;
		flex-direction: column;
	}

	.ecc-title > img {
		position: unset;
		transform: unset;
		order: 1;
		margin: 0 auto;
	}

	.ecc-title .title-en {
		order: 2;
	}

	.ecc-title .title-jp {
		margin: 0;
	}

	.ecc-title .title-en > p {
		margin: 0;
	}
	/* Fix for ecc-title multiple line END */
	
	.wpcf7-not-valid-tip {
		width: auto;
		white-space: nowrap;
	}
	
	.english-event__gal-item > img,
	.english-event__gal-item > video {
		margin: 0 auto;
		width: calc(100% - 15px);
	}
	
	main > section#elementary-school,
	main > section#junior-high-school,
	main > section#adult-senior-class {
        padding: 0;
    }
	
	.toddler-class__item {
		margin: 20px 0 50px 0;
	}
	
	#elementary-school .ecc-btn,
	#junior-high-school .ecc-btn{
		margin: 50px auto 0;
	}
	
	#adult-senior-class .aboutus-btn.ecc-btn {
		margin: 0 auto;
		display: block;
	}
	
	#adult-senior-class .toddler-class__cont {
		padding: 0;
	}

	#adult-senior-class > .am-bg-layout {
		padding: 60px 0 55px;
	}
	
	.eiken__item-tbl tr th, .eiken__item-tbl tr td {
		display: block;
		width: 100%;
	}
	
	#instructor .ecc-title {
		margin: 0 auto 40px;
	}
	
	.trial-contact__cont p {
		text-align: left;
	}
	
	.eiken__item-tbl tr th {
		padding: 0;
	}

	.trial-flow__item {
		display: block;
		position: relative;
	}

	.trial-flow__item-step {
		position: absolute;
		width: 100px;
		left: 0;
		top: -4px;
	}

	.trial-flow__item-cont h3 {
		margin: 0 0 20px 110px;
	}

	.trial-flow__item-cont {
		width: 100%;
	}
	
	.aboutus-btn.ecc-btn {
		margin: 0 auto 50px;
		display: block;
	}
	
	.faq__cont {
		padding: 50px 0 5px;
	}
	
	.instructor__cont {
		padding: 50px 0 55px;
	}
	
	.wpcf7-radio .wpcf7-list-item > label {
		display: flex;
		align-items: center;
	}

	.wpcf7-radio .wpcf7-list-item > label > .wpcf7-list-item-label {
		margin: 0 0 2px 5px;
	}
	
	.wpcf7-response-output::after {
		white-space: pre;
	}
		
	.supportive-environment__cont {
		margin: 40px auto 0 auto;
	}
	
	section#eiken {
		padding: 0;
	}

	.eiken__cont-layout {
		margin: 0;
	}
	
	#english-event .am-bg-cont {
		padding: 80px 0;
	}
	
	.notice__subcont {
		padding: 0 20px;
/* 		-webkit-overflow-scrolling: touch;
		 scrollbar-color: rgba(0, 0, 0, .5) transparent; */
		overflow-y: scroll;
		overflow-x: auto;
		-webkit-overflow-scrolling: auto;
	}
	
	.notice__subcont::-webkit-scrollbar {
		-webkit-appearance: none;
		width: 7px;
		height: 100%;
	}
	.notice__subcont::-webkit-scrollbar-thumb {
		border-radius: 4px;
		background-color: rgba(0, 0, 0, .5);
		box-shadow: 0 0 1px rgba(255, 255, 255, .5);
	}
}

/* @media screen and (max-width:387px) {
	#senior-junior .ecc-title > img {
		bottom: 60px;
	}
} */

@media screen and (max-width:375px) {
	
	 #elementary-class-456 .ecc-title > img {
        bottom: 60px;
    }
	
	.toddler-class__item-table tr th {
		width: 128px;
		padding: 0 10px 0 10px;
	}
}