/* カラー変更 */

:root {
    --content-width: 1920px;
    /*--main-color01: #E1AB3A;
    --main-color02: #BE9C91;
    --sub-color: ;
    --accent-color: #F2EFEB;*/
    --main-color01: #74B4FE;
    --main-color02: #414361;
    --sub-color: #75DBEB;
    --accent-color: #F2EFEB;
}


/* コンテンツレイアウト */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-all;
    border-spacing: 0;
    border-collapse: collapse;
    text-indent: initial;
    text-decoration: none;
    line-height: 2.0em;
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: "Noto Sans JP","メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "游ゴシック体", "Yu Gothic", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", sans-serif;
    color: #414361;
}

main {
  padding-top: 80px;
  /*font-size: 22px;*/
  /*font-size: 18px;*/
}

.home main {
  padding-top: 0;
  margin-top: -30px;
}

@media (max-width: 767px) {
  main {
    padding-top: 68px;    
    /*font-size: 16px;*/
  }
}
ul {
  padding-left: 20px;
}
li::marker {
    color: var(--main-color02);
}

a:hover {
    opacity: 0.7;
}

section {
    /*padding: 60px 0;*/
    /*padding: 48px 96px 80px;*/
    /*padding: 36px 96px 80px;*/
    padding: 30px 96px 70px;
}

/*section:first-of-type {
    padding-top: 0px;
}*/

@media (max-width: 1360px) {
    section {
        padding: 48px 30px 80px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 40px 16px;
    }
}

/*.home section:first-of-type {
    padding-top: 60px;
}


@media (max-width: 767px) {
    .home section:first-of-type {
        padding-top: 30px;
    }
}*/

.home section {
  padding: 80px 96px;
}

@media (max-width: 1360px) {
    .home section {
        padding: 80px 46px;
    }
}

@media (max-width: 767px) {
    .home section {
        padding: 40px 16px;
    }
}

.container {
  margin: 0 auto;
  max-width: var(--content-width);
}

.container.w1200 {
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .container:first-child {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
    section>.container {
        padding: 0;
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .row {
        display: block;
        margin-top: 0;
    }
    .row.sp-2row {
        display: flex;
    }
}

.row.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.row .span_1 {
    width: calc(100% / 12 * 1);
}

.row .span_2 {
    width: calc(100% / 12 * 2);
}

.row .span_3 {
    width: calc(100% / 12 * 3);
}

.row .span_4 {
    width: calc(100% / 12 * 4);
}

.row .span_5 {
    width: calc(100% / 12 * 5);
}

.row .span_6 {
    width: calc(100% / 12 * 6);
}

.row .span_7 {
    width: calc(100% / 12 * 7);
}

.row .span_8 {
    width: calc(100% / 12 * 8);
}

.row .span_9 {
    width: calc(100% / 12 * 9);
}

.row .span_10 {
    width: calc(100% / 12 * 10);
}

.row .span_11 {
    width: calc(100% / 12 * 11);
}

.row .span_12 {
    width: 100%;
}

.row>.col {
    margin-top: 30px;
    margin-left: 0;
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
}

@media (max-width: 767px) {
    .row>.col {
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;
        /*padding-right: calc(30px / 2);
        padding-left: calc(30px / 2);*/
        padding: 0;
        width: 100%;
    }
    .row.sp-2row>.col {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .row .span_1 {
        width: auto;
    }
    .row>.col:not(:first-child) {
        margin-top: 20px;
    }
}


/* ヘッダー */

header {
    /*position: fixed*/
    width: 100%;
    z-index: 100;
    /*padding: 10px 30px;*/
    top: 0;
    background: #fff;
}

.header-wrap {
    position: relative;
    width: auto;
    min-height: 80px;
    text-align: center;
    margin: 0 auto;
    /*max-width: var(--content-width);*/
    width: 100%;
    z-index: 9999999999999;
    position: fixed;
    /*overflow: hidden;*/
}

.header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background-color: #fff;
    height: 90px;
    background: rgba(255, 255, 255, 0.9);
}

.header-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 1050px) {
    .header-main {
        background:#fff;
    }
}

@media (max-width: 767px) {
    /*header {
        padding: 0 0 0 10px;
    }*/
    .header-main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        width: 100%;
        justify-content: space-between;
        height:68px;
    }
}

.header-head {
    padding-left: 5%;
}

.header-head a {
    display: inline-block;
}

.header-head img {
    height: 80px;
}

.header-copy:not(.title) {
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.2;
    margin: 0 0 20px 0;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    position: relative;
}

@media (max-width: 767px) {    
    .header-copy:not(.title) {
        display: none;
    }
    .header-head img {
        width: 252px;
        height: auto;
    }
}

.header-btn {
    position: relative;
    cursor: pointer;
    width: 60px;
    height: 68px;
    z-index: 999999999;
}

.header-btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 17px;
    height: 3px;
    border-radius: 2px;
    background: #727171;
    width: 45%;
}

.header-btn span:nth-of-type(1) {
    top: 24px;
}

.header-btn span:nth-of-type(2) {
    top: 32px;
}

.header-btn span:nth-of-type(3) {
    top: 40px;
}

.header-btn span:nth-of-type(4) {
    top: 48px;
    background: none;
    font-size: 8px;
    color: #fff;
}

.header-btn.active span:nth-of-type(1) {
    top: 24px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.header-btn.active span:nth-of-type(2) {
    opacity: 0;
}

.header-btn.active span:nth-of-type(3) {
    top: 36px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

.header_nav {
    margin-right: 15%;
}

@media (min-width: 1130px) {
  .header-btn {
    display: none;
  }
}

@media(max-width:1360px) {
    .header_nav {
        margin-right: 0;
    }
}

/* スライドナビゲーション */

.slide {
    /*background-color: var(--main-color02);*/
    width: 300px;
    min-height: 100vh;
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 10;
    overflow: scroll;
    padding-top: 100px;
    background: url(/wp-content/uploads/sp-nav-bg.png);
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .slide {
        padding-top: 80px;
    }
}

.slide-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    background: transparent;
    cursor: pointer;
    z-index: -1;
}

.slide-menu {
    list-style: none;
    /*border-top: 2px solid #fff;*/
    padding: 24px;
    padding-bottom: 90px;
}

.slide-menu>ul {
    padding: 0;
    list-style: none;
}

.slide-menu>ul>li {
    /*border-bottom: 2px solid #fff;*/
    margin: 5px 0;
    background: #fff;
}

.slide-menu>ul>li>a {
    text-decoration: none;
    color: var(--main-color02);
    padding: 8px 10px;
    display: block;
}

/*.slide-menu>ul>li>a:hover {
    background-color: var(--main-color02);
    box-shadow: inset 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease 0s;
    opacity: 1;
}*/
.slide-menu>ul>li.menu-item-has-children>a {
    position: relative;
}
  
.slide-menu>ul>li.menu-item-has-children>a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 6%;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--main-color02);
    border-right: 2px solid var(--main-color02);
    -webkit-transform: translate(0, -50%) rotate(135deg);
    transform: translate(0, -50%) rotate(135deg);
    -webkit-transition: .2s;
    transition: .2s;
}

.slide-menu>ul>li.menu-item-has-children.active>a {
    background-color: #F6F6F6;
    color: var(--main-color01);
}

.slide-menu>ul>li.menu-item-has-children.active>a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 6%;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--main-color02);
    border-right: 2px solid var(--main-color02);
    -webkit-transform: translate(0, -50%) rotate(315deg);
    transform: translate(0, -50%) rotate(315deg);
    -webkit-transition: .2s;
    transition: .2s;
}

.sp-bnr {
    font-size: 0;
}

.sp-bnr a {
    padding: 0!important;
}

