.large {
	font-size: 1.2rem;
}

.huge {
	font-size: 1.5rem;
}

.small {
	font-size: 0.75rem;
}

.mini {
	font-size: 0.6rem;
}

.tiny {
	font-size: 0.5rem;
}

.red {
	color: #ff0000;
}

.pale {
	color: #888;
}

.bold {
	font-weight: bold;
}

.shadow {
	box-shadow: 0px 4px 4px 0 rgb(0 0 0 / 25%);
}

.large-shadow {
	box-shadow: 5px 5px 15px 0 rgb(0 0 0 / 25%);
}

.shadow_ds {
	filter: drop-shadow(2px 2px 3px rgb(0,0,0,0.3));
}

iframe {
	width: 100%;
  	height: 100vh;
	border: 0;
}

.iframe-scroller {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	height: 100%;
	width: 100%;
}

.page, .subpage {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

.page, .subpage {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

.hide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	user-select: none;
	-webkit-user-select: none;
	z-index: -100 !important;    
}

.hide * {
	user-select: none;
	-webkit-user-select: none;
}

.invisible {
	display: none !important;
}

.bottombar-layout {
	display: flex;
	flex-direction: column;
	justify-content: space-between;    
}

.general-layout {
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}

.page-content {
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	overflow-y: auto;
	width: 100%;
}

.page-content.center {
	justify-content: center;
}

.page-action {
	padding: 10px;
	margin: 0;
	text-align: center;
	width: 100%;    
}

.block {
	width: 100%;
	text-align: center;
	margin-bottom: 32px;
}

.block-title {
	background-color: #4CAF50;
	color: #ffffff;
	margin-bottom: 8px;
	text-align: center;
}

.block-head {
	margin-bottom: 16px;
	text-align: center;
	font-weight: bold;
	padding-bottom: 16px;
	border-bottom: #cccccc solid 1px;
}

.block-content {
	margin-left: 8px;
	margin-right: 8px;
	margin-bottom: 16px;
}

.block-left {
	margin: 0 auto;
	max-width: 640px;
	text-align: left;
}

.block-center {
	margin: 0 auto;
	padding: 4px;
	max-width: 640px;
	text-align: center;
	width: 100%;
}

.block-caption {
	text-align: center;
	color: #ffffff;
	background-color: #00a6c6;
	border-radius: 20px;
	padding: 4px 32px;
}

.block-subtitle {
	margin-top: 24px;
}

.img-button {
	-webkit-appearance: none;
	appearance: none;
    width: 100%;
  	max-width: 100%;
    padding: 0;
    margin: 0;
    background:	transparent;
  	background-repeat: no-repeat;
    border: 0;
    font-size: 0;
    line-height: 0;
    overflow:visible;
    cursor:pointer;
  	display: block;
}

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

.img-button .top-record-button-images {
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.30), 0px 2px 8px 1px rgba(0, 0, 0, 0.10);
    border-radius: clamp(15px, 4vw, 28px);
    width: 100% !important;
}

.float-icon {
	position: absolute;
	top: 70px;
	margin: 0;
	/* background-color: #ffffff; */
	/* padding: 6px 4px; */
	z-index: 10;
	border-radius: 8px;
	width: 72px;
	font-size: 0.6rem;
    line-height: 0.7rem;
}

.float-icon img {
	width: 100%;
}

.float-icon a {
	text-decoration: none;
	color: #000000;
	/* position: fixed;*/
	width: 60px;    
}

.float-icon-fast a {
	text-decoration: none;
	color: #000000;
	/* position: fixed;*/
	width: 80px;    
}

#home .float-icon.fast-walk {
    z-index: 5;
    top: 255px;
    line-height: 1rem;
}

.float-icon.left {
	left: 16px;
}

.float-icon.right {
	right: 16px;
}

/*--------------------------------------------*/
.narrow-spacer {
	width: 8px;
}

.normal-spacer {
	width: 16px;
}

.wide-spacer {
	width: 24px;
}

.double-spacer {
	width: 32px;
}

.vertical {
	display: flex;
	/* width: 100%; */
	width: auto;
	flex-direction: column;
	/* align-items: center; */
	justify-content: flex-start;
}

