@charset "utf-8";


.header {
    position: sticky;
    top: 0;
    background-color: #FFF;
    z-index: 1000;
}

.skip-link {
    position: absolute;
    top: -100px;
    font-size: 10px;
    width: 10em;
}

.skip-link:focus {
    top: 0px;
}

.footer {
    padding-top: 40px;
    margin-top: 40px;
    background-color: #EEE;
}

.footer h3 {
    margin: 0;
    font-size: var(--fs-20);
    text-align: center;
}

.footer-container {
    width: var(--container);
    max-width: 100%;
    margin: auto;
}

/* ハンバーガーボタン */
.hamburger {
    width: var(--burg-btn-size);
    height: var(--burg-btn-size);
    position: absolute;
    right: 10px;
    top: 1px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.burg-line-tc {
    display: block;
}

.burg-line-tc::before {
    content: "";
    display: block;
    background-color: #000;
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 5px;
    left: 1px;
}

.burg-line-tc::after {
    content: "";
    display: block;
    background-color: #000;
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 15px;
    left: 1px;
}

.burg-line-b {
    display: block;
    background-color: #000;
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 25px;
    left: 1px;
}

.burg-text {
    display: block;
}

.burg-text::before {
    content: "menu";
    position: absolute;
    top: 27px;
    left: 4px;
    font-size: 12px;
}

/* ハンバーガーボタン クリック後 */
.js-open .burg-line-tc::before {
    transform: rotate(45deg);
    transform-origin: 50%;
    width: 32px;
    top: 15px;
}

.js-open .burg-line-tc::after {
    transform: rotate(-45deg);
    transform-origin: 50%;
    width: 32px;
    top: 15px;
}

.js-open .burg-line-b {
    width: 0px;
}

.js-open .burg-text::before {
    content: "close";
}

/* グローバルナビゲーション */

.header-container {
    position: relative;
    z-index: 100;
    height: var(--burg-btn-size);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-y: visible;
}

.toggle-menu {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-y: visible;
}

.toggle-menu a {
    display: block;
    padding: 5px;
    color: var(--color-text);
}

.toggle-menu a:hover {
    background-color: var(--color-lightgray);
}

.hamburger {
    display: none;
}

.header-logo {
    /* position: static;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0); */
}

.toggle-menu {
    display: flex;
    position: relative;
}

.toggle-menu .sub-menu {
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFF;
}

.toggle-menu :where(.menu-item:hover)>.sub-menu {
    height: auto;
}


.page_item {
    display: inline-block;
}

.page_item a {
    display: block;
    width: 100%;
    padding: 0.5em;
    color: var(--color-text);
}

.page_item_has_children {}

.gnav {}

/* breadcrumb パンくずリスト */
.breadcrumb {
    padding: 10px 0;
    width: 100%;
    max-width: var(--container);
    margin: auto;
}

:where(.breadcrumb) ul {
    list-style: none;
    padding: 0;
}

:where(.breadcrumb) li {
    display: inline-block;
    margin-right: 1em;
}

:where(.breadcrumb) li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5em;
}

:where(.breadcrumb) a:link,
:where(.breadcrumb) a:visited {
    color: var(--color-text);
}

:where(.breadcrumb) a:hover,
:where(.breadcrumb) a:active {
    color: var(--color-link-text);
}



/* ボタン */
.button {
    text-align: center;
    margin: 1em 0;
}

.button a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.6em 2em 0.5em;
    border-radius: 2em;
    border: 1px solid #EDC26F;
    background: linear-gradient(to bottom,  #faeab2 14%,#e8b85f 100%);
    min-width: 260px;
    color: #735F31;
    text-shadow: 1px 1px 1px #FFF;
    font-weight: bold;
    font-size: 1.2;
    letter-spacing: 1px;
}

.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    color: var(--color-text);
}

.button-link-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background-color: var(--color-accent);
    color: var(--color-text-reverse);
}

/* ページ送り　pagenation ページネーション */

.pagenation {
    width: 100%;
    text-align: center;
}