.sp-bnr a::after {
    content: '';
    width: auto;
    height: 76px;
    display: block;
}
.sp-bnr.bnr01 a::after {
    background: url(/wp-content/uploads/footer-bnr01sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sp-bnr.bnr02 a::after {
    background: url(/wp-content/uploads/footer-bnr02sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sp-bnr.bnr03 a::after {
    background: url(/wp-content/uploads/footer-bnr03sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.sub-menu {
    list-style: none;
    padding: 0;
    display: none;
}
.sub-menu>li {
    background: #fff;
}
.sub-menu>li>a {
    text-decoration: none;
    color: var(--main-color02);
    padding: 8px 10px!important;
    display: block;
    border-bottom: 1px solid #C7C7C7;
}
.sub-menu>li>a:hover {
    color: var(--main-color01);
    opacity: 1;
}
.slide-menu>ul>li.menu-item-has-children>a {
    pointer-events: none;
}
.slide-menu>ul>li.menu-item-has-children.gnav>a {
    pointer-events: auto;
}
.sub-menu.gnav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 90px;
    background: #fff;
    /*padding-left: 200px;*/
    padding: 50px 0 50px 200px;
}
.sub-menu.gnav>li {
    float: left;
    padding: 0 15px;
}
.sub-menu.gnav>li>a {
    display: inline;
    padding: 8px 24px 8px 10px !important;
    border-bottom: none;
}
.sub-menu.gnav>li>a::before {
    content:none;
}
.sub-menu.gnav>li>a:hover {
    color: var(--main-color01);
}
.sub-menu.gnav>li>a:hover::before {
    content:none;
}

/*.head-arrow {
    margin-left: 1em;
}
*/
.sub-menu.gnav>li>a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 1px var(--main-color02);
    border-right: solid 1px var(--main-color02);
    position: absolute;
    right: 0;
    top: 16px;
    transform: rotate(45deg);
}

.sub-menu.gnav>li>a:hover:after {
    border-top: solid 2px var(--main-color01);
    border-right: solid 2px var(--main-color01);
}

/* ぱんくず */

.bread_wrap {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 96px;
}

.bread {
    overflow: hidden;
}

.bread ul {
    margin: 0 auto;
    float: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

.bread li:last-of-type {
    color:var(--main-color01);
}

@media(max-width:1360px) {
  .bread_wrap {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
    .bread ul {
        padding: 15px 0;
    }
    .bread_wrap {
      padding: 0;
    }
}

.bread ul li {
    list-style: none;
    position: relative;
    float: left;
    margin-right: 20px;
    padding-right: calc(20px + 9px);
    font-size: 16px;
}

@media (max-width: 767px) {
    .bread ul li {
        margin-right: 15px;
        padding-right: calc(15px + 9px);
    }
}

.bread ul li a {
    padding: 0;
    /*text-decoration: underline;*/
    color: var(--main-color02);
}

.bread ul li a:hover {
    color: #1b1b1b;
    text-decoration: none;
}

.bread ul li:after {
    content: '>';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.bread ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.bread ul li:last-child:after {
    content: none;
}

.medicalinfo {
    background-color: var(--accent-color);
}


/* 画像のフィックス */

figure {
    margin: 0;
    text-align: center;
}

img {
    vertical-align: middle;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.recruit-info-container img {
    width: auto;
}

figure img {
    width: inherit;
}


/* 投稿 */

.article_list {
    /*padding: 30px;*/
    padding: 0 30px;
    border: 1px solid var(--main-color02);
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .article_list {
        padding: 20px;
    }
}

.article_list:first-child {
    margin-top: 0;
}

.article_list:nth-child(n+2) {
    margin-top: 30px;
}

.article_date {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1em;
}

.article_detail {
    padding: 4%;
    margin-bottom: 4%;
    /*font-size: 1.2rem;*/
}

.article_detail img {
    width: auto;
}

.article_detail .span_12 {
    margin: 2% 0;
}

.article_button {
    margin-top: 30px;
    text-align: right;
}

@media (max-width: 767px) {
    .article_button {
        margin-top: 20px;
    }
}

.more {
    display: inline-block;
    overflow: hidden;
    margin: auto;
}

.more.btn_ss a,
.more.btn_ss span {
    padding: 0.3em 2.1em 0.3em 1.4em;
}

.more.btn_s a,
.more.btn_s span {
    padding: 0.5em 2.1em 0.5em 1.4em;
}

.more.btn_m a,
.more.btn_m span {
    padding: 0.5em 2.1em 0.5em 1.4em;
}

.more a,
.more span {
    display: inline-block;
    letter-spacing: normal;
    color: var(--main-color02);
    border: 1px solid var(--main-color02);
    padding: 0.9em 1.6em;
    margin-bottom: 1px;
    text-decoration: none;
}

.more a:after,
.more span:after {
    border-color: var(--main-color02);
}

.more a:hover,
.more span:hover {
    color: #333;
    border-color: #333;
}

.more a:hover:after,
.more span:hover:after {
    border-color: #333;
}

.more a.add_arrow,
.more span.add_arrow {
    padding-right: 1.9em;
}

.add_arrow {
    display: block;
    position: relative;
}

.add_arrow:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 5%;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.add_arrow:hover:after {
    right: 3%;
    border-color: #fff;
}

.more {
    display: inline-block;
    overflow: hidden;
    margin: auto;
}

.more a {
    display: inline-block;
    letter-spacing: normal;
    border: 1px solid var(--main-color02);
    color: var(--main-color02);
    padding: 0.3em 1.3em 0.3em 1em;
    margin-bottom: 1px;
    text-decoration: none;
    font-size: 1.2rem;
}

.pager {
    overflow: hidden;
    margin-bottom: 5%;
}

.pager .pager_prev {
    float: left;
}

.pager .pager_prev a {
    display: block;
    position: relative;
    padding-left: 15px;
    text-decoration: none;
}

.pager .pager_prev a:before,
.pager .pager_prev a:after {
    content: "";
    display: block;
    position: absolute;
    left: 2px;
    margin: auto;
    width: 8px;
    height: 1px;
    background: var(--main-color02);
    -webkit-transition: .2s;
    transition: .2s;
}

.pager .pager_prev a:before {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    top: calc(50% - 2px);
}

.pager .pager_prev a:after {
    -webkit-transform: translateY(-50%) rotate(-135deg);
    transform: translateY(-50%) rotate(-135deg);
    top: calc(50% + 3px);
}

.pager .pager_prev a:hover {
    text-decoration: underline;
}

.pager .pager_prev a:hover:before {
    left: 0;
}

.pager .pager_prev a:hover:after {
    left: 0;
}

.pager .pager_next {
    float: right;
}

.pager .pager_next a {
    display: block;
    position: relative;
    padding-right: 15px;
    text-decoration: none;
}

.pager .pager_next a:before,
.pager .pager_next a:after {
    content: "";
    display: block;
    position: absolute;
    right: 2px;
    margin: auto;
    width: 8px;
    height: 1px;
    background: var(--main-color02);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .2s;
    transition: .2s;
}

.pager .pager_next a:before {
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    top: calc(50% - 2px);
}

.pager .pager_next a:after {
    -webkit-transform: translateY(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
    top: calc(50% + 3px);
}

.pager .pager_next a:hover {
    text-decoration: underline;
}

.pager .pager_next a:hover:before {
    right: 0;
}

.pager .pager_next a:hover:after {
    right: 0;
}

/*.top-news,
.top-doctor,
.top-diagnosis,
.top-recruit {
    background: var(--accent-color);
}*/

/*.top-clinic {
    background: #AB9D83;
}*/

.top-news {
    background: url(/wp-content/uploads/news-bg.png);
    background-repeat: no-repeat;
}

.news-container {
    display: flex;
    /*flex-wrap: wrap;*/

}

.news-h2-wrap {
    width: 30%;
}

/*.top-news h2.heading-1 {
    margin: 0 0 0.5em;
    position: relative;
    border: 0;
    word-wrap: break-word;
    font-weight: bold;
    font-size: 1.6rem;
    color: #89C997;
    letter-spacing: 2.5px;
    border-bottom: none;
    line-height: 1em;
    border-left: 1px solid #89C997;
    padding-left: 32px;
    font-size: 48px;
    font-family: 'Noto Sans JP', sans-serif;
}

.top-news h2.heading-1::after {
    display: none;
}*/

/*.top-news h2.heading-1 span {
    font-size: 20px;
    color: #4b4b4b;
}*/

.news-item-wrap {
    width: 65%;
    /*margin-right: 30px;*/
}



.news-items {
  background: rgba(255, 255, 255, 0.3);
}

.news-item {
    flex: 1;
}

.news-items-inner {
    display: flex;
    flex-wrap: wrap;
    /*gap: 0 20px;*/
    gap: 5px 10px;
    align-items: flex-start;
    position: relative;
    padding-right: 30px;
    padding: 15px;
    border-bottom: 1px solid var(--main-color01);
    color: var(--main-color02);
    /*font-size: 20px;*/
    font-size: 18px;
    align-items: center;
    transition: 0.3s ease;
}

/* .news-items-inner:before {
    content: '→';
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 24px;
    color: #000;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
} */

/*.news-items-inner:last-child {
    border-bottom: none;
}*/

.cat {
    background: var(--main-color01);
    padding: 4px 10px;
    color: #fff;
    /*font-size: 18px;*/
    font-size: 16px;
    line-height: 1.5;
}

@media(max-width:768px) {
    .cat {
        font-size: 14px;
        line-height: 1.2;
    }
}

.post-title {
    /*font-size: 1rem;*/
    /*font-weight: bold;*/
    line-height: 1;
    color: var(--main-color02);
    /*font-family: serif;*/
}

.news-item time {
    width: 100%;
    color: #575757;
}

.news-item a {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: var(--main-color02);
    /*line-height: 0;*/
    margin-right: 50px;
    display: inline-block;
    line-height: 1.2;
}

.news-items-inner::after {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px var(--main-color02);
    border-right: solid 2px var(--main-color02);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 50px;
    bottom: 0;
    margin: auto;
    display: block;
    transition: 0.3s ease;
}

.news-items-inner:hover {
    /*background: #EFEFEF;*/
    background: #fff;
    font-weight: bold;
    transition: all .3s linear;
}

.news-items-inner:hover::after {
    right: 15px;
    transition: .3s linear;
}

time {
    width: 10rem;
}

.news-content {
    width: 100%;
    margin: 15px 0 0;
    line-height: 1.5;
}

.news-btn-sp {
    margin: 0 auto;
    margin-top: 24px;
}

/*.news-item a:hover {
    text-decoration: underline;
    opacity: .7;
}*/

@media(min-width:1635px) {
    .news-items-inner {
        height: 62px;
        padding: 8px 15px 15px;
    }
    .news-items-inner::after {
        top: -5px;
    }
}

@media(max-width:1360px) {
    .news-items {
        margin-top: 24px;
    }
    .news-item-wrap {
        width: 100%;
    }
    .news-btn-pc {
        display: none!important;
    }
}

@media(min-width:1360px) {
    .news-btn-sp {
        display: none!important;
    }
}

@media(max-width:1130px) {
    .news-container {
        flex-wrap: wrap;
    }
    .news-h2-wrap {
        width: 100%;
    }
    .news-item {
        width:100%;
        flex:auto;
    }
    .news-item {
        position: relative;
    }
    .news-items-inner::after {
        content: none;
    }
    .news-item::after {
        content: '';
        width: 8px;
        height: 8px;
        border: 0;
        border-top: solid 2px var(--main-color02);
        border-right: solid 2px var(--main-color02);
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        right: 5px;
        bottom: 0;
        margin: auto;
        display: block;
        transition: 0.3s ease;
    }
    .news-item:hover::after {
        right: 15px;
        transition: .3s linear;
    }
    .news-items-inner:hover .news-item::after {
        right: 15px;
        transition: .3s linear;
    }
}

@media (max-width: 767px) {
    .news-h2-wrap {
        width: 100%;
        text-align: center;
    }
    .news-item {
        width: 100%;
        flex: auto;
    }
    .news-item-wrap {
        margin-right: 0;
    }
    .news-items-inner {
        font-size: 16px;
    }
    .news-items-inner::after {
        right: 30px;
        /*bottom: 50px;*/
    }
    time {
        width: 8rem
    }
    .post-title::after {
        right: 30px;
    }
}

.archive-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 15px;
}


  /* コンタクトフォーム */

  span[class^="cf-"] {
    display: block;
  }

  .form-wrap dl {
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 0;
    gap: 0;
    align-items: stretch;
  }

  .form-wrap dl:last-child {
    margin-bottom: 0;
  }

  .form-wrap dl dt {
    font-weight: bold;
    width: 240px;
    background: var(--main-color01);
    padding: 10px;
    color: #fff;
    border-bottom: 1px solid #fff;
    letter-spacing: 1.2px;
  }

  .form-wrap dl dd {
    padding: 10px;
    margin-left: 0;
    width: calc(100% - 240px);
    background: #fff;
    margin-bottom: 32px;
  }

  .reqired {
    color: #f00;
  }

  input[type=text],
  input[type=number],
  input[type=date],
  input[type=tel],
  input[type=url],
  input[type=email]
   {
    width: 100%;
    /*font-size: 20px;*/
    /*font-size: 18px;*/
    border: none;
    background: #ececec;
    height: 100%;
  }

.submit{
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

  button{
    text-decoration: none;
    border: none;
    outline: 0;
    color: #fff;
    cursor: pointer;
    background: none;
    padding: 23px 20px 23px 20px;
    width: 100%;
  }

  button:hover{
    color: #FFF;
  }

  select {
    font-size: 20px;
    border: none;
    background: #ececec;
    height: 100%;
  }

  textarea {
    width: 100%;
    border: none;
    background: #ececec;
    height: 100%;
  }

  @media (max-width: 820px) {
      .form-wrap dl dd {
          width: 100%;
      }
      .form-wrap dl dt {
          width: 100%;
      }
    }


/* カレンダー */

.calendars {
    display: flex;
    gap: 20px 2%;
}

.xo-event-calendar .calendar:first-child .month-next {
    visibility: hidden;
}

.xo-event-calendar .calendar:nth-child(n+2) .month-next {
    visibility: visible;
}

.xo-event-calendar table.xo-month .month-header>span {
    margin: 0 20px;
    flex-grow: 0;
}

@media (max-width: 480px) {
    .calendars {
        flex-wrap: wrap;
    }
    .xo-event-calendar .calendar:first-child .month-next {
        visibility: visible;
    }
    .xo-event-calendar .calendar:nth-child(n+2) .month-next {
        visibility: hidden;
    }
}

.xo-event-calendar table.xo-month td,
.xo-event-calendar table.xo-month th {
    border: none;
}

.xo-event-calendar table.xo-month {
    border: none;
}

.xo-event-calendar table.xo-month .month-dayname td div {
    text-align: center;
}

.holiday-titles {
    display: flex;
    flex-wrap: wrap;
}

.xo-event-calendar p.holiday-title {
    margin-right: 20px;
}

.xo-event-calendar table.xo-month button {
    background: var(--main-color02);
    width: 32px;
    border-radius: 50%;
}

.xo-event-calendar table.xo-month button span.nav-next {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    margin-right: 5px;
}

.xo-event-calendar table.xo-month button span.nav-prev {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    margin-left: 5px;
}

.xo-event-calendar table.xo-month .month-event-title {
    background: var(--main-color01)!important;
    text-align: center;
}


/* Slider */

.mv {
    position: relative;
}

.slick-dots {
    visibility: hidden!important;
}

.slider01 {
    width: 100%;
}

.catch {
    position: absolute;
    /*top: 50%;
    transform: translateY(-50%);
    left: 70px;*/
    left: 0;
    /*bottom: 0;*/
    top: 50%;
    transform: translateY(-50%);
    background: url(/wp-content/uploads/catch.png);
    background-repeat: no-repeat;
    padding: 100px;
    background-size: cover;
}

.catch img {
    width: 80%;
}

.catch .txt p {
    /*font-size: 32px;*/
    letter-spacing: 0.1em;
    font-size: 2.5vw;
    padding: 20px;
    /*color: #fff;
    text-shadow: 1px 4px 2px #000;*/
    filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(2px);
    font-family: "Zen Old Mincho", serif;
}

.scroll {
    position  : absolute;
    font-size : 13px;
    writing-mode: sideways-lr;
    left: 3%;
    bottom: 20px;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
}

.scroll::after {
    content : '';
    display : inline-block;
    position : absolute;
    background-color: #fff;
    right : 0;
    bottom : 0;
    transform : translateX(-50%);
    width : 1px;
    height : 100px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    50.1% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }

.slick-prev {
    left: 1%!important;
}

.slick-next {
    right: 1%!important;
}

.slick-prev:before,
.slick-next:before {
    color: #000!important;
}

@media (max-width: 767px) {
    .mv {
        padding-top: 50px;
    }
    .mv::before {
        content: '';
        display: block;
        background: url(/wp-content/uploads/catch.png);
        width: 200px;
        height: 200px;
        position: absolute;
        z-index: 1;
        background-size: cover;
        bottom: 0;
        left: -50px;
    }
    .catch {
        top: inherit;
        bottom: 0;
        left: 0;
        transform: none;
        padding: 10px 20px;
    }
    .catch .txt  {
      padding-top: 100px;
    }
    .catch .txt p {
        /*font-size: 6.4vw;*/
        /*font-size: 6vw;*/
        font-size: 5vw;
        /*font-size: 24px;*/
        line-height: 1.5;
        letter-spacing: 2px;
        position: relative;
        z-index: 1;
    }
  
    .catch .txt p {
        /*padding: 0px 20px;*/
        padding: 0 20px 40px;
    }
   
}
@media (max-width: 480px) {
    .catch {
        left: -20px;
        background-position: center;
    }
     .catch .txt  {
      padding-top: 40px;
    }
    .catch .txt p {
      font-size: 6vw;
      padding: 0 20px 15px;
      backdrop-filter: none;
    }
    .mv::before {
        bottom: -20px;
        left: -70px;
    }
}

/* 見出し */

h2.heading-1 {
    margin: 0 0 0.5em;
    position: relative;
    border: 0;
    word-wrap: break-word;
    /*font-size: 48px;*/
    font-size: 2.8vw;
    color: var(--main-color02);
    /*letter-spacing: 1px;*/
    border-bottom: none;
    line-height: 0.5em;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
}

h2.heading-1 span {
    display: block;
    color: var(--main-color01);
    /*font-size: 32px;*/
    font-size: 1.8vw;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    /*letter-spacing: 1px;*/
    letter-spacing: -0.3px;
    line-height: 1;
    margin-bottom: 20px;
}

/*h2.heading-1:after {
    display: block;
    content: '';
    position: absolute;
    width: 300px;
    height: 1px;
    background: #1A1131;
    top: 50%;
    transform: translateY(-50%);
    right: 101%;
}*/

h2.heading-1 a {
    color: var(--main-color02);
    line-height: 1.5;
    /*font-size: 30px;*/
    font-size: 20px;
}


/*h3.heading-1 {
    margin: 0 0 0.5em;
    position: relative;
    border: 0;
    word-wrap: break-word;
    font-weight: bold;
    padding-top: 0;
    font-size: 1.4rem;
    color: var(--main-color02);
    padding-left: 1em;
}

h3.heading-1:after {
    display: block;
    content: '';
    position: absolute;
    width: 10px;
    height: 100%;
    background: linear-gradient(to top, #D9D1C1 50%, var(--main-color02) 50%);
    ;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}*/
h3.heading-1 {
    margin: 0 0 2em;
    position: relative;
    border: 0;
    word-wrap: break-word;
    padding-top: 0;
    /*font-size: 48px;*/
    /*font-size: 40px;*/
    font-size: 36px;
    color: var(--main-color02);    
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    text-align: center;
    line-height: 1;    
    /*margin-bottom: 140px;*/
    margin-bottom: 110px;
}
h3.heading-1 span {
    /*font-size: 28px;*/
    font-size: 24px;
    color: var(--main-color01);
    font-family: "Raleway", sans-serif;
    line-height: 1;
}
/*h3.heading-1:after {
    display: block;
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--main-color01);
    transform: translateX(-50%) rotate(135deg);
    bottom: -30px;
    left: 50%;
}*/

h3.heading-1.recruitqa {
  margin-top: -40px;
}

h3.heading-2 {
    margin: 0 0 0.5em;
    position: relative;
    border: 0;
    word-wrap: break-word;
    padding-top: 0;
    /*font-size: 48px;*/
    /*font-size: 38px;*/
    font-size: 28px;
    color: var(--main-color02);
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    display: inline;
}

h3.heading-2 span {
    /*font-size: 60px;*/
    /*font-size: 50px;*/
    /*font-size: 40px;*/
    font-size: 36px;
    color: var(--main-color01);
    font-weight: 600;
    padding-right: 3px;
}

/*h3.heading-2:after {
    display: block;
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--main-color01);
    transform: rotate(135deg);
    right: -80px;
    top: 50%;
}*/

h3.heading-3 {
    /*font-size: 48px;*/
    font-size: 36px;
    font-family: "Zen Old Mincho", serif;
    background: radial-gradient(100% 198.92% at 100% 50.12%, #B1EAF9 0%, #EDFAFE 40%, #92C4FF 100%) ;
    backdrop-filter: blur(2px);
    color: #fff;
    padding: 24px;
    font-weight: 600;
    line-height: 1;
    text-shadow: 0 0 #000;
}

h4.heading-1 {
    /*font-size: 32px;*/
    /*font-size: 30px;*/
    /*font-size: 24px;*/
    font-size: 22px;
    position: relative;
    color: var(--main-color02);
    font-weight: 700;
    line-height: 1.5em;
    /*padding: 32px 0;*/
    padding: 32px 0 16px;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #75DBEB 0%, #75DBEB 10%,#bdbdbd 10%,#bdbdbd 100%) 1;
    /*margin-bottom: 40px;*/
    margin-bottom: 20px;
    /*letter-spacing: 3px;*/
    letter-spacing: 2px;
}

h4.heading-1.notice {
    font-size: 24px;
}

h4.heading-2 {
    /*font-size: 32px;*/
    /*font-size: 30px;*/
    font-size: 24px;
    position: relative;
    color: var(--main-color02);
    font-weight: 700;
    line-height: 1.5em;
    /*padding: 32px 0;*/
    padding: 32px 0 16px;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #75DBEB 0%, #75DBEB 15%,#BDBDBD 15%,#BDBDBD 100%) 1;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

h4.heading-2.dayflow {
  padding-top: 0;
}

h4.heading-2.store {
  /*margin-bottom: 16px;*/
  margin-bottom: 10px;
}

/*h5.heading-1 {
    margin: 0 0 0.5em;
    font-size: 1rem;
    position: relative;
    color: var(--main-color02);
    font-weight: normal;
    line-height: 1.5em;
}*/

h5.heading-1 {
    font-weight: bold;
    /*font-size: 24px;*/
    /*font-size: 22px;*/
    font-size: 20px;
    padding-left: 2.5rem;
    position: relative;
    margin-top: 24px;
}

h5.heading-1::before {
    content:'i';
    display: block;
    width: 20px;
    height: 20px;
    color: #fff;
    background-color: var(--main-color02);
    border-radius: 50%;
    line-height: 1.5;
    text-align: center;
    font-size: 14px;
    position: absolute;
    left: 0;
    /*top: 15px;*/
    top: 13px;
}

#pagetitle {
    position: relative;
    color: #fff;
    padding: 2em 0.5em;
    /*background: var(--main-color01);*/
    background: url(/wp-content/uploads/pagetitle-bg.png);
    background-repeat: no-repeat;
    /*height: 265px;*/
    /*height: 180px;*/
    height: 150px;
    /*margin-bottom: 150px;*/
    margin-bottom: 100px;

}

#pagetitle:after {
    content: '';
    position: absolute;
}

#pagetitle span {
    text-align: center;
    /*font-size: 32px;*/
    font-size: 24px;
    font-weight: normal;
    /*display: block;*/
    box-sizing: border-box;
    /* border:3px solid #fff; */
    /*border-bottom: 1px solid #fff;*/
    /*line-height: 1.5em;*/
    line-height: 1em;
    font-family: "Raleway", sans-serif;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 15px;
}

#pagetitle p {
    /*font-size: 64px;*/
    /*font-size: 48px;*/
    font-size: 42px;
    font-family: "Zen Old Mincho", serif;
    color: var(--main-color02);
    line-height: 1.5;
    /*margin-top: 20px;*/
    margin-top: 10px;
}

#pagetitle-news {
    position: relative;
    color: #fff;
    padding: 2em 0.5em;
    /*background: var(--main-color01);*/
    background: url(/wp-content/uploads/pagetitle-bg.png);
    background-repeat: no-repeat;
    /*height: 180px;*/
    height: 150px;
    /*margin-bottom: 240px;*/
    /*margin-bottom: 150px;*/
}

#pagetitle-news span {
    text-align: center;
    /*font-size: 32px;*/
    font-size: 24px;
    font-weight: normal;
    /*display: block;*/
    box-sizing: border-box;
    /* border:3px solid #fff; */
    border-bottom: 1px solid #fff;
    line-height: 1.5em;
    font-family: "Raleway", sans-serif;
}

#pagetitle-news p {
    /*font-size: 64px;*/
    /*font-size: 48px;*/
    font-size: 42px;
    font-family: "Zen Old Mincho", serif;
    color: var(--main-color02);
    line-height: 1.5;
}

.pagetitle-main {
    position: absolute;
    text-align: center;
    width: 65%;
    /* margin: 0 auto; */
    background: #75DBEB;
    /*padding: 1.5em 0.5em;*/
    padding: 0.5em;
    left: 50%;
    transform: translateX(-50%);
    /*top: 150px;*/
    /*top: 100px;*/
    top: 80px;
}

.col:first-child h4 {
    padding-top: 0;
}

.pagetitle-news-main {
    text-align: center;
    width: 65%;
    margin: -70px auto 60px;
    position: relative;
}

.pagetitle-news-main p {
    font-size: 42px;
    font-family: "Zen Old Mincho", serif;
    background: #75DBEB;
    padding: 0.5em;
}

/*@media (max-width: 1300px) {
    #pagetitle-main-news p {
        font-size: 44px;
    }
    #pagetitle-news {
        margin-bottom: 150px;
    }
}*/

@media (max-width: 768px) {
    h2.heading-1 {
        /*font-size: 28px;*/
        /*font-size: 6.5vw;*/
        font-size: 5vw;
    }
    h2.heading-1 a {
        font-size: 22px;
    }
    h2.heading-1 span {
        /*font-size: 18px;*/
        font-size: 3.8vw;
        margin-bottom: 8px;
    }
    h3.heading-1 {
        /*font-size: 1.4rem;*/
        font-size: 28px;
        margin-bottom: 70px;
    }
    h3.heading-1 span {
        font-size: 18px;
    }
    h3.heading-1:after {
        width:40px;
        bottom: -30px;
        height: 1.5px;
    }
    h3.heading-2 {
        font-size: 28px;     
        line-height: 0.5;
    }
    h3.heading-2 span {
        /*font-size: 40px;*/
        font-size: 32px;
        line-height: 0.5;
    }
    h3.heading-2:after {
        width:40px;
        height: 2px;
        right: -50px;
    }
    h3.heading-2.line::after {
        top: 65%;
    }
    h3.heading-3 {
        font-size: 32px;
        padding: 11px 16px;
    }
    h4.heading-1 {
        /*font-size: 24px;*/
        font-size: 22px;
        letter-spacing: 1px;
    }
    h4.heading-2 {
        font-size: 24px;
        padding: 16px 0;
        margin-bottom: 24px;
    }
    h4.heading-2.store {
        font-size: 22px;
    }
    h5.heading-1 {
        /*font-size: 20px;*/
        font-size: 18px;
        margin-top: 0;
    }
    h5.heading-1::before {
        /*top: 10px;*/
        top: 8px;
    }
    .heading-wrap {
        margin: 30px 0;
    }
    #pagetitle span {
        /*font-size: 20px;*/
        font-size: 18px;
    }
    #pagetitle p {
        /*font-size: 32px;*/
        font-size: 28px;
        padding-top: 0;
    }
    #pagetitle {
        /*margin-bottom: 80px;*/
        margin-bottom: 60px;
        /*height: 125px;*/
        height: 100px;
    }
    .pagetitle-main {
        top: 40px;
        width: 80%;
    }
    .pagetitle-news-main {
        width: 80%;
    }
    #pagetitle-news span {
        font-size: 20px;
    }
    .pagetitle-news-main p {
        font-size: 32px;
        /*padding-top: 20px;*/
    }
    /*#pagetitle-news {
        margin-bottom: 120px;
        height: 100px;
    }*/
}

