@charset 'utf-8';

:root {
    --font-size: 2.667vw;
    --contentsWrapper: 94%;
    --mincho: 'Noto Serif JP', serif;
    --yellowColor: #ffff00;
    --redColor: #ff0000;
    --purpleColor: #6600cc;
    --blueColor: #00007b;
    --blackColor: #000;
    --whiteColor: #fff;
    --grayColor: #f8f8f8;
    --darkgrayColor: #d9d9d9;
    --skyblueColor: #e5f2ff;
    --orangeColor: #ff6600;
    --greenColor: #009900;
    --aquaColor: #1d9fd7;
}

html {
    line-height: 1;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: var(--font-size);
    color: var(--blackColor);
}

body {
    padding-top: 0 !important;
    font-size: 1.6rem;
    letter-spacing: -0.03rem;
}

a {
    display: block;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.contentsWrapper {
    width: var(--contentsWrapper);
    margin: 0 auto;
}

.bgGray {
    background-color: var(--grayColor);
}

.yellowText {
    color: var(--yellowColor);
}

.redText {
    color: var(--redColor);
}

.purpleText {
    color: var(--purpleColor);
}

.greenText {
    color: var(--greenColor);
}

.blueText {
    color: var(--blueColor);
}

.boldText {
    font-weight: bold;
}

.minchoText {
    font-family: var(--mincho);
}

.notice {
    padding-left: 1em;
    text-indent: -1em;
}

.onayamiList li {
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.onayamiList li:last-of-type {
    margin-bottom: 0;
}

.checkText {
    padding-left: 2.9rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-indent: -2.9rem;
}

.checkText:before {
    content: '';
    width: 2.2rem;
    height: 1.8rem;
    margin-right: 0.5rem;
    display: inline-block;
    background: url(./img/bg_check.svg) no-repeat center / 100% auto;
}

.bigSection {
    padding: 2rem 0;
}

.bigSection1 {
    padding: 3rem 1rem;
}

.middleSection {
    margin: 2rem auto;
}

.mainHeading {
    margin-bottom: 2rem;
}

.blueGrad {
    padding: 1.5rem 0;
    background: linear-gradient(var(--blueColor) 0%, var(--blackColor) 100%);
    font-size: 2rem;
    font-weight: bold;
    color: var(--whiteColor);
    text-align: center;
}

.conversionBtnList li {
    margin-bottom: 1rem;
}

.conversionBtnList li:last-of-type {
    margin-bottom: 0;
}

.sectionConversionWrap {
    margin-top: 2rem;
}

.sectionConversionWrap .arrowImg {
    width: 32rem;
    margin: 0 auto 1.5rem;
}

.sectionConversionWrap .conversionBtnListText {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

.sectionConversionWrap .counseling .conversionBtnListText {
    color: var(--aquaColor);
}

.sectionConversionWrap .line .conversionBtnListText {
    color: var(--greenColor);
}

.sectionImgBox {
    width: 30rem;
    margin: 0 auto 2rem;
}

.sectionText {
    line-height: 1.5;
}

.illustration {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.illustration img {
    max-width: 12rem;
    max-height: 12rem;
}

.rightArrowLink {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--blueColor);
    text-align: right;
}

.mb20 {
    margin-bottom: 2rem;
}

/* ====================
		header
==================== */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #fff;
}

header .headerPointText {
    padding: 0.5rem 0 0.5rem 4%;
    background-color: var(--blueColor);
    font-size: 1.2rem;
    color: #fff;
}

header .logoWrap {
    padding: 1rem 0;
    display: flex;
    align-items: center;
}

header .logoWrap .headerLogo {
    width: 10.5rem;
}

header .logoWrap .locationList {
    display: flex;
    align-items: center;
}

header .logoWrap .locationList li {
    margin-left: 0.5rem;
    padding: 0.3rem;
    border: 0.1rem solid var(--blackColor);
    font-size: 1.2rem;
}

header .headerNavBtn {
    width: 6.2rem;
    height: 6.2rem;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--whiteColor);
}

header .globalNav {
    width: 100%;
    height: calc(100vh - 6.2rem);
    position: fixed;
    top: 6.2rem;
    left: 100vw;
    z-index: 100;
    background-color: var(--grayColor);
    transition: left 0.5s;
    overflow-y: auto;
}

header .globalNav.activ {
    left: 0;
}

header .globalNav .conversionBtnList {
    padding: 2rem 0;
}

header .globalNav .globalNavList li {
    padding: 0 4%;
    border-top: 0.1rem solid var(--darkgrayColor);
}

header .globalNav .globalNavList li a {
    padding: 1.5rem 0;
    font-size: 1.8rem;
}

/* ====================
		topView
==================== */
#topView {
    padding: 6.2rem 0 2rem;
    background-color: var(--grayColor);
}