.page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 1em;
    min-height: 40px;
    min-width: 40px;
    line-height: 1;
    border-radius: 2em;
    background: linear-gradient(-45deg, #EEE 0%, #F5F5F5 100%);
    box-shadow: 2px 2px 10px #CCC;
    margin: 0 4px;
    border-top: #FFF 1px solid;
    border-left: #FFF 1px solid;
}

.page-numbers:hover {
    border-bottom: none;
}

.current {
    background-color: #EEE;
    box-shadow: none;
}

/* カードレイアウト */
.card {
    position: relative;
    padding: 0 0 60px 0;
    box-shadow: var(--box-shadow);
}

.card-post-title {
    font-size: 1rem;
    margin: 10px;
}

.card-post-excerpt {
    font-size: var(--fs-14);
    margin: 10px;
}

.no-img {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    justify-content: center;
    align-items: center;
    background-color: #DDD;
}

.small-img {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    text-align: center;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.small-img img {
    width: 100%;
    height: auto;
}

.card-more {
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0;
    text-align: center;
}

.card-more-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    padding: 0.5em 0.75em;
    min-width: 8em;
    border-radius: 2px;
    background-color: var(--color-theme);
    color: var(--color-theme-text);
    box-shadow: var(--box-shadow);

}

/* セクションレイアウト */
article {
    margin: 0 auto 0;
}

/* --2カラム構成の設定 ここまで-- */

/* トップページ */
.top-kv {
    width: 100%;
}

.top-kv img {
    width: 100%;
}

/* お知らせ　コーナー */
.post-list {}

.post-list-item {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
    align-items: flex-start;
}

.post-list-img {
    max-height: 150px;
    max-width: 150px;
    overflow: hidden;
}

.post-list-info {}

.post-list-title {}

.post-list-heading {
    font-size: var(--fs-16);
    margin: 0;
}

.post-date {
    font-weight: normal;
}

.post-list-excerpt {
    padding-left: 1em;
}

/* サイドバーメニュー */
.side-nav ul {
    padding-left: 0.5em;
}

/* 固定ページ */
.page-kv {
    width: 100%;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.page-kv img {
    width: 100%;
    height: auto;
}

/* archiveページ */

/* 投稿ページ */
.post-nav {
    width: 100%;
    max-width: var(--container);
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--color-bg-gray);
}

.post-nav a {
    padding: 10px 0;
    display: inline-block;
}

/* パララックス設定 */
.imgcontainer {
    min-height: 100vh;
}

.paracontent {
    min-height: 100vh;
}


/* LP用オリジナルCSS */
.pc {
    display: block;
}
.tab,
.sp {
    display: none;
}
body{
    font-family: 'Noto Serif JP', serif;
}
.italic {
    font-style: italic;
}
.left {
    float: left;
}
.right {
    float: right;
}
.clr-fff {
    color: #fff;
}
.clr-da6582 {
    color: #da6582;
}
.bg-da6582 {
    background: #da6582;
}
.font-large {
    font-size: 3.3rem;
}
.font-middle {
    font-size: 2rem;
}
.font-small {
    font-size: 0.8rem;
}
/* トップKV */
.header {
    background: none;
}
.top-kv {
    background: url("../images/pc/top_MV.webp") no-repeat;
    background-size: cover;
    height: 582px;
}
.top-kv .left {
    width: 66%;
    max-width: 100%;
    padding: 28px 27px;
}
.btn-01 {
    margin: 0px 0 0 0;
}

.top-kv .right {
    width: 34%;
    max-width: 100%;
    padding: 29px 0 0;
}
.tate {
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 2.7rem;
    line-height: 0.1;
    letter-spacing: .12rem;
}
/* トップKV end */