/*@media(max-width:640px) {
    #pagetitle-news {
        margin-bottom: 180px;
    }
}*/

@media(max-width:480px) {
    /*#pagetitle-news {
        margin-bottom: 120px;
    }*/
    .pagetitle-news-main p {
        font-size: 28px;
    }
}

/*@media (max-width: 375px) {
    #pagetitle-news {
        margin-bottom: 180px;
    }
}

@media (max-width:360px) {
  #pagetitle p {
    font-size: 26px;
  }
}
*/


/* ボタン */

/*.btn-1 {
    color: #fff;
    display: block;
    width: 180px;
    margin-left: auto;
    height: auto;
    padding: 16px 20px 16px 20px;
    background: var(--main-color02);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    position: relative;
    border-radius: 50px;
    text-align: center;
}

.btn-1:hover {
    color: #fff;
    background: #B28575;
}*/

.btn-1 {
  display: block;
  color: var(--main-color02);
  /*padding: 10px 20px 10px 30px;*/
  /*border-radius: 50px;*/
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  border: 1px solid var(--main-color02);
  /*margin: 0 auto;*/
  /*width: 80%;*/
  width: 70%;
  padding-right: 70px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  /*font-size: 24px;*/
  /*font-size: 22px;*/
  font-size: 18px;
  background: #FFFFFF;
    border: 1px solid #414361;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 90px;
    /*padding: 20px 20px 20px 30px;*/
    /*padding: 17px 20px 20px 30px;*/
    padding: 12px 20px 15px 30px;
    text-indent: -2rem;
    max-width: 374px;
    line-height: 1.2;
}

.btn-1::after {
position: absolute;
display: block;
content: '';
/*width :50px;
height: 50px;*/
width :40px;
height: 40px;
border-radius: 50%;
background: var(--main-color02);
color: #fff;
top: 50%;
transform: translateY(-50%);
right: 10px;
}

.btn-1::before {
position: absolute;
display: block;
content: '';
width :10px;
height: 10px;
color: #fff;
/*top: 28px;
right: 32px;*/
top: 18px;
right: 27px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
transform: rotate(45deg);
z-index: 1;
}


.btn-1:hover {
  background: var(--main-color02);
  transition: 0.2s ease;
  color: #fff;
  opacity: 1;
}

.btn-1.recruit-btn {
  margin: 0 auto;
  /*text-indent: -1rem;*/
  /*width: 374px;*/
  width: 320px;
  text-indent: -2rem;
}

.btn-2 {
    color: #fff;
    display: block;
    width: 180px;
    height: auto;
    padding: 23px 20px 23px 20px;
    background: var(--main-color02);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    position: relative;
    border-radius: 50px;
    text-align: center;
}

.btn-2:hover {
    color: #fff;
    background: #B28575;
}

@media(max-width:1360px) {
    .btn-1 {
        width: 374px;
    }
}

@media(max-width:768px) {
    .btn-1 {
        /*padding: 10px 20px 10px 30px;*/
        /*padding: 10px 20px 7px 15px;*/
        padding: 7px 20px 7px 15px;
        font-size: 18px;
        /*height: 70px;*/
        /*width: 100%; */
        width: 80%;
        text-indent: -1rem;
        /*line-height: 40px;*/
        line-height: 35px;

    }
    .btn-1::before {
        /*top: 26px;*/
        top:18px;
        /*right: 42px;*/
        right: 37px;
    }
    .btn-1::after {
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .btn-1.recruit-btn {
        /*width: 100%;*/
        width: 80%;
        margin-top: 40px;
        text-indent: -2rem;
       /*padding: 10px 20px 7px 15px;*/
        padding: 7px 20px 7px 15px;
        /*line-height: 45px;*/
        line-height: 35px;
    }
}

@media(max-width:480px) {
    .btn-1.recruit-btn.support {
        width: 100%;
    }
}

/* テーブル */

.table-schedule {
    width: 100%;
}

.table-schedule td,
.table-schedule th {
    border-bottom: 1px solid #C9D6DF;
    padding: 0.2em 0.3em;
    text-align: center;
    font-weight: normal;
}

.table-schedule td {
    color: var(--main-color01);
}

@media (max-width: 480px) {
    .table-schedule td,
    .table-schedule th {
        padding: 0.7em .3em;
    }
}

.table-default {
    width: 100%;
}

.table-default td,
.table-default th {
    padding: 0.7em 1em;
    border: 1px solid #C9D6DF;
    vertical-align: middle;
}

.table-default th {
    background: var(--pale-color);
}


/* 流れ */

.bg {
    background: #e8f6fb;
    padding: 10px 15px;
    display: block;
    border: 1px solid #fff;
    box-shadow: 0 3px 3px #ebeae8;
    border-radius: 13px 0;
    margin-right: 10px;
}

span.bg {
    background: var(--main-color02);
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    display: block;
}

.indent {
    margin-left: 2em;
    text-indent: -2em;
}

.indent span.bg {
    display: inline;
}

.frame {
    border: 1px solid var(--main-color02);
    border-radius: 6px;
    padding: 1em 0;
    position: relative;
    display: flex;
}

.frame>.col {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
}

.span_6 .frame,
.span_4 .frame {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .span_6 .frame,
    .span_4 .frame {
        margin-top: 20px;
    }
    .frame {
        display: block;
    }
    .frame .span_2,
    .frame .span_3,
    .frame .span_4,
    .frame .span_5,
    .frame .span_6,
    .frame .span_7,
    .frame .span_8,
    .frame .span_9,
    .frame .span_10 {
        width: 100%!important;
    }
}

.frame.arrow:after {
    border-color: transparent transparent transparent var(--main-color02);
    border-style: solid;
    border-width: 26px 0 26px 18px;
    content: '';
    margin-top: -11px;
    position: absolute;
    right: 50%;
    bottom: -36px;
    transform: rotate(90deg);
}

.frame.arrow.end:after {
    display: none;
}


/* リスト */

dl {
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 0;
    align-items: flex-start;
    gap: 10px;
}

dl dt {
    font-weight: bold;
    width: 180px;
}

dl dd {
    width: calc(100% - 200px);
}

.clinic-info dt {
    background: var(--main-color02);
    color: #fff;
    text-align: center;
    border-radius: 15px;
}

.access-map {
    width: 100%;
}

.access-info dt {
    background: var(--main-color02);
    color: #fff;
    text-align: center;
    width: 180px;
    border-radius: 50px;
}

.access-info dd {
    width: 100%;
}

.access-info ul li {
    border-bottom: 1px dashed #bababa;
}

.top-recruit {
    background: url(/wp-content/uploads/top-recruit-bg.png), rgba(232, 253, 255, 0.8);
    border-radius: 100px 100px 0px 0px;
    box-shadow: 0px 0px 19.9px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    background-repeat: no-repeat;
}

/*.top-recruit h2.heading-1 {
    margin: 0 0 0.5em;
    position: relative;
    border: 0;
    word-wrap: break-word;
    font-weight: bold;
    font-size: 1.6rem;
    color: #F29B76;
    letter-spacing: 2.5px;
    border-bottom: none;
    line-height: 1em;
    border-left: 1px solid #F29B76;
    padding-left: 32px;
    font-size: 32px;
    font-family: 'Noto Sans JP', sans-serif;
}

.top-recruit h2.heading-1::after {
    display: none;
}*/

/*.top-recruit h2.heading-1 span {
    font-size: 20px;
    color: #4b4b4b;
}*/

.top-recruit h2.heading-1 {
  text-align: center;
}

.top-recruit-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;    
    margin: 120px 0 85px;
}

.top-recruit-content.pc {
    width: 48%;
    display: block;
    position: relative;
    /*margin: 200px 0;*/
    margin: 15% 0 16%;
}

.top-recruit-content.pc img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
	transition: 0.3s;
    opacity: 1;
}
.top-recruit-content.pc:hover img:nth-of-type(2) {
	opacity: 0;
}

.top-recruit-content.pc a:hover {
    opacity: 1;
}

@media(min-width: 1360px) {
    .top-recruit-content.pc {
        width:46%;
    }
    .top-recruit-wrapper {
        gap: 40px;
    }
}

@media(max-width: 1360px) {
    .top-recruit-content.pc {
        width:47%;
    }
}

@media(max-width: 986px) {
    .top-recruit-content.pc {
        width:47%;
    }
    .top-recruit-wrapper {
        /*margin: 0;*/
        margin: 60px 0 30px;
    }
}

@media(max-width: 767px) {
    .top-recruit-content.pc {
        display: none;
    }
    .top-recruit-wrapper {
        margin-top: 50px;
        margin-bottom: 40px;
        gap :16px;
    }
    .top-recruit {
        border-radius: 50px 50px 0px 0px;
    }
    .top-recruit-content.sp {
    width: 48%;
    display: block;
  }
}



@media(min-width: 768px) {
    .top-recruit-content.sp {
        display: none;
    }
}

@media(max-width:480px) {
  .top-recruit-content.sp {
    width: 100%;
    display: block;
}
}

/*.top-recruit-item.shinsotsu {
   background: url(/wp-content/uploads/shinsotsu-pc.png);
}

.top-recruit-item.chuto {
    background: url(/wp-content/uploads/chuto-pc.png);
}

.top-recruit-item.shinsotsu:hover {
    background: url(/wp-content/uploads/shinsotsu-pc-hover.png);
    transform:scale(1.2,1.2);
    transition:0.5s all;
}

.top-recruit-item.chuto:hover {
    background: url(/wp-content/uploads/chuto-pc-hover.png);
    transform:scale(1.2,1.2);
    transition:0.5s all;
}*/
 