#topView .topVisualWrap {
    position: relative;
}

#topView .topImg video {
    width: 100%;
    height: auto;
}

#topView .topVisualWrap .topVisualTexts {
    margin: auto;
    position: absolute;
    top: 3.5rem;
    left: 0;
    right: 0;
}

#topView .topVisualTexts .topViewPointList {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#topView .topVisualTexts .topViewPointList li {
    width: 8rem;
    height: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(rgba(0, 0, 123, 0.4) 0%,
            rgba(0, 72, 131, 0.4) 100%);
    line-height: 1.25;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--whiteColor);
    text-align: center;
}

#topView .topViewHeading {
    margin-bottom: 1.5rem;
    line-height: 1.25;
    font-size: 2.4rem;
    font-weight: bold;
    text-shadow: 0 0 0.4rem var(--whiteColor), 0 0 0.4rem var(--whiteColor),
        0 0 0.4rem var(--whiteColor), 0 0 0.4rem var(--whiteColor),
        0 0 0.4rem var(--whiteColor), 0 0 0.4rem var(--whiteColor),
        0 0 0.4rem var(--whiteColor), 0 0 0.4rem var(--whiteColor),
        0 0 0.4rem var(--whiteColor), 0 0 0.4rem var(--whiteColor),
        0 0 0.4rem var(--whiteColor);
    text-align: center;
    letter-spacing: -0.15rem;
}

#topView .topViewHeading .bigText {
    display: block;
    line-height: 1;
    font-size: 7.5rem;
}

#topView .topViewHeading .minchoText {
    margin-top: 1.5rem;
    font-size: 2.8rem;
}

#topView .redBand {
    margin-top: -0.2rem;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--redColor);
    font-size: 2rem;
    font-weight: bold;
    color: var(--whiteColor);
    text-align: center;
}

#topView .redBand .yellowText {
    font-size: 3rem;
}

#topView .blueBand {
    margin-top: -0.2rem;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--blueColor);
    font-size: 2rem;
    font-weight: bold;
    color: var(--whiteColor);
    text-align: center;
}

#topView .blueBand .yellowText {
    font-size: 3rem;
}

#topView .priceList {
    margin: 1rem auto;
}

#topView .priceList li {
    margin-bottom: 1rem;
}

#topView .priceList li:last-of-type {
    margin-bottom: 0;
}

#topView .noticeList {
    line-height: 1.25;
    font-size: 1.3rem;
}

#topView .noticeList li {
    margin-bottom: 0.5rem;
}

#topView .noticeList li:last-of-type {
    margin-bottom: 0;
}

#topView .priceTxt {
    font-size: 2rem;
    font-weight: bold;
    padding: 1.5rem 0 0 0;
    text-align: center;
    line-height: 1.5;
}

/* sliderWrap */
.sliderWrap .imgBox {
    padding: 1em 0;
}

