/* base class */

/* @font-face {
    font-family: aotf;
    font-weight: 200;
    font-style: regular;
    src: url("../fonts/A-OTF-ShinGoPr5-Regular_3.woff") format("woff");
}

@font-face {
    font-family: aotf;
    font-weight: 400;
    font-style: normal;
    src: url("../fonts/A-OTF-ShinGoPr5-Medium_3.woff") format("woff");
}

@font-face {
    font-family: aotf;
    font-weight: 600;
    font-style: normal;
    src: url("../fonts/A-OTF-ShinGoPr5-Bold_3.woff") format("woff");
} */

:root {
    --color-brown: inherit;
    --color-red: inherit;
    --color-orange: inherit;
    --color-main: inherit;
    --color-brown2: inherit;
    --color-brown3: inherit;
    --color-grey1: inherit;
    --color-yellow: inherit;
    --color-green: inherit;
    --color-pink: inherit;
    --color-brown4: inherit;
    --color-brown5: inherit;
    --color-black1: inherit;
    --color-grey2: inherit;
    --col-space: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.notoserif {
    font-family: 'Noto Serif JP'
}

.colorBrown {
    color: var(--color-brown);
}

.colorRed {
    color: var(--color-red);
}

.underline {
    text-decoration: underline;
}

* {
    font-family: "aotf", "yugoth", sans-serif;
    line-height: 1.7;
}

body {
    font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.modaltrigger {
    cursor: pointer;
}

html *.advent {
    font-family: "advent";
}

html *.advent.lt3 {
    font-weight: 300;
}

html *.advent.bd2 {
    font-weight: bold;
}

html *.yumin {
    font-family: "yumincho";
}

html *.rage {
    font-family: "RageItalicLetPlain";
    font-weight: normal;
}

a.noTd {
    text-decoration: none;
}

.fc-white {
    color: #FFF;
}

.fc-pink {
    color: #f07580;
}

.fc-orange {
    color: var(--color-orange);
}

.fc-black {
    color: #504e4e;
}

.fc-gray {
    color: #a6a6a6;
}

.fc-fb {
    color: #3C5A99;
}

.fc-tw {
    color: #1DA1F2;
}

.fc-ln {
    color: #00B900;
}

::placeholder {
    color: #c6c6c6;
}

.italic {
    font-style: italic;
}

.fw200 {
    font-weight: 200;
}

.fw400 {
    font-weight: 400;
}

.fw600 {
    font-weight: 600;
}

.pl30 {
    padding-left: 30px;
}


/* IE */

:-ms-input-placeholder {
    color: #c6c6c6;
}


/* Edge */

::-ms-input-placeholder {
    color: #c6c6c6;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.bold,
*.bold {
    font-weight: bold;
}

.normal,
*.normal {
    font-weight: normal;
}

.flx {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.flx.inline {
    display: inline-flex;
}

.flx.jc-ce {
    justify-content: center;
}

.flx.jc-sb {
    justify-content: space-between;
}

.flx.jc-sa {
    justify-content: space-around;
}

.flx.jc-fe {
    justify-content: flex-end;
}

.flx.ai-fs {
    align-items: flex-start;
}

.flx.ai-ce {
    align-items: center;
}

.flx.ai-st {
    align-items: stretch;
}

.flx.fd-c {
    flex-direction: column;
}

.flx.flx-wp {
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .flx.flx-wp-sp {
        flex-wrap: wrap;
    }
}

#top2 {
    padding-top: 10px;
    padding-bottom: 100px;
}

.container {
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.containerLg {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.containerSm {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.containerSm.mb {
    margin-bottom: 100px
}

.radiusBg {
    background-color: var(--color-brown);
    padding: 21px 33px;
    border-radius: 50px;
    width: 940px;
    margin-right: auto;
    margin-left: auto;
}

.grayBg {
    background-color: #fafafa;
}

.pinkBg {
    background-color: #EEEEEE;
}

.onHoverImgWrap {
    position: relative;
}

.onHoverImgWrap:hover .onHoverImg {
    display: block;
    position: absolute;
    z-index: 2;
    right: 70px;
    bottom: -40px;
    width: 350px;
    max-width: 350px;
}

.onHoverImg {
    display: none;
}

.showFigure {
    width: 450px;
}

.flexContainer {
    display: flex;
    justify-content: space-between;
}

.flexContainerMain {
    flex-basis: 980px;
    width: 980px;
}

.flexContainerSub {
    flex-basis: 290px;
    width: 290px;
}

@media screen and (max-width: 768px) {
    .flexContainer {
        flex-wrap: wrap;
    }

    .flexContainerMain {
        margin-bottom: 20px;
    }

    .flexContainerMain,
    .flexContainerSub {
        flex-basis: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 661px) {
    .footerWrap .subText {
        margin-bottom: 30px;
    }
}


/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #FFF;
}

.headMar {
    margin-top: 80px;
}

.headerWrap {
    height: 80px;
    background-color: var(--color-main);
}

.headerLogoArea,
.headerMenuArea {
    height: 100%;
}

.headerLogoArea {
    /*     flex-basis: 457px; */
}

.headerMenuArea {
}

.headerLogo {
    height: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
}

.headerLogoImg {
    width: auto;
}

.headerMenuArea {
    height: 100%;
}

.headerMenu {
    height: 100%;
}

.headerMenuLink {
    height: 100%;
    margin: 0 35px;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    transition: .2s;
}

.headerMenuLink.commonBtnRadius {
    height: 40px;
}

.commonInput {
    padding: 11px 15px;
}

input[type="text"].commonInput {
}

.w100p {
    width: 100%;
}

.w50p {
    width: 50%;
}

.privacyBox {
    display: flex;
}

.privacyBox input {
    margin-right: 5px;
}

.grade {
    margin: 0;
    padding: 0px 25px;
}

.grade span,
.grade span i {
    color: #FFF;
    transition: .2s;
    position: relative;
    z-index: 3;
}

.headerMenuLink.grade:after,
.headerMenuLink.pink:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 0;
    height: calc(100% - 4px);
    display: block;
    background-color: #FFF;
    transition: .2s;
}

.headerMenuLink.grade:hover:after {
    width: calc(100% - 4px);
    transition: .2s;
}

.grade.brown2 {
    background-color: var(--color-brown2);
}

.grade.brown2:hover span,
.grade.brown2:hover span i {
    color: var(--color-brown2);
    transition: .2s;
}

.grade.brown3 {
    background-color: var(--color-brown3);
}

.grade.brown3:hover span,
.grade.brown3:hover span i {
    color: var(--color-brown3);
    transition: .2s;
}

.grade.orange {
    background-color: var(--color-orange);
}

.grade.orange:hover span,
.grade.orange:hover span i {
    color: var(--color-orange);
    transition: .2s;
}

.grade.pink {
    background-image: -moz-linear-gradient(40deg, rgb(247, 126, 185) 0%, rgb(250, 188, 215) 100%);
    background-image: -webkit-linear-gradient(40deg, rgb(247, 126, 185) 0%, rgb(250, 188, 215) 100%);
    background-image: -ms-linear-gradient(40deg, rgb(247, 126, 185) 0%, rgb(250, 188, 215) 100%);
}

.grade.pink:hover span,
.grade.pink:hover span i {
    color: rgb(247, 126, 185);
    transition: .2s;
}

.grade.green {
    background-image: -moz-linear-gradient(-130deg, rgb(177, 222, 95) 0%, rgb(255, 241, 13) 100%);
    background-image: -webkit-linear-gradient(-130deg, rgb(177, 222, 95) 0%, rgb(255, 241, 13) 100%);
    background-image: -ms-linear-gradient(-130deg, rgb(177, 222, 95) 0%, rgb(255, 241, 13) 100%);
}

.grade.green:hover span,
.grade.green:hover span i {
    color: rgb(177, 222, 95);
    transition: .2s;
}

.linkWrap {
    display: flex;
    flex-wrap: wrap;
    color: #FFF;
    width: 445px;
}

.linkWrap .link {
    margin-bottom: 20px;
}

.footerWrap .subText {
    color: #BCA6A7;
    font-size: 9px;
    line-height: 1.7;
}

.footerWrap {
    background-color: var(--color-brown);
    padding: 70px 0 20px;
}

.footerLogo {
    width: 336px;
}

.footerLink {
    margin: 0 30px;
    text-decoration: none;
    font-size: 12px;
    colo: #5e5e5e;
}

.copyrite {
    font-size: 12px;
    color: #BCA6A7;
}

.commonBtnRadius {
    border: 2px solid #FFF;
    padding: 10px 30px;
    border-radius: 20px;
}

.commonBtn1 {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.commonBtn2 {
    background-color: var(--color-orange);
    color: #FFF;
    font-size: 30px;
    height: 90px;
    width: 880px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
}

.mrmlAuto {
    margin-right: auto;
    margin-left: auto;
}

.bgGrey1 {
    background-color: var(--color-grey1);
}

.bgYellow {
    background-color: var(--color-yellow);
}

.bgGreen {
    background-color: var(--color-green);
    padding: 27px 68px;
}

.bgPink {
    background-color: var(--color-pink);
}

.explainTitle {
    background-image: url(../img/top/titleBg.svg);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    color: #FFF;
}

.explainCol2Wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.explainCol2Wrap .col {
    min-height: 210px;
    width: 600px;
    display: flex;
    align-items: center;
    padding: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.careerUp .explainCol2Wrap .col {
    padding: 30px 20px;
}

.personImg {
    margin-right: 20px;
}

.explainExampleWrap {
    background-color: var(--color-yellow);
    padding: 70px 70px 40px 70px;
}

.explainExampleWrap.careerUp {
    background-color: var(--color-green);
    padding-top: 40px;
}

.verticalAlignMarginWrap .row:not(:last-child) {
    margin-bottom: 20px;
}

.explainWrap {
    background-color: #fff;
    padding: 70px;
}

.commonText.sm {
    font-size: 14px;
}

.commonText {
    font-size: 18px;
}

.commonText.lg {
    font-size: 22px;
}

.commonText.big {
    font-size: 25px;
}

.borderContainer {
    border: 10px solid var(--color-brown4);
    padding: 40px;
}

.aTagLinkWrap {
    color: #0606FF;
}

.imgSentenceWrap {
    display: flex;
    align-items: center;
}

.imgSentenceWrap img {
    margin-right: 10px;
    min-width: 30px;
}

.commonTitle {
    font-size: 30px;
    line-height: 1.2;
}

.commonTitleBorderBottom {
    font-size: 40px;
    line-height: 1.7;
    font-weight: 600;
    padding-bottom: 8px;
    position: relative;
}

.commonTitleBorderBottom:after {
    content: '';
    max-width: 770px;
    width: 100%;
    height: 14px;
    background-color: var(--color-brown);
    position: absolute;
    bottom: 0;
}

.commonTitleBorderBottom.double:before {
    content: '';
    max-width: 100%;
    width: 100%;
    height: 14px;
    background-color: var(--color-brown5);
    position: absolute;
    bottom: -14px;
}

.fz25 {
    font-size: 25px;
}

.personImg {
    width: 150px;
}

.supplement {
    font-size: 16px;
    text-align: right;
    display: inline-block;
    width: 100%;
}

.explainDesc {
    display: flex;
    background-color: var(--color-grey1);
}

.explainDesc .text {
    font-size: 25px;
    font-weight: 400;
    width: calc(100% - 170px);
}

.commonRequiredIcon {
    font-size: 8px;
    color: #FFF;
    padding: 2px 7px;
    border-radius: 2px;
    background-color: var(--color-main);
    margin-right: 5px;
}

.inputTitle {
    display: flex;
    margin-bottom: 6px;
}

.panWrap {
    background-color: #f8f8f8;
    margin-bottom: 30px;
}

.panFont {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 20px;
    margin: 2px;
}

.panLink {
    text-decoration: underline;
}

.panLink,
.panArrow {
    color: #f07580;
}

.mainViArea {
    position: relative;
    background-image: url(../../assets/img/top/bg.png);
    height: calc(100vh - 80px);
    min-height: 780px;
}

.andSvg {
    margin-right: 10px;
    margin-left: 10px;
}

.mainViWrap {
    display: flex;
    height: 100%;
    margin-left: 156px;
    margin-right: 70px;
    overflow: hidden;
    justify-content: space-between;
}

.mainViWrap .left {
    width: 1060px;
    margin-right: 80px;
}

.mainViWrap .right {
    /* min-width: 480px; */
    margin-left: 10px;
    max-width: 480px;
    width: 45vw;
}

.posRel {
    position: relative;
}

.mainViWrap .right .mailForm {
    background-color: #FFF;
    border-radius: 10px;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 55px;
    padding-bottom: 62px;
    margin-top: 30px;
    min-height: 80vh;
}

.mainViTextWrap1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainViText1 {
    /* font-size: 67px; */
    font-size: 3.95vw;
    line-height: 1.7;
    font-weight: 400;
    color: #FFF;
}

.mainViText2 {
    /* font-size: 46px; */
    font-size: 2.4vw;
    line-height: 1.7;
    color: #FFF;
}

.mainViText3 {
    /* font-size: 35px; */
    font-size: 1.85vw;
    line-height: 1.7;
    color: #FFF;
    text-align: center;
}

.mainViText3Wrap {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 53vw;
}

.mainViText4 {
    font-size: 32px;
    font-weight: bold;
}

.textCenter {
    text-align: center;
}

.textRight {
    text-align: right;
}

.slickArea {
    opacity: 0;
}

.slickArea.active {
    opacity: 1;
    animation-name: fadeInDelay;
    animation-duration: 4s;
}

@keyframes fadeInDelay {
    0% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bgFade {
    0% {
        background-color: rgba(255, 235, 235, 0);
    }

    60% {
        background-color: rgba(255, 235, 235, 0);
    }

    70% {
        background-color: rgba(255, 235, 235, 1);
    }

    90% {
        background-color: rgba(255, 235, 235, 1);
    }

    100% {
        background-color: rgba(255, 235, 235, 0);
    }
}

@keyframes mainLogoBokashi {
    0% {
        filter: blur(1.5rem);
        opacity: 0;
    }

    100% {
        filter: blur(0);
        opacity: 1;
    }
}

.mainViImage img {
    min-height: 640px;
    width: 100%;
    object-fit: cover;
}

.TopicsTtlWrap {
    margin-top: 70px;
}

.TopicsTtlArea {
}

.TopicsTtl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.topicsArtAreaWrap {
    margin-top: 50px;
}

.topicsArtArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.TopicsTtlFontLg {
    font-size: 100px;
    letter-spacing: 0.1em;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.TopicsTtlFont {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.2em;
    font-weight: normal;
}

.topicsArtAreaCol {
    flex-basis: calc(50% - 40px);
}

.topicsArtArea .topicsArtAreaCol:nth-child(n+3) {
    flex-basis: calc(25% - 20px);
    margin-top: 50px;
}

.topicsArtAreaColLink {
    text-decoration: none;
    display: block;
    position: relative;
    margin: 0 10px;
}

.topicsArtAreaColTimeBox {
    position: absolute;
    left: -20px;
    top: -35px;
    z-index: 1;
}

.topicsArtAreaColTime {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.topicsArtAreaColTimeDay {
    font-size: 80px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #504e4e;
}

.topicsArtAreaColTimeYm {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #504e4e;
}

.sm .topicsArtAreaColTimeBox,
.topicsArtArea .topicsArtAreaCol:nth-child(n+3) .topicsArtAreaColTimeBox {
}

.sm .topicsArtAreaColTimeDay,
.topicsArtArea .topicsArtAreaCol:nth-child(n+3) .topicsArtAreaColTimeDay {
    font-size: 60px;
}

.sm .topicsArtAreaColTimeYm,
.topicsArtArea .topicsArtAreaCol:nth-child(n+3) .topicsArtAreaColTimeYm {
    font-size: 16px;
}

.topicsArtArea .topicsArtAreaColInn {
    height: 360px;
    overflow: hidden;
}

.topicsArtArea .topicsArtAreaColInnImgArea {
    height: 100%;
    width: 100%;
}

.topicsArtArea .topicsArtAreaCol:nth-child(n+3) .topicsArtAreaColInn {
    height: 180px;
    overflow: visible;
}

.topicsArtAreaColInnImgArea {
    height: 190px;
    width: 100%;;
}

.mainViArea {
    position: relative;
}

.slickArea {
    opacity: 0;
}

.slickArea.active {
    opacity: 1;
    animation-name: fadeInDelay;
    animation-duration: 4s;
}

@keyframes fadeInDelay {
    0% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.mainViAreaIconBox {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 235, 235, 0);
}

.mainViAreaIconBox.active {
    background-color: rgba(255, 235, 235, 0);
    animation-name: bgFade;
    animation-duration: 4s;
}

@keyframes bgFade {
    0% {
        background-color: rgba(255, 235, 235, 0);
    }

    60% {
        background-color: rgba(255, 235, 235, 0);
    }

    70% {
        background-color: rgba(255, 235, 235, 1);
    }

    90% {
        background-color: rgba(255, 235, 235, 1);
    }

    100% {
        background-color: rgba(255, 235, 235, 0);
    }
}

.mainViAreaIconBox.active {
    background-color: rgba(255, 235, 235, 0);
}

.mainViAreaIcon {
    filter: blur(1.5rem);
    opacity: 0;
}

.mainViAreaIcon.active {
    filter: blur(0);
    opacity: 1;
    animation-name: mainLogoBokashi;
    -webkit-animation-name: mainLogoBokashi;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
}

@keyframes mainLogoBokashi {
    0% {
        filter: blur(1.5rem);
        opacity: 0;
    }

    100% {
        filter: blur(0);
        opacity: 1;
    }
}

.mainViAreaSearchBox {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    width: 100%;
    height: calc(100% - 30px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.mainViAreaSearchBox.active {
    opacity: 1;
    animation-name: fadeInDelay;
    -webkit-animation-name: fadeInDelay;
    animation-duration: 4s;
    -webkit-animation-duration: 4s;
}

.mainViAreaSearchBox.noAb {
    margin-top: 60px;
    margin-bottom: 30px;
    opacity: 1;
    position: static;
}

.formNoContent {
    width: 100%;
}

.mainViAreaSearchIn {
    width: 1100px;
}

@media screen and (max-width: 991px) {
    .mainViAreaSearchIn {
        width: calc(100% - 20px);
    }
}

.noAb .mainViAreaSearchIn {
    width: 100%;
}

.mainViAreaSearchTtlBox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 35px;
    background-color: #EEEEEE;
}

.mainViAreaSearchTtl {
    color: var(--color-orange);
    font-size: 24px;
    letter-spacing: 0.1em;
}

.mainViAreaSearchInputArea {
    /* background-color: rgba(255, 220, 220, 0.42); */
    background-color: #EEEEEE;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.mainViAreaSearchSelectBox {
    position: relative;
    margin-right: 2px;
}

.noGrow .mainViAreaSearchSelectBox {
    flex-grow: unset;
}

.mainViAreaSearchSelectBox.free {
    flex-grow: 2;
}

.free .mainViAreaSearchSelect {
    padding-left: 20px;
}

.mainViAreaSearchSelectBoxIcon {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 18px;
    height: 22px;
}

.mainViAreaSearchSelectBoxIcon i {
    font-size: 24px;
}

.mainViAreaSearchSelect {
    background-color: #FFF;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    padding-left: 10px;
}

.mainViAreaSearchSelect.datepi,
.mainViAreaSearchSelect.prefSelect {
    width: 160px;
}

.mainViAreaSearchSelect.size2 {
    padding-left: 15px;
}

.mainViAreaSearchBtn {
    background-color: var(--color-orange);
    border: none;
    /* 	cursor: pointer; */
    outline: none;
    padding: 0;
    appearance: none;
    width: 150px;
    height: 60px;
    margin: 0 0 0 auto;
    color: #FFF;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainViAreaSearchBtn img {
    margin-right: 5px;
}

.mainViImage img {
    min-height: 640px;
    width: 100%;
    object-fit: cover;
}

.historyCol .topicsArtAreaColInnImgArea {
    height: 80px;
    width: 190px;
}

img.cardClip {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
}

.topicsArtAreaColInnTtlArea {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    height: 120px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.topicsArtAreaColInnTtl {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 36px;
    color: #504e4e;
}

.sm .topicsArtAreaColInnTtlArea,
.topicsArtArea .topicsArtAreaCol:nth-child(n+3) .topicsArtAreaColInnTtlArea {
    position: relative;
    margin-top: -20px;
    height: 80px;
    background-color: rgba(255, 255, 255, 1);
}

.sm .topicsArtAreaColInnTtl,
.topicsArtArea .topicsArtAreaCol:nth-child(n+3) .topicsArtAreaColInnTtl {
    font-size: 15px;
    line-height: 21px;
    height: 40px;
}

.btn {
    border: 2px solid #f07580;
    color: #f07580;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-content: center;
}

.btnWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.btnWrap.noMa {
    margin-top: 0;
}

.btn {
    border: 2px solid #f07580;
    color: #f07580;
    /* 	background-color: transparent; */
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 300px;
    height: 50px;
    margin: 0 10px;
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.1em;
}

.btnImg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}

.right.btnImg {
    right: auto;
    left: 20px;
}

.btn.rightExp {
    margin-top: 50px;
    margin-left: 40%;
}

.lessonTtlWrap {
    margin-top: 70px;
    position: relative;
    padding-bottom: 50px;
}

.lessonTtlArea {
    width: 50%;
    margin-left: 50%;
    padding-bottom: 80px;
}

.lessonTtl {
}

.lessonDescription {
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: 36px;
    display: block;
    margin-top: 35px;
}

.lessonBackGround {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

.lessonBackGroundInner {
    position: relative;
}

.lessonBackGround:before {
    content: "";
    display: block;
    width: calc(100% + 110px);
    height: 80%;
    position: absolute;
    left: -20px;
    top: -25px;
    background-color: #ffebeb;
}

.lessonArtCol {
    width: 305px;
}

.lessonArtColLink {
    display: block;
    text-decoration: none;
}

.lessonArtColLinkImg {
    width: 100%;
    height: 190px;
}

.lessonArtColLinkImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.lessonArtColLinkDescritption {
    border: 1px solid #e2e2e2;
    border-top: none;
}

.lessonArtColLinkDescritptionCap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
}

.lessonArtColLinkDescritptionTagArea {
}

.lessonArtColLinkDescritptionTag {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 8px;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: bold;
    color: #a3a3a3;
    border: 1px solid #a3a3a3;
    line-height: 1;
}

.lessonArtColLinkDescritptionShareArea {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.lessonArtColLinkDescritptionShareTtl {
    color: #e2e2e2;
    display: block;
    margin-right: 10px;
    font-size: 14px;
}

.lessonArtColLinkDescritptionShareIcon {
    margin: 0 5px;
    text-decoration: none;
}

.lessonArtColLinkDescritptionShareIcon i {
    color: #e2e2e2;
    font-size: 14px;
    display: block;
}

.lessonArtColLinkDescritptionTtlArea {
    height: 70px;
    padding: 8px;
    margin-bottom: 10px;
}

.lessonArtColLinkDescritptionTtl {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.1em;
}

.lessonArtColLinkDescritptionZanArea {
    padding: 8px;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}

.lessonArtColLinkDescritptionZan {
    font-size: 11px;
    line-height: 1.33;
    letter-spacing: 0.1em;
}

.lessonArtColLinkDescritptionSchoolInfoArea {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}

.lessonArtColLinkDescritptionSchoolInfoImgArea {
    width: 30px;;
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 10px;
}

.lessonArtColLinkDescritptionSchoolInfoImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.lessonArtColLinkDescritptionSchoolInfoNameArea {
}

.lessonArtColLinkDescritptionSchoolInfoName {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 23px;
    font-weight: normal;
}

.lessonArtColLinkDescritptionBottomArea {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #e2e2e2;
}

.lessonArtColLinkDescritptionBottomAreaDateArea {
    flex-basis: calc(50% - 1px);
    padding: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-right: 1px solid #e2e2e2;
    font-size: 14px;
}

.lessonArtColLinkDescritptionBottomAreaPrefArea {
    flex-basis: 50%;
    padding: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
}

.lessonArtColLinkDescritptionBottomAreaDateArea img,
.lessonArtColLinkDescritptionBottomAreaPrefArea img {
    margin-right: 8px;
}

.fullWidSlick {
    padding-bottom: 50px;
}

.fullWidSlick .slick-slide:nth-child(odd) .lessonArtCol {
    transform: translateY(-25px);
}

.fullWidSlick .slick-slide:nth-child(even) .lessonArtCol {
    transform: translateY(25px);
}

.slick-dots {
    position: absolute;
    bottom: 30px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #e7e7e7;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background: #a8a8a8;
}

.lessonListArea {
    padding-bottom: 70px;
}

.containerTtl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 30px;;
}

.containerTtlEng {
    font-size: 60px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.containerTtlUnder {
    font-size: 24px;
}

.containerTtlJp {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.2em;
    font-weight: normal;
}

.containerTtlJp.fs2 {
    font-size: 20px;
}

.containerTtl.ty2 {
    align-items: flex-start;
}

.ty2 .containerTtlEng {
    font-size: 100px;
    margin-bottom: 20px;
}

.topicsArtAreaCol.sm.blogBox {
    width: 290px;
    flex-basis: 290px;
    margin-left: auto;
    margin: 40px 0 0 0;
}

.contentSearchResult > .topicsArtAreaCol.sm.blogBox.size2,
.contentSearchResult > .topicsArtAreaCol.sm.blogBox {
    width: calc(33.333% - 10px);
    flex-basis: calc(33.333% - 10px);
    /*     margin-bottom: 30px; */
}

.contentSearchResult .rankingCol {
    width: calc(25% - 10px);
    flex-basis: calc(25% - 10px);
}

.blogBox .topicsArtAreaColInnTtlArea {
    display: block;
    height: auto;
    padding: 8px;
    background-color: #FFF;
}

.blogBox .topicsArtAreaColInnDescBox {
    height: 80px;
    overflow: hidden;
    position: relative;
}

.blogBox .topicsArtAreaColInnTtlBox {
    margin-bottom: 10px;;
}

.blogBox .topicsArtAreaColInnDesc {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.05em;
}

.topicsArtAutherArea {
    margin-top: 10px;
}

.topicsArtAutherAreaBy,
.topicsArtAutherAreaNmae,
.topicsArtAutherAreaFav,
.topicsArtAutherAreaFav i {
    font-size: 13px;
    letter-spacing: 0.1em;
}

.topicsArtAutherAreaBy {
    color: #a6a6a6;
}

.topicsArtAutherAreaNmae {
    color: #e57d7d;
}

.topicsArtAutherAreaFav,
.topicsArtAutherAreaFav i {
    color: #e57d7d;
}

.blogTag {
    position: relative;
    color: #3e3a39;
    background-color: #f0f0f0;
    line-height: 1;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 4px 5px 4px 5px;
    margin-right: 2px;
    margin-bottom: 2px;
    border-radius: 3px;
    transition: .2s;
}

a.blogTag:hover {
    background-color: #DDD;
    transition: .2s;
}

.blogTag:before {
    font-family: "Font Awesome 5 Free";
    -webkit-font-smoothing: antialiased;
    display: inline-flex;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    align-items: center;
    content: "\f02b";
    margin-right: 5px;
    color: #3e3a39;
}

.blogContPinkBG {
    position: relative;
    padding: 30px 0;
}

.blogContPinkBG:not(.noBg):before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    margin: auto;
    width: 960px;
    height: 578px;
    background-color: #ffebeb;
}

.blogAreaWrap {
    margin-bottom: 50px;
}

.historyCol {
}

.historyCol .topicsArtAreaColLink {
    display: block;
    width: 460px;
    flex-basis: 460px;
    height: 141px;
    text-decoration: none;
    margin: 0;
    padding: 20px;
    background-color: #f8f8f8;
}

.historyCol .topicsArtAreaColInn {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.topicsArtAreaColInnDescArea {
}

.historyCol .topicsArtAreaColInnTtl {
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 21px;
}

.historyCol .topicsArtAreaColTimeBox {
    left: 10px;
    top: 10px;
}

.historyCol .topicsArtAreaColTimeDay {
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 20px;
}

.historyCol .topicsArtAreaColTimeYm {
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 20px;
}

.historyCol .topicsArtAreaColInnImgArea {
    margin-right: 20px;
}

.historyCol .topicsArtAutherAreaBy,
.historyCol .topicsArtAutherAreaNmae,
.historyCol .topicsArtAutherAreaFav,
.historyCol .topicsArtAutherAreaFav i {
    font-size: 14px;
    letter-spacing: 0.1em;
}

.yogaLessonListArea {
    display: flex;
    justify-content: space-between;
    align-content: stretch;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-bottom: 40px;
}

.yogaLessonList {
    display: flex;
    justify-content: center;
    position: relative;
    /* 	width: 385px; */
    width: calc(25% - 20px);
    height: 272px;
    margin-bottom: 25px;
}

.yogaLessonListBg {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
    z-index: -1;
}

.yogaLessonListContent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    margin: 20px;
    padding: 20px;
    border: 2px solid #FFF;
    text-align: center;
    z-index: 1;
}

.yogaLessonListContentTtlArea {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;;
    border-bottom: 1px solid #FFF;
}

.yogaLessonListContentTtl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 50px;
    color: #FFF;
    font-size: 24px;
    letter-spacing: 0.2em;
    line-height: 24px;
}

.yogaLessonListContentTtl span {
    font-size: 18px;
    letter-spacing: 0.2em;
    color: #FFF;
    line-height: 20px;
}

.yogaLessonListContentDescArea {
    padding-top: 10px;
}

.yogaLessonListContentDesc {
    color: #FFF;
}

.yogaCourse .yogaLessonList {
    height: 385px;
}

.yogaCourse .yogaLessonList.lg {
    width: calc(33% - 20px);
    /* 	width: calc(50% - 15px); */
}

.yogaCourse .yogaLessonListContentTtl {
    height: auto;
    line-height: 1.33;
}

.yogaCourse .yogaLessonListContentTtlArea {
    border: none;
}

.yogaCourse .yogaLessonListContentDesc {
    font-size: 18px;
}

.slick-arrow {
    color: #FFF;
    background-color: #504e4e;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
    opacity: 0.9;
}

.slick-arrow i {
    color: #FFF;
    font-size: 18px;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.jobBtn {
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1036px;
    border-radius: 10px;
    border: 5px solid var(--color-orange);
}

.jobBtnCir {
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1036px;
    border: 5px solid var(--color-orange);
    border-radius: 50px;
    color: black;
}

.jobBtn a {
    font-size: 30px;
    line-height: 1.7;
}

.eventBannerArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.eventBanner {
    flex-basis: calc(50% - 20px);
    position: relative;
    text-decoration: none;
}

.eventBannerBg {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
    z-index: -1;
}

.eventBannerInner {
    width: 100%;
    height: 272px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.eventBannerTtl {
    width: 320px;
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid #FFF;
}

.eventBannerLogo {
    border-bottom: 1px solid #FFF;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.eventBannerTxt {
    color: #FFF;
    font-size: 16px;
}

.rankingWrap {
}

.rankingTopArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;;
}

.rankingTopImg {
    width: 60%;
}

.rankingTopImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.rankingTopDetails {
    width: 38%;
}

.rankingTopDetailsCrown {
    margin-bottom: 30px;;
}

.rankingTopDetailsInfo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.rankingTopDetailsInfoImgArea {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
}

.rankingTopDetailsInfoImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.rankingTopDetailsInfoDescArea {
}

.rankingTopDetailsInfoDescRev {
    font-size: 11px;
}

.rankingTopDetailsInfoDescName {
    font-size: 24px;
    color: #444444;
}

.rankingTopDetailsInfoDescSchool {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.rankingTopDetailsInfoDescSchoolImgArea {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.rankingTopDetailsInfoDescSchoolImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.rankingTopDetailsInfoDescScoolName {
    line-height: 1;
    font-size: 13px;
}

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

.rankingTopDetailsInfoDescTxt {
    color: #a6a6a6;
    font-size: 13px;
}

.rankingTopDetailsInfoDescTagArea {
    margin-top: 10px;
}

.rankingSlickWrap {
    padding-bottom: 80px;
}

.rankingCol {
    width: 270px;
}

.rankingColLink {
    display: block;
}

.rankingColCrown img {
    margin: 0 auto 20px auto;
    display: block;
}

.rankingColBgImgAreaWrap {
    position: relative;
}

.rankingColBgImgArea {
    height: 170px;
    width: 100%;
}

.rankingColBgImgArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.rankingColUserImgArea {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -45px;
    margin: auto;
}

.rankingColUserImgArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

#sectionJob .rankingColDescArea {
    height: 150px;
    max-height: 150px;
    background: #FFF;
}

.rankingColDescArea {
    margin-top: 50px;
    padding: 0 9px 20px 9px;
    height: 140px;
    word-break: break-all;
}

.LeftMenuWrap .rankingColDescArea {
    height: auto;
}

.rankingColDescArea.noMargin {
    margin-top: 0;
}

.rankingColDescNameArea {
    text-align: center;
}

.rankingColDescNameArea.tal {
    text-align: left;
}

.rankingColDescName {
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.rankingColDescNumArea {
    text-align: center;
}

.rankingColDescNum {
    font-size: 13px;
}

.rankingColDescDetailArea.rankingColDescDetailArea.nomask {
    height: auto;
}

.rankingColDescDetailArea.nomask:after {
    display: none;
}

.rankingColDescDetailArea {
    height: 80px;
    overflow: hidden;
    position: relative;
}

.rankingColDescDetail {
    font-size: 13px;
    word-break: break-all;
}

.bottomBannerArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.bottomBanner {
    display: block;
    flex-basis: calc(25% - 20px)
}

.bottomBanner.lg {
    flex-basis: calc(50% - 20px)
}

.bottomBanner img {
    width: 100%;
}

.jArticleContent {
    width: 980px
}

#sectionJob {
    padding-top: 70px;
    padding-bottom: 60px;
}

.sectionTtlWrap {
    text-align: center;
    margin-top: 100px;
}

.sectionTtlArea {
    margin-bottom: 20px;
}

.sectionTtl {
    font-size: 24px;
}

.sectionTxtArea {
    font-size: 14px;
}

.lessonGaiyouWrap {
    width: 100%;
    padding: 20px 35px;
    margin-top: 35px;;
}

.lessonGaiyouRow {
    margin-bottom: 20px;
}

.lessonGaiyouHead {
    flex-basis: 145px;
    font-size: 14px;
    font-weight: bold;
}

.lessonGaiyouBody {
    flex-basis: calc(100% - 145px);
    font-size: 14px;
}

.FormAreaWrap {
    margin-top: 25px;
    padding: 30px 35px;
}

.FormAreaWrapMb {
    padding-bottom: 30px
}

.FormAreaTtlArea {
    padding-bottom: 10px;
    border-bottom: 1px solid #FFF;
    margin-bottom: 30px;
}

.FormAreaTtl {
    font-size: 18px;
    font-weight: bold;
}

.FormRow {
    margin-bottom: 30px;
}

.FormRowLabelArea {
    margin-bottom: 10px;
}

.FormRowLabel {
    font-size: 14px;
    font-weight: bold;
}

.FormRowLabel.normal {
    font-weight: 400;
}

.FormRowLabel small {
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    display: block;
}

.FormRowInputArea {
    font-size: 14px;
    font-weight: bold;
}

.FormRowInput {
    font-size: 14px;
    width: 100%;
    border: 1px solid var(--color-orange);
    background-color: #FFF;
    border-radius: 5px;
    padding: 10px 25px;
    outline: none;
    filter: none;
    transition: .3s;
}

input[type="checkbox"].FormRowInput {
    width: inherit;
}

.flx .FormRowInputArea.radio:not(:last-child) {
    margin-right: 10px;
}

.FormRowInput.radio {
    width: auto;
    margin-top: 0px;
    margin-right: 5px;
}

.FormRowInput.short,
.FormRowInput.select {
    width: 200px;
}

.FormRowInput.select.long {
    width: 500px;
}

.FormRowInput:focus {
    filter: drop-shadow(0 0 3px #f07580);
    transition: .3s;
}

textarea.FormRowInput {
    resize: none;
}

.birthdayForm {
    justify-content: space-between;
}

.birthdayForm .FormRowInput {
    flex-basis: 30%;
}

.FormRowInput:disabled,
.FormRowInput.disabled {
    border: none;
    background-color: transparent;
    word-break: break-word;
}

.privacypolicyArea {
    height: 200px;
    overflow: hidden;
    background-color: #FFF;
    padding: 10px;
}

.privacypolicyAreaIn {
    height: 100%;
    overflow-y: scroll;
}

.checkHid {
    display: none;
}

.ppCheck {
    position: relative;
    padding-left: 27px;
    font-size: 14px;
}

.ppCheck:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid #cdcdcd;
    border-radius: 3px;
    background-color: #FFF;
}

.ppCheck:after {
    content: "";
    position: absolute;
    left: 3px;
    bottom: 10px;
    top: 0;
    margin: auto;
    display: none;
    width: 22px;
    height: 10px;
    border-bottom: 3px solid #dc70a2;
    border-left: 3px solid #dc70a2;
    transform: rotate(-40deg);
}

.checkHid:checked ~ .ppCheck:after {
    display: block;
}

.btn2 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 30px;
    min-width: 230px;
    line-height: 1;
    font-size: 24px;
    color: #FFF;
    letter-spacing: 0.1em;
    appearance: none;
    border-radius: 5px;
    background-image: -moz-linear-gradient(90deg, rgb(207, 10, 60) 0%, rgb(212, 33, 79) 60%, rgb(216, 56, 97) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(207, 10, 60) 0%, rgb(212, 33, 79) 60%, rgb(216, 56, 97) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(207, 10, 60) 0%, rgb(212, 33, 79) 60%, rgb(216, 56, 97) 100%);
}

.btn2.gray {
    background-image: -moz-linear-gradient(90deg, rgb(165, 165, 165) 0%, rgb(199, 199, 199) 60%, rgb(215, 215, 215) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(165, 165, 165) 0%, rgb(199, 199, 199) 60%, rgb(215, 215, 215) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(165, 165, 165) 0%, rgb(199, 199, 199) 60%, rgb(215, 215, 215) 100%);
}

.btn2.sm {
    font-size: 16px;
    min-width: 160px;
    padding: 15px;
}

.btn2.w100 {
    width: 100%;
}

.error label {
    color: red;
}

.instHeadWrap {
    border-bottom: 3px solid #e57d7d;
}

.instHead {
    padding: 15px 25px;
}

.instHeadLeft {
}

.instHeadLeftTop {
}

.instHeadTtlArea {
    margin-right: 10px;
}

.instHeadTtl {
    font-size: 24px;
    letter-spacing: 0.1em;
}

.instHeadGoodArea {
}

.instHeadGoodNum {
    font-size: 18px;
    letter-spacing: 0.1em;
}

.instHeadGoodBtn {
    padding: 2px 10px;
    font-size: 14px;
    border-radius: 2px;
    border: 2px solid #e57d7d;
}

.instHeadLeftBottom {
}

.instHeadTelArea {
    font-size: 26px;
}

.instHeadTel {
    font-size: 26px;
    text-decoration: none;
    letter-spacing: 0.1em;
}

.instHeadTel span {
    font-size: 18px;
    letter-spacing: 0.1em;
}

.instHeadSns {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #e57d7d;
    margin-left: 10px;
}

.instHeadSns i {
    line-height: 1;
}

.instHeadMenuWrap {
    list-style: none;
}

.instHeadMenu {
    border-left: 1px solid #e57d7d;
    line-height: 1;
}

.instHeadMenu:first-child {
    border-left: none;
}

.instHeadMenuLink {
    list-style: none;
    margin: 0 20px;
    line-height: 1;
    font-size: 15px;
    cursor: pointer;
    transition: .2s;
}

.instHeadMenuLink:hover {
    color: #f07580;
    transition: .2s;
}

.instHeadJahaLogoArea {
}

.instHeadJahaLogo {
    padding: 5px 10px;
}

.instHeadJahaLogo > img {
    width: 80px;
}

.instHeaderMa {
    margin-top: 112px;
}

.instMainViContent {
    position: relative;
    margin-bottom: 60px;
}

.instMainViContentImgArea {
    width: 100%;
    height: 796px;
}

.instMainViContentImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.instMainViContentTxtAreaWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instMainViContentTxtArea {
    height: 360px;
    width: 100%;
    background-color: rgba(229, 125, 125, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.instMainViContentTxt {
}

.instMainViContentTxtS1 {
    font-size: 24px;
    letter-spacing: 0.1em;
}

.instMainViContentTxtS2 {
    font-size: 60px;
    letter-spacing: 0.1em;
}

.fullWidContentWrapMa {
    margin-bottom: 80px;
}

.fullWidContentWrap {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.fullWidContentImgArea {
    flex-basis: 50%;
    height: 600px;
}

.fullWidContentImgArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.fullWidContentTxtArea {
    flex-basis: 50%;
    padding: 80px 50px 60px 50px;
}

.fullWidContentTxtTtlArea {
    margin-bottom: 20px;
}

.fullWidContentTxtTtl {
}

.fullWidContentTxtLg {
    font-size: 60px;
    letter-spacing: 0.1em;
    line-height: 1;
}

.fullWidContentTxtJp {
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 1;
}

.fs2 .fullWidContentTxtLg {
    font-size: 16px;
    font-weight: normal;
}

.fs2 .fullWidContentTxtJp {
    font-size: 30px;
    font-weight: normal;
}

.fullWidContentTxtDtl {
    font-size: 16px;
    letter-spacing: 0.1em;
}

.QualificationAreaWrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 40px 0;
}

.QualificationBox {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.QualificationImg {
    width: 100%;
    height: 100%;
}

.QualificationImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.QualificationTxtArea {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 50%;
    background-color: rgba(255, 229, 240, 0.6);
    margin: 10px;
    border: 2px solid #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.QualificationTxt {
    font-size: 15px;
    line-height: 30px;
    font-weight: bold;
    z-index: 2;
    text-align: center;
}

.GalleryAreaWrap {
    display: flex;
    justify-content: space-around;
    /* 	justify-content: space-between; */
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.GalleryAreaWrap table {
    width: 100%;
    table-layout: fixed;
}

.GalleryAreaWrap.borderOn table tr td {
    border-collapse: collapse;
}

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

.GalleryAreaWrap.borderOn table tr td {
    border: 1px dashed #d5d5d5;
}

.GalleryAreaWrap table tr td {
    padding: 0 10px;
    height: 360px;
}

.GalleryAreaWrap table tr td:first-child {
    padding-left: 0;
}

.GalleryAreaWrap table tr td:last-child {
    padding-right: 0;
}

.GalleryAreaWrap table tr td img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.GalleryBox {
    width: calc(33.333% - 10px);
    height: 360px;
    margin-bottom: 20px;
    position: relative;
}

.GalleryBox > a {
    display: block;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    transition: .4s;
}

.GalleryBox > img,
.GalleryBox > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.GalleryBox > p,
.GalleryBox > a > p {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .4);
    color: #FFF;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    letter-spacing: 0.1em;
}

.GalleryBox > a:hover {
    transform: translateY(-20px);
    transition: .4s;
}

.insCopyrightWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: var(--color-orange);
}

.insCopyright {
    font-size: 12px;
    letter-spacing: 0.2em;
    line-height: 1;
    color: #FFF;
}

.LeftMenuWrap {
    margin-top: 20px;
    padding: 30px 15px 15px 15px;
}

.LeftMenuTtlArea {
    margin-bottom: 10px;
}

.LeftMenuTtl {
}

.LeftMenuTtlEn {
    font-size: 24px;
    letter-spacing: 0.1em;
    font-weight: normal;
    line-height: 1;
}

.LeftMenuTtlJp {
    font-size: 16px;
    letter-spacing: 0.2em;
    font-weight: normal;
    line-height: 1;
}

.datepicker-inline {
    width: 100%;
    background-color: #FFF;
    padding: 10px;
}

.datepicker:not(.datepicker-inline) {
    margin-top: 90px;
}

.datepicker table {
    width: 100%;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active:active {
    color: #fff;
    background-color: #f87fba;
    border-color: #f87fba;
    background-image: none;
}

.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active.focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active:active:hover {
    color: #fff;
    background-color: #f87fba;
    border-color: #f87fba;
    background-image: none;
}

.datepicker table tr td span.active.active.focus,
.datepicker table tr td span.active.active:focus,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active.disabled.active.focus,
.datepicker table tr td span.active.disabled.active:focus,
.datepicker table tr td span.active.disabled.active:hover,
.datepicker table tr td span.active.disabled:active.focus,
.datepicker table tr td span.active.disabled:active:focus,
.datepicker table tr td span.active.disabled:active:hover,
.datepicker table tr td span.active.disabled:hover.active.focus,
.datepicker table tr td span.active.disabled:hover.active:focus,
.datepicker table tr td span.active.disabled:hover.active:hover,
.datepicker table tr td span.active.disabled:hover:active.focus,
.datepicker table tr td span.active.disabled:hover:active:focus,
.datepicker table tr td span.active.disabled:hover:active:hover,
.datepicker table tr td span.active:active.focus,
.datepicker table tr td span.active:active:focus,
.datepicker table tr td span.active:active:hover,
.datepicker table tr td span.active:hover.active.focus,
.datepicker table tr td span.active:hover.active:focus,
.datepicker table tr td span.active:hover.active:hover,
.datepicker table tr td span.active:hover:active.focus,
.datepicker table tr td span.active:hover:active:focus,
.datepicker table tr td span.active:hover:active:hover {
    color: #fff;
    background-color: #f87fba;
    border-color: #f87fba;
    background-image: none;
}

.leftMenuArticleWrap {
}

.leftMenuArticle {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    text-decoration: none;
    transition: .2s;
}

.leftMenuArticle:hover {
    background-color: #FFF;
    transition: .2s;
}

.leftMenuArticleImgArea {
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.leftMenuArticleImgArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.leftMenuArticleTxtArea {
    width: calc(100% - 80px);
}

.leftMenuArticleTxtDateArea {
}

.leftMenuArticleTxtDate {
    font-size: 12px;
    line-height: 15px;
}

.leftMenuArticleTxtTtlArea {
}

.leftMenuArticleTxtTtl {
    font-size: 12px;
    line-height: 15px;
}

.LessonContentTtlWrap {
    display: flex;
    justify-content: flex-start;
}

.LessonContentTtlImgArea {
    width: 385px;
    height: 270px;
    margin-right: 35px;
}

.LessonContentTtlArea {
    width: calc(100% - 420px);
}

.LessonContentTtl {
    display: block;
    margin-top: 20px;
}

.LessonContentTtlEn {
    font-weight: 300;
    font-size: 50px;
    letter-spacing: 0.1em;
    line-height: 1.27;
}

.LessonContentTtlEnMin {
    font-weight: normal;
    font-size: 24px;
    letter-spacing: 0.2em;
    line-height: 1.77;
}

.LessonContentDesc {
    display: block;
    margin-top: 10px;
    letter-spacing: 0.2em;
}

.contetnSearchWrap {
    margin-top: 30px;
    margin-bottom: 60px;
}

.contetnSearchTtlArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.contetnSearchTtl {
    font-size: 18px;
    letter-spacing: 0.2em;
    font-weight: normal;
}

.contetnSearchSelect {
    margin-top: 0;
}

.contetnSearchSelect .mainViAreaSearchSelect {
    border: 1px solid #d9d9d9;
    height: auto;
    padding: 10px 20px;
    margin: 0;
}

.contentSearchResult {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5PX;
    margin-left: -5px;
}

.contentSearchResult .lessonArtCol,
.contentSearchResult .rankingCol {
    margin-bottom: 30px;
    margin-right: 5px;
    margin-left: 5px;
}

.pagerWrap {
    margin-top: 20px;
}

.pagerArea {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}

.pagerLi {
}

/* .pagerLi>a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    margin-right: 5px;
    border: 1px solid #e2e2e2;
    color: #777777;
}

.pagerLi>a:hover,
.pagerLi.active>a,
.pagerLi>a:hover i,
.pagerLi.active>a i {
    border: 1px solid var(--color-main);
    background-color: var(--color-main);
    color: #FFF;
} */

.topicsArtAutherAreaFavBtn {
    font-size: 12px;
    padding: 2px 5px;
    border: 1px solid #f07580;
    background-color: #FFF;
    border-radius: 2px;
    cursor: pointer;
    transition: .2s;
}

.topicsArtAutherAreaFavBtn > i {
    font-size: 14px;
    transition: .2s;
}

.topicsArtAutherAreaFavBtn:hover,
.topicsArtAutherAreaFavBtn.active {
    background-color: #f07580;
    color: #FFF;
    transition: .2s;
}

.topicsArtAutherAreaFavBtn:hover > i,
.topicsArtAutherAreaFavBtn.active > i {
    color: #FFF;
    transition: .2s;
}

.articleCotentInfoArea .topicsArtAutherArea {
    margin-top: 0;
}

.articleCotentTtlWrap {
    display: flex;
}

.flexContainerMainRArea {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
    flex-direction: column;
}

.flexContainerMain.w100 {
    width: 100%;
    flex-basis: 100%;
}

.articleCotentTtlTimeTagArea {
    margin-bottom: 20px;
}

.articleCotentTtlTime {
    font-size: 16px;
    display: block;
    letter-spacing: 0.1em;
    margin-right: 30px;
}

.articleCotentTtlArea {
    margin-bottom: 20px;
}

.articleCotentTtl {
    font-size: 24px;
    font-weight: bold;
}

.articleCotentInfoArea {
}

.articleCotentInfoArea .lessonArtColLinkDescritptionSchoolInfoArea {
    padding-left: 0;
}

.lessonDetailWrap {
    margin-top: 40px;
    margin-bottom: 40px;
}

.lessonDetailWrap.news {
    margin-top: 0;
}

.lessonDetailTtlArea {
    margin-bottom: 20px;
}

.lessonDetailTtl {
    font-size: 25px;
    letter-spacing: 0.1em;
}

.lessonDetailTable {
    padding: 30px 20px;
}

.lessonDetailTableRow {
    margin-bottom: 20px;
}

.lessonDetailTableRow:last-child {
    margin-bottom: 0;
}

.lessonDetailTableHead {
    font-size: 18px;
}

.lessonDetailTableBody {
    font-size: 14px;
}

@media screen and (max-width: 991px) {
    .wgiContentArea {
        max-width: 100%;
    }
}

.wgiContentArea h3 {
    display: block;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 18px;
    margin-bottom: 30px;
}

.wgiContentArea p {
    display: block;
    font-weight: normal;
    letter-spacing: 0.1em;
    font-size: 16px;
    line-height: 1.77;
    margin-bottom: 10px;
}

.wgiContentArea p,
.wgiContentArea a,
.wgiContentArea span {
    word-break: break-all;
}

.wgiContentArea img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .wgiContentArea img {
        display: block;
        width: 70%;
        height: auto;
        margin: 70px auto;
    }
}

.wgiContentArea table {
    width: 100% !important;
    table-layout: fixed;
}

.wgiContentArea.borderOn table tr td {
    border-collapse: collapse;
}

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

.wgiContentArea.borderOn table tr td {
    border: 1px dashed #d5d5d5;
}


/* .wgiContentArea table tr td { */


/*     padding: 0 10px; */


/*     height: 200px; */


/*     width: auto !important; */


/* } */

.wgiContentArea table tr td:first-child {
    padding-left: 0;
}

.wgiContentArea table tr td:last-child {
    padding-right: 0;
}

.wgiContentArea table tr td img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.snsShareArea > a {
    margin: 0 5px;
}

.lessonTagWrap {
    margin-top: 30px;
    padding: 10px 20px 8px 20px;
    flex-wrap: wrap;
}

.lessonTagT {
    margin-right: 20px;
}

.rsvWrap {
    margin-top: 30px;
}

.otherLesson {
}

.otherLessonTtlArea {
    margin-bottom: 20px;
}

.otherLessonTTl {
    border-bottom: 1px solid #fafafa;
}

.otherLessonTTlEng {
    font-size: 24px;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-right: 10px;
}

.otherLessonTTlJp {
    font-size: 16px;
    letter-spacing: 0.2em;
    display: inline-block;
}

.LeftMenuInstInfo {
}

.LeftMenuInstInfoImg {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.LeftMenuInstInfoImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.LeftMenuInstinfoNameArea {
    text-align: center;
    margin-top: 20px;
}

.LeftMenuInstinfoNameArea {
}

.LeftMenuInstinfoNameL {
    font-size: 12px;
    line-height: 20px;
}

.LeftMenuInstinfoName {
    font-size: 16px;
    line-height: 20px;
}

.LeftMenuInstinfoFav {
}

.otherLessonArt {
    margin-bottom: 60px;
}

.LeftMenuInstinfoDetailArea {
    margin-top: 10px;
}

.LeftMenuInstinfoDetail {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.1em;
}

.LeftMenuInstinfoSchol {
    margin: 5px 0;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
}

.modalInImageArea {
    text-align: left;
}

.modalInImage {
    max-width: 300px;
}

.remodal {
    max-width: 50%;
}

.modalInContentArea {
    width: 100%;
    margin: 0 auto;
}

.modalInContentArea {
}

.modalInContentBorder {
    border: 2px solid #f87fba;
    text-align: left;
}

.modalInContentTtl {
    background-color: #f87fba;
    color: #FFF;
    padding: 0 10px;
}

.modalInContentInputFormWrap {
    max-width: 370px;
    margin: 0 auto;
    padding: 0 0 30px 0;
}

.fullWidContentTxtDtlRow {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.fullWidContentTxtDtlRowTtl {
    font-weight: normal;
    flex-basis: 140px;
    letter-spacing: 0.1em;
}

.fullWidContentTxtDtlRowDtl {
    flex-basis: calc(100% - 140px);
    letter-spacing: 0.1em;
}

.fullWidContentTxtDtlRowDtl .instHeadSns {
    margin-left: 0;
    margin-right: 10px;
}

.noData {
    display: block;
    text-align: center;
    width: 100%;
    margin: 60px 0;
}

.noData.noDataLessonN {
    margin: 60px 0;
}

.noData.noDataTopics {
    margin: 60px 0;
}

.noData.noDataBlog {
    display: block;
    width: 100%;
    margin: 220px 0;
    text-align: center;
    position: relative;
}

.fullWidSlick:not(.slick-initialized),
.BlogSlick:not(.slick-initialized),
.BlogHisSlick:not(.slick-initialized),
.EventSlick:not(.slick-initialized) {
    display: flex;
    justify-content: center;
}

.fullWidSlick:not(.slick-initialized) > div,
.BlogSlick:not(.slick-initialized) > div,
.BlogHisSlick:not(.slick-initialized) > div,
.EventSlick:not(.slick-initialized) > div {
    margin: 0 20px;
}

.instMainViH1 {
    position: absolute;
    top: 0;
    left: 0;
}

.snsShareArea {
    padding-bottom: 10px;
}

.peopleImg {
    /* position: absolute; */
    /* bottom: -19%; */
}

.footerBigLinkContainer {
    margin-top: 100px;
    margin-bottom: 100px;
}

.footerBigLinkWrap .col.longer {
    flex-basis: 100%;
}

.footerBigLinkWrap .col {
    height: 150px;
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footerBigLinkWrap .col .fa-chevron-right {
    position: absolute;
    right: 30px;
}

.footerBigLink {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-right: 50px;
    padding-left: 50px;
}

ul.menu {
    padding: 0;
    list-style: none;
    width: 100%;
    margin: 20px auto;
    clear: both;
    display: table;
    margin-bottom: 100px;
}

ul.menu .list {
    font-size: 26px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    vertical-align: sub;
    background: var(--color-brown);
    color: #FFF;
    clear: both;
    position: relative;
    line-height: 1.6;
    margin-bottom: 10px;
}

ul.menu .active > a {
    text-transform: uppercase;
    font-weight: bold;
}

ul.menu .list a {
    text-decoration: none;
    padding: 17px 80px 17px 45px;
    display: block;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

ul.menu .active > .items {
    display: block;
    background: var(--color-grey1);
    padding: 0px;
    height: auto;
    color: var(--color-black1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 200ms;
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    font-size: inherit;
}

ul.menu .list .items {
    height: 0px;
    overflow: hidden;
    font-size: 18px;
}

ul.menu .active > .items {
    display: block;
    background: var(--color-grey1);
    padding: 0px;
    height: auto;
    color: var(--color-main);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 200ms;
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

ul.menu .active .accordionBtn .close {
    display: none;
}

ul.menu .accordionBtn .close {
    display: block;
}

ul.menu .active .accordionBtn .active {
    display: block;
}

ul.menu .accordionBtn .active {
    display: none;
}

ul.menu .active > .items li:last-child {
    border-color: transparent;
    padding-bottom: 0px;
}

ul.menu .active > .items li {
    padding: 0px;
    list-style: none;
}

.accordionBtn {
    position: absolute;
    right: 1%;
    top: 21%;
}

.commonTable {
    width: 100%;
}

.commonTable2 {
    width: 100%;
}

.commonTable2.sp100 {
    width: 100%;
}

.commonTable2 tr:first-child {
    font-weight: bold;
    height: 60px;
    background-color: var(--color-grey1);
}

.commonTable2.green tr:first-child {
    background-color: var(--color-green);
}

.commonTable2 th {
    vertical-align: middle;
    text-align: center;
    font-weight: inherit;
}

.commonTable2 th,
.commonTable2 td {
    border: 4px solid var(--color-brown);
    vertical-align: middle;
}

.commonTable2 td {
    /* padding-right: 20px; */
    /* padding-left: 20px; */
    padding: 20px;
}

tr.setTableWidth:first-child {
    width: 200px;
}

tr.setTableWidth:nth-child(2) {
}

tr.setTableWidth:nth-child(3) {
    width: 200px;
}

.tableIconWrap {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 10px;
}

.tableIconImg {
    flex-basis: 100%;
    margin-bottom: 30px;
}

.tableIconImg img:last-child {
    margin-left: 10px;
}

.commonTable2 .subTh {
    width: 170px;
    height: 40px;
}

.tableIconText {
    text-align: center;
    flex-basis: 100%;
}

.redBgTextWrap {
    background-color: var(--color-red);
    max-width: 180px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    border-radius: 30px;
    margin-right: auto;
    margin-left: auto;
}

.redBgTextWrap.num {
    font-size: 20px;
}

.col5Wrap.flowWrap .col {
    background-color: #FEF9F5;
    padding-top: 30px;
    height: 333px;
}

.moreHeight.col5Wrap.flowWrap .col {
    height: 475px;
}

.moreHeight.col5Wrap.flowWrap .col .textWrap {
    height: 200px;
    display: flex;
    align-items: flex-start;
}

.col5Wrap.flowWrap .col .imageWrap {
    display: flex;
    justify-content: center;
    height: 108px;
}

.newsListArea.singleRow {
    margin-bottom: 50px;
}

.newsListArea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.newsListArea.singleRow .newsListItem {
    width: 100%;
    flex-basis: 100%;
    padding: 10px 0px;
}

.newsListItem {
    border-top: 1px solid var(--color-grey2);
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
}

.newsListItem:last-child {
    border-bottom: none;
}

.newsListItem span {
    font-size: 12px;
    line-height: calc(35 / 12);
}

.newsListItem p {
    font-size: 14px;
    font-weight: lighter;
    line-height: calc(20 / 14);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: bold;
}

/* .pager {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 -10px;
    list-style: none;
} */

/* .pager>li {
    margin: 0 10px;
}

.pager>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-brown);
    color: var(--color-brown);
    transition: .2s;
}

.pager>li>a.active,
.pager>li>a:hover {
    background-color: var(--color-brown);
    color: #FFF;
    transition: .2s;
}

.pager>li>a:hover {
    color: #000;
} */

.moz-quote-pre {
    display: block;
    white-space: inherit;
}

.pl30 {
    padding-left: 30px;
}

.pl60 {
    padding-left: 60px;
}

.privacyTextWrap {
    font-weight: 200;
    overflow: hidden;
    height: 260px;
    width: 100%;
    overflow-y: scroll;
    background-color: #FFF;
    padding: 30px;
    border-radius: 3px;
    border: 1px solid;
}

.torikeshi {
    text-decoration: line-through;
    color: red;
}

.torikeshi span {
    color: black;
}

.logoWrap {
    display: flex;
    width: 100%;
    /* height: 100%; */
    flex-wrap: wrap;
}

.logoBox {
    width: 50%;
}

@media screen and (max-width: 1440px) {
    .instHeadMenuLink {
        font-size: 13px;
        margin: 0 10px;
    }

    .instHeadTtl {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .instHeadLeftBottom p {
        font-size: 14px;
    }

    .instHeadGoodNum {
        font-size: 14px;
        letter-spacing: 0.1em;
    }

    .instHeadGoodBtn {
        font-size: 12px;
    }

    .peopleImg {
        /* margin-top: 100px; */
        position: absolute;
        bottom: 10%;
        left: 0%;
    }

    .grade {
        padding: 0px 10px;
    }

    /*     .mainViArea { */
    /*         min-height: unset; */
    /*         max-height: 780px; */
    /*     } */
    .mainViWrap .right {
        margin-top: 30px;
    }

    .mainViWrap {
        margin-left: 56px;
        margin-right: 70px;
    }

    .mainViText4 {
        font-size: 26px;
    }

    .privacyBox {
        font-size: 12px;
    }

    .right .btnWrap {
        margin-top: 0;
    }
}

@media screen and (max-width: 1640px) {
    .containerLg {
        max-width: 1340px;
    }
}

@media screen and (max-width: 1550px) {
    .mainViText3Wrap {
        width: 60vw;
    }

    .mainViWrap .right .mailForm {
        padding-top: 15px;
        padding-bottom: 15px;
        margin-top: 30px;
        min-height: 70vh;
    }
}

@media screen and (max-width: 1530px) {
    .col.explainDesc {
        flex-basis: calc(50% - (var(--col-space) * 2));
    }
}

@media screen and (max-width: 1450px) {

    /* @media screen and (max-width: 1340px){ */
    .container,
    .containerLg {
        max-width: 1100px;
    }

    .container.artCon {
        max-width: 1100px;
    }
}

@media screen and (max-width: 1450px) {
    .flexContainerMain {
        /* flex-basis: calc(100% - 300px);
        width: calc(100% - 300px); */
    }

    .flexContainerSub {
        /* 		flex-basis: 200px; */
    }

    .fullWidContentTxtArea {
        padding: 30px 50px 60px 50px;
    }

    .yogaLessonListContentTtl span,
    .yogaLessonListContentTtl {
        font-size: 14px;
    }

    .yogaLessonListContentDesc {
        font-size: 12px;
    }

    .yogaLessonListContent {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        margin: 10px;
        padding: 10px;
    }

    .ty2 .containerTtlEng {
        font-size: 80px;
    }

    .containerTtlJp {
        font-size: 20px;
    }

    .TopicsTtlFontLg {
        font-size: 80px;
    }

    .TopicsTtlFont {
        font-size: 18px;
        line-height: 28px;
    }

    .lessonDescription {
        font-size: 14px;
        line-height: 29px;
    }

    .TopicsTtlFont {
        font-size: 22px;
    }

    .yogaCourse .yogaLessonList {
        height: 225px;
    }

    .LessonContentTtlImgArea {
        width: 235px;
        height: 170px;
        margin-right: 15px;
    }

    .LessonContentTtlArea {
        width: calc(100% - 250px);
    }

    .artCon .lessonArtCol {
        width: 255px;
    }

    .artCon .lessonArtCol .lessonArtColLinkDescritptionTtl {
        font-size: 15px;
    }

    .peopleImg {
        position: absolute;
        bottom: 10%;
    }

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

@media screen and (max-width: 1360px) {
}

@media screen and (max-width: 1220px) {
    .col.explainDesc {
        flex-wrap: wrap;
    }

    .personImg {
        width: auto;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .explainDesc .text {
        width: auto;
    }
}

@media screen and (max-width: 1160px) {
    .peopleImg {
        position: static;
        bottom: 10%;
    }

    .headerMenuLink {
        font-size: 14px;
        margin: 0 25px;
    }

    .headerMenuLink.grade {
        margin: 0;
        padding: 15px;
    }

    .headerLogoArea {
        flex-basis: 230px;
    }

    .mainViWrap .right .mailForm {
        margin-top: 50px;
    }

    .mainViWrap {
        flex-wrap: wrap;
        margin-left: 0;
        margin-left: auto;
        margin-right: auto;
        padding-right: 10px;
        padding-left: 10px;
    }

    .mainViWrap .right {
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 30px;
        width: 90%;
        max-width: unset;
    }

    .mainViArea {
        height: auto;
    }

    .mainViText3Wrap {
        width: 75%;
        bottom: 10%;
    }

    .mainViText1 {
        font-size: 28px;
    }

    .mainViText2 {
        font-size: 20px;
    }

    .mainViText3 {
        font-size: 18px;
    }

    .radiusBg {
        padding: 5px 33px;
    }

    .container.artCon {
        max-width: 800px;
    }

    .contentWrap.lg {
        max-width: 820px;
    }

    .explainTitle {
        font-size: 35px;
    }

    .explainDesc .text {
        font-size: 20px;
    }

    .commonBtn2 {
        width: auto;
    }

    .mainViWrap .right {
        width: 780px;
    }

    .slick-next {
        right: 20px;
    }

    .slick-prev {
        left: 20px;
    }

    .mainViWrap .left {
        margin-right: 0px;
    }
}

.wgiContentArea table {
    border-collapse: collapse;
}

.wgiContentArea table td,
.wgiContentArea table th {
    border: 1px solid #333;
}

@media screen and (max-width: 991px) {
    .headerWrap {
        height: 82px;
    }

    .headerHumbArea {
        justify-content: center;
        align-items: center;
        flex-basis: 70px;
    }

    .headerHumb {
        width: 30px;
        height: 1px;
        background-color: #FFF;
        position: relative;
    }

    .headerHumb:before,
    .headerHumb:after {
        content: "";
        display: block;
        position: relative;
        left: 0;
        width: 30px;
        height: 1px;
        background-color: #FFF
    }

    .headerHumb:before {
        top: -10px;
    }

    .headerHumb:after {
        top: 10px;
    }

    .mainViAreaSearchSelect.size2 {
        width: 100%;
    }

    .instHead {
        flex-wrap: wrap;
        padding: 5px 10px;
    }

    .instHeadLeft {
        flex-basis: 100%;
    }

    .instHeadTtl {
        font-size: 20px;
        letter-spacing: 0.1em;
    }

    .instHeadLeftTop {
        justify-content: space-between;
    }

    .instHeadGoodNum {
        font-size: 12px;
    }

    .instHeadGoodBtn {
        font-size: 10px;
    }

    .instHeadRight {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        border-top: 3px solid #e57d7d;
        background-color: #FFF;
        padding: 0 10px;
    }

    .instHeadLeftTop.flx {
        justify-content: space-between;
    }

    .topicsArtAreaCol.sm.blogBox {
        width: 100%;
        flex-basis: 100%;
    }

    .topicsArtAreaColTimeBox {
        left: -10px;
        top: -15px;
    }

    .sm .topicsArtAreaColTimeDay {
        font-size: 45px;
    }

    .fullWidContentWrap {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .fullWidContentImgArea {
        flex-basis: 100%;
        order: 1;
        margin-bottom: 20px;;
    }

    .fullWidContentTxtArea {
        flex-basis: 100%;
        order: 2;
        padding: 10px 10px 40px 10px;
    }

    .QualificationAreaWrap {
        flex-wrap: wrap;
    }

    .QualificationBox {
        height: 42vw;
        width: 42vw;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        margin-bottom: 20px;
    }

    .QualificationTxt {
        font-size: 12px;
        line-height: 20px;
    }

    .containerTtlEng {
        font-size: 50px;
    }

    .containerTtl {
        padding-bottom: 10px;
    }

    .GalleryBox {
        width: calc(50vw - 15px);
        height: calc(50vw - 15px);
        margin-bottom: 10px;
    }

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

    .fullWidSlick > div:nth-child(n+5),
    .BlogSlick > div:nth-child(n+5) {
        display: none;
    }

    .yogaCourse .yogaLessonList,
    .yogaCourse .yogaLessonList.lg {
        height: 215px;
        width: 100%;
    }

    .yogaLessonListContentTtl {
        font-size: 18px;
        letter-spacing: 0.1em;
        line-height: 30px;
    }

    .yogaLessonListContent {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        margin: 5px;
        padding: 5px;
        border: 1px solid #FFF;
    }

    .yogaLessonListArea {
        padding-bottom: 20px;
    }

    .insCopyrightWrap {
        margin-bottom: 50px;
    }

    .instHeaderMa {
        margin-top: 76px;
    }

    .instMainViContentTxtS1 {
        font-size: 16px;
        letter-spacing: 0.1em;
    }

    .instMainViContentTxtS2 {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .instMainViContentImgArea {
        width: 100%;
        height: 260px;
    }

    .instMainViContentTxtArea {
        height: 120px;
    }

    .fullWidContentTxtDtl {
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .fs2 .fullWidContentTxtLg {
        font-size: 12px;
        font-weight: normal;
    }

    .lessonTtlArea {
        width: 100%;
        margin-left: 0;
        padding-top: 240px;
    }

    .btn.rightExp {
        margin-top: 50px;
        margin-left: 0;
    }

    .topicsArtAreaCol {
        flex-basis: 100%;
        margin-top: 50px;
    }

    .topicsArtAreaCol.sm {
        flex-basis: 100%;
        margin-top: 50px;
    }

    .historyCol .topicsArtAreaColLink {
        width: 100%;
        flex-basis: 100%;
        height: auto;
    }

    .ty2 .containerTtlEng {
        font-size: 40px;
    }

    .containerTtlJp {
        font-size: 14px;
        line-height: 26px;
    }

    .yogaLessonList {
        width: calc(50vw - 15px);
        height: calc(50vw - 15px);
        margin-bottom: 10px;
    }

    .blogContPinkBG {
        padding: 10px;
    }

    .eventBanner {
        flex-basis: calc(100%);
        margin-bottom: 20px;
    }

    .eventBannerArea {
        flex-wrap: wrap;
    }

    .rankingTopArea {
        flex-wrap: wrap;
    }

    .rankingTopImg {
        display: none;
    }

    .rankingTopDetails {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .rankingTopDetailsCrown {
        margin-top: 10px;
        margin-right: 2%;
        flex-basis: 20%;
    }

    .rankingTopDetailsInfo {
        flex-basis: 78%;
    }

    .rankingTopDetailsInfoImgArea {
        width: 60px;
        height: 60px;
    }

    .rankingTopDetailsInfoDescName {
        font-size: 18px;
    }

    .rankingCol {
        width: 100%;
        margin-bottom: 30px;
    }

    .rankingSlick > div:nth-of-type(n+5),
    .BlogHisSlick > div:nth-of-type(n+5) {
        display: none;
    }

    .bottomBannerArea {
        flex-wrap: wrap;
    }

    .bottomBannerArea {
        flex-wrap: wrap;
    }

    .bottomBanner {
        /* 		flex-basis: calc(50% - 5px); */
        flex-basis: 100%;
    }

    .bottomBanner.lg {
        flex-basis: calc(100%);
    }

    .topicsArtAreaColTimeDay {
        font-size: 45px;
    }

    .topicsArtAreaColTimeYm {
        font-size: 16px;
    }

    .topicsArtAreaColInnTtlArea {
        position: relative;
        margin-top: -20px;
        height: 80px;
        background-color: rgba(255, 255, 255, 1);
    }

    .topicsArtAreaColInnTtl {
        font-size: 15px;
        line-height: 21px;
    }

    .fullWidContentTxtDtlRow {
        flex-wrap: wrap;
    }

    .fullWidContentTxtDtlRowTtl {
        flex-basis: 100%;
        margin-bottom: 10px
    }

    .fullWidContentTxtDtlRowDtl {
        flex-basis: 100%;
    }

    .blogContPinkBG:not(.noBg):before {
        width: 100%;
        height: auto;
    }

    .lessonBackGround:before {
        width: 100%;
    }

    .TopicsTtlFontLg {
        font-size: 60px;
    }

    .headerMenuArea {
        position: fixed;
        left: 0;
        top: 50px;
        width: 100%;
        background-color: #FFF;
    }

    .headerMenuArea {
        position: fixed;
        left: 0;
        top: 50px;
        width: 100%;
        background-color: #FFF;
    }

    .headerMenu {
        height: auto;
        width: 100%;
        flex-wrap: wrap;
    }

    .headerMenuLink {
        flex-basis: 100%;
        height: 50px;
    }

    .headerHumbArea > .headerHumb,
    .headerHumbArea > .headerHumb:before,
    .headerHumbArea > .headerHumb:after,
    #humbChk:checked ~ .headerHumbArea > .headerHumb,
    #humbChk:checked ~ .headerHumbArea > .headerHumb:before,
    #humbChk:checked ~ .headerHumbArea > .headerHumb:after {
        transition: .2s;
    }

    #humbChk:checked ~ .headerHumbArea > .headerHumb {
        background-color: transparent;
    }

    #humbChk:checked ~ .headerHumbArea > .headerHumb:before {
        top: 0;
        transform: rotate(225deg);
    }

    #humbChk:checked ~ .headerHumbArea > .headerHumb:after {
        top: 0;
        transform: rotate(-225deg);
    }

    .headerMenuArea {
        height: 0;
        overflow: hidden;
        animation-name: fadeOut;
        -webkit-animation-name: fadeOut;
        animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
        -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
        animation-duration: .2s;
        -webkit-animation-duration: .2s;
    }

    #humbChk:checked ~ .headerMenuArea {
        height: 100%;
        animation-name: fadeIn;
        -webkit-animation-name: fadeIn;
        animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
        -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
        animation-duration: .2s;
        -webkit-animation-duration: .2s;
    }

    .articleCotentTtlWrap {
        flex-wrap: wrap;
    }

    .articleCotentTtlWrap > div {
        flex-basis: 100%;
    }

    .articleCotentTtl {
        font-size: 18px;
    }

    .otherLessonArt {
        flex-wrap: wrap;
    }

    .flexContainerSub > div > a {
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .panArea nav {
        flex-wrap: wrap;
    }

    .LessonContentTtlArea {
        width: 100%;
    }

    .contentSearchResult .rankingCol {
        width: 100%;
        flex-basis: 100%;
    }

    .LessonContentTtlEn {
        font-size: 30px;
    }

    .LessonContentTtlEnMin {
        font-size: 18px;
    }

    .LessonContentDesc {
        font-size: 14px;
    }

    .lessonArtColLinkDescritptionTtl {
        font-size: 16px;
        line-height: 22px;
    }

    .contentSearchResult > .topicsArtAreaCol.sm.blogBox.size2 {
        width: 100%;
        flex-basis: 100%;
    }

    .lessonDetailTableHead {
        font-size: 16px;
    }

    .wgiContentArea h3 {
        font-size: 16px;
    }

    .wgiContentArea p {
        font-size: 14px;
    }

    .btn2 {
        padding: 15px 30px;
        width: 100%;
        font-size: 18px;
    }

    .articleCotentInfoArea {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .btn2.sm {
        width: 100%;;
    }

    .snsShareArea {
        margin-top: 20px;
    }

    .lessonArtColLink {
        display: block;
    }

    .lessonArtColLinkImg {
        width: 120px;
        height: 95px;
        float: right;
    }

    .lessonArtColLinkDescritptionTag {
        font-size: 10px;
    }

    .lessonArtColLinkDescritptionTtlArea {
        height: 20px;
        padding: 0 8px;
        margin-bottom: 10px;
    }

    .lessonArtColLinkDescritptionSchoolInfoName {
        font-size: 10px;
    }

    .lessonArtColLinkDescritptionSchoolInfoImgArea {
        width: 20px;
        height: 20px;
    }

    .lessonArtColLinkDescritptionSchoolInfoArea {
        padding: 5px 10px;
    }

    .lessonArtColLinkDescritptionBottomAreaDateArea,
    .lessonArtColLinkDescritptionBottomAreaPrefArea {
        font-size: 10px;
    }

    .lessonArtColLinkDescritption {
        flex-basis: calc(100% - 100px);
    }

    .lessonArtColLinkDescritptionTtlArea {
        height: 20px;
        width: calc(100% - 110px);
        padding: 0 8px;
        margin-bottom: 10px;
    }

    .lessonArtColLinkDescritptionTtl {
        font-size: 12px;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lessonArtColLinkDescritption {
        border-top: 1px solid #e2e2e2;
    }

    .articleCotentTtlWrap > div > .articleCotentInfoArea .lessonArtColLinkDescritptionSchoolInfoArea,
    .articleCotentTtlWrap > div > .articleCotentInfoArea .topicsArtAutherArea {
        flex-basis: 100%;
    }

    .contentSearchResult > .topicsArtAreaCol.sm.blogBox.size2,
    .contentSearchResult > .topicsArtAreaCol.sm.blogBox {
        width: 100%;
        flex-basis: 100%;
    }

    .topicsArtAreaColInn {
        display: flex;
        justify-content: space-between;
    }

    .sm .topicsArtAreaColTimeDay {
        font-size: 30px;
    }

    .sm .topicsArtAreaColTimeYm,
    .topicsArtArea .topicsArtAreaCol:nth-child(n+3) .topicsArtAreaColTimeYm {
        font-size: 10px;
    }

    .topicsArtAreaColInnImgArea {
        height: 80px;
        width: 110px;
    }

    .blogBox .topicsArtAreaColInnDescBox:after {
        display: none;
    }

    .blogBox .topicsArtAreaColInnTtlBox {
        margin-bottom: 0px;
        overflow: hidden;
        width: 100%;
    }

    .blogBox .topicsArtAreaColInnTtl {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .blogBox .topicsArtAreaColInnTtlArea {
        /* 	    padding-top: 0; */
        width: calc(100% - 120px);
    }

    .blogBox .topicsArtAreaColInnDescBox {
        height: 25px;
    }

    .blogBox .topicsArtAreaColInnDesc {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px;
    }

    .BlogSlick {
        flex-wrap: wrap;
    }

    .fullWidSlick > div,
    .BlogSlick > div {
        width: 100%;
    }

    .fullWidSlick:not(.slick-initialized) > div,
    .BlogSlick:not(.slick-initialized) > div,
    .BlogHisSlick:not(.slick-initialized) > div,
    .EventSlick:not(.slick-initialized) > div {
        margin: 0;
    }

    .fullWidSlick:not(.slick-initialized),
    .BlogSlick:not(.slick-initialized),
    .BlogHisSlick:not(.slick-initialized),
    .EventSlick:not(.slick-initialized) {
        flex-wrap: wrap;
    }

    .LeftMenuInstInfo {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .LeftMenuInstInfoImg {
        flex-basis: 100px;
        width: 100px;
        height: 100px;
    }

    .LeftMenuInstinfoNameArea {
        width: calc(100% - 100px);
        flex-basis: calc(100% - 100px);
        margin-top: 0;
    }

    .LeftMenuInstInfo .LeftMenuInstinfoNameArea {
        width: calc(100%);
        flex-basis: calc(100%);
        margin-top: 0;
    }

    .LeftMenuInstinfoNameArea > .LeftMenuInstinfoNameArea {
        width: 100%;
        flex-basis: 100%;
        text-align: left;
        margin-top: 0;
        padding-left: 10px;
    }

    .LeftMenuInstinfoFav {
        text-align: left;
        padding-left: 10px;
    }

    .LeftMenuInstinfoDetailArea {
        display: none;
    }

    .LeftMenuInstInfo .lessonArtColLinkDescritptionSchoolInfoArea {
        width: 100%;
    }

    .fullWidContentImgArea {
        height: 200px;
    }

    .GalleryBox > p,
    .GalleryBox > a > p {
        padding: 10px 14px;
        font-size: 10px;
    }

    .fullWidContentTxtDtlRowDtl {
        font-size: 12px;
    }

    .instHeadLeftTop {
        flex-wrap: wrap;
    }

    .instHeadTtl {
        font-size: 17px;
    }

    .instHeadLeftBottom {
        display: none;
    }

    .instHeaderMa {
        margin-top: 73px;
    }

    .lessonArtColLinkDescritptionShareArea {
        display: none;
    }

    .instHeadTtlArea {
        flex-basis: 100%;
    }

    .LessonContentTtlWrap {
        flex-wrap: wrap;
    }

    .LessonContentTtlImgArea {
        width: 100%;
        flex-basis: 100%;
        margin: 0;
    }

    .historyCol .topicsArtAreaColInnTtl {
        font-size: 12px;
        letter-spacing: 0.1em;
        line-height: 16px;
    }

    .historyCol .topicsArtAutherAreaBy,
    .historyCol .topicsArtAutherAreaNmae,
    .historyCol .topicsArtAutherAreaFav,
    .historyCol .topicsArtAutherAreaFav i {
        font-size: 11px;
        letter-spacing: 0.1em;
        line-height: 16px;
    }

    .historyCol .topicsArtAutherArea {
        margin-top: 10px;
        line-height: 1;
    }

    .LessonContentTtlImgArea {
        width: 100%;
        height: auto;
        margin-right: 0;
    }

    .LessonContentTtlWrap {
        flex-wrap: wrap;
    }

    .yogaLessonListContentTtl {
        font-size: 13px;
        letter-spacing: 0.1em;
        line-height: 24px;
    }

    .yogaLessonListContentDesc {
        font-size: 10px;
        letter-spacing: 0.01em;
    }

    .topicSlick.topicsArtArea .topicsArtAreaCol:nth-child(n+3) {
        flex-basis: calc(25% - 20px);
        margin-top: 10px;
        margin-bottom: 90px;
    }

    .topicSlick .topicsArtAreaColInn {
        display: block;
        height: auto;
    }

    .BlogHisSlick > div {
        flex-basis: 100%;
        width: 100%;
    }

    .fullWidContentImgArea img {
        object-fit: contain;
        font-family: "object-fit: contain;";
        background-color: #fff7f7;
    }

    .artCon .lessonArtCol {
        width: 100%;
    }

    .remodal {
        max-width: 100%;
        padding: 30px 10px;
    }

    .rsvWrap {
        flex-wrap: wrap;
    }

    .rsvWrap button,
    .memberBtn button {
        margin-bottom: 10px;
        width: 100% !important;
    }

    .lessonGaiyouRow {
        flex-wrap: wrap;
    }

    .lessonGaiyouHead,
    .lessonGaiyouBody {
        flex-basis: 100%;
    }

    .explainTitle {
        /* min-height: 70px; */
        height: 100px;
        font-size: 24px;
        padding: 10px;
    }

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

    .fz25 {
        font-size: 18px;
    }

    .commonBtn2 {
        width: auto;
        font-size: 22px;
        height: auto;
        min-height: 90px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .explainExampleWrap {
        padding: 10px 10px 30px 10px;
    }

    .explainWrap {
        padding: 10px;
    }

    .mainViAreaSearchSelect.datepi,
    .mainViAreaSearchSelect.prefSelect {
        width: 100%;
    }

    .mainViAreaSearchSelectBox {
        width: 100%;
    }

    .mainViAreaSearchSelect {
        margin-bottom: 10px;
    }

    /* .pager {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .pager>li {
        margin-bottom: 10px;
    } */
    .commonTitleBorderBottom {
        font-size: 24px;
    }

    .col5Wrap.flowWrap .col {
        height: 363px;
    }

    .commonTable2.sp100 {
        width: 100%;
    }

    .jobBtn {
        max-width: 100%;
        margin-right: 10px;
        margin-left: 10px;
    }

    .jobBtn a {
        font-size: 20px;
        line-height: 1.7;
        text-align: center;
    }

    .mainViText3Wrap {
        /* width: 33vw; */
    }
}

@media screen and (max-width: 768px) {
    .headerWrap {
        height: 50px;
    }

    .footerNavA {
        flex-direction: column;
    }

    .footerLink {
        text-align: center;
        margin-bottom: 20px;
    }

    .headMar {
        margin-top: 50px;
    }

    .mainViText3Wrap {
        width: 90%;
    }

    .col.explainDesc {
        flex-wrap: wrap;
    }

    .personImg {
    }

    .explainDesc .text {
        width: auto;
    }

    ul.menu .list {
        font-size: 20px;
        height: auto;
    }

    .btnWrap {
        flex-wrap: wrap;
    }

    .FormRowInput.select.long {
        width: 100%;
    }
}

@media screen and (max-width: 425px) {

    .spShow,
    .spShow-flx,
    .spShow-inline,
    .tbShow,
    .tbShow-flx,
    .tbShow-inline {
        display: none;
    }

    .w50p {
        width: 100%;
    }

    .mainViText3Wrap {
        bottom: 2%;
    }

    .col.explainDesc {
        flex-basis: 100%;
    }
}

@media screen and (max-width: 991px) {
    .tbHide {
        display: none;
    }

    .tbShow {
        display: block;
    }

    .tbShow-flx {
        display: flex;
    }

    .tbShow-inline {
        display: inline;
    }

    .LessonContentTtlWrap {
        flex-wrap: wrap;
    }

    .mainViAreaSearchBox {
        position: static;
        width: 100%;
    }

    .mainViAreaSearchIn {
        width: calc(100% - 20px);
    }

    .mainViAreaSearchInputArea {
        flex-wrap: wrap;
    }

    .contentSearchResult .rankingCol {
        width: 100%;
        flex-basis: 100%;
    }

    .commonTable2 {
        width: 1300px;
    }
}

@media screen and (max-width: 768px) {
    .footerBigLinkWrap .col {
        height: 75px;
        width: 100%;
        font-size: 18px;
    }

    .commonBtnRadius {
        border: 2px solid #FFF;
        padding: 10px 30px;
        border-radius: 20px;
        color: #000;
    }

    .footerBigLink {
        padding-right: 10px;
        padding-left: 10px;
    }

    .wgiContentArea table,
    .wgiContentArea table tr,
    .wgiContentArea table tr th,
    .wgiContentArea table tr td {
        display: block;
        height: auto !important;
    }

    .FormRow .flx {
        flex-wrap: wrap;
    }

    .lessonDetailTtlArea {
        flex-wrap: wrap;
    }

    .lessonDetailTtlArea .offerConf {
        margin-top: 20px;
    }

    .headerMenuLink {
        color: #000;
    }

    .birthdayForm .FormRowInput {
        flex-basis: 92%;
        margin-bottom: 10px;
    }

    .wgiContentArea table tr td {
        padding: 0;
        margin-bottom: 10px;
    }

    .spHide {
        display: none;
    }

    .spShow {
        display: block;
    }

    .spShow-flx {
        display: flex;
    }

    .spShow-inline {
        display: inline;
    }

    .footerLogo {
        width: auto;
    }

    .linkWrap {
        width: auto;
    }

    .andSvg {
        width: 50px;
    }

    .mb40,
    .mb50,
    .mb60,
    .mb70,
    .mb80,
    .mb90 {
        margin-bottom: 30px;
    }

    .mb100,
    .mb110,
    .mb120,
    .mb130,
    .mb140,
    .mb150,
    .mb160,
    .mb170,
    .mb180,
    .mb190 {
        margin-bottom: 50px;
    }

    .commonText.lg {
        font-size: 18px;
    }

    .commonText.big {
        font-size: 21px;
    }

    .borderContainer {
        padding: 10px;
    }

    .bgGreen {
        padding: 27px 10px;
    }
}

@media screen and (max-width: 420px) {
}


/**
	ANIMATION AREA
**/

.yogaLessonList:before,
.eventBanner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.0);
    transition: .2s;
}

.yogaLessonList:hover:before,
.eventBanner:hover:before {
    background-color: rgba(0, 0, 0, 0.3);
    transition: .2s;
}

@keyframes animateIn {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animateIn {
    opacity: 0;
}

.animateIn.is-active {
    opacity: 1;
    animation-name: animateIn;
    -webkit-animation-name: animateIn;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
}

@keyframes animateInFade {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes animateInFadeTxt {
    0% {
        color: transparent;
    }

    100% {
        color: #444444;
    }
}

@keyframes animateInFadeTxtPink {
    0% {
        color: transparent;
    }

    100% {
        color: #f07580;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        height: 0;
    }

    1% {
        opacity: 0;
        height: 100%;
    }

    100% {
        opacity: 1;
        height: 100%;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        height: 100%;
    }

    99% {
        opacity: 0;
        height: 100%;
    }

    100% {
        opacity: 0;
        height: 0;
    }
}

.animateInFade {
    position: relative;
    overflow: hidden;
    color: transparent;
}

.animateInFade:before {
    content: "";
    background-color: rgba(250, 188, 215);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
}

.animateInFade.is-active {
    color: #444444;
    animation-name: animateInFadeTxt;
    -webkit-animation-name: animateInFadeTxt;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
}

.animateInFade.fc-pink.is-active {
    animation-name: animateInFadeTxtPink;
    -webkit-animation-name: animateInFadeTxtPink;
    color: #f07580;
}

.animateInFade.is-active:before {
    transform: translateX(100%);
    animation-name: animateInFade;
    -webkit-animation-name: animateInFade;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
}

.animateIn.delay-100 {
    animation-delay: 0.1s;
}

.animateIn.delay-200 {
    animation-delay: 0.2s;
}

.animateIn.delay-300 {
    animation-delay: 0.3s;
}

.animateIn.delay-400 {
    animation-delay: 0.4s;
}

.animateIn.delay-500 {
    animation-delay: 0.5s;
}

.animateIn.delay-500 {
    animation-delay: 0.5s;
}

.animateIn.delay-600 {
    animation-delay: 0.6s;
}

.animateIn.delay-700 {
    animation-delay: 0.7s;
}

.animateIn.delay-800 {
    animation-delay: 0.8s;
}

.animateIn.delay-900 {
    animation-delay: 0.9s;
}

.animateIn.delay-1000 {
    animation-delay: 1.0s;
}

.animateIn.delay-1100 {
    animation-delay: 1.1s;
}

.animateIn.delay-1200 {
    animation-delay: 1.2s;
}

.animateIn.delay-1300 {
    animation-delay: 1.3s;
}

.animateIn.delay-1400 {
    animation-delay: 1.4s;
}

.animateIn.delay-1500 {
    animation-delay: 1.5s;
}

.animateIn.delay-1600 {
    animation-delay: 1.6s;
}

.animateIn.delay-1700 {
    animation-delay: 1.7s;
}

.animateIn.delay-1800 {
    animation-delay: 1.8s;
}

.animateIn.delay-1900 {
    animation-delay: 1.9s;
}

.animateIn.delay-2000 {
    animation-delay: 2.0s;
}

@keyframes imageMove {
    0% {
        transform: translateX(50px) scale(1.2);
    }

    100% {
        transform: translateX(-50px) scale(1.2);
    }
}

@keyframes imageMove2 {
    0% {
        transform: translateX(-50px) scale(1.2);
    }

    100% {
        transform: translateX(-100px) scale(1.2);
    }
}

.imageMove {
    transform: translateX(50px) scale(1.2);
    animation-name: imageMove2;
    -webkit-animation-name: imageMove2;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-duration: 4.5s;
    -webkit-animation-duration: 4.5s;
    animation-iteration-count: infinite;
}

.slick-active .imageMove {
    transform: translateX(-100px) scale(1.2);
    animation-name: imageMove;
    -webkit-animation-name: imageMove;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-duration: 4.5s;
    -webkit-animation-duration: 4.5s;
    animation-iteration-count: infinite;
}


/* 0120tsuiki */
.logoWrap {
    align-items: center;
}

/* 0125tsuiki */
.mf_small {
    font-size: 18px;
}

.trw_try {
    font-size: 18px;
    color: #FF8D00;
    margin-left: 6px;
}

.top_r_wrap {
    border: 5px solid #d59218;
    border-radius: 20px;
    margin: 0 20px;
    transition: .3s all;
}

.trw_link:hover .top_r_wrap {
    border-color: #952103;
}

.mainViArea {
    min-height: 920px;
}

@media screen and (max-width: 500px) {
    .trw_try {
        font-size: 12px;
    }
}


.moreHeight.col5Wrap.flowWrap .col {
    height: 560px;
}

@media screen and (max-width: 991px) {
    .moreHeight.col5Wrap.flowWrap .col {
        height: 710px;
    }
}

@media screen and (max-width: 768px) {
    .moreHeight.col5Wrap.flowWrap .col {
        height: 470px;
    }
}


.commonTable2.green tr:first-child {
    background-color: var(--color-yellow);
}

.commonTable2.green tr:nth-child(2) {
    background-color: var(--color-green);
}

.pc_none {
    display: none;
}

@media screen and (max-width: 500px) {
    .pc_none {
        display: block;
    }
}

/* ===================================
   BlockNote Content Styles
   =================================== */

/* 見出しスタイル */
.wgiContentArea h1 {
    display: block;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 28px;
    line-height: 1.4;
    margin: 1.5em 0 0.8em 0;
}

.wgiContentArea h2 {
    display: block;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 24px;
    line-height: 1.4;
    margin: 1.4em 0 0.7em 0;
}

/* h3は既存のスタイルを継承 */

.wgiContentArea h4 {
    display: block;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 18px;
    line-height: 1.4;
    margin: 1.2em 0 0.6em 0;
}

.wgiContentArea h5 {
    display: block;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 16px;
    line-height: 1.4;
    margin: 1em 0 0.5em 0;
}

.wgiContentArea h6 {
    display: block;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 14px;
    line-height: 1.4;
    margin: 1em 0 0.5em 0;
}

/* リストスタイル */
.wgiContentArea ul,
.wgiContentArea ol {
    display: block;
    margin: 1em 0;
    padding-left: 2em;
    line-height: 1.77;
}

.wgiContentArea ul {
    list-style-type: disc;
}

.wgiContentArea ol {
    list-style-type: decimal;
}

.wgiContentArea li {
    display: list-item;
    margin: 0.5em 0;
    font-size: 16px;
    letter-spacing: 0.1em;
    word-break: break-all;
}

.wgiContentArea ul ul,
.wgiContentArea ol ol,
.wgiContentArea ul ol,
.wgiContentArea ol ul {
    margin: 0.5em 0;
}

/* チェックリストスタイル */
.wgiContentArea li[style*="list-style: none"] {
    list-style: none;
}

.wgiContentArea li input[type="checkbox"] {
    margin-right: 0.5em;
    cursor: not-allowed;
}

/* 引用スタイル */
.wgiContentArea blockquote {
    display: block;
    margin: 1.5em 0;
    padding: 1em 1.5em;
    border-left: 4px solid #8B7355;
    background-color: #f9f7f5;
    font-style: italic;
    color: #555;
}

.wgiContentArea blockquote p {
    margin: 0.5em 0;
}

/* コードブロックスタイル */
.wgiContentArea pre {
    display: block;
    margin: 1.5em 0;
    padding: 1em;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.6;
}

.wgiContentArea pre code {
    background-color: transparent;
    padding: 0;
    border: none;
    font-size: inherit;
}

/* インラインコードスタイル */
.wgiContentArea code {
    display: inline;
    padding: 0.2em 0.4em;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

/* テキスト装飾 */
.wgiContentArea strong {
    font-weight: bold;
}

.wgiContentArea em {
    font-style: italic;
}

.wgiContentArea u {
    text-decoration: underline;
}

.wgiContentArea s {
    text-decoration: line-through;
}

/* リンクスタイル */
.wgiContentArea a {
    color: #8B7355;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.wgiContentArea a:hover {
    color: #6d5940;
    text-decoration: none;
}

/* 画像・図表スタイル */
.wgiContentArea figure {
    display: block;
    margin: 1.5em 0;
}

.wgiContentArea figure img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.wgiContentArea figcaption {
    display: block;
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* トグル要素スタイル */
.wgiContentArea details {
    display: block;
    margin: 1em 0;
    padding: 0.5em;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fafafa;
}

.wgiContentArea details summary {
    cursor: pointer;
    font-weight: bold;
    padding: 0.5em;
    user-select: none;
    outline: none;
}

.wgiContentArea details summary:hover {
    background-color: #f0f0f0;
    border-radius: 4px;
}

.wgiContentArea details[open] summary {
    margin-bottom: 0.5em;
    border-bottom: 1px solid #ddd;
}

.wgiContentArea .heading-children {
    margin-left: 1.5em;
    margin-top: 0.5em;
}

/* テーブルスタイル強化 */
.wgiContentArea table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.5em 0;
    table-layout: fixed;
}

.wgiContentArea table td,
.wgiContentArea table th {
    border: 1px solid #333;
    padding: 8px 12px;
    vertical-align: top;
}

.wgiContentArea table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

/* 水平線 */
.wgiContentArea hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2em 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 991px) {
    .wgiContentArea h1 {
        font-size: 24px;
    }

    .wgiContentArea h2 {
        font-size: 20px;
    }

    .wgiContentArea h4 {
        font-size: 16px;
    }

    .wgiContentArea h5 {
        font-size: 14px;
    }

    .wgiContentArea h6 {
        font-size: 13px;
    }

    .wgiContentArea li {
        font-size: 14px;
    }

    .wgiContentArea ul,
    .wgiContentArea ol {
        padding-left: 1.5em;
    }

    .wgiContentArea blockquote {
        padding: 0.8em 1em;
    }

    .wgiContentArea pre {
        padding: 0.8em;
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .wgiContentArea h1 {
        font-size: 22px;
    }

    .wgiContentArea h2 {
        font-size: 18px;
    }

    .wgiContentArea ul,
    .wgiContentArea ol {
        padding-left: 1.2em;
    }

    .wgiContentArea table {
        font-size: 14px;
    }

    .wgiContentArea table td,
    .wgiContentArea table th {
        padding: 6px 8px;
    }
}