/*.top-recruit-item {
  background: rgba(116, 180, 254, 0.2);
  border: 8px solid #FFFFFF;
}

.top-recruit-title {
    color: #444444;
    font-size: 80px;
    position: relative;
    text-align: center;
    font-family: "Zen Old Mincho", serif;
}

.top-recruit-content .top-recruit-title::after {
    content:'';
    display: block;
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}

.top-recruit-img {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}

.top-recruit img{
    transition:0.5s all;
}

.top-recruit img:hover{
    transform:scale(1.2,1.2);
    transition:0.5s all;
}

.top-recruit-text {
    background-color: #fff;
    padding: 15px;
    color: #4b4b4b;
}

.top-recruit-bnr {
    display: block;
    width: 48%;
    height: 160px;
    background-color: #1646b1;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
}*/

/*.top-recruit-bnr.item01  {
    background: url(/wp-content/uploads/top-recruit03.jpg);
    border: 1px solid #8E81BB;
}

.top-recruit-bnr.item02  {
    background: url(/wp-content/uploads/top-recruit04.jpg);
    border: 1px solid #87AAD9;
}

.top-recruit-bnr.item03  {
    background: url(/wp-content/uploads/top-recruit05.jpg);
    border: 1px solid #88C896;
}

.top-recruit-bnr.item03  {
    background: url(/wp-content/uploads/top-recruit06.jpg);
    border: 1px solid #7ECEF4;
}

.top-recruit-bnr:hover {
    background: #fff;
    transition: 0.5s ease;
    opacity: 1;
}
.top-recruit-bnr.item01:hover {
    color: #8E81BB;
}
.top-recruit-bnr.item02:hover {
    color: #87AAD9;
}
.top-recruit-bnr.item03:hover {
    color: #88C896;
}
.top-recruit-bnr.item04:hover {
    color: #7ECEF4;
}*/

.btn-recruit {
    display: block;
    background: #fff;
    color: #F5AD7D;
    padding: 5px 20px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    border: 1px solid #F5AD7D;
    margin: 0 auto;
    width: 175px;
}

.btn-recruit:hover {
    background: radial-gradient(49.09% 104.37% at 84.14% 50%, #EDDB66 0%, #F5AD7D 46%, #F29B76 100%);
    transition: color 0.5s ease;
    color: #fff;
}

.recruit-info dd {
    background-color: #fff;
}

.recruit-info dl {
    align-items: stretch;
}

.recruit {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1A1131;
    padding: 10px 40px;
    border: solid 5px var(--main-color01);
    position: relative;
}

.recruit ::before {
    content: "";
    position: absolute;
    border: solid 1px var(--main-color01);
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
}

.recruit-info dl dt{
    background-color: var(--main-color01);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #fff;
  }

.recruit-info dl dd {
    display: flex;
    align-items: center;
    padding: 20px;
}

.history {
    display: flex;
    gap:0;
    flex-wrap: wrap;
    padding-left: 0;
    align-items: stretch;
}

.history dt{    
    border-top: 1px solid;
    /*border-image: linear-gradient(to right, #75DBEB, #BDBDBD) 1;*/
    border-image:linear-gradient(to right, #75DBEB 0%, #75DBEB 35%, #BDBDBD 35%, #BDBDBD 100%) 1;
    /*padding: 32px 0;*/
    padding: 24px 0;
    letter-spacing: 3px;
    font-weight: normal;
    /*line-height: 1;*/
}

.company.history dt{
    font-weight: bold;
    /*line-height: 2;*/
    line-height: 1.2;
    width: 300px;
    letter-spacing: 0.08em;
}

.history dd{    
    border-top: 1px solid #BDBDBD;
    /*padding: 32px 0;*/
    /*padding: 24px 0;*/
    padding: 58px 0 24px;
    display: flex;
    align-items: center;
    width: calc(100% - 320px);
}
.company.history dd{
    display: block;
    line-height: 1.2;
    padding: 24px 0;
}

.company.history dd a {
    color: var(--main-color01);
    line-height: 1.2;
}

.history dd li {
  line-height: 1.2;
}

.history-year{
    color: rgba(117, 219, 235, 0.858824);
    font-family: "Jost", sans-serif;
    /*font-size: 30px;*/
    font-size: 28px;
    letter-spacing: 5px;
    font-weight: 600;
    line-height: 1.5;
}


/*.history li{
    border-bottom: 1px dotted #b4b4b4;
    flex-grow: 1;
    width: 100%;
    list-style: none;
}*/


.history li::marker {
    color: #75DBEB;
}

.stores li div{
    display: flex;
    justify-content: space-between;
    width: 300px;
}

.stores li div p{
  line-height: 1.2;
}

@media(max-width:768px) {
    /*.history {
       padding-bottom: 10px;
    }*/
    .history dt,.history dd{
        /*width: 100%;*/
        /*padding: 8px 0;*/
        padding: 5px 0;
        width: 100px;
    }
    .history dd{
        /*border: none;*/
        align-items: end;
        width: calc(100% - 120px)
    }

    .history dt{    
    border-image:linear-gradient(to right, #75DBEB 0%, #75DBEB 20%, #BDBDBD 20%, #BDBDBD 100%) 1;
    /*line-height: 1;
    padding-bottom: 10px;*/
    }

    .company.history {
        flex-direction: column;
    }

    .company.history dt {
      width: 100%;
      padding: 5px 0;
      padding-bottom: 5px;
      line-height: 1;
    }
    
    .company.history dd{
        padding: 10px 0;
        align-items: stretch;
        border: none;
        width: 100%;
    }
}

@media(max-width:480px) {
    .stores li div {
        width:100%;
    }
}

@media(min-width:480px) {
    .sp-br {
        display: none;
    }
}

/* ページトップ */
.pagetop {
    position: fixed;
    bottom: 98px;
    right: -1%;
    z-index: 1;
    text-align: center;
}

.pagetop a {
    color: var(--main-color02);
    text-decoration: none;
    position: relative;
    transform: rotate(270deg);
    display: flex;
}

.pagetop a:after {
    background: var(--main-color02);
    content: '';
    display: block;
    height: 1px;
    width: 0;
    position: absolute;
	transition: all .4s ease-in-out;
    bottom: 50px;
    left: 0;
}
.pagetop a:hover::after {
	width: 200px;
}
.pagetop a span {
    /*writing-mode: vertical-rl;
    transform: rotate(180deg);*/
    font-family: "Raleway", sans-serif;
    height: 80px;
}

@media(max-width:768px) {
  .pagetop {
    /*right:-7%;*/
    right: 10px;
  }
  .pagetop a {
    height: 80px;
    align-items: end;
  }
  .pagetop a span {
    height: auto;
  }
  .pagetop a:after {
    bottom: 6px;
  }
}

/*.pagetop {
    position: fixed;
    bottom: 98px;
    right: 5%;
    z-index: 1;
    text-align: center;
}

.pagetop a {
  display: flex;
  flex-direction: column;
}

.pagetop p {
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    width: 70px;
    height: 70px;
    width: 50px;
    height: 50px;
    padding: 0;
    background: linear-gradient(to right, #89C997,#7CB85E);
    border: 1px solid #fff;
    margin-top: 5px;
}

.pagetop p:after {
    content: "";
    display: block;
    position: absolute;
    top: 45%;
    left: 50%;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: translate(-50%, -20%) rotate(45deg);
    transform: translate(-50%, -20%) rotate(45deg);
    -webkit-transition: .2s;
    transition: .2s;
}

.pagetop p:hover:after {
    top: 30%;
}

.pagetop span {
    font-size: 14px;
    color: #4b4b4b;
}*/

/*.pagetop a:before {
    position: absolute;
    content: 'TOP';
    bottom: 5px;
    left: -1px;
    color: #fff;
    font-size: 12px;
}*/


/* グローバルメニュー */

/*.header_nav ul*/
.main-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: 0 auto;
    list-style: none;
    gap: 0 15px;
    padding: 0;
}

/*.header_nav ul li {
    position: relative;
}*/

.main-menu li a {
  color: var(--main-color02);
  padding: 50px 15px;
  position: relative;
  z-index: 1;
  transition: .3s;
  font-size: 18px;
  cursor: pointer;
}
.main-menu li a:before {
  content: "";
  width: 100%;
  height: 85%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #74B4FE;
  transform-origin: 50% 50%;
  transform: scaleY(0);
  transition: transform ease .3s;
}
.main-menu li a:hover:before {
  transform-origin: 50% 50%;
  transform: scaleY(1);
}

.main-menu li a:hover {
  color: #fff;
}


@media (max-width: 1130px) {
    .main-menu {
    display: none;
  }
}

.header_nav li.has-child ul{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    z-index: 4;
    width: 100%;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    padding: 56px 10px;
    justify-content: flex-start;
    padding-left: 300px;
    gap: 0 30px;
}

.header_nav li.has-child ul:before{
content: '';
position: absolute;
height: 20px;
width: 100%;
top: -20px;
}

.header_nav li.has-child:hover > ul,
.header_nav li.has-child ul li:hover > ul,
.header_nav li.has-child:active > ul,
.header_nav li.has-child ul li:active > ul{
visibility: visible;
opacity: 1;
}
.header_nav li.has-child ul li{
    padding: 0;
}
.header_nav li.has-child ul li a{
color: var(--main-color02);
display: block;
text-decoration: none;
border-radius: 0;
padding: 10px 0;
background: #fff;
font-weight: normal;
}

.header_nav li.has-child ul li:last-child > a{
border-bottom:none;
}

.header_nav li.has-child ul li a:hover,
.header_nav li.has-child ul li a:active{
background: #fff;
color: var(--main-color01);
}

.header_nav li.has-child ul li a:hover::before {
    content:none;
}

.header-contact {
  /*margin: 10px;*/
    display: inline-block;
    /*background: radial-gradient(49.09% 104.37% at 84.14% 50%, #EDDB66 0%, #F5AD7D 46%, #F29B76 100%);*/
    /*background: var(--main-color02);*/
    color: #fff;
    padding: 20px;
    /*border-radius: 50px*/
    text-decoration: none;
    text-align: center;
    position: relative;
    /*transition: all 0.5s ease;*/
    overflow: hidden;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 0;
}

.header-contact:before{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    left:0;
    transition:.5s;
    background: var(--main-color02);
}
.header-contact:after{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-2;
    left:0;
    background: radial-gradient(100% 198.92% at 100% 50.12%, #B1EAF9 0%, #EDFAFE 40%, #92C4FF 100%) ;
    color: var(--main-color02);
}
.header-contact:hover:before {
    opacity: 0;
}

.header-contact:hover {
    color:var(--main-color02);
    transition:.5s;
    opacity: 1;
}
/*.header-contact:hover {
    background: radial-gradient(100% 198.92% at 100% 50.12%, #B1EAF9 0%, #EDFAFE 40%, #92C4FF 100%) ;
    color:var(--main-color02);
    opacity: 1;
    transition: all 1.5s ease;
}*/


@media(max-width:1130px) {
    .header-contact {
        display: none!important;
    }
}

/* フッター */
/*footer {
  background: #7ECEF4;
}
.footer-border {
    height:50px;
    width: 100%;
    background: linear-gradient(to right, #88ABDA, #86BDD7,#7ECEF4);
}*/
.footer-wrap{
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 56px 96px 30px;
}

.footer__links ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 10px 0;
}

.footer__links ul li{
position: relative;
}

.footer__links ul li:before{
position: absolute;
content:'・';
height: 100%;
right: 0;
width:8px;
color: #fff;
}

.footer__links ul li:last-child:before{
content:'';
}

.footer__links ul li a{
  padding:10px;
  color: #fff;
}
.footer-info {
  display: flex;
  gap:20px;
  padding: 0 20px 0 0;
  justify-content: space-around;
}

.footer-info-inner {
  width: 30%;
  color: #fff;
}

.footer-logo {
    margin: 0 auto;
    text-align: center;
    max-width: 238px;
}
.footer-menu {
  width: 70%;
  display: flex;
  gap: 20px;
  /*flex-direction: column;
  justify-content: space-between;*/
}
.footer-menu-item {
    list-style: none;
    font-size: 18px;
    width: 25%;
    padding: 0;
}
.footer-menu-item li {
    margin-bottom: 10px;
}
.footer-menu-item li a{
    text-decoration: none;
    color:var(--main-color02);
}
.footer-menu-item>li>ul {
    list-style: none;
}
.footer-menu-item li a:hover {
    border-bottom: 1px solid var(--main-color01);
    color: var(--main-color01);
}

.sns_icon {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 10px;
  justify-content: flex-end;
}

.clinic_sns_icon {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 10px;
}

.footer-policy-link {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px;
  justify-content: flex-end;
}

.footer-policy-link a{
  color: #000;
}

@media(min-width:1360px) {
    /*.footer-menu-item:first-child {
        width:100px;
    }*/
    .footer-menu.ver2 {
        display: none;
    }
    .footer-logo-s {
        display: none;
    }
}

@media(max-width:1360px) {
    .footer-menu {
        width: 70%;
        flex-wrap: wrap;
    }
    .footer-menu-item {
        width: 46%;
    }
    .footer-menu.ver1 {
        display: none;
    }
    .footer-logo {
        display: none;
    }
}

@media (max-width: 768px) {
  .footer-wrap{
    padding: 0;
  }
  .footer-info {
    flex-wrap: wrap;
    padding: 40px 16px;
  }
  .footer-info-inner {
    width: 100%;
  }
  .footer-menu {
    width: 100%;
  }
  .footer-menu-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap:10px;
    justify-content: center;
  }
  .footer-menu-item li {
    width: 30%;
  }
  .footer-logo-s {
    width: 55%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .sns_icon{
    flex-wrap: wrap;
    justify-content: center;
  }
  .sns_icon li{
    width: 80px;
  }
  .footer-policy-link {
    display: block;
  }
  .footer-logo-s {
    width: 166px;
    margin: 0 auto;
  }
  .footer-menu-item {
    justify-content: start;
  }
  .footer-menu-item li {
    width: 48%;
  }
  
}

.copy {
  padding: 17px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:20px;
  color: #fff;
  /*background: linear-gradient(to right, #88ABDA, #86BDD7,#7ECEF4);*/
  background: radial-gradient(100% 198.92% at 100% 50.12%, #B1EAF9 0%, #EDFAFE 40%, #92C4FF 100%) !important;
  font-size: 20px;

}

@media(max-width:768px) {
    .copy {
        font-size: 14px;
        padding: 18px 0;
    }
}


/*@media (max-width: 480px) {
  .copy {
    margin-bottom: 66px;
  }
}*/

/* 予約ボタン */

.reservation_area {
    position: fixed;
    top: 170px;
    right: 0;
    z-index: 1;
}

.reservation_area ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.reservation_area li {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    list-style: none;
    letter-spacing: 2px;
}

.reservation_area li a {
    display: block;
    padding: 25px 10px;
    transition: all 0.2s ease-out;
}

@media (hover: hover) {
    .reservation_area li:nth-child(1) a:hover,
    .reservation_area li:nth-child(2) a:hover,
    .reservation_area li:nth-child(3) a:hover {
        padding-right: 30px;
    }
}

.reservation_area li:nth-child(1) a,
.reservation_area li:nth-child(3) a {
    color: #000;
    background: var(--main-color01);
}

.reservation_area li:nth-child(2) a {
    color: #fff;
    background: var(--main-color02);
}

@media (max-width: 480px) {
    .reservation_area {
        bottom: 0px;
        top: auto;
        width: 100%;
    }
    .reservation_area ul {
        flex-direction: row;
    }
    .reservation_area ul li {
        width: 33.3%;
        writing-mode: horizontal-tb;
        text-align: center;
    }
    .reservation_area li a {
        padding: 10px 5px;
    }
}


/* トグル */


.icon {
    display: block;
    position: relative;
    width: 24px;
    margin-left: 6px;
    flex-shrink: 0;
    transform-origin: center 43%;
    transition: transform 0.4s;
}

.icon:before {
    left: 0;
    transform: rotate(45deg);
}

.icon:after {
    right: 0;
    transform: rotate(-45deg);
}

.icon:before,
.icon:after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 3px;
    background-color: var(--main-color02);
}

/*details{
    border-top: 1px solid;
  }
  details:hover{
    background: var(--accent-color);
  }
  details:last-child{
    border-bottom: 1px solid;
  }*/
  summary {
    display: block;
    list-style: none;
  }

  summary::-webkit-details-marker {
    display: none;
  }

  .toggle-head.qa {
    position: relative;
  }

  /*.toggle-head.qa:before {
    position: absolute;
    content: "Q.";
    top: 13px;
    left: 20px;
    font-weight: bold;
    color: var(--main-color01);
    font-family: serif;
    font-size: 24px;
  }

  .toggle_inner {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px 15px 50px;
    font-weight: bold;
    color: var(--main-color01);
  }*/

  .toggle_inner-icon {
    display: block;
    position: relative;
    width: 24px;
    margin-left: 6px;
    flex-shrink: 0;
    transform-origin: center 43%;
    transition: transform 0.4s;
  }

  .toggle_inner-icon:before {
    left: 0;
    transform: rotate(45deg);
  }

  .toggle_inner-icon:after {
    right: 0;
    transform: rotate(-45deg);
  }

  .toggle_inner-icon:before, .toggle_inner-icon:after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 3px;
    background-color: var(--main-color01);
  }

  /*.toggle-content p {
    padding: 20px 20px 20px 60px;
    background: #fff;
    margin: 0;
    position: relative;
  }*/

  .toggle-content {
    /*padding: 0 32px 32px;*/
    padding: 0 32px 24px;
    line-height: 1.5;
  }

  .toggle-content p a{
    color: var(--main-color01);
    text-decoration: underline;
    line-height: 1.5;
  }

  /*.answer:before {
    position: absolute;
    content: "A.";
    top: 18px;
    left: 30px;
    font-weight: bold;
    color: var(--main-color01);
    font-family: serif;
    font-size: 24px;
  }*/

details {
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 1px dashed #414361;
}

details[open]  {
    background: rgba(255, 255, 255, 0.5);
  }

details[open] .toggle_inner-icon {
    transform: rotate(180deg);
  }

/*.qa-wrapper {
    border-bottom: 1px dashed #414361;
}*/

.toggle_inner {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    /*justify-content: space-between;*/
    align-items: center;
    /*padding: 35px 25px 20px 25px;*/
    /*padding: 32px;*/
    padding: 10px 24px;
    font-weight: bold;
    /*font-size: 24px;*/
    /*font-size: 20px;*/
    font-size: 18px;
}

.toggle_inner::after {
    content:'+';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    font-size: 36px;
    right: 20px;
    /*top: 40%;*/
    top: 38%;
    transform: translateY(-50%);
    font-weight: normal;
}
details[open] .toggle_inner::after {
    content: 'ー';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    font-size: 24px;
    right: 20px;
    top: 35%;
    transform: translateY(-50%);
}

.q-icon {
    font-size: 28px;
    color: #fff;
    /*background-color: var(--main-color01);*/
    text-align: center;
    padding: 5px;
    border-radius: 50%;
    width: 3rem;
    height: 3.5rem;
    /*margin-right: 25px;*/
    margin-right: 15px;
    position: relative;
}

.q-icon::before {
  content: '';
  position: absolute;
  display: block;
  /*width: 50px;
  height: 50px;
  top: 0;*/
  width: 38px;
  height: 38px;
  top: 8px;
  font-size: 28px;
  background: url(/wp-content/uploads/q-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.toggle-content p {
    /*padding: 20px 20px 20px 60px;*/
    /*padding: 20px 20px 20px 10px;*/
    padding-left: 10px;
    margin: 0;
    position: relative;
  }

@media(max-width:768px) {
    .toggle_inner {
        /*padding: 32px 40px 16px 16px;*/
        padding: 16px 40px 10px 16px;
        /*flex-direction: column;*/
        align-items: start;
        font-size: 18px;
    }
    .toggle_inner::after {
        /*top: 25%;*/
        top:28%;
        right:10px;
    }
    details[open] .toggle_inner::after {
        /*top: 30%;*/
        top: 38%;
        right: 10px;
    }
    .toggle-content {
        /*padding: 0 32px 32px 16px;*/
        padding: 0 32px 0 16px;
    }
    .toggle-content p {
        padding: 0 16px 16px;
        line-height: 1.5;
    }
    .q-icon {
      margin-right: 25px;
    }
    .q-icon::before {
        width: 36px;
        left: 10px;
        top: 5px;
    }
}

/*@media(max-width: 480px) {
    .toggle_inner::after {
        top:25%
    }
    details[open] .toggle_inner::after {
        top:25%
    }
}
*/


/* 設備紹介 */

.facility-warap {
    max-width: 100%;
  }

  .facility-slider img,
  .facility-slider-sub img {
    width: 100%;
    height: auto;
  }
  .slick-prev, .slick-next {
    z-index: 1;
  }

  .facility-thumb>.slick-prev:before,.facility-thumb>.slick-next:before,
  .facility-thumb-sub>.slick-prev:before,.facility-thumb-sub>.slick-next:before {
    color: #000!important;
  }

  .facility-thumb img,
  .facility-thumb-sub img {
    transition: all ease-in-out .3s;
    opacity: .2;
  }
  .slick-current img{
    opacity: 1;
  }
  .facility-thumb,
  .facility-thumb-sub {
    margin: 10px 0 0;
  }
  .facility-thumb,
  .facility-thumb-sub {
    cursor: pointer;
  }
  .facility-caption {
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
  }

  /* 料金表 */

.price-wrap {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--main-color01);
    margin-bottom: 20px;
  }

  .price-wrap:last-of-type {
    margin-bottom: 0px;
  }

  .price-name {
    border-right: 1px solid var(--main-color01);
    width: 300px;
    background: var(--accent-color);
    padding: 5px;
    font-weight: bold;
  }

  .price-fee {
    width: calc(100% - 300px);
    padding: 5px;
    display: flex;
    justify-content: flex-end;
  }

  .price-disc,
  .price-term,
  .price-risk {
    width: 100%;
    padding: 5px;
    border-top: 1px solid var(--main-color01);
    display: flex;
    gap: 10px;
  }
  .price-head {
    width: 125px;
    border-right: 1px solid;
  }
  .price-text {
    width: calc(100% - 135px);
  }


  @media (max-width: 480px) {
    .price-name {
      border-right: none;
      width: 100%;
    }
    .price-fee {
      width: 100%;
    }
  }


/* 汎用クラス */

.bg-red {
    background-color: #fe266d!important;
}

.bg-blue {
    background-color: #1646b1!important;
}

.bg-green {
    background-color: #5fcf32!important;
}

.bg-orange {
    background-color: #ffa204!important;
}

.text-red {
    color: #db2d2d!important;
}

.text-blue {
    color: #2420db!important;
}

.text-light-blue {
    color: #74B4FE!important;
}

.text-green {
    color: #6ddb20!important;
}

.text-orange {
    color: #E1AB3A!important;
}

.text-pink {
    color: #db20b2!important;
}

.text-black {
    color: #000000!important;
}

.text-brown {
    color: #937437!important;
}

.text-gray {
    color: #555555!important;
}

.text-white {
    color: #FFFFFF!important;
}

.mt0 {
    margin-top: 0px!important;
}

.mb0 {
    margin-bottom: 0px!important;
}

.mt10 {
    margin-top: 10px!important;
}

.mt20 {
    margin-top: 20px!important;
}

.mt30 {
    margin-top: 30px!important;
}

.mt40 {
    margin-top: 40px!important;
}

.mt50 {
    margin-top: 50px!important;
}

.mt60 {
    margin-top: 60px!important;
}

.mt80 {
    margin-top: 80px!important;
}

.mr10 {
    margin-right: 10px!important;
}

.mr20 {
    margin-right: 20px!important;
}

.mr30 {
    margin-right: 30px!important;
}

.mr40 {
    margin-right: 40px!important;
}

.mr50 {
    margin-right: 50px!important;
}

.mr60 {
    margin-right: 60px!important;
}

.mb10 {
    margin-bottom: 10px!important;
}

.mb20 {
    margin-bottom: 20px!important;
}

.mb30 {
    margin-bottom: 30px!important;
}

.mb40 {
    margin-bottom: 40px!important;
}

.mb50 {
    margin-bottom: 50px!important;
}

.mb60 {
    margin-bottom: 60px!important;
}

.mb80 {
    margin-bottom: 80px!important;
}

.ml10 {
    margin-left: 10px!important;
}

.ml20 {
    margin-left: 20px!important;
}

.ml30 {
    margin-left: 30px!important;
}

.ml40 {
    margin-left: 40px!important;
}

.ml50 {
    margin-left: 50px!important;
}

.ml60 {
    margin-left: 60px!important;
}

.pt10 {
    padding-top: 10px!important;
}

.pt20 {
    padding-top: 20px!important;
}

.pt30 {
    padding-top: 30px!important;
}

.pt40 {
    padding-top: 40px!important;
}

.pt50 {
    padding-top: 50px!important;
}

.pt60 {
    padding-top: 60px!important;
}

.pt90 {
    padding-top: 90px!important;
}

.pt130 {
    padding-top: 130px!important;
}

.pr10 {
    padding-right: 10px!important;
}

.pr20 {
    padding-right: 20px!important;
}

.pr30 {
    padding-right: 30px!important;
}

.pr40 {
    padding-right: 40px!important;
}

.pr50 {
    padding-right: 50px!important;
}

.pr60 {
    padding-right: 60px!important;
}

.pb10 {
    padding-bottom: 10px!important;
}

.pb20 {
    padding-bottom: 20px!important;
}

.pb30 {
    padding-bottom: 30px!important;
}

.pb40 {
    padding-bottom: 40px!important;
}

.pb50 {
    padding-bottom: 50px!important;
}

.pb60 {
    padding-bottom: 60px!important;
}

.pl0 {
    padding-left: 0!important;
}

.pl10 {
    padding-left: 10px!important;
}

.pl20 {
    padding-left: 20px!important;
}

.pl30 {
    padding-left: 30px!important;
}

.pl40 {
    padding-left: 40px!important;
}

.pl50 {
    padding-left: 50px!important;
}

.pl60 {
    padding-left: 60px!important;
}

.text-bold {
    font-weight: bold!important;
}

.text-center {
    text-align: center!important;
}

.text-right {
    text-align: right!important;
}

.text-left {
    text-align: left!important;
}

.text-xlarge {
    font-size: 1.6rem!important;
}

.text-large {
    font-size: 1.4rem!important;
}

.w100 {
    width: 100%!important;
}

@media (max-width: 767px) {
    .pc-only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .text-xlarge {
        font-size: 2.0rem;
    }
    .text-large {
        font-size: 1.6rem;
    }
    .sp-only {
        display: none !important;
    }
}

@media (min-width: 767px) and (max-width: 1023px) {
    .tablet-hide {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .tablet-only {
        display: none !important;
    }
}

.medical-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
}

.medical-item {
    width: 49%;
    background: linear-gradient(90deg, #797265, #9F9177);
    padding: 10px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.medical-item a {
  display: flex;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  padding: 20px;
}

.medical-content {
  width: 200px;
}

.medical-name {
    font-weight: bold;
    font-size: 1.4rem;
}

@media (max-width: 820px) {
    .medical-item {
        width: 100%;
    }
}
@media (max-width: 480px) {
  .medical-item a {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    position: relative;
  }
  .medical-item:nth-child(1):before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 163px;
    height: 163px;
    background-image: url(/wp-content/uploads/top_diagnosis_01.png);
  }
  .medical-item:nth-child(2):before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 163px;
    height: 163px;
    background-image: url(/wp-content/uploads/top_diagnosis_02.png);
  }
  .medical-item:nth-child(3):before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 163px;
    height: 163px;
    background-image: url(/wp-content/uploads/top_diagnosis_03.png);
  }
  .medical-item:nth-child(4):before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 163px;
    height: 163px;
    background-image: url(/wp-content/uploads/top_diagnosis_04.png);
  }
}