/* ====================
		onayami
==================== */
#onayami .mainHeading {
    background: url(./img/bg_onayami.webp) no-repeat top right / 16rem;
    font-size: 4.5rem;
    font-weight: bold;
    text-shadow: 0 0 0.4rem var(--whiteColor), 0 0 0.4rem var(--whiteColor),
        0 0 0.4rem var(--whiteColor), 0 0 0.4rem var(--whiteColor),
        0 0 0.4rem var(--whiteColor), 0 0 0.4rem var(--whiteColor),
        0 0 0.4rem var(--whiteColor), 0 0 0.4rem var(--whiteColor),
        0 0 0.4rem var(--whiteColor), 0 0 0.4rem var(--whiteColor),
        0 0 0.4rem var(--whiteColor);
}

#onayami .mainHeading .purpleGrad {
    background: linear-gradient(var(--blackColor) 0%, #80488a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 7rem;
    vertical-align: bottom;
    text-shadow: none;
}

#onayami .mainHeading .center {
    margin-bottom: 1.5rem;
    margin-left: 8.5rem;
    display: inline-block;
}

#onayami .mainHeading .redEmphasis {
    display: inline-block;
    position: relative;
}

#onayami .mainHeading .redEmphasis:before {
    content: '・・';
    position: absolute;
    top: -0.75em;
    left: 0;
    color: var(--redColor);
    text-shadow: none;
}

#onayami .sectionConversionWrap .inviteTextBox {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    font-weight: bold;
    text-align: center;
}

#onayami .sectionConversionWrap .inviteTextBox .logoImg {
    width: 22.5rem;
}

#onayami .sectionConversionWrap .inviteTextBox .smallText {
    width: 1em;
    margin-left: 0.5rem;
    font-size: 2.8rem;
}

#onayami .sectionConversionWrap .inviteTextBox .bigInviteText {
    width: 100%;
    margin-top: 1rem;
    font-size: 4rem;
}

/* ====================
		support
==================== */
#support .imgCaption {
    margin-bottom: 2rem;
    line-height: 1.25;
    text-align: center;
}

/* ====================
		choose
==================== */
#choose {
    padding-bottom: 4rem;
}

#choose .mainHeading {
    line-height: 1.25;
    font-size: 2.8rem;
    text-align: center;
}

#choose .mainHeading img {
    width: 22.5rem;
    display: inline-block;
}

#choose .mainHeading .redText {
    font-size: 4.5rem;
}

#choose .chooseList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#choose .chooseList li {
    width: 31%;
    margin-bottom: 1.5rem;
    padding: 2rem 0.2rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--whiteColor);
    box-shadow: 0 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.25);
}

#choose .chooseList li:nth-last-of-type(-n + 3) {
    margin-bottom: 0;
}

#choose .chooseList .numverIcon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--blueColor);
    font-size: 1.4rem;
    color: var(--whiteColor);
}

#choose .chooseList .imgBox {
    width: 4.9rem;
    height: 4.9rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

#choose .chooseList .imgBox img {
    max-width: 4.9rem;
    max-height: 4.9rem;
}

#choose .chooseList .imgBox2 {
    width: 4.9rem;
    height: 4.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    justify-content: center;
}

#choose .chooseList .imgBox2 img {
    max-width: 4.9rem;
    max-height: 4.9rem;
}

#choose .chooseList .imgBox1 {
    width: 6.4rem;
    height: 5.2rem;
    margin-bottom: 0.3rem;
    display: flex;
    justify-content: center;
}

#choose .chooseList .imgBox1 img {
    max-width: 6.4rem;
    max-height: 5.2rem;
}

#choose .chooseList .pointText {
    line-height: 1.5;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

#choose .chooseList .pointText .long {
    letter-spacing: 0rem;
}

#choose .chooseList .pointText1 {
    line-height: 1.2;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

#choose .chooseList .pointText1 .long {
    letter-spacing: 0rem;
}

/* グラデの線 */