.horizontal {
	display: flex;
	/* width: 100%; */
	width: auto;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.horizontal > * + * {
	margin-left: 16px;
}

.horizontal.no-gap > * + * {
	margin-left: 0;
}

.horizontal.narrow-gap > * + * {
	margin-left: 8px;
}

.horizontal.normal-gap > * + * {
	margin-left: 16px;
}

.horizontal.wide-gap > * + * {
	margin-left: 24px;
}

.horizontal.double-gap > * + * {
	margin-left: 32px;
}

.horizontal.left {
	justify-content: flex-start !important;
}

.horizontal.center {
	justify-content: center !important;
}

.horizontal.even {
	justify-content: space-evenly !important;
}

.horizontal.between {
	justify-content: space-between !important;
}

.horizontal.right {
	justify-content: flex-end !important;
}

.horizontal.middle {
	align-items: center !important;
}

.horizontal.top {
	align-items: flex-start !important;
}

.horizontal.bottom {
	align-items: flex-end !important;
}

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

.vertical.left {
	align-items: flex-start !important;
}

.vertical.right {
	align-items: flex-end !important;
}

.vertical.center {
	align-items: center !important;
}

.vertical.even {
	justify-content: space-evenly !important;
}

.vertical.middle {
	justify-content: center !important;
}

.vertical.bottom {
	justify-content: flex-end !important;
}

.vertical.bottombar {
	max-height: 100%;
}

.vertical.scrollable {
	height: 100%;
	overflow-y: auto;
	padding: 0 8px;
	-webkit-overflow-scrolling: touch;
	position: relative;
}

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

@supports (-webkit-touch-callout: none) {
	.vertical.scrollable {
		overflow-y: scroll;
		overflow-x: hidden;
	}
}

.scrollable iframe {
	position: absolute;
}

.stretch {
	flex-grow: 2;
	flex-basis: 0px;
}

.expand {
	width: 100%;
}

.tall {
	height: 100%;
}

.vertical > * + * {
	margin-top: 12px;
}

.vertical.no-gap > * + * {
	margin-top: 0;
}

.vertical.narrow-gap > * + * {
	margin-top: 8px;
}

.vertical.normal-gap > * + * {
	margin-top: 12px;
}

.vertical.wide-gap > * + * {
	margin-top: 24px;
}

.vertical.double-gap > * + * {
	margin-top: 32px;
}

.vertical > .no-margin {
	margin-top: 0 !important;
}

.vertical > .narrow-margin {
	margin-top: 8px !important;
}

.vertical > .normal-margin {
	margin-top: 16px !important;
}

.vertical > .wide-margin {
	margin-top: 24px !important;
}

.vertical > .double-margin {
	margin-top: 32px !important;
}

.horizontal > .no-margin {
	margin-left: 0 !important;
}

.horizontal > .narrow-margin {
	margin-left: 8px !important;
}

.horizontal > .normal-margin {
	margin-left: 16px !important;
}

.horizontal > .wide-margin {
	margin-left: 24px !important;
}

.horizontal > .double-margin {
	margin-left: 32px !important;
}

.top-margin {
	margin-top: 28px !important;
}

.bottom-margin {
	padding-bottom: 28px !important;
}

.bottom-margin02 {
	margin-bottom: 28px !important;
}

.side-margin {
	/* margin-left: 16px;
	margin-right: 16px; */
	padding-left: 16px;
	padding-right: 16px;
}

.vertical > .no-side, .horizontal > .no-side {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.vertical > .narrow-side, .horizontal > .narrow-side {
	margin-left: 8px !important;
	margin-right: 8px !important;
}

.vertical > .normal-side, .horizontal > .normal-side {
	margin-left: 16px !important;
	margin-right: 16px !important;
}

.vertical > .wide-side, .horizontal > .wide-side {
	margin-left: 24px !important;
	margin-right: 24px !important;
}

.vertical > .double-side, .horizontal > .double-side {
	margin-left: 32px !important;
	margin-right: 32px !important;
}

.vertical > .no-bottom, .horizontal > .no-bottom {
	margin-bottom: 0 !important;
}

.vertical > .narrow-bottom, .horizontal > .narrow-bottom {
	margin-bottom: 8px !important;
}

.vertical > .normal-bottom, .horizontal > .normal-bottom {
	margin-bottom: 16px !important;
}

.vertical > .wide-bottom, .horizontal > .wide-bottom {
	margin-bottom: 24px !important;
}

.vertical > .double-bottom, .horizontal > .double-bottom {
	margin-bottom: 32px !important;
}

.no-padding {
	padding-left: 0px;
	padding-right: 0px;
}

.narrow-padding {
	padding-left: 8px;
	padding-right: 8px;
}

.normal-padding {
	padding-left: 16px;
	padding-right: 16px;
}

.wide-padding {
	padding-left: 24px;
	padding-right: 24px;
}

.double-padding {
	padding-left: 32px;
	padding-right: 32px;
}

.auto-margin {
	margin: auto;
}

.vertical > .align-left {
	align-self: flex-start;
	text-align: left;
}

.vertical > .align-center {
	align-self: center;
	text-align: center;
}

.vertical > .align-right {
	align-self: flex-end;
	text-align: right;
}

.horizontal > .align-left {
	align-self: flex-start;
	text-align: left;
}

.horizontal > .align-center {
	align-self: center;
	text-align: center;
}

.horizontal > .align-right {
	align-self: flex-end;
	text-align: right;
}

.limit-width-large {
	max-width: 640px;
}

.limit-width-small {
	max-width: 320px;
}

/* ==============
岡田 修正分
============== */

/* ==============
ソクイク 全体へのCSS
============== */

.p-sokuiku {
	padding-top: 72px;
}

.p-sokuiku__wrapper {
    padding: 8px 16px 56px 16px;
    max-width: 640px;
    margin: 0 auto;
}

.p-sokuiku__inner {
    position: relative;
}

.p-sokuiku__main-conainer {
    margin-top: 8px;
    background-color: #fff;
    border-radius: 16px;
    height: 140px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p-sokuiku__main-title-container {
    display: flex;
    align-items: flex-end;
    gap: 0 8px;
    margin-bottom: 16px;
}

.p-sokuiku__main-title-container.p-sokuiku__title-conainer--toes {
    align-items: center;
}

.p-sokuiku__main-title-container.p-sokuiku__title-conainer--fast {
    gap: 0 4px;
    align-items: center;
}

.p-sokuiku__main-img.p-sokuiku__main-img--toes {
    margin-top: 8px;
    margin-right: -16px;
}

.p-sokuiku__main-img.p-sokuiku__main-img--fast {
    margin-top: 2px;
}

.p-sokuiku__main-title {
    margin: 0;
    line-height: 1;
    font-size: 32px;
}

.p-sokuiku__main-title--breath {
    color: #004E8C;
}

.p-sokuiku__main-title--walk {
    color: #FF790B;
}

.p-sokuiku__main-title--toes {
    color: #F2B500;
}
    
.p-sokuiku__main-title--fast {
    color: #22CF3C;
}

.p-sokuiku__main-title .rubi {
    font-size: 14px;
    margin-bottom: 4px;
    text-align: center;
}

.p-sokuiku__main-title span {
    display: block;
}

.p-sokuiku__main-text {
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 150%;
    letter-spacing: 0.84px;
}

.p-sokuiku__main-desc {
    color: #101112;
    text-align: center;
    font-size: 28px;
    letter-spacing: 1.12px;
    margin-bottom: 16px;
    font-weight: 700;
}

.p-sokuiku__main-desc--walk {
    color: #373432;
}

.p-sokuiku__main-desc.p-sokuiku__main-desc--toes {
    color: #2F2E2D;
}

.p-sokuiku__main-pray {
    border-radius: 24px;
    background: #FFF;
    padding: 24px 16px;
    margin-bottom: 40px;
}

.p-sokuiku__main-pray-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 8px;
    margin-bottom: 16px;
    font-size: 18px;
}

.p-sokuiku__pray-img--walk {
    width: 36px;
    height: 36px;
}

.p-sokuiku__pray-img--toes {
    width: 36px;
    height: 36px;
}

.p-sokuiku__pray-img--fast {
    width: 36px;
    height: 36px;
}

.p-sokuiku__main-pray-text span {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: .02em;
}

.p-sokuiku__btn-margin-wrap {
	display: flex;
    gap: 16px;
}

.p-sokuiku__sound-caution {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .04em;
    margin: 0 auto 8px auto;
}

.p-sokuiku__walk-end-message {
    display: flex;
}

.p-sokuiku__walk-end-text {
    width: 71.8%;
    font-size: 14px;
}

/* ==============
ソクイク 作法のCSS改修
============== */
#breath .breath_title {
    color: #002E56;
    margin-bottom: 16px;
}

/* ==============
ソクイク 動画再生画面
============== */

.p-sokuiku__gymnastics-inner {
    margin-top: 8px;
}

#breath video {
    border-radius: 16px;
    width: 95%;
    height: 95%;
}