.top-feature {
    background: url(/wp-content/uploads/BG-image.png);
    width: 100%;
    background-size: 50% auto;
    background-repeat: no-repeat;
    background-position: left;
}

/*.top-feature h2.heading-1 {
    margin: 0 0 0.5em auto;
    position: relative;
    border: 0;
    word-wrap: break-word;
    font-weight: bold;
    font-size: 1.6rem;
    color: #8E81BB;
    letter-spacing: 2.5px;
    border-bottom: none;
    line-height: 1em;
    border-right: 1px solid #8E81BB;
    padding-right: 32px;
    font-size: 32px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: right;
}

.top-feature h2.heading-1::after {
    display: none;
}*/

/*.top-feature h2.heading-1 span {
    font-size: 20px;
    color: #4b4b4b;
}*/

.policy-wrap {
    display: flex;
    flex-wrap: wrap;
}

.policy-bg {
    /*background-color: #c3dbe9;*/
    width: 40%;
    position: relative;
}

.policy-photo {
    position: absolute;
    padding: 10px;
    background-color: #b1afaf;
    border: 1px solid #333;
    width: 350px;
    height: 230px;
}

.policy-photo.item01 {
    bottom: 10px;
    right: 100px;
    transform: rotate(15deg);
}

.policy-photo.item02 {
    /*top: 30px;
    right: -150px;*/
    top: 5%;
    right: -35%;
    transform: rotate(-15deg);
}

.policy-content {
    width: 60%;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.policy-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color02);
}

.policy-item {
    background: rgba(255,255,255,0.8);
    padding: 15px;
    letter-spacing: 2.5px;
}

.policy-text {
    color: #1A1131;
}

.feature-wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-grow: 1;
    border: solid 1px var(--main-color02);
    position: relative;
    height: 300px;
    width: 100%;
}



.feature-img {
    display: none;
}

.feature-img:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.feature-inner:nth-child(1):before {
    content: '';
    position: absolute;
    right: 0;
    width: 500px;
    height: 100%;
    background-image: url(/wp-content/uploads/top-feature01.jpg);
    background-size: cover;
    background-position: center;
    clip-path: circle(75.5% at 63% 50%);
}

.feature-inner:nth-child(2):before {
    content: '';
    position: absolute;
    right: 0;
    width: 500px;
    height: 100%;
    background-image: url(/wp-content/uploads/top-feature02.jpg);
    background-size: cover;
    background-position: center;
    clip-path: circle(75.5% at 63% 50%);
}