.hr2 {
    height: 3.5px;
    background: skyblue;
    background-image: -webkit-linear-gradient(left, #caeaf7, blue, #caeaf7);
    background-image: -moz-linear-gradient(left, #caeaf7, blue, #caeaf7);
    background-image: -ms-linear-gradient(left, #caeaf7, blue, #caeaf7);
    background-image: -o-linear-gradient(left, #caeaf7, blue, #caeaf7);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* ====================
		feature
==================== */
#feature {
    padding-top: 0;
}

#feature .middleHeadingBox {
    margin-bottom: 2rem;
    font-weight: bold;
}

#feature .middleHeadingBox .point {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    /* display: inline-block; */
    display: block;
    border-radius: 100vh;
    background-color: var(--blueColor);
    text-align: center;
}

#feature .middleHeadingBox .middleHeading {
    line-height: 1.25;
    font-size: 2rem;
    color: var(--blueColor);
}

#feature .onayamiList {
    margin: 3rem auto;
}

#feature .sectionConversionWrap .inviteTextBox {
    margin-bottom: 2rem;
    line-height: 1.25;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
}

/* ====================
		flow
==================== */
#flow .checkText {
    margin: 3rem auto;
    text-align: center;
}

#flow .flowIconBox {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

#flow .flowIconBox img {
    max-width: 4.9rem;
    max-height: 4.9rem;
}

#flow .middleHeading {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

/* ====================
		surgery
==================== */
#surgery #surgeryInkei {
    margin-top: 3rem;
}

#surgery .checkText {
    margin: 2rem auto;
    text-align: center;
}

#surgery .middleSection .smallSection {
    margin: 3rem auto;
}

#surgery .middleSection .smallHeading {
    line-height: 1.25;
    font-size: 1.8rem;
    font-weight: bold;
}

#surgery .middleSection .sectionText {
    margin-bottom: 1.5rem;
}

#surgery .middleSection .sectionText:last-of-type {
    margin-bottom: 0;
}

#surgery .middleSection .middleSectionImg {
    margin-bottom: 1.5rem;
}

#surgery .rightArrowLink {
    margin-top: 3rem;
}

/* ====================
	postoperative
==================== */
#postoperative .postoperativeList li {
    margin-bottom: 3rem;
}

#postoperative .postoperativeList li:last-of-type {
    margin-bottom: 0;
}

/* ====================
		price
==================== */
#price {
    padding-bottom: 4rem;
}

#price .sectionText {
    margin-bottom: 3rem;
}

#price .sectionText:last-of-type {
    margin-bottom: 0;
}

#price .priceNoticeList {
    margin-bottom: 3rem;
    line-height: 1.5;
    font-size: 1.2rem;
}

#price .rightArrowLink {
    margin-top: 3rem;
}

@media screen and (min-width: 781px) {
    .priceWrap .priceDl {
        display: block;
    }

    .priceWrap .priceDl dt {
        padding: 1rem 3rem;
        display: block;
        text-align: center;
    }

    .priceWrap .priceDl dd {
        padding: 0.5rem 1rem;
        justify-content: center;
        align-items: baseline;
    }

    .priceWrap .priceDl dt .priceTitle {
        font-size: 1.8rem;
    }

    .priceWrap .priceDl dt .priceText {
        font-size: 1.4rem;
    }

    .priceWrap .priceDl dt .priceText1 {
        font-size: 1.4rem;
    }

    .priceWrap .priceDl dd .priceNum {
        font-size: 2.8rem;
    }

    .priceWrap .priceDl dd .priceNum .range {
        min-width: initial;
        text-align: center;
    }

    .priceWrap .priceDl dd .priceUnit {
        margin-top: 0.25rem;
        font-size: 1.2rem;
    }
}

/* ====================
	paymentMethod
==================== */
#paymentMethod {
    padding-top: 0;
    padding-bottom: 4rem;
}

#paymentMethod .paymentMethodImg {
    margin-top: 2rem;
}

/* ====================
		faq
==================== */
#faq {
    padding-top: 0;
    background-color: var(--skyblueColor);
}

#faq .faqDl {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--whiteColor);
}

#faq .faqDl:last-of-type {
    margin-bottom: 0;
}

#faq .faqDl dt {
    margin-bottom: 1rem;
    line-height: 1.25;
    font-weight: bold;
    color: var(--greenColor);
}