/* cont-1 */
.cont-1 h2 {
    color: #363533;
    background: #f2e6e6;
    border-radius: 50px;
    position: relative;
    text-align: center;
    font-weight: bold;
    width: 540px;
    font-size: 1.7rem;
    margin: 48px auto 18px 293px;
    padding: 21px 0;
    letter-spacing: .2rem;
}
.cont-1 h2::after,.arrow_box::before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    top:100%;
    left:50%;
}
.cont-1 h2::after{
    border-color: rgba(242, 230, 230, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:10px;
    border-right-width:10px;
    margin-left: -15px;
    border-top-color:#F2E6E6;
}
.cont-1 h2::before{
    border-color: rgba(242, 230, 230, 0);
    border-top-width:24px;
    border-bottom-width:24px;
    border-left-width:18px;
    border-right-width:18px;
    margin-left: -18px;
    margin-top: 3px;
    border-top-color:#F2E6E6;
    margin: 0;
}
.cont-1 .left {
    max-width: 52%;
    margin-top: 4%;
    padding-left: 3%;
}
.cont-1 ul {
    list-style: none;
    font-size: 1.1rem;
    margin: 0 0 0;
    line-height: 1.75;
    width: 57%;
    margin-left: -9%;
}
.cont-1 li {
    position: relative;
}
.cont-1 li::before {
    content: "";
    display: block;
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-left: 1rem solid #ae9abd;
    top: 0.35rem;
    left: -1.5rem;
    border-radius: 3px;
}
/* cont-1 end */
/* cont-2 */
.cont-2 {
    padding-top: 95px;
    padding-bottom: 0px;
    background: #f2e6e6;
    margin-top: -6.7%;
}
.bg-story_img {
    background: url("../images/pc/story_img-02.webp") no-repeat;
    background-position: right bottom 4rem;
    background-size: 50%;
    padding-top: 0px;
    padding-bottom: 65px;

}
.cont-2 .container {
    background: url("../images/pc/Story.webp") no-repeat;
    background-position: left top;
    background-size: 41%;
    padding-top: 97px;
    margin-top: -67px;
}
.cont-2 h3 {
    color: #252122;
    font-size: 1.7rem;
    width: 65%;
    margin: 0px 93px 0;
    line-height: 1.7;
}
.cont-2 p {
    width: 54%;
    margin: 1rem 0px 0 90px;
    line-height: 1.7;
}
.cont-2 span.textright {
    text-align: right;
    display: block;
    margin-top: 1rem;
    margin-right: 8.5rem;
}
/* cont-2 end */
/* cont-3 */
.cont-3 {
    padding-top: 70px;
    padding-bottom: 75px;
}
.cont-3 h1 {
    width: 800px;
    margin: 0 auto 0 137px;
    letter-spacing: 6.5px;
    text-align: center;
    color: #282828;
}
.cont-3 span.clr-fff{
    padding: 5px 15px;
}
.cont-3 .font-middle {
    letter-spacing: 0.1rem;
}
.bg-markar01 {
    background: url("../images/pc/markar01.webp") center center no-repeat;
    padding-top: 2px;
    padding-bottom: 15px;
    background-size: contain;
}
/* cont-3 end */
/* cont-4 */
.cont-4 {
    padding-top: 40px;
    padding-bottom: 0px;
    background: url("../images/pc/AboutHera.webp") top 7% left 42% no-repeat #f2f0f5;
    background-size: 65%;
}
.cont-4 .container {
    background: url("../images/pc/hera-gaikan.webp") top 7.5rem right no-repeat;
    background-size: 34%;
    padding-bottom: 4rem;
}
.cont-4 h2 {
    color: #252525;
    text-align: center;
    position: relative;
}
.cont-4 h2::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -20px;
    left: 45%;
    right: 45%;
    background: #ac9bbb;
    width: 93px;
    height: 3px;
}
.cont-4 h3 {
    margin-top: 52px;
    font-size: 1.7rem;
    margin-left: 92px;
    line-height: 1.8;
    letter-spacing: 0.05rem;
}
.cont-4 p {
    width: 43%;
    margin-left: 9.4%;
}
/* cont-4 end */
/* cont-5 */
.cont-5 {
    background: url("../images/pc/course.webp") top 20px left 25% no-repeat;
    background-size: 35%;
    padding-top: 35px;
}
.cont-5 .text-center {
    padding-top: 1rem;
    font-size: 1.3rem;
}
.cont-5 h2 {
    color: #252525;
    text-align: center;
    position: relative;
}
.cont-5 h2::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -20px;
    left: 45%;
    right: 45%;
    background: #ac9bbb;
    width: 93px;
    height: 3px;
}
.bg-academy_img {
    background: url("../images/pc/academy_img.webp") bottom left -15% no-repeat;
    background-size: contain;
    height: 627px;
    margin-top: 50px;
}
.cont-5 .right {
    background: rgba(225,131,155, 0.8);
    width: 50.8%;
    padding: 43px 0 27px 55px;
    color: #fff;
}
.cont-5 h4 {
    position: relative;
    padding-left: 25px;
    margin-top: -5px;
}
.cont-5 h4::after {
    content: '';
    display: block;
    background: #fff;
    width: 2px;
    height: 4.4rem;
    position: absolute;
    left: 4px;
    top: 5px;
}
.price {
    font-size: 6rem;
    margin: 0 0 0 15px;
    line-height: .37;
}
.en {
    font-size: 2.5rem;
    font-style: normal;
}
.tax {
    font-size: 1.5rem;
    font-style: normal;
}
.expenses {
    margin-left: 38%;
    font-size: 1.1rem;
    margin-top: 10px;
    letter-spacing: 0.1rem;
}
.cont-5 dl {
    margin-top: 0;
}
.cont-5 dt {
    color: #fff5ae;
    font-size: 1.4rem;
    font-weight: bold;
}
.cont-5 dd {
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 30px;
}
.btn-2 {
    max-width: 67%;
    margin-top: 30px;
}
/* cont-5 end */
/* cont-6 */
.cont-6 {
    padding-top: 55px;
}
.cont-6 h2 {
    text-align: center;
    letter-spacing: .5rem;
}
.cont-6 .bg-markar02 {
    background: url("../images/pc/markar02.webp") center no-repeat;
    background-size: contain;
    padding: 3px 0 10px 0;
}
.cont-6 .flex {
    margin: 0 60px;  
}
.cont-6 dt {
    background-image: linear-gradient(150deg, rgba(253, 206, 160, 1), rgba(251, 167, 183, 1));
    position: relative;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
}
.cont-6 dt::after {
    content: '';
    display: block;
    background: url("../images/pc/check.webp") no-repeat;
    background-size: contain;
    height: 23px;
    width: 23px;
    position: absolute;
    top: 8px;
}
.cont-6 .col-6 dt::after {
    left: 17%;
}
.cont-6 .col-12 dt::after {
    left: 27%;
}
.cont-6 .col-6 {
    margin: 26px 0;
    padding: 0px 20px;
}
.cont-6 .col-6 dd {
    margin-left: 0;
    margin-top: 15px;
    line-height: 1.8;
}
.cont-6 .col-12 {
    margin: 22px 0;
    padding: 0px 15px;
}
.cont-6 .col-12 .flex {
    margin: auto;
}
.cont-6 .col-12 dd {
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
}
.cont-6 .col-12 dd:first-child {
    padding-left: 0;
}
.cont-6 .col-12 dd:last-child {
    padding-right: 0;
}
.cont-6 .toggle {
    display: none;
}
.cont-6 h5 {
    border: solid 1px #000;
    padding: 15px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 15px;
}
.cont-6 .col-12 p {
    line-height: 1.7;
}
/* cont-6 end */
/* cont-7 */
.cont-7 {
    background: url("../images/pc/after_seminer100.webp") left bottom 0px no-repeat;
    background-size: 62.5%;
    height: 719px;
    padding-top: 32px;
}
.bg-f2f0f5 {
    background: #f2f0f5;
    box-shadow: 0px 15px 16px -10px #d6d7d9;
    width: 56.7%;
    float: right;
    padding: 30px 160px 60px 60px;
}
.cont-7 h3 {
    font-size: 2.3rem;
    margin-left: 22px;
    margin-top: 23px;
    line-height: 1.7;
    letter-spacing: 0.15rem;
}
.cont-7 h3 span {
    letter-spacing: 0.9rem;
    padding: 0 5px;
}
.cont-7 h5 {
    font-size: 1.5rem;
    margin: 0;
}
.cont-7 .no-01 {
    background:url("../images/pc/1.webp") top 18px left 5px no-repeat;
    background-size: 44px;
    padding-left: 60px;
    padding-bottom: 7px;
    border-bottom: dotted 2px #575f61;
}
.cont-7 .no-01 h5 {
    padding-top: 21px;
}
.cont-7 .no-02 {
    background:url("../images/pc/2.webp") top 25px left 8px no-repeat;
    background-size: 34px;
    padding-left: 60px;
    padding-bottom: 17px;
    border-bottom: dotted 2px #575f61;
}
.cont-7 .no-02 h5 {
    padding-top: 21px;
}
.cont-7 .no-03 {
    background: url("../images/pc/3.webp") top 29px left 5px no-repeat;
    background-size: 38px;
    padding-left: 60px;
}
.cont-7 .no-03 h5 {
    padding-top: 12px;
}