.feature-inner:nth-child(3):before {
    content: '';
    position: absolute;
    right: 0;
    width: 500px;
    height: 100%;
    background-image: url(/wp-content/uploads/top-feature03.jpg);
    background-size: cover;
    background-position: center;
    clip-path: circle(75.5% at 63% 50%);
}

.feature-inner:nth-child(4):before {
    content: '';
    position: absolute;
    right: 0;
    width: 500px;
    height: 100%;
    background-image: url(/wp-content/uploads/top-feature04.jpg);
    background-size: cover;
    background-position: center;
    clip-path: circle(75.5% at 63% 50%);
}

.feature-inner:nth-child(5):before {
    content: '';
    position: absolute;
    right: 0;
    width: 500px;
    height: 100%;
    background-image: url(/wp-content/uploads/top-feature05.jpg);
    background-size: cover;
    background-position: center;
    clip-path: circle(75.5% at 63% 50%);
}

.feature-content {
    background: #fff;
    padding: 15px;
    width: 100%;
}

.feature-content-inner {
    padding: 10px;
    border: 1px solid #ffdf;
}

.feature-content p:first-child {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    padding: 15px;
    width: fit-content;
}

.feature-head {
    padding: 10px 0 10px 55px;
    display: flex;
    align-items: center;
    color: var(--main-color01);
    position: relative;
    font-size: 1.5rem;
    font-family: serif;
}

.feature-head span {
    line-height: 1.2;
    display: block;
    font-weight: normal;
}

.feature-inner:nth-child(1) .feature-head:before {
    content: '01.';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Kapakana', sans-serif;
    font-size: 2.4rem;
    font-weight: normal;
}

.feature-inner:nth-child(2) .feature-head:before {
    content: '02.';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Kapakana', sans-serif;
    font-size: 2.4rem;
    font-weight: normal;
}

.feature-inner:nth-child(3) .feature-head:before {
    content: '03.';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Kapakana', sans-serif;
    font-size: 2.4rem;
    font-weight: normal;
}

.feature-inner:nth-child(4) .feature-head:before {
    content: '04.';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Kapakana', sans-serif;
    font-size: 2.4rem;
    font-weight: normal;
}

.feature-inner:nth-child(5) .feature-head:before {
    content: '05.';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Kapakana', sans-serif;
    font-size: 2.4rem;
    font-weight: normal;
}

.feature-text > div:first-child {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    padding: 15px;
    width: fit-content;
}

.policy-btn-wrap {
    display: flex;
    margin-top: 30px;
    justify-content: flex-end;
    gap: 20px;
}

.company-info-btn {
    display: block;
    background: #fff;
    color: #8E81BB;
    padding: 5px 20px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    border: 1px solid #8E81BB;
    /*margin: 0 auto;*/
    width: 175px;
}

.company-info-btn:hover {
    background: radial-gradient(49.09% 104.37% at 84.14% 50%, #88ABDA 0%, #8F82BC 100%);
    transition: color 0.5s ease;
    color: #fff;
}

.start-up-support-btn {
    display: block;
    background: #fff;
    color: #88ABDA;
    padding: 5px 20px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    border: 1px solid #88ABDA;
    /*margin: 0 auto;*/
    width: 175px;
}

.start-up-support-btn:hover {
    background: radial-gradient(49.09% 104.37% at 84.14% 50%, #88ABDA 0%, #86BDD7 50%, #7ECEF4 100%);
    transition: color 0.5s ease;
    color: #fff;
}

@media (max-width: 768px) {
    .feature-inner {
        height: auto;
        justify-content: center;
    }
    .feature-inner:before {
        display: none;
    }
    .feature-img {
        display: block;
    }
}

.top-doctor {
    background-color: var(--accent-color);
}

.doctor-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
    position: relative;
}

.doctor-wrap:before {
    content: '';
    position: absolute;
    left: 0;
    width: 588px;
    height: 418px;
    background-image: url(/wp-content/uploads/top-doctor02.png);
    background-size: cover;
    background-position: center;
}

.doctor-img {
    display: none;
}

.doctor-content {
    position: relative;
    width: 700px;
    padding: 5px;
    margin-top: 140px;
    border: solid 8px var(--main-color02);
    background-color: rgba(255, 255, 255, 0.8);
}

.doctor-content > div {
    padding: 20px;
    border: solid 2px var(--main-color02);
}

.doctor-content p span {
    display: block;
}

@media (max-width: 768px) {
    .doctor-wrap:before {
        display: none;
    }
    .doctor-content {
        margin-top: 0px;
    }
    .doctor-img {
        display: block;
        width: 100%;
    }
    .doctor-content {
        width: 100%;
    }
}

.clinic-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    padding: 40px;
}
@media (max-width: 480px) {
    .clinic-wrap {
        padding: 30px 15px;
    }
}
.home .clinic-info {
    width: 350px;
}

.clinic-schedule {
    width: calc(100% - 370px);
}

.schedule-title {
    background: var(--main-color02);
    text-align: center;
    font-weight: bold;
    color: #fff;
    border-radius: 15px;
}



@media (max-width: 768px) {
    .clinic-info {
        width: 100%;
    }
    .clinic-schedule {
        width: 100%;
    }
}