#faq .faqDl dt,
#faq .faqDl dd {
    display: flex;
}

#faq .faqDl dt:before,
#faq .faqDl dd:before {
    margin-right: 1rem;
    font-size: 2rem;
    font-weight: bold;
}

#faq .faqDl dt:before {
    content: 'Q.';
    margin-top: -0.5rem;
}

#faq .faqDl dd:before {
    content: 'A.';
    color: var(--redColor);
}

#faq .faqDl dd .sectionText {
    width: calc(100% - 2.5rem);
    font-size: 1.4rem;
}

#faq .rightArrowLink {
    margin-bottom: 2rem;
}

/* ====================
		doctor
==================== */
#doctor {
    padding-bottom: 0;
}

#doctor .middleHeading {
    width: 30rem;
    margin: 0 auto 2rem;
    line-height: 1.5;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--blueColor);
}

#doctor .sectionText {
    width: 30rem;
    margin: 0 auto 2rem;
}

#doctor .careerBox {
    padding: 2rem 0 4rem;
    background-color: var(--skyblueColor);
}

#doctor .careerBox .middleHeading {
    width: initial;
    margin-bottom: 1rem;
    font-size: initial;
    font-weight: initial;
    color: initial;
}

#doctor .careerBox .careerDl {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.3rem;
}

#doctor .careerBox .careerDl dt,
#doctor .careerBox .careerDl dd {
    margin-bottom: 1rem;
}

#doctor .careerBox .careerDl dt:last-of-type,
#doctor .careerBox .careerDl dd:last-of-type {
    margin-bottom: 0;
}

#doctor .careerBox .careerDl dt {
    width: 5em;
}

#doctor .careerBox .careerDl dd {
    width: calc(100% - 5em);
}

/* ====================
		place
==================== */
#place {
    padding-top: 0;
}

#place .middleSection {
    margin-bottom: 4rem;
}

#place .middleSection:last-of-type {
    margin-bottom: 0;
}

#place .middleHeading {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
}

#place .middleHeading img {
    width: 18rem;
    margin-right: 0.5rem;
}

#place .placeDl {
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    border: 0.1rem solid var(--darkgrayColor);
}

#place .placeDl dt,
#place .placeDl dd {
    padding: 1.5rem;
    border-bottom: 0.1rem solid var(--darkgrayColor);
    font-size: 1.2rem;
}

#place .placeDl dt:last-of-type,
#place .placeDl dd:last-of-type {
    border-bottom: none;
}

#place .placeDl dt {
    width: calc(4em + 3rem);
    display: flex;
    align-items: center;
    background-color: var(--blueColor);
    color: var(--whiteColor);
}

#place .placeDl dd {
    width: calc(100% - (4em + 3rem));
    line-height: 1.25;
}

/* ====================
		clinic
==================== */
#clinic .clinicImg {
    margin-top: 3rem;
}

/* ====================
		otherPrice
==================== */
#otherPrice .atstBox {
    padding: 2rem 0;
    background-color: var(--skyblueColor);
    margin: 2rem 0;
}

#otherPrice .btn {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

#otherPrice .btn a:first-of-type {
    margin-right: 0.5rem;
}

#otherPrice .atstText {
    font-size: 1.4rem;
    margin-top: 1rem;
    text-align: center;
}

/* ====================
	conversionWrap
==================== */
.conversionWrap {
    margin-bottom: 2rem;
    padding: 1rem 0 3rem;
    background: linear-gradient(var(--blueColor) 75%, var(--blackColor) 100%);
    color: var(--whiteColor);
}

.conversionWrap .conversionText {
    margin-bottom: 1rem;
    line-height: 1.25;
    font-weight: bold;
    letter-spacing: -0.05rem;
    text-align: center;
}

.conversionWrap .telLink {
    margin-bottom: 0;
}

.conversionWrap .conversionBtnList li {
    margin-bottom: 0;
}

.conversionWrap .businessHourText {
    margin-top: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: -0.05rem;
}