/* cont-7 end */
/* cont-8 */
.cont-8 {
    padding-top: 80px;
    padding-bottom: 55px;
}
.cont-8 h2 {
    text-align: center;
    letter-spacing: 0.5rem;
    line-height: 1.4;
    margin-bottom: 48px;
}
.cont-8 .clr-a54867 {
    color: #a54867;
}
.cont-8 p {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 70px;
    padding-right: 70px;
    line-height: 1.7;
    margin: 0;
}
.cont-8 img {
    margin-top: 50px;
}
/* cont-8 end */
/* cont-9 */
.cont-9 {
    background: #f2ebf2;
    padding-top: 43px;
    padding-bottom: 50px;
}
.cont-9 .container {
    background: url("../images/pc/Voice.webp") top 6% left 4% no-repeat;
    background-size: 41%;
}
.cont-9 h2 {
    text-align: center;
    position: relative;
    margin-top: 0px;
    margin-bottom: 0;
}
.cont-9 h2::after {
    display: block;
    content: '';
    background: #ac9cb6;
    width: 120px;
    height: 3px;
    position: absolute;
    bottom: -22px;
    left: 50%;
    right: 50%;
}
.cont-9 .slide {
    margin-top: 70px;
    margin-left: 30px;
    margin-right: 30px;
}
.cont-9 .slick-arrow {
    background-color: #dc6484;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.cont-9 .slick-prev {
    left: -10%;
    top: 30%;
}
.cont-9 .slick-next {
    right: -10%;
    top: 30%;
}
.cont-9 .slick-prev:before {
    color: #fff;
    content: '〈';
    margin-left: -10px;
}
.cont-9 .slick-next:before {
    color: #fff;
    content: '〉';
    margin-right: -10px;
}
.cont-9 .slick-dots {
    bottom: -25px;
}
.cont-9 .slick-dots li,
.cont-9 .slick-dots li button {
    width: 10px;
    height: 10px;
}
.cont-9 .slick-dots li button:before {
    line-height: 10px;
    width: 10px;
    height: 10px;
    font-size: 8px;
    border: solid 1px #000;
    border-radius: 50%;
    color: #f2ebf2;
}
.cont-9 .slick-dots li.slick-active button:before {
    color: #000;
}
.cont-9 .slick-track {
    display: flex;
}
.cont-9 .slick-slide {
    height: auto !important;
}
.cont-9 .slide-cnt {
    max-width: 310px;
    margin: 0 0;
    padding: 5px 20px 10px;
    border-left: solid 1px #d5d1c5;
}
.cont-9 .slide-cnt img {
    margin: auto;
    width: 65%;
}
.cont-9 .slide-cnt h5 {
    color: #dd6485;
    font-size: 1.2rem;
    margin-top: 30px;
}
/* cont-9 end */
/* cont-10 */
.cont-10 {
    padding-top: 105px;
    padding-bottom: 64px;
}
.cont-10 .tokuten {
    position: relative;
}
.cont-10 h2 {
    position: absolute;
    right: 30%;
    left: 30%;
    top: -64px;
    width: 40%;
}
.cont-10 .tryyourdream {
    position: absolute;
    left: 6.5%;
    bottom: 8%;
    width: 38%;
}
.cont-10 .btn-3 {
    position: absolute;
    right: 5%;
    bottom: 4.5%;
    width: 53.5%;
}
.cont-10 .flex {
    background: url("../images/pc/marubatsu.webp") top center no-repeat;
    background-size: 14.5%;
    position: relative;
    padding-top: 8%;
    margin-top: 3.5%;
}
.cont-10 .flex::before {
    content: '';
    display: block;
    background-image: linear-gradient(to bottom, #000 1px, transparent 1px);
    background-size: 2px 3px;
    background-repeat: repeat-y;
    width: 1px;
    height: 41.5%;
    position: absolute;
    left: 50%;
    right: 50%;
    top: 32%;
}
.cont-10 .circle {
    background: url("../images/pc/maru.webp") top 87% center no-repeat;
    background-size: 33%;
    margin-top: -30px;
}
.cont-10 .circle ul {
    margin-top: 52px;
    font-weight: bold;
    margin-left: 5rem;
    line-height: 1.9;
}
.cont-10 .circle p {
    color: #de6284;
    text-align: center;
    position: relative;
    font-size: 1.3rem;
    font-weight: bold;
    display: inline-block;
    margin: auto 20%;
    padding-left: 15px;
    padding-right: 15px;
}
.cont-10 .circle p::before {
    content: '';
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    background: #de6284;
    width: 1px;
    height: 1.8rem;
    transform: rotate(-45deg);
}
.cont-10 .circle p::after {
    content: '';
    display: block;
    position: absolute;
    top: 1px;
    right: 1px;
    background: #de6284;
    width: 1px;
    height: 1.8rem;
    transform: rotate(45deg);
}
.cont-10 .cross {
    background: url("../images/pc/batsu.webp") top 79% center no-repeat;
    background-size: 31%;
    margin-top: -30px;
}
.cont-10 .cross ul {
    margin-top: 30px;
    font-weight: bold;
    margin-left: 5rem;
    line-height: 1.9;
}
.cont-10 .cross p {
    color: #335e93;
    text-align: center;
    position: relative;
    font-size: 1.3rem;
    font-weight: bold;
    display: inline-block;
    margin: auto 20% ;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.3;
}
.cont-10 .cross p::before {
    content: '';
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    background: #335e93;
    width: 1px;
    height: 3.6rem;
    transform: rotate(-23deg);
}
.cont-10 .cross p::after {
    content: '';
    display: block;
    position: absolute;
    top: 1px;
    right: 1px;
    background: #335e93;
    width: 1px;
    height: 3.6rem;
    transform: rotate(23deg);
}
.cont-10 .col-12 {
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}
.cont-10 .col-12 span {
    font-size: 2.2rem;
}
/* cont-10 end */
/* cont-11 */
.cont-11 {
    background: url("../images/pc/Thoughts.webp") top 13% left 18% no-repeat, url("../images/pc/thought.webp") top right no-repeat, #f6f0f0;
    background-size: 33%, cover;
    padding-top: 45px;
    padding-bottom: 76px;
}
.cont-11 h2 {
    text-align: center;
    font-size: 2rem;
    margin-top: 0;
    position: relative;
}
.cont-11 h2::after {
    display: block;
    content: '';
    background: #ac9cb6;
    width: 93px;
    height: 3px;
    position: absolute;
    bottom: -23px;
    left: 45%;
    right: 45%;    
}
.cont-11 p {
    margin: 71px auto 0;
    max-width: 90%;
    line-height: 1.7;
}
/* cont-11 end */
/* cont-12 */
.cont-12 {
    padding-top: 60px;
    padding-bottom: 50px;
}
.cont-12 .container {
    padding-left: 1%;
    padding-right: 1%;
}
.cont-12 h2 {
    background: #da6582;
    color: #fff;
    position: relative;
    text-align: center;
    font-weight: 400;
    padding-top: 25px;
    padding-bottom: 25px;
    max-width: 100%;
    margin: auto;
}
.cont-12 h2::after {
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(218, 101, 130, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:10px;
    border-right-width:10px;
    margin-left: -10px;
    border-top-color:#da6582;
    top:100%;
    left:50%;
}
.cont-12 p.center {
    text-align: center;
    margin-top: 43px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.cont-12 h3 {
    background: #e6e2e1;
    font-size: 1.25rem;
    padding: 12px 18px;
    margin-bottom: 10px;
}
.cont-12 h3 span {
    background: #da6582;
    color: #fff;
    font-size: 1rem;
    padding: 3px 11px;
    border-radius: 10px;
    margin-left: 8px;
    line-height: 0;
}
.cont-12 h3 span.ninni {
    background: #3875c1;
    color: #fff;
    font-size: 1rem;
    padding: 3px 11px;
    border-radius: 10px;
    margin-left: 8px;
    line-height: 0;
}
.wpcf7-form {
    font-size: 1.25rem;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="password"],
.wpcf7-form textarea {
    height: 3.7rem;
    padding-left: 10px;
    padding-right: 10px;
}
.wpcf7-form label span{
    margin-top: 2px;
    display: block;
    margin-bottom: 2px;
}
.cont-12 .wpcf7-form textarea {
    height: 9rem;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.cont-12 .privacy-policy {
    border: #000 solid 1px;
    height: 350px;
    font-size: 1rem;
}
.cont-12 .privacy-policy-scrole {
    overflow-y: scroll;
    height: 348px;
    padding-left: 20px;
    padding-right: 20px;
}
.cont-12 .privacy-policy h4 {
    font-size: 1.2em;
}
.cont-12 .wpcf7-list-item.first.last {
    display: flex;
    margin: auto;
    text-align: center;
    justify-content: center;
    font-size: 1rem;
}
.cont-12 .btn-5 {
    width: 57%;
    margin: auto;
    display: block;
}
/* cont-12 end */
/* cont-13 */
.cont-13 {
    background: #f2f0f5;
    padding-top: 40px;
    padding-bottom: 75px;
}
.cont-13 P {
    text-align: center;
    font-size: 1.7rem;
    line-height: 1.8;

}
.cont-13 .btn-4 {
    width: 50%;
    margin: 35px auto 0;
}
.cont-13 .btn-4 a[target="_blank"]::after {
    display: none;
}
/* cont-13 end */
/* cont-14 */
.cont-14 h2 {
    text-align: center;
    font-size: 2.1rem;
    margin-top: 80px;
    margin-bottom: 55px;
}
.cont-14 .bg-markar03 {
    background: url("../images/pc/markar03.webp") top center no-repeat;
    background-size: contain;
}
.cont-14 .slide2 .slick-slide {
    margin: 0 20px;
    width: 350px;
}
.cont-14 h3 {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.8;
    margin-top: 80px;
    margin-bottom: 0px;
}
.cont-14 h3 span {
    color: #d96482;
    font-size: 1.8rem;
}
/* cont-14 end */
/* footer */
.footer {
    background: none;
    padding-top: 85px;
    margin-top: 0;
}
.footer h3 {
    text-align: center;
}
.footer .footer-logo {
    width: 230px;
    margin: 8px auto 25px;
}
.footer address {
    text-align: center;
}
.footer .tel-1 {
    text-align: center;
    margin-top: .5rem;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.footer .tel-1 a {
    color: #cf6c8c;
    font-size: 1.3rem;
}
.footer .tel-2 {
    text-align: center;
    margin-top: 0rem;
    font-size: .9rem;
}
.footer .tel-2 a {
    color: #000;
}
.footer a[target="_blank"]::after {
    display: none;
}
.footer .footmenu {
    width: 55%;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 24px auto 0px;
    font-size: .8rem;
}
.footer .footmenu a {
    color: #000;
}
.footer .copyright {
    text-align: center;
    font-size: .9rem;
}
/* footer end */
/* 固定ページ */
.page-title {
    text-align: center;
}
.contact-btn {
    display: block;
    margin: auto;
    padding: 15px 150px;
    font-size: 1.7rem;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(236, 194, 111, 1));
    border: solid 2px #ecc26f;
    border-radius: 15px;
    color: #7b683d;
}
/* 固定ページ end */