.greeting-inner {
    background: url(/wp-content/uploads/greeting-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    padding: 160px 96px;
    flex-wrap: wrap;
}

.greeting-content {
    width: 60%;
}

.greeting-content p {
    font-size: 22px;
    position: relative;
    z-index: 1;
}

/*.greeting-title {
    font-size: 56px!important;
    font-family: "Zen Old Mincho", serif;
    margin-bottom: 100px;
    line-height: 1.5;
}*/

.greeting-image {
    position: relative;
    width: 40%;
}

.greeting-image-left {
    position: absolute;
    background: url(/wp-content/uploads/greeting-image-left.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    left: -50%;
    top: -15%;
}

.greeting-image-right {
    position: absolute;
    background: url(/wp-content/uploads/greeting-image-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    right: -20%;
    bottom: -40%;
}

@media(max-width:1360px) {
    .greeting-content p {
        font-size: 18px;
    }
    /*.greeting-title {
        font-size: 40px!important;
        margin-bottom: 32px;
    }*/
}

@media(max-width:768px) {
    .greeting-inner {
        padding: 40px 16px 320px;
    }
    /*.greeting-title {
        font-size: 32px!important;
    }*/
    .greeting-content {
        width: 100%;
        position: relative;
        z-index: 1;
    }
    .greeting-image {
        height: 300px;
        width: 100%;
    }
    .greeting-image-left {
        right: -60%;
        top: -20%;
        left: auto;
    }
    .greeting-image-right {
        left: -10%;
        bottom: -40%;
        right: auto;
    }
}
@media(max-width:480px) {
    .greeting-image-left {
        right: -40%;
    }
    .greeting-image-right {
        left: -25%;
    }
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.map-image {
    width: 100%;
    height: auto;
}

.area-label, .greeting-title, .greeting-text {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}
.greeting-title {
    font-family: "Zen Old Mincho", serif;
    /*font-size: 3vw;*/
    font-size: 2.2vw;
}
.greeting-title p{
    margin-top: 30px;
    /*line-height: 1.5;
    letter-spacing: 0.1em;*/
    line-height: 1.8;
    letter-spacing: 0.28em;
}
.greeting-text {
    font-size: 1.15vw;
}

.greeting-text p {
    /*line-height: 3em;*/
    line-height: 2.3em;
    letter-spacing: 0.25em;
}

.location-button {
    padding: 5px 10px;
    text-decoration: none;
    /*font-weight: bold;*/
    font-size: 1.2vw;
    color: #414361;
    position: relative;
    display: inline-block;
    /*overflow: hidden;*/
    transition:  0.3s ease;
    left: 0;
}

.location-button.green::before {
    content: '';
    position: absolute;
    top: 55%;
    left: -95px;
    width: 100px;
    height: 30px;
    background-image: url(/wp-content/uploads/list-hover-green.png);
    background-size: contain;
    background-position: right;
    /* border-radius: 50%; */
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    background-repeat: no-repeat;
}

.location-button.blue::before {
    content: '';
    position: absolute;
    top: 55%;
    left: -35px;
    width: 100px;
    height: 30px;
    background-image: url(/wp-content/uploads/list-hover-blue.png);
    background-size: contain;
    /*border-radius: 50%;*/
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    background-repeat: no-repeat;
}

.location-button.blue span {
    font-size: 2vw;
    color: #74B4FE;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    padding: 0 5px;
}

.location-button.green span {
    font-size: 2vw;
    color: #75DBEB;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    padding: 0 5px;
}

.location-button:hover {
    opacity: 1;    
    left: 8px;
    transition: all 0.3s ease-out;
}


.location-button.green:hover::before {
    opacity: 1;
    transition:0.3s ease;
}

.location-button.blue:hover::before {
    opacity: 1;
    transition:0.3s ease;
}

@media (min-width: 1360px) {
    .standard {
        display: none;
    }
    .greeting-text {
        /*font-size: 1.15vw;*/
        font-size: 1.1vw;
    }
}

@media (max-width: 1360px) {
    .big-size {
        display: none;
    }
}

@media (max-width: 768px) {
    .map-container {
        background-size: 100% auto;
        max-width: 100%;
    }
    .area-label {
        font-size: 12px;
    }
    .location-button.blue {
        /*font-size: 4vw;*/
        font-size: 3.5vw;
    }
    .location-button.green {
        /*font-size: 4vw;*/
        font-size: 3.5vw;
    }
    .location-button.blue span {
        font-size: 5.5vw;
    }
    .location-button.green span {
        font-size: 5.5vw;
    }
    .greeting-title {
        /*font-size: 5.5vw;*/
        font-size: 5vw;
        width: 100%;
    }
    .greeting-title p {
        line-height: 1.3em;
    }
    .greeting-text p {
        line-height: 1.8em;
        letter-spacing: 0.1em;
    }
    .greeting-text {
        font-size: 3vw;
        width: 85%;
    }
}

@media (max-width: 480px) {
    .greeting-title {
        /*font-size: 8.5vw;*/
        /*font-size: 6.5vw;*/
        font-size: 5vw;
        width: 100%;
        letter-spacing: 3px;
        font-weight: 600;
    }
    .greeting-text {
        /*font-size: 4.5vw;*/
        font-size: 3.8vw;
        width: 92%;
    }
    .tab-size {
        display: none;
    }
}

@media(min-width:480px) {
    .sp-size {
        display: none;
    }
}

.access-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}


.pdf-name-box {
    border: 1px solid rgb(204, 204, 204);
    display: inline-block;
    padding: 15px 55px 15px 10px;
}

.pdf-img {
    width: 30px;
    height: 30px;
}

.pdf-name {
    color: #5b5b5b;
}

.store-list-wrap {
  border: 1px solid #a7a7a7;
  background: #FFF;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}

.area-map figure{
position: relative;
margin: 0 auto;
display: block;
cursor: pointer;
}

.miyagi img:nth-of-type(1),
.yamagata img:nth-of-type(1),
.saitama img:nth-of-type(1),
.tokyo img:nth-of-type(1),
.kanagawa img:nth-of-type(1),
.chiba img:nth-of-type(1) {
opacity: 0;
}
.miyagi:hover img:nth-of-type(2),
.yamagata:hover img:nth-of-type(2),
.saitama:hover img:nth-of-type(2),
.tokyo:hover img:nth-of-type(2),
.kanagawa:hover img:nth-of-type(2),
.chiba:hover img:nth-of-type(2) {
opacity: 0;
}
.miyagi:hover img:nth-of-type(1),
.yamagata:hover img:nth-of-type(1),
.saitama:hover img:nth-of-type(1),
.tokyo:hover img:nth-of-type(1),
.kanagawa:hover img:nth-of-type(1),
.chiba:hover img:nth-of-type(1) {
opacity: 1;
z-index: 10;
}
.area-map {
  width: 30%;
  height: 600px;
  position: relative;
  margin-left: 30px;
}
.miyagi,
.yamagata,
.saitama,
.tokyo,
.kanagawa,
.chiba {
  position: relative;
}
.miyagi a figure img{
  position: absolute;
  top: 14px;
  left: 167px;
  width: 126px;
  height: 153px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}
.yamagata a figure img{
  position: absolute;
  top: 10px;
  left: 86px;
  width: 110px;
  height: 159px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}
.other-prefecture {
  position: absolute;
  top: 150px;
  left: 0;
  width: 240px;
  height: 260px;
}
.saitama a figure img{
  position: absolute;
  top: 352px;
  left: 31px;
  width: 104px;
  height: 59px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  }
.tokyo a figure img{
  position: absolute;
  top: 399px;
  left: 49px;
  width: 90px;
  height: 38px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}
.kanagawa a figure img{
  position: absolute;
  top: 425px;
  left: 55px;
  width: 73px;
  height: 62px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}
.chiba a figure img{
  position: absolute;
  top: 382px;
  left: 132px;
  width: 98px;
  height: 129px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.area-map a:hover {
    opacity: 1;
}

.store-content {
    width: 67%;
    display: flex;
    flex-direction: column;
}

.tohoku-area,.kanto-area {
    flex: 1;
}

.store-list-item {
    display: flex;
    flex-wrap: wrap;
}

.store-list-item a {
    width: 48%;
    padding: 10px 0 0;
    text-align: center;
    display: block;
    position: relative;
    text-decoration: none;
    color: var(--main-color02);
}

.store-list-item a:hover {
    opacity: 1;
}

.store-list-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 2px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.store-list-item.tohoku a::after {
    background-color: #88C896;
}

.store-list-item.kanto a::after {
    background-color: #81CCDD;
}

.store-list-item a:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }

.store-list-item.tohoku span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #88C896;
    padding: 0 5px;
}

.store-list-item.kanto span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #81CCDD;
    padding: 0 5px;
}

.store-area.tohoku {
    background-color: #88C896;
    padding: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.store-area.kanto {
    background-color: #81CCDD;
    padding: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.shop-list-btn {
    display: block;
    background: #fff;
    color: #7FCDC4;
    padding: 5px 20px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    border: 1px solid #7FCDC4;
    /*margin: 0 auto;*/
    width: 175px;
    margin-left: auto;
}

.shop-list-btn:hover {
    background: radial-gradient(49.09% 104.37% at 84.14% 50%, #7ECEF4 0%, #7FCDC4 100%);
    transition: color 0.5s ease;
    color: #fff;
}

.top-clinic {
    /*background: url(/wp-content/uploads/top-clinic01.png);*/
    padding: 0!important;

}

/*.top-clinic h2.heading-1 {
    margin: 0 0 0.5em;
    position: relative;
    border: 0;
    word-wrap: break-word;
    font-weight: bold;
    font-size: 1.6rem;
    color: #81CCDD;
    letter-spacing: 2.5px;
    border-bottom: none;
    line-height: 1em;
    padding-left: 32px;
    font-size: 32px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
}

.top-clinic h2.heading-1::after {
    display: none;
}*/

/*.top-clinic h2.heading-1 span {
    font-size: 20px;
    color: #4b4b4b;
}*/

.accesiblity {
  height: 70%;
}

/* 社員インタビュー */

.swiper-slide {
width: 100%;
height: auto!important;
display: flex;
justify-content: center;
align-items: center;
background-color: #F3F9F9;
/*font-size: 22px;*/
/*font-size: 18px;*/
padding: 16px;
}


/*.swiper-slide{
height:400px;
}*/

.swiper-slide p {
  line-height: 1.5;
}

.interview-main {
    display: flex;
    background: radial-gradient(100% 198.92% at 100% 50.12%, #B1EAF9 0%, #EDFAFE 40%, #92C4FF 100%) ;
    padding: 40px;
    gap: 40px;
}

.interview-main.img-right {
    flex-direction: row-reverse;
}



.interview-main img {
    width: 100%;
}

.interview-main div {
    width :50%;    
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
}

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

.interview-no {
    color:#fff;
    /*font-size: 32px;*/
    font-size: 30px;
    background-color: var(--main-color01);
    padding: 10px 24px;
    border-radius: 50px;
    text-align: center;
    margin-left: auto;
    width: 242px;
    line-height: 0.8;
    font-family: "Raleway", sans-serif;
}

.interview-no.left {
    margin-right: auto;
    margin-left: 0;
}

.interview-message {
    /*font-size: 56px;*/
    /*font-size: 50px;*/
    font-size: 40px;
    font-family: "Zen Old Mincho", serif;
    line-height: 1;
    padding-top: 30px;
}

.interview-message-text {
  line-height: 2.2;
  letter-spacing: 0.1em;
}

.interview-name {
  text-align: right;
  padding-top: 40px;
}

.rotate {
    transform: rotate(30deg);
    display: inline-block;
}

.flow-time {
    font-family: "Jost", sans-serif;
    /*font-size: 30px;*/
    /*font-size: 28px;*/
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 4px;
    position: relative;
    margin-bottom: 50px;
    line-height: 2.0em!important;
}

.point {
    color:#fff;
    background-color: var(--main-color01);
    padding: 8px 24px;
    border-radius: 33px;
    display: inline-block;
    margin-bottom: 8px;
    line-height: 0.8;
}

p.point {
    /*line-height: 0.8;*/
    line-height: 1;
}

.flow-time::before {
    content: '●';
    display: block;
    width: 1px;
    height: 1px;
    position: absolute;
    font-size: 16px;
    color: #75DBEB;
    /*bottom: 14px;*/
    bottom: 6px;
}

.swiper-slide::before {
    content: '';
    display: block;
    width: 4rem;
    height: 1px;
    background-color: #75DBEB;
    position: absolute;
    top: 0;
}

/*.flow-time::after {
    content:'';
    display: block;
    width: 100%;
    border-bottom: 1px dashed #75DBEB;
    position: absolute;
}*/


.flow-line {
    background-image: linear-gradient(to right, #75DBEB, #75DBEB 1px, transparent 1px, transparent 1px);
    background-size: 2px 1px;
    background-position: bottom;
    background-repeat: repeat-x;
    width: 120%;
    position: absolute; 
    left: 0;
    top: 3rem;
    line-height: 2.0em!important;
}

.flow-line.first {
    left: 20px;
}

.flow-line.end {
  width: 100%;
}

.swiper-section {
    padding: 0 0 60px 96px;
}

.holiday-wrap {
    background-color: #F3F9F9;
    padding: 16px;
    position: relative;
}

.holiday-content {
border: 1px dashed #74B4FE;
border-radius: 24px;
padding: 64px 40px 40px;
}

.holiday-title {
    font-family: "Zen Kurenaido", sans-serif;
    /*font-size: 48px;*/
    /*font-size: 44px;*/
    font-size: 36px;
}

.holiday-inner {
    display: flex;
}

.holiday-caption-wrap {
    position: absolute;
    top: -16px;
    left: 0;
}

.holiday-caption {
    color: #fff;
    background-color: var(--main-color01);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 24px;
    width: 247px;
}

.holiday-caption p {
    padding-left: 2rem;
    line-height: 1;
    /*font-size: 22px;*/
    font-size: 20px;
}

.holiday-caption::before {
    color: #fff;
    content: '●';
    font-size: 9px;
    width: 9px;
    height: 9px;
    position: absolute;
    top: 15px;
}

.holiday-text {
    width: 50%;
}

.holiday-img-content {
    width :50%;
    position: relative;
}

.holiday-img {
    /*transform: rotate(15deg);
    position: absolute;
    width: 100%;
    right: -50px;
    top: -100px;*/
    transform: rotate(15deg);
    position: absolute;
    width: 75%;
    right: -20px;
    top: -44px;

}
.next {
    width: 213px;
    color: #6A6A6A;    
    margin: 160px auto;
    transform: rotate(90deg);
    border-bottom: 1px solid #6A6A6A;
    font-size: 24px;
    font-family: "Raleway", sans-serif;
    text-align: center;
    letter-spacing: 5px;
    position: relative;
    height: 37px;
}

.next p {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.next::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: #6A6A6A;
  position: absolute;
  right: -5px;
  top: 28px;
  transform: rotate(45deg);
}

.slide-annotation {
    font-size: 16px;
}

#anc01,#anc02,#anc03,#anc04,#anc05,#anc06 {
    padding-top: 128px;
    /*margin-top: -80px;*/
    margin-top: -90px;
}

@media (max-width: 1360px) {
    .swiper-section {
        padding: 0 0 80px 60px;
    }
    /*.holiday-title {
        font-size: 40px;
    }*/
}

@media(max-width:1200px) {
    
    .flow-time {
        font-size: 24px;
    }
    /*.flow-time::before {
        bottom: -5px;
    }*/
}

@media(max-width: 768px) {
    /*.swiper-slide {
        font-size: 18px;
    }*/
    /*.flow-time::before {
        bottom: 2px;
    }*/
    /*.point {
        font-size: 22px;
    }*/
    .swiper-section {
        padding: 0 0 40px 16px;
    }
    .interview-main,.interview-main.img-right {
        flex-direction: column;
        padding: 16px;
    }
    .interview-main div {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .interview-no {
        margin-left: 0;
        font-size: 28px;
        line-height: 0.6;
    }
    .interview-message {
        font-size: 32px;
        line-height: 0.5;
        /*margin-top: 20px;*/
    }
    .rotate {
        transform: rotate(0);
    }
    .interview-message-text {
        line-height: 1.6;
        padding-bottom: 15px;
    }
    .interview-name {
      padding-top: 24px;
    }

    .holiday-content {
        padding: 48px 16px 16px;
    }
    .holiday-caption {
        font-size: 22px;
    }
    .holiday-text,.holiday-img-content {
        width: 100%;
    }
    .holiday-img-content {
        margin: 20px 0;
    }
    .holiday-img {
        transform: rotate(0);
        position: static;
        width: 100%;
    }
    .holiday-title {
        font-size: 28px;
    }
    .next {
        margin: 120px auto;
        height: 35px;
    }
    .next p {
      bottom: 1px;
    }
    .next::after {
      top:26px;
    }
}


@media(max-width: 480px) {
    .swiper {
        padding-right: 80px!important;
    }
    .interview-message {
        line-height: 1.3;
        padding-bottom: 15px;
    }
    .rotate {
        line-height: 1.3;
    }

}

/*　会社での取り組み　*/

.result,.reason {
    margin: 50px 0;
}

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

.satisfaction-point div{
    width: 25%;
    display: flex;
    align-items: center;
}

.satisfaction-point img {
    /*width: 80%;*/
    width: 195px;
}

.satisfaction-point p {
    width: 75%;
    background: #F5F5F5;
    padding: 20px;
    position: relative;
    line-height: 1.5;
}

.satisfaction-point p::before {
    content:'';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 40px solid #F5F5F5;
    border-left: 0;
    position: absolute;
    top: 50%;
    left: -20px;
}

@media(max-width:768px) {
    .satisfaction-point {
        align-items: start;
        justify-content: space-between;
    }
  
    .satisfaction-point p {
        width: 70%;
        padding: 16px;
        font-size: 16px;
    }
    .satisfaction-point p::before {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 20px solid #F5F5F5;
        top: 70px;
        left: -12px;
    }
}

@media(max-width:480px) {
    .satisfaction-point p::before {
        top: 40px;
    }
}

@media(min-width:1550px) {
    .holiday-wrap.last {
        margin-bottom: 200px;
    }
}

.radius-bg {
    background: url(/wp-content/uploads/top-recruit-bg.png), rgba(232, 253, 255, 0.8);
    backdrop-filter: blur(2px);
    border-radius: 100px 100px 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media(max-width:768px) {
    .radius-bg {
        border-radius: 50px 50px 0px 0px;
        background-position: top center;
    }
}

.benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-top: 50px;
    padding: 0;
    justify-content: space-around;
}

.benefits li{
    background: #fff;
    border: 1px solid var(--main-color01);
    padding: 24px 8px;
    /*font-size: 24px;*/
    font-size: 20px;
    font-family: "Zen Old Mincho", serif;
    text-align: center;
    width: 19.2%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits li:nth-child(odd){
    color: #75DBEB;
}

.benefits li:nth-child(even){
    color: var(--main-color01);
}

.dummy {
    visibility: hidden;
}

@media(max-width:1360px) {
    .benefits {
        gap: 5px 0;
    }
    .benefits li {
        width: 33%;
        font-size: 20px;
    }
}

@media(max-width:768px) {
    .benefits {
        justify-content: center;
    }
    .benefits li{
        padding: 16px 8px;
        width: 100%;
        font-size: 18px;
    }
}

/* 採用情報 */
.recruit-anclist {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 80px;
}

.recruit-anclist a {
    width: 25%;
}

.interview-list {
    display: flex;
}

.interview-list.interview-page {
    margin-bottom: 100px;
}

.interview-list a {
    width: 25%;
}

.list-top {
    width: 50%!important;
}

.recruit-massage-title {
    /*font-size: 56px;*/
    /*font-size: 48px;*/
    font-size: 2.2vw;
    font-family: "Zen Old Mincho", serif;
    /*padding-bottom: 80px;*/
    padding-bottom: 20px;
    line-height: 1.5;
}

.number-img {
    margin-top: 80px;
}

@media(max-width: 768px) {
    .recruit-anclist {
      margin-top: -20px;
    }
    .recruit-anclist a {
        width: 50%;
    }
    .interview-list {
        flex-wrap: wrap;
    }
    .recruit-massage-title {
        /*font-size: 32px;*/
        font-size: 24px;
        /*padding-bottom: 40px;*/
        padding-bottom: 20px;
    }
    .number-img {
        margin-top: 40px;
    }
    .interview-list.interview-page {
        margin-bottom: 40px;
    }
    .list-top {
        width: 100%!important;
    }   
}

/* 店舗紹介 */
.storelist-box {
    list-style: none;
    display: flex;
    gap: 30px 20px;
    margin-bottom: 80px;
}

.storelist-box li {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /*padding: 24px 24px 32px;*/
    /*border-top: 1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;*/
    width: 16%;
}

.storelink-wrap {
    width :100%;
}

.storelink {
    color: var(--main-color02);
    display: block;
    padding: 24px 0 32px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
    position: relative;
}

.storelink::after {
    content: '';
    background: url(/wp-content/uploads/arrow.png);
    width: 45px;
    height: 45px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.storelink:hover {
    border-top: 1px solid var(--main-color01);
    border-bottom: 1px solid var(--main-color01);
    transition: .4s;
    color: var(--main-color01);
}

.storelink:hover::after {
    background: url(/wp-content/uploads/arrow-hover.png);
}

.shisetsu {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    padding: 24px 36px;
    background: #fff;
}

.shisetsu li::marker {
    color: #75DBEB;
}

@media(max-width: 820px) {
  .shisetsu {
    flex-direction: column;
    gap:0;
  }
}

@media(max-width:768px) {
    .storelink::after {
        width: 35px;
        height: 35px;
        background-size: cover;
    }
    .storelink:hover::after {
      background-size: contain;
    }
}


/*.storelink img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
	transition: 0.7s;
}

.storelink:hover img:nth-of-type(2) {
	opacity: 0;
}*/

/*.storelist-box li:hover {
    border-top: 1px solid var(--main-color01);
    border-bottom: 1px solid var(--main-color01);
    transition: .4s;
}*/

/*.storelist-box li:hover .storelink {
    color: var(--main-color01);
}*/


/*.arrow-img {
    background: url(/wp-content/uploads/arrow.png);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
}

.arrow-img:hover {
    background: url(/wp-content/uploads/arrow-hover.png);
}


.storelink:hover + .arrow-img {
    background: url(/wp-content/uploads/arrow-hover.png);
}*/

.arrow-wrap {
    position: absolute;
    bottom: -20px;
}

.arrow {
    display: inline-block;
    position: relative;
    text-align: center;
}

/*.arrow::before {
    content: '';
    width: 0.65em;
    height: 0.65em;
    border: 0.1em solid currentColor;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    transform-origin: bottom left;
    position: absolute;
    left: 50%;
    bottom: -0.05em;
    z-index: 2;
}*/
/*.fa-arrow-down {
    position: relative;
    z-index: 3;
    color: var(--main-color01);
}

.arrow::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 1px solid #BDBDBD;
    display: block;
    position: absolute;
    z-index: 1;
    background: #fff;
    top: 2px;
    left: -2px;
    border-radius: 50%;
}

.fa-arrow-down:hover {
    color: #fff;
}

.arrow:hover:after {
    background: var(--main-color01);
}

.storelist-box li:hover .fa-arrow-down {
    color: #fff;
}

.storelist-box li:hover .arrow::after{
    background: var(--main-color01);
}*/

.store-wrap {
    background: #F6F6F6;
    padding: 16px;
    margin-top: 40px;
}

.store-info-wrap {
    display: flex;
}

.store-info-wrap.support {
    padding: 20px;
    background: #F6F6F6;
}

.store-info-inner {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-info-inner dl {
    align-items: normal;
    gap: 0;
}

.store-info-inner dl dt{
    width: 200px;
    padding: 24px 16px;
    background-color: #F0FFFD;
    /*font-size: 20px;*/
    /*font-size: 18px;*/
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    font-weight: normal;
}

.store-info-inner dl dd{
    width: calc(100% - 220px);
    /*padding: 24px 16px;*/
    padding: 20px 16px;
    /*font-size: 20px;*/
    /*font-size: 18px;*/
    line-height: 1.5;
    display: flex;
    align-items: center;
    font-weight: normal;
    background: #fff;
}

.store-info-inner dl dd a {
    color: var(--main-color01);
    display: inline-block;
    margin-right: 1rem;
    font-weight: bold;
}

.store-info-inner dl dd li::marker {
    color: #75DBEB;
}


.main-number {
    border: 1px solid #858585;
    border-radius: 50px;
    color: #858585;
    font-size: 14px;
    padding: 8px;
    line-height: 1;
}

.service-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-point {
    color: #fff;
    background: var(--main-color01);
    border-radius: 60px;
    padding: 16px;
    line-height: 1;
    font-weight: bold;
    display: inline-block;
}

.store-image-wrap {
    width: 50%;
}

.store-image {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}

.store-image div {
    width: 22%;
}

.store-img-big {
    width: 100%!important;
}

.store-slider-thumb .slick-slide {
    padding: 0 8px;
}

.line-img-wrap img {
    /*width: 30%;*/
    width: 15%;
    min-width: 60px;
}

.store-time {
    width: 100%;
    margin-bottom: 16px;
}

.store-time th{
    background: var(--main-color01);
    color: #fff;
    text-align: center;
    font-weight: bold;
    /*border-right: 1px solid #fff;*/
}

.store-time td {
    /*border-right: 1px solid #BDBDBD;*/
    text-align: center;
    background: #fff;
}

.store-time th,.store-time td {
    width:14%;
    position: relative;
    padding: 8px 0;
}

.store-time.sunday th,.store-time.sunday td {
    width:12.5%;
}

.store-time th::after,.store-time td::after {
    content:'';
    display: block;
    width: 1px;
    height: 80%;
    position: absolute;
    right: 0;
    top: 5px;
}

.store-time th::after {
    background: #fff;
}

.store-time td::after {
    background: #BDBDBD;
}

.store-time th:last-child::after,.store-time td:last-child::after {
    content:none;
}

/*.store-time td:last-child,.store-time th:last-child{
    border-right:none;
}*/

.payment-wrap dl {
    align-items: normal;       
    margin-top: 10px;
    gap:0;
}

.payment-wrap dl dt{
    width: 200px;
    padding: 24px 16px;
    background-color: #F0FFFD;
    /*font-size: 20px;*/
    /*font-size: 18px;*/
    line-height: 1.5;
    display: flex;
    align-items: center;
    font-weight: normal;
}

.payment-wrap dl dd{
    padding: 24px 16px;
    /*font-size: 20px;*/
    /*font-size: 18px;*/
    line-height: 1.5;
    display: flex;
    align-items: center;
    font-weight: normal;
    width: calc(100% - 220px);
    background: #fff;
}

.payment-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.payment-inner div {
    /*width: 6.5%;*/
    width: 5%;
}


@media(max-width:1200px) {
    .store-info-inner dl dt,.payment-wrap dl dt {
        width:150px;
    
    }
    .store-info-inner dl dd,.payment-wrap dl dd{
        width: calc(100% - 170px);
    }
}

@media(max-width:960px) {
    .store-info-inner {
        width: 60%;
    }
    .store-image-wrap {
        width: 40%;
    }
    .store-image {
        gap:8px;
    }
    .store-image div {
        width: 22.5%;
    }
    .store-info-inner dl dt,.payment-wrap dl dt {
        width:120px;
    }
    .store-info-inner dl dd,.payment-wrap dl dd{
        width: calc(100% - 140px);
    }
    .payment-inner div {
        width: 6.5%;
    }
    
}

@media(max-width:768px) {
    .store-wrap {
        margin-top: 20px;
    }
    .storelist-box {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .storelist-box li {
        width: 47%;
        /*padding: 16px 24px 24px;*/
    }
    .storelink {
        line-height: normal;
        padding: 16px 0 24px;
    }
    .fa-arrow-down {
        position: absolute;
        font-size: 14px;
        top: -15px;
        left: -11px;
    }
    .arrow::after {
        width: 20px;
        height: 20px;
        top: -20px;
        left: -10px;
    }
    .store-info-wrap {
        flex-direction: column-reverse;        
        margin-bottom: 20px;
    }
    .store-info-inner {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 40px;
    }
    .store-image-wrap {
        width: 100%;
    }
    .store-info-inner dl {
        gap: 0;
    }
    .store-info-inner dl dt,.payment-wrap dl dt {
        width: 100%;
        /*font-size: 18px;*/
        font-size: 16px;
        /*padding: 16px;*/
        padding: 8px;
        /*margin-top: 16px;*/
    }
    .store-info-inner dl dd,.payment-wrap dl dd{
        width: 100%;
        /*font-size: 18px;*/
        font-size: 16px;
        /*padding: 16px;*/
        padding: 8px;
    }
    .service-wrap {
        flex-direction: column;
    }
    .service-point {
        font-size: 16px;
        padding: 8px 16px;
    }
    .store-time th {
        width: 100px;
        border-bottom: 1px solid #fff;
    }
    .store-time td {
        width: calc(100% - 100px);
        border-bottom: 1px solid #BDBDBD;
    }
    .store-time th,.store-time td {
        line-height: 1.5;
    }
    /*.store-time td:last-child,.store-time th:last-child{
        border-bottom:none;
    }*/
    .store-time th::after,.store-time td::after {
        content: none;
    }
    .payment-wrap dl {
        gap: 0; 
    }
    .payment-inner {
        flex-wrap: wrap;
    }
    .payment-inner div {
        width: 10%;
    }
}

@media(max-width:480px) {
    .storelist-box {
        padding: 0;
        justify-content: center;
    }
    .storelist-box li {
        width: 45%;
    }
    .payment-inner {
        gap: 5px;
    }
    .payment-inner div {
        width: 13%;
    }
}

/* 募集要項 */

.recruit-flow-wrap {
    padding: 48px 0 0;
}

.recruit-flow {
    border-top: 1px solid;
    border-image: linear-gradient(to right, #75DBEB 0%, #75DBEB 5%, #BDBDBD 5%, #BDBDBD 100%) 1;
}

.recruit-flow dl{
    gap: 0;
    display: table;
}

.flow-no {    
    /*border-top: 1px solid;
    border-image: linear-gradient(to right, #75DBEB 0%, #75DBEB 15%,#BDBDBD 15%,#BDBDBD 100%) 1;*/
    width: 300px;
    display: flex;
    padding: 32px 0;
    font-weight: normal;
    /*font-size: 24px;*/
    font-size: 20px;
    display: table-cell;
}

.flow-no p {
  line-height: 1;
}

.flow-no span {
    color: #75DBEB;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 0.5;
}

.flow-text {
    /*border-top: 1px solid #BDBDBD;*/
    width: calc(100% - 300px);
    display: flex;
    padding: 32px 0;
    display: table-cell;
    vertical-align: middle;
}

@media(max-width:768px) {
    .recruit-flow {
        padding: 16px 0;
    }
    .recruit-flow dl {
        display: flex;
        flex-direction: column;
    }
    .flow-no {
        padding: 0;
        width: 100%;
        font-size: 20px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        display: flex;
        margin-bottom: 20px;
    }
    .flow-text {
        border: none;
        padding: 0;
        width: 100%;
    }
}

.portrait-wrap {
    margin-top: 48px;
    background: radial-gradient(100% 198.92% at 100% 50.12%, #B1EAF9 0%, #EDFAFE 40%, #92C4FF 100%) ;
    padding: 40px;
}

.point-wrap {
    text-align: center;
    margin-bottom: 46px;
}
.point.portrait {
    /* display: inline; */
    /*font-size: 38px;*/
    font-size: 28px;
    padding: 8px 32px;
    line-height: 1;
    margin-bottom: 0;
}

.portrait-content {
    display: flex;
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    margin-bottom: 40px;
}

.portrait-content:last-of-type {
    margin-bottom: 0;
}

.portrait-content p {
    /*font-size: 32px;*/
    font-size: 28px;
    font-family: "Zen Old Mincho", serif;
}

.portrait-content-no {
    padding: 0 2.5rem 0 0;
}

.portrait-content ul {
    padding-left: 32px;
}

.portrait-content ul li {
    /*font-size: 32px;*/
    font-size: 26px;
    font-family: "Zen Old Mincho", serif;
    padding-top: 32px;
}

.portrait-content ul li p{
    /*font-size: 24px;*/
    font-size: 20px;
    line-height: 1.5;
}

.out-text {
    /*margin: 80px 0;*/
    margin: 40px 0 80px;
}

@media(max-width:768px) {
    .point.portrait { 
      font-size: 28px;
    }
    .point-wrap {
        margin-top: 16px;
        margin-bottom: 24px;
    }
    .portrait-wrap {
        padding: 16px;
        margin-bottom: 16px;
    }
    .portrait-content {
        flex-direction: column;
        padding: 24px 16px;
        margin-bottom: 16px;
    }
    .portrait-content:last-of-type {
        margin-bottom: 0;
    }
    .portrait-content p {
        font-size: 18px;
    }
    .portrait-content-no {
        width: 100%;
        text-align: center;
        font-size: 24px!important;
        padding: 0;
    }
    .portrait-content ul li {
        font-size: 24px;
        padding: 16px 0;
    }
    .portrait-content ul li p{
        font-size: 18px;
        line-height: 1.5;
    }
    .out-text {
        margin: 32px 0 48px;
    }
}

.job-wrap {
    padding: 16px;
    background-color: #F6F6F6;
    margin-top: 40px;
}

.occupation {
    font-weight: bold;
    /*font-size: 32px;*/
    font-size: 24px;
    /*padding: 32px 0;*/
    padding: 20px 0;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #75DBEB 0%, #75DBEB 15%,#BDBDBD 15%,#BDBDBD 100%) 1;
    letter-spacing: 3px;
}

.recruit-info {
    margin-top: 16px;
    /*font-size: 20px;*/
}

.recruit-info dl {
    gap: 0;
}

.recruit-info dl dt {
    background-color: #F0FFFD;
    display: flex;
    padding: 24px 16px;
    width: 375px;
    align-items: stretch;
    color: var(--main-color02);
    font-weight: normal;
    justify-content: start;
    margin-bottom: 8px;
}

.recruit-info dl dd {
    display: flex;
    padding: 24px 16px;
    width: calc(100% - 375px);
    align-items: stretch;
    margin-bottom: 8px;
}

.storelist-box.recruit-list {
    justify-content: center;
    margin-bottom: 80px;
    margin-top: 80px;
}

.storelist-box.recruit-list li {
    width: 20%;
}

@media(max-width:960px) {
    .recruit-info dl dt {
        width:30%;
    }
    .recruit-info dl dd {
        width:70%;
    }
}

@media(max-width: 768px) {
    .occupation {
        font-size: 24px;
        padding: 0;
        border-image: linear-gradient(to right, #75DBEB 0%, #75DBEB 10%,#BDBDBD 10%,#BDBDBD 100%) 1;
    }
    .storelist-box.recruit-list {
        margin: 32px 0;
    }
    .storelist-box.recruit-list li {
        width: 100%;
    }
    .recruit-info dl dt {
        width: 100%;
        margin-bottom: 0;
        padding: 16px;
    }
    .recruit-info dl dd {
        width: 100%;
        padding: 16px;
    }
}

/* フォーム */
.form-wrap.h-adr {
    padding: 40px;
    background-color: #F6F6F6;
}

.form-wrap dl {
    line-height: 1.6;
    border-bottom: 0;
    display: block;
}

.form-wrap dl dt {
    font-weight: bold;
    width: 100%;
    padding: 8px 16px;
    color: var(--main-color02);
    background: none;
    border: none;
    line-height: 1;
}

.form-wrap dl dd {
    /*padding: 24px 16px;*/
    padding: 16px;
    margin-left: 0;
    width: 100%;
    background: #fff;
    line-height: 1;
    margin-bottom: 20px;
}

input[type=text], input[type=number], input[type=date], input[type=tel], input[type=url], input[type=email] {
    background: #fff;
}

textarea {
    background: #fff;
}

.reqired {
    color: #fff;
    background: #E91919;
    border-radius: 26px;
    padding: 0 8px;
    font-weight: normal;
    font-size: 18px;
    margin-left: 1em;
}

.arbitrary {
    background: #FFFFFF;
    border: 1px solid #AFAFAF;
    border-radius: 26px;
    padding: 0 8px;
    font-weight: normal;
    font-size: 18px;
    margin-left: 1em;
}
.no-bg {
    background: none!important;
    padding-top: 0!important;
}

span[class^="cf-"] {
    display: block;
    line-height: 1;
}

span.cf-sex,span.cf-job,span.cf-workingstatus,span.cf-document {
    display: flex;
    flex-direction: column;
}

span.cf-resume,span.cf-resume2 {
    padding: 8px 0;
}

.form-flex {
    display: flex;
    gap: 10px;
    align-items: center;
}

button, select {
    background: none;
}

.file-button::file-selector-button {
    display: block;
}


.submit button {
    /*color: var(--main-color02);
    font-weight: bold;
    padding: 0;*/
        display: block;
        color: var(--main-color02);
        /* padding: 10px 20px 10px 30px; */
        /* border-radius: 50px; */
        text-decoration: none;
        text-align: center;
        position: relative;
        overflow: hidden;
        font-weight: bold;
        border: 1px solid var(--main-color02);
        /* margin: 0 auto; */
        width: 80%;
        padding-right: 70px;
        font-family: "Noto Sans JP", sans-serif;
        letter-spacing: 1px;
        font-size: 24px;
        background: #FFFFFF;
        border: 1px solid #414361;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 90px;
        padding: 20px 20px 20px 30px;
        text-indent: -1rem;
        margin: 0 auto;
        width: 374px;
}

.submit button::after {
    position: absolute;
    display: block;
    content: '';
    width :50px;
    height: 50px;
    border-radius: 50%;
    background: var(--main-color02);
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
    
.submit button::before {
    position: absolute;
    display: block;
    content: '';
    width :10px;
    height: 10px;
    color: #fff;
    top: 28px;
    right: 33px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    z-index: 1;
}
    
.submit button:hover {
      background: var(--main-color02);
      transition: 0.2s ease;
      color: #fff;
      opacity: 1;
}

/*button:hover {
    color: var(--main-color02);
}*/

@media(max-width:768px) {
    .form-wrap.h-adr {
        padding: 16px;
    }
    .submit.button {
        padding: 10px 20px 10px 30px;
        font-size: 18px;
        height: 70px;
        width: 100%; 
        text-indent: -1rem;
        line-height: 40px;
    }
    .submit button::after {
        right: 20px
    }
    .submitbutton::before {
        top: 25px;
        right: 40px;
    }
    input[type=text], input[type=number], input[type=date], input[type=tel], input[type=url], input[type=email] {
        font-size: 18px;
    }
    textarea {
        font-size: 18px;
    }
}

.checkmark001 {
    padding-left: 30px;
    position: relative;
}

.checkmark001:before {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 1px solid var(--main-color02);
    left: 0;
    top: 9px;
}

.checkmark001:after {
    content: "";
    display: block;
    position: absolute;
    border-left: 2px solid var(--main-color01);
    border-bottom: 2px solid var(--main-color01);
    width: 18px;
    height: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 5px;
    top: 10px;
}

.checkmark-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
}

.checkmark001.half {
    width: 48%;
}

@media (max-width: 767px) {
    .accesiblity-bnr {
        width: 58px;
    }
    .checkmark001.half {
    width: 100%;
  }
  .accesiblity {
    height: 50%;
}
}

section a[target="_blank"] {
  &:after {
    font-family: "Font Awesome 6 Free";
    content: "\f08e";
    font-weight: 900;
    margin: 0 0.25rem;
  }
}

.not-blank:after {
    content: none;
}

.over-anc {
    position: relative;
    z-index: 5;
}

.support-heading {
    font-size: 1.2rem;
    font-weight: bold;
}

.support-img{
    width: 70%;
    /*width: 45%;*/
    display: block;
    margin: 0 auto;
}

.open-flow {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-top: 10px;
}

.open-flow li {
    padding: 15px;
    border: 2px solid var(--sub-color);
    position: relative;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.open-flow li::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.open-flow li:last-child:after {
    content: none;
}

@media(max-width: 768px) {
    .support-img {
        margin: 0 auto;
    }
}

@media(max-width: 480px) {
    .support-img {
        width: 100%;
    }
}