/* ====================
	reservationForm
==================== */
#formContents {
    padding-bottom: 4rem;
    background-color: var(--skyblueColor);
    line-height: 1.3;
}

.formBtn {
    margin-bottom: 3rem;
}

@media screen and (min-width: 781px) {
    .formDl dd fieldset {
        grid: auto-flow / repeat(2, 1fr);
    }
}

/* ====================
		footer
==================== */
footer {
    padding: 1.5rem 0 4rem;
    background-color: var(--blueColor);
    line-height: 1.25;
    font-size: 1.2rem;
    text-align: center;
    color: var(--whiteColor);
}

footer .poricyLink {
    margin: 2rem auto;
    display: inline-block;
    text-decoration: underline;
}

/* ====================
	footerFixBtn
==================== */
#footerFixBtn {
    width: 100%;
    padding: 0.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    background-color: var(--blueColor);
}

#footerFixBtn .footerBtnText {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--whiteColor);
    text-align: center;
}

#footerFixBtn .footerBtnList {
    display: flex;
    justify-content: space-between;
}

#footerFixBtn .footerBtnList li {
    width: 32%;
}

#footerFixBtn .footerBtnList1 {
    display: flex;
    justify-content: space-between;
}

#footerFixBtn .footerBtnList1 li {
    width: 49.5%;
}

/* ====================
	confirmPage
==================== */
#confirm .meinHeading {
    margin-bottom: 3rem;
}

#confirm #formContents .verificationText {
    margin-bottom: 3rem;
    line-height: 1.5;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--blueColor);
    text-align: center;
}

#confirm #formContents .contact_form .valueBox {
    padding: 1rem;
    background-color: var(--grayColor);
    line-height: 1.25;
}

#confirm #formContents .contact_form .selectWrap .valueBox {
    width: 100%;
}

#confirm #formContents .contact_form .selectWrap .firstChoice {
    margin-bottom: 1.5rem;
}

#confirm #formContents .button.reset {
    background-color: var(--darkgrayColor);
}

/* ====================
	thanksPage
==================== */
#thanks .sectionText {
    margin-bottom: 1.5rem;
}

#thanks .telText {
    margin-bottom: 3rem;
    text-align: center;
}

#thanks .telText a {
    display: inline;
    color: var(--redColor);
    text-decoration: underline;
}

#thanks .topReturn {
    margin-bottom: 3rem;
}

#thanks .topReturn a {
    padding: 1.5rem 0;
    border-radius: 100vh;
    background: var(--aquaColor) url(./img/bg_submitBtn.svg) no-repeat right 1rem center / 0.5em auto;
    font-size: 2rem;
    font-weight: bold;
    color: var(--whiteColor);
    text-align: center;
}

#thanks .clinicName {
    padding: 1.5rem;
    background-color: var(--blueColor);
    font-size: 1.4rem;
    color: var(--whiteColor);
    text-align: center;
}

/* ====================
	policyPage
==================== */
#policy .sectionText {
    margin-bottom: 3rem;
}

#policy h2 {
    margin-bottom: 3rem;
    line-height: 1.25;
    font-size: 1.8rem;
    text-align: center;
}

#policy dl {
    margin-bottom: 3rem;
}

#policy dl dt {
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: var(--blueColor);
}

#policy dl dd {
    line-height: 1.5;
}

#policy dl dd ul {
    margin: 0.5rem auto;
}

#policy .address {
    color: var(--blueColor);
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
	450px OVER
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
@media screen and (min-width: 451px) {
    :root {
        --font-size: 10px;
    }

    body {
        width: 450px;
        margin: 0 auto;
        box-shadow: 0 0 10px var(--darkgrayColor);
    }

    header,
    #footerFixBtn,
    header .globalNav {
        width: 450px;
        margin: auto;
        right: 0;
    }

    .formDl dd fieldset {
        grid: auto-flow / repeat(2, 1fr) !important;
    }

    #topView {
        padding: 0rem 0 2rem;
    }
}