#breath .video-js .vjs-tech {
    left: 50%;
    transform: translateX(-50%);
}

.video-js {
    background-color: transparent !important;
}

.exercise-start-text {
    max-width: 380px;
    margin-bottom: 40px;
}
/* ==============
ソクイク 動画再生画面 戻るボタン
============== */

.p-sokuiku__gymnastics-back {
	margin: 0 auto;
}

/* ==============
ソクイク 終了画面のCSS
============== */
.p-sokuiku__ending-inner {
	margin-top: 8px;
}

.p-sokuiku__end-title {
    color: #373432;
    margin: 16px 0 24px 0;
    font-size: 28px;
    text-align: center;
}

.p-sokuiku__again-btn {
    background-color: inherit;
    width: 100%;
    color: #002E56;
    border: 0;
    padding: 0 0 0 2px;
    font-weight: 700;
    height: 100%;
    max-width: 100%;
    border-radius: 16px;
}

.p-sokuiku__again-btn.p-sokuiku__again-btn--toes {
    color: #504300;
}

.p-sokuiku-btn-breath-again {
    display: block;
    padding: 0;
    height: 63px;
    text-align: center;
    width: 100%;
    position: relative;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.30), 0px 2px 8px 1px rgba(0, 0, 0, 0.10);
}



.p-sokuiku__back-icon {
    position: absolute;
    top: 50%;
    left: 23%;
    transform: translateY(-50%);
}

/* ==============
ソクイク ポイント画面のCSS
============== */
.p-solkuiku__point-wrap--breath {
	background-color: #E9EEFF;
}

/* ==============
ミルヨ シルヨ ハカルヨ タイトルのCSS
============== */
#msh .header-title p {
    font-size: 24px;
}

@media screen and (max-width: 380px) {
    #msh .header-title p {
        font-size: 22px;
    }
}