@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* font-family: "Noto Sans JP", sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Sawarabi+Mincho&display=swap");
/* font-family: "Sawarabi Mincho", serif; */

/*===================================
  基本設定
===================================*/
/* # root1 START # */
:root {
    --color01: #001e43;
    --color02: #2c7cac;
}
/* # root1 END # */

/* # root2 START # */
/* :root {
  --color01: #13437e;
  --color02: #4284c0;
} */
/* # root2 END # */

/* # root3 START # */
/* :root {
  --color01: #e2b848;
  --color02: #7f6623;
} */
/* # root3 END # */


#wrapper {
    min-width: 375px;
    overflow: hidden;
    margin: 0 auto;
}

.nsans {
    font-family: "Noto Sans", serif;
}

.sawarabi {
    font-family: "Sawarabi Mincho", serif;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
textarea,
button,
p {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", "Sawarabi Mincho", serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 599px) {
    body,
    div,
    dl,
    dt,
    dd,
    ul,
    ol,
    li,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    form,
    input,
    button,
    p {
        font-size: 14px;
    }
}

.h1-box {
    width: 98%;
    max-width: 1500px;
    margin: auto;
    /* padding-top: 0.5rem; */
    padding-right: 210px;
}

@media (max-width: 1024px) {
    .h1-box {
        padding-top: 0;
        padding-right: 40px;
    }
}

/*フォント系*/

.goth {
    font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

[data-element-id] h1 {
    text-indent: initial;
    position: initial;
}

h1 {
    width: 100%;
    font-weight: normal;
    /* 	position: absolute;
	bottom: 200%; */
    font-size: 12px;
}

h2 {
    font-size: 40px;
}

h3 {
    margin-bottom: 20px;
    font-size: 34px;
}

h4 {
    margin-bottom: 30px;
    font-size: 24px;
}

h5 {
    margin-bottom: 20px;
    font-size: 18px;
}

.map {
    overflow: hidden;
    position: relative;
}

.map:after {
    content: "";
    display: block;
    padding-top: 50%;
}

.map iframe {
    width: 100%;
    max-width: initial;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.scale {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.scale:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pic {
    width: 100%;
    text-align: center;
}

.pic img {
    width: 100%;
}



/*フレックス*/

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    justify-content: center;
}

.flexs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.columnreverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.rowreverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/*align-item*/

.itemstart {
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

.itemcenter {
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.itemend {
    -webkit-box-align: end;
    align-items: flex-end;
    -ms-flex-align: end;
}

/*align-content*/

.contentstart {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.contentcenter {
    -ms-flex-line-pack: center;
    align-content: center;
}

.contentend {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

/*align-self*/

.selfstart {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.selfcenter {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.selfend {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

/* 見たまま編集バリデーション */

.flex>div[data-collection-list-content],
.flexc>div[data-collection-list-content],
.flexs>div[data-collection-list-content],
.flexb>div[data-collection-list-content] {
    width: 100%;
}

.flex>div[data-recommend-collection-list-content],
.flexc>div[data-recommend-collection-list-content],
.flexs>div[data-recommend-collection-list-content],
.flexb>div[data-recommend-collection-list-content] {
    width: 100%;
}

.flex>div[data-collection-filtered-content],
.flexc>div[data-collection-filtered-content],
.flexs>div[data-collection-filtered-content],
.flexb>div[data-collection-filtered-content] {
    width: 100%;
}

.flex>div[data-collection-archive-content],
.flexc>div[data-collection-archive-content],
.flexs>div[data-collection-archive-content],
.flexb>div[data-collection-archive-content] {
    width: 100%;
}

.flex>div[data-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexc>div[data-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    justify-content: center;
}

.flexs>div[data-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexb>div[data-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex>div[data-recommend-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexc>div[data-recommend-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    justify-content: center;
}

.flexs>div[data-recommend-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexb>div[data-recommend-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex>div[data-collection-filtered-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexc>div[data-collection-filtered-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    justify-content: center;
}

.flexs>div[data-collection-filtered-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexb>div[data-collection-filtered-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex>div[data-collection-archive-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexc>div[data-collection-archive-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    justify-content: center;
}

.flexs>div[data-collection-archive-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexb>div[data-collection-archive-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

[data-element-id] [class*="heightLine"] {
    height: auto !important;
}

.w65 {
    width: 65%;
}

.w60 {
    width: 60%;
}

.w55 {
    width: 55%;
}

.w50 {
    width: 50%;
}

.w48 {
    width: 48%;
}

.w45 {
    width: 45%;
}

.w40 {
    width: 40%;
}

.w35 {
    width: 35%;
}

.w30 {
    width: 30%;
}

.w25 {
    width: 25%;
}

[data-element-id] #wrapper {
    opacity: 1;
}

#wrapper {
    overflow: hidden;
}

.inner {
    width: 92%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 0;
}

.inner.new{
    padding: 50px 0;
}
.inner.new01{
    padding: 0;
}
.inner.new02{
    padding: 100px 0 0;
}

.subtit {
    overflow: hidden;
    position: relative;
}

.subtit h2 {
    width: 100%;
    text-align: center;
}

.subtit img {
    width: 100%;
}

.more {
    width: 80%;
    max-width: 200px;
    margin: 50px auto 0 auto;
    text-align: center;
}

.more a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    background: #000;
}

@media (max-width: 1024px) {
    .bkimg {
        position: relative;
    }

    .bkimg img {
        min-width: initial !important;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    h4 {
        font-size: 20px;
    }

    a[href*="tel"] {
        pointer-events: initial !important;
    }

    .flex {
        max-width: 768px;
        margin: 0 auto;
    }

    .flexc {
        max-width: 768px;
        margin: 0 auto;
    }

    .flexs {
        max-width: 768px;
        margin: 0 auto;
    }

    .flexb {
        max-width: 768px;
        margin: 0 auto;
    }

    .inner {
        width: 93%;
        max-width: 768px;
        padding: 40px 0;
    }

    .more {
        margin: 40px auto 0 auto;
    }
    .w50.new{
        width: 100%;
        margin: 2% 0;
    }
    .inner.new02{
        padding: 60px 0 0;
    }
    
}

@media (max-width: 599px) {
    h2 {
        font-size: 28px;
    }

    h3 {
        margin-bottom: 10px;
        font-size: 22px;
    }

    h4 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    h5 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .flex {
        max-width: 450px;
    }

    .flexc {
        max-width: 450px;
    }

    .flexs {
        max-width: 450px;
    }

    .flexb {
        max-width: 450px;
    }

    .flexb.blk {
        display: block;
    }

    .w70 {
        width: 100%;
        margin: 2% 0;
    }

    .w65 {
        width: 100%;
        margin: 2% 0;
    }

    .w60 {
        width: 100%;
        margin: 2% 0;
    }

    .w55 {
        width: 100%;
        margin: 2% 0;
    }

    .w50 {
        width: 100%;
        margin: 2% 0;
    }

    .w48 {
        width: 100%;
        margin: 2% 0;
    }

    .w45 {
        width: 100%;
        margin: 2% 0;
    }

    .w40 {
        width: 100%;
        margin: 2% 0;
    }

    .w35 {
        width: 100%;
        margin: 2% 0;
    }

    .w30 {
        width: 100%;
        margin: 2% 0;
    }

    .w25 {
        width: 100%;
        margin: 2% 0;
    }

    .inner {
        width: 94%;
        max-width: 450px;
        padding: 30px 0;
    }

    .more {
        margin: 30px auto 0 auto;
    }
    .inner.new02{
    padding: 50px 0 0;
}
}

/* ハンバーガー */

@media (max-width: 1024px) {
    #gnav .toggle {
        width: 42px;
        height: 42px;
        display: block !important;
        background: #170302;
        opacity: 0.8;
        cursor: pointer;
        position: fixed !important;
        top: 0px;
        right: 0px;
        z-index: 251;
    }

    #gnav .toggle .bar {
        width: 28px;
        height: 2px;
        display: block;
        margin-top: -1px;
        padding: 0;
        text-indent: 9999px;
        background: #fff;
        -webkit-transition: ease 0.40s;
        transition: ease 0.40s;
        position: absolute;
        top: 50%;
        left: 7px;
    }

    #gnav .toggle .bar:before {
        content: "";
        width: 28px;
        height: 2px;
        display: block;
        background: #fff;
        position: absolute;
        top: -10px;
        left: 0;
    }

    #gnav .toggle .bar:after {
        content: "";
        width: 28px;
        height: 2px;
        display: block;
        background: #fff;
        position: absolute;
        top: 10px;
        left: 0;
    }

    #gnav.action .toggle .bar {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #gnav.action .toggle .bar:after,
    #gnav.action .toggle .bar:before {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        top: 0;
        left: 0;
    }

    #gnav .accordion-body {
        width: 100%;
        height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(255, 255, 255, 0.9);
        opacity: 0;
        -webkit-transition: height ease 0.1s, opacity ease 0.4s;
        transition: height ease 0.1s, opacity ease 0.4s;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        position: fixed !important;
        top: 0;
        left: 0;
        z-index: -10;
    }

    #gnav.action .accordion-body {
        height: 100%;
        opacity: 1;
        z-index: 250;
    }

    #gnav .accordion-inner {
        width: 100%;
        padding: 60px 10px 100px 10px;
    }

    #gnav li {
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
        border: none;
        border-bottom: 1px solid #ddd;
    }
    
    #gnav li .list02 .item02{
       border-bottom: 1px solid #ddd;
    }
    #gnav li .list02 .item02:last-child{
       border-bottom: none;
    }

    #gnav ul li a {
        display: block;
        padding: 10px 15px;
        color: #000;
        text-align: left;
        border: none;
    }

    .overlay:after {
        content: "";
        width: 100%;
        height: 100vh;
        background: #000;
        opacity: 0.3;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 150;
    }
}

.mb3r {
    margin-bottom: 3rem;
}

.mb2r {
    margin-bottom: 2rem;
}

.mb1r {
    margin-bottom: 1rem;
}

.mb10p {
    margin-bottom: 10%;
}

.mb6p {
    margin-bottom: 6%;
}

.mb100 {
    margin-bottom: 100px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb50 {
    margin-bottom: 50px;
}

.center_p {
    margin-left: auto;
    margin-right: auto;
}

.tac {
    text-align: center;
}

.tar {
    text-align: right;
}

.lh2 {
    line-height: 2;
}

.lh3 {
    line-height: 3;
}

.onel,
.onel a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.none {
    display: none;
}

.tab_sm {
    display: none;
}

.left_side {
    padding-right: 2rem;
}

.right_side {
    padding-left: 2rem;
}

figure,
figcaption {
    margin: 0;
    padding: 0;
}

.inner.wide {
    width: 100%;
    max-width: none;
}


.mcr {
    color: var(--color01);
}

.mcb {
    color: var(--color02);
}

.bgmcb {
    background: var(--color02);
}

.bgg {
    background: #f6f6f6;
}

.subtit_t {
    margin-bottom: 2rem;
    font-weight: normal;
    font-size: 46px;
    letter-spacing: 4px;
    text-align: center;
}

.subtit_t span {
    display: block;
    font-size: 0.4em;
    letter-spacing: 2px;
}

.btn_wrap a {
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid #000;
    position: relative;
}

.btn_wrap a:after {
    content: "\f054";
    padding-left: 1rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.btn_wrap.back a::after {
    content: none;
}
.btn_wrap.back a::before {
    content: "\f053";
    padding-right: 1rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.rec-btn .btn_wrap a {
    display: block;
    padding: 1rem 0;
}

.btn {
    display: block;
    margin: 0 auto;
    padding: 1em;
    color: #000;
}

.btn span {
    display: inline-block;
}

.btn2 {
    display: block;
    margin: 0 auto;
    padding: 1em;
}

.btn2 span {
    display: inline-block;
}

.tel a {
    color: #000;
}

.overlay {
    overflow: hidden;
}

/********** 画像表示 **********/
.up-ofi {
    width: 100%;
    overflow: hidden;
}

.up-ofi img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    font-family: "object-fit: cover; object-position: center center;";
}

/********************************
/********************************

m_common

********************************/
@media (max-width: 1024px) {
    .tab_sm {
        display: block;
    }
    .left_side {
        padding-right: 1rem;
    }
    .right_side {
        padding-left: 1rem;
    }
    .inner.wide {
        width: 93%;
        max-width: 768px;
        padding: 40px 0;
    }

    .inner.wide.new01.pt{
        padding: 10px 0 40px;
    }
    .inner.wide.new01.pt02{
        padding: 0;
    }

    .subtit_t {
        margin-bottom: 2rem;
        font-weight: normal;
        font-size: 32px;
        letter-spacing: 2px;
    }
    .subtit_t span {
        display: block;
        font-size: 0.6em;
        letter-spacing: 0;
    }
}

@media(max-width: 599px){
      .inner.new{
        padding: 20px 0;
    }
    .inner.wide.new01.mt{
      padding-top: 0;
    }
}

.fifty_box .txt_side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.fifty_box .txt_side .txt {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
}
.fifty_box .txt_side .txt.txtpt2 {
    width: 100%;
    max-width: 700px;
    padding: 0;
}
.fifty_box .txt_side .txt {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
}
.fifty_box .txt_side.wid .txt {
    width: 100%;
    padding: 2rem;
    max-width: none;
}
.fifty_box.new .txt_side .txt{
    padding: 0;
}
@media (max-width: 1024px){
    .fifty_box.new .txt_side .txt{
    max-width: 100%;
}
.fifty_box .txt_side.wid .txt {
   padding: 0;
}
}
/********************************

s_common

********************************/
@media (max-width: 599px) {
    .left_side {
        padding-right: 0;
    }
    .right_side {
        padding-left: 0;
    }
    .fifty_box.new .txt_side .txt{
        padding: 0;
    }
}

/********************************
/********************************
/********************************

l_header

********************************/
#header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 100;
}

#header.fixed {
    -webkit-box-shadow: 0 0 5px 0 #999;
            box-shadow: 0 0 5px 0 #999;
    position: fixed;
    top: 0;
    left: 0;
}

#header .logo {
    width: 23%;
    max-width: 322px;
    margin: 0 auto 0 1%;
}

.h-inner {
    width: 100%;
    max-width: 1500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin: -20px auto 0;
}

.h-inner #gnav {
    width: 76%;
}

.h-inner #gnav .accordion-body {
    width: calc(100% - 200px);
}

.h-inner #gnav .gnav_ul {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.h-inner #gnav .gnav_ul li a {
    padding: 1rem 0.75rem;
}

.h-inner #gnav .gnav_ul li.top {
    display: none;
}

.h-inner #gnav .fixed_ul .t-contact {
    width: 200px;
}

.h-inner #gnav .fixed_ul .t-contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem;
    color: #fff;
    line-height: 2.25rem;
    text-align: center;
    background: var(--color01);
    position: relative;
}

/* .h-inner #gnav .fixed_ul .t-contact a::after {
    content: "";
    width: 100%;
    height: 100vh;
    background: var(--color01);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
} */

.h-inner #gnav .fixed_ul .t-contact.ab a {
    background: var(--color02);
}

.h-inner #gnav .fixed_ul .t-contact .s {
    display: block;
}

.h-inner #gnav .fixed_ul .t-contact .h-tel {
    padding-left: 24px;
    position: relative;
}

.h-inner #gnav .fixed_ul .t-contact .h-tel:before {
    content: "";
    width: 20px;
    height: 26px;
    display: block;
    background: url('/import/tenant_1/162.43.9.229/noda/images/tel.webp') no-repeat;
    background-size: contain;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
}

.h-inner #gnav .fixed_ul .t-contact .h-tel:after {
    content: attr(data-ruby);
    width: 150%;
    margin: auto;
    letter-spacing: -2px;
    text-align: right;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: right;
    transform-origin: right;
    position: absolute;
    top: -1rem;
    right: 0;
}

.h-inner #gnav .fixed_ul .t-contact rt {
    display: none;
}

#gnav .-parent {
    cursor: pointer;
    position: relative;
}
#gnav .-parent .a {
    padding: 0 0.75em 0;
}
#gnav .-parent:hover .list02 {
    visibility: visible;
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
#gnav .list02 {
    width: 220px;
    visibility: hidden;
    padding-top: 10px;
    background: rgba(255,255,255,1) content-box;
    opacity: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 100%;
    left: 50%;
}
#gnav .item02 a {
    display: block;
    padding: 5px;
    font-size: 14px;
    text-align: center;
    -webkit-transition: none;
    transition: none;
}
#gnav .item02 a:hover {
    color: #fff;
    background: var(--color02);
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
@media (max-width: 1024px) {
    .h-inner #gnav .fixed_ul .t-contact a {
        padding: 0.2rem 0;
        line-height: 1.6;
    }
    .h-inner #gnav .fixed_ul .t-contact a::after {
        content: none;
    }
    #gnav .item02 a:hover {
        color: initial;
        background: initial;
        opacity: 0.6;
    }
    #gnav .list02 {
        width: 100%;
        visibility: visible;
        padding-top: 0;
        padding-left: 20px;
        padding-right: 10px;
        background: none;
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        position: relative;
        top: 0;
        left: 0;
    }
    #gnav .list02 a {
        padding: 2px 0 2px 20px;
        text-align: left;
        position: relative;
    }
    #gnav .list02 a:before {
        content: "";
        width: 10px;
        height: 1px;
        display: block;
        background: #b8b8b8;
        position: absolute;
        top: 20px;
        left: 0;
    }
}

/********************************
/********************************

m_header

********************************/
@media (max-width: 1024px) {
    #header {
        padding: 0.5rem;
        position: relative;
        z-index: 151;
    }
    #header .logo {
        width: 40%;
        max-width: none;
    }
    .h-inner {
        margin: 0px 0 auto;
    }
    .h-inner #gnav .gnav_ul li a {
        padding: 10px 15px;
        font-size: 14px;
    }
    .h-inner #gnav .fixed_ul {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 50;
    }
    .h-inner #gnav .fixed_ul>div {
        width: 50%;
    }

    .h-inner #gnav .fixed_ul .t-contact {
        width: 100%;
        font-size: 16px;
        border-bottom: none;
        border-right: 1px solid #fff;
    }
    .h-inner #gnav .fixed_ul .res_btn {
        width: 50%;
        border: none;
        position: relative;
    }
    .h-inner #gnav .fixed_ul .res_btn a {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
        font-size: 16px;
        color: #fff;
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }
    .h-inner #gnav .fixed_ul .res_btn a:after {
        padding-left: 1rem;
        font-size: 2rem;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        position: static;
    }
    .h-inner #gnav .gnav_ul li.top {
        display: block;
    }
    .h-inner #gnav .accordion-body {
        width: 100%;
    }
    #gnav .toggle {
        background: #fff;
    }
    #gnav .toggle .bar,
    #gnav .toggle .bar:before,
    #gnav .toggle .bar:after {
        background: var(--color01);
    }
    #gnav .-parent .a {
    padding: 0.5em 0.75em 0;
}
}

/********************************

s_header

********************************/
@media (max-width: 599px) {
    #header .logo {
        width: 60%;
    }
    .h-inner #gnav .fixed_ul .t-contact a {
        font-size: 14px;
    }
    .h-inner #gnav .fixed_ul .res_btn a {
        font-size: 14px;
    }
    .h-inner #gnav .fixed_ul .res_btn a:after {
        padding-left: 0.5rem;
        font-size: 1rem;
    }
}

/********************************
/********************************
/********************************

l_footer

********************************/
.f-contact {
    border-bottom: 1px solid #ccc;
}

.f-contact .inner {
    padding: 0;
}

.f-contact .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 50px 2rem;
}

.f-contact .box:first-of-type {
    border-right: 1px solid #ccc;
}

.f-contact .box .tel {
    width: 100%;
    text-align: center;
}

.f-contact .box .tel a {
    font-size: 56px;
    color: var(--color01);
    letter-spacing: 2px;
}

.f-contact .box .tel a {
    padding-left: 44px;
    position: relative;
}

.f-contact .box .tel a:before {
    content: "";
    width: 36px;
    height: 48px;
    background-color: var(--color01);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;

    -webkit-mask-image: url('/import/tenant_1/162.43.9.229/noda/images/f-tel.webp');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('/import/tenant_1/162.43.9.229/noda/images/f-tel.webp');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.f-contact .box .tel a:after {
    content: attr(data-ruby);
    width: 150%;
    margin: auto;
    letter-spacing: -2px;
    text-align: right;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: right;
    transform-origin: right;
    position: absolute;
    top: -1.5rem;
    right: 0;
}

.f-contact .box .tel rt {
    display: none;
}

.f-contact .box .mail {
    width: 100%;
}

.f-contact .box .mail a {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    padding: 1.5rem 4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    background: var(--color01);
    position: relative;
}

.f-contact .box .mail a:before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.75em;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 1.5rem;
}

.f-contact .box .mail a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.75em;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 1.5rem;
}

.f-nav li {
    font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: bold;
}

.f-nav li a,
.f-nav li .a {
    display: inline-block;
    padding: 0.5rem 0;
    font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    color: #666;
}
.f-nav li .a {
    font-weight: bold;
}

.f-nav li li a {
    padding-left: 0.5rem;
}

.f-nav li ul {
    width: 100%;
}

.f-nav li li {
    padding-left: 1rem;
    font-weight: normal;
    position: relative;
}

.f-nav li li:before {
    content: "└";
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
}

.f-nav ul.sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.f-nav ul.sub li {
    width: 46%;
    margin: 0 2%;
}

.copy {
    padding: 1rem;
    font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 12px;
    color: #888;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

/*トップへ戻る*/

.totop {
    width: 3rem;
    height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    border: solid 2px;
    background: var(--color02);
    cursor: pointer;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 50;
}

.totop:before {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}

.res_btn {
    background: var(--color01);
    position: fixed;
    top: 35%;
    right: 0;
    z-index: 50;
}

.res_btn a {
    display: inline-block;
    padding: 1rem 0.5rem;
    padding-bottom: 3.5rem;
    font-size: 18px;
    color: #fff;
    letter-spacing: 2px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    position: relative;
}

.res_btn a:after {
    content: "\f199";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2.5rem;
    color: #fff;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    position: absolute;
    bottom: 0;
    left: 50%;
}

_:-ms-fullscreen,
:root .res_btn a:after {
    -ms-writing-mode: lr-tb;
        writing-mode: lr-tb;
    left: 13%;
}
/********************************
/********************************

m_footer

********************************/
@media (max-width: 1024px) {
    .f-contact .box {
        width: 100%;
        padding: 4rem 2rem 2rem;
    }
    .f-contact .box:first-of-type {
        padding: 2rem;
        border-right: none;
    }
    .f-contact .box:first-of-type .subtit_t {
        margin-bottom: 0;
    }
    .f-nav ul li ul,
    .f-nav ul.has_child li ul {
        width: 100%;
        margin: 0;
    }
    .totop {
        bottom: 5rem;
        right: 5px;
    }
}

.copy {
    padding-bottom: 100px;
}

/********************************
/********************************
/********************************

l_toppage

********************************/

/* A-BiSUスライダー用 */
.mainimage {
    position: relative;
}
.mainimage img {
    width: 100%;
}
.mainimage .uk-slidenav-position {
    min-height: 300px;
    overflow: hidden;
    position: relative;
}
.mainimage .uk-slidenav-position:after {
    content: "";
    display: block;
    padding-top: 50%;
}
.mainimage .uk-slideshow {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
}
.mainimage .uk-slideshow li {
    height: 100% !important;
}
.mainimage .uk-slideshow .uk-flex {
    height: 100%;
}
.mainimage .uk-slideshow img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    /*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
}

.mainimage .h2_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.toppage .mainimage .h2_wrap {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.mainimage .h2_wrap .h {
    width: 100%;
    height: 100%;
    padding: 3rem;
    font-weight: normal;
    letter-spacing: 0.5em;
    outline: 1px solid #fff;
    outline-offset: 10px;
    position: relative;
}

.mainimage .h2_wrap .h .sub{
    letter-spacing: 1.6px;
}


.homevisual .img:before {
    content: "";
    display: block;
    padding-top: 50%;
    position: relative;
    z-index: -1;
}
.homevisual .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    /*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.t-concept .up-ofi {
    max-height: 750px;
    position: relative;
}

.t-concept .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.t-concept .up-ofi:before {
    content: "";
    display: block;
    padding-top: 110%;
}

.t-concept .fifty_box .txt_side {
    background: var(--color02);
}

.t-concept .fifty_box .txt_side .h {
    font-weight: normal;
    letter-spacing: 4px;
}

.t-concept .fifty_box .txt_side .txt {
    margin-right: auto;
    letter-spacing: 2px;
}

.t-concept .fifty_box .txt_side .txt * {
    color: #fff;
}

.t-concept .fifty_box .txt_side .lead .s {
    font-size: 1.35em;
}

.t-concept .fifty_box .txt_side .btn_wrap a {
    border-bottom: 1px solid #fff;
}

.t-feature .wrap .fifty_box .h {
    margin-bottom: 0.5rem;
    font-weight: normal;
    font-size: 26px;
    text-align: center;
}

.t-feature .wrap .fifty_box .h span {
    display: block;
    text-align: center;
}

.t-feature .wrap .fifty_box .h .s {
    color: var(--color02);
}

.t-feature .wrap .fifty_box .h .no {
    font-size: 166px;
    color: var(--color02);
    line-height: 1;
}

.t-feature .wrap .fifty_box .up-ofi {
    max-height: 470px;
    position: relative;
}

.t-feature .wrap .fifty_box .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.t-feature .wrap .fifty_box .up-ofi:before {
    content: "";
    display: block;
    padding-top: 90%;
}

.t-feature .wrap .fifty_box .txt {
    margin-left: auto;
}

_:-ms-fullscreen,
:root .t-feature .wrap .fifty_box .txt {
    margin-right: 15%;
}

.t-feature .wrap .fifty_box:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.t-feature .wrap .fifty_box:nth-of-type(even) .txt {
    margin: 0 auto 0 0;
}

.t-menu .inner {
    padding-bottom: 0;
}

.t-menu_li .t {
    padding: 1rem 0;
    padding-right: 1rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border-bottom: 1px solid #000;
    position: relative;
}

.t-menu_li .t:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 0;
}

.t-menu_li a {
    display: block;
}

.t-menu_li .up-ofi {
    position: relative;
}
.t-menu_li .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.t-menu_li .up-ofi:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.t-article .box {
    padding: 3rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.t-article .box .dl_wrap {
    padding: 0 3rem;
}

.t-article .box dl {
    margin-bottom: 1rem;
}

.t-article .box .cat {
    width: 100%;
    margin-bottom: 5px;
    font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    line-height: 120%;
}

.t-article .box .cat span {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 5px 10px;
    font-size: 12px;
    color: #fff;
    background: var(--color02);
}

.t-article .box dt {
    width: 100%;
}

.t-article .box .date {
    width: 7rem;
    padding-right: 1rem;
}

.t-article .box .t {
    width: calc(100% - 7rem);
}

.t-article .box .t a {
    font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 18px;
    text-decoration: underline;
}

.t-faq .txt_side {
    background: var(--color02);
}

.t-faq .txt_side .txt {
    height: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.t-faq .txt_side .subtit_wrap {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.t-faq .txt_side .subtit_t {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-bottom: 0;
    margin-left: auto;
    color: #fff;
}

_:-ms-fullscreen,
:root .t-faq .txt_side .subtit_t {
    margin-right: 15%;
}

.t-faq .txt_side .btn_box {
    width: 100%;
    height: 30%;
    margin-left: auto;
    background: #fff;
}

.t-faq .txt_side .btn_wrap {
    width: 400px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-item-align: end;
    align-self: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
}

.t-faq .faq_side {
    width: 600px;
}

.t-faq .dl_wrap {
    padding-left: 3rem;
}

.t-faq dl {
    margin-bottom: 3rem;
}

.t-faq dt,
.t-faq dd {
    padding-left: 3rem;
    position: relative;
}

.t-faq dt:before,
.t-faq dd:before {
    font-size: 40px;
    line-height: 0.5;
    position: absolute;
    top: 0;
}

.t-faq dt {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ccc;
}

.t-faq dt:before {
    content: "Q";
    color: var(--color02);
    left: 0;
}

.t-faq dd {
    padding-left: 6rem;
    padding-right: 2rem;
}

.t-faq dd a {
    text-decoration: underline;
}

.t-faq dd:before {
    content: "A";
    color: var(--color01);
    left: 3rem;
}

.t-greeting .txt_side {
    padding: 3rem 3rem 5rem;
    background: var(--color02);
    position: relative;
}

.t-greeting .txt_side .txt {
    min-width: 520px;
    max-width: 640px;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.t-greeting .txt_side .txt * {
    color: #fff;
    border-color: #fff;
}

.t-greeting .txt_side .txt .subtit_t {
    text-align: left;
}

.t-greeting .up-ofi {
    max-height: 350px;
    z-index: -1;
}

.t-greeting .up-ofi img {
    opacity: 0.1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.t-greeting .btn_wrap {
    text-align: right;
}

.t-greeting .pic_wrap {
    width: 400px;
    margin-left: auto;
    padding: 0 3rem;
}

.t-greeting .pic_wrap .pic {
    width: 80%;
    margin: 0 auto 2rem;
}

.t-greeting .pic_wrap .s {
    padding-right: 1rem;
}

.t-access .gmap {
    max-height: 600px;
    position: relative;
}

.t-access .gmap iframe,
.t-access .gmap object,
.t-access .gmap embed {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.t-access .gmap:before {
    content: "";
    display: block;
    padding-top: 70%;
}

.t-access .txt_side {
    width: 500px;
    margin-right: auto;
    padding: 0 3rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.t-access .txt_side .logo {
    width: 80%;
    margin: 0 auto 1rem;
}

.t-access .txt_side dl {
    width: 100%;
    margin-bottom: 2rem;
}

.t-access .txt_side dt {
    margin-bottom: 0.5rem;
}

.t-access .txt_side .table {
    width: 100%;
}

.t-access .txt_side table {
    width: 100%;
    border: 2px solid var(--color02);
    border-spacing: 0;
    border-collapse: collapse;
}

.t-access .txt_side th,
.t-access .txt_side td {
    padding: 0.75rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}

.t-access .txt_side thead {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    border: 1px solid var(--color02);
    background: var(--color02);
}

.t-access .txt_side thead th {
    font-weight: normal;
}

.t-access .txt_side tbody th,
.t-access .txt_side tbody td {
    color: var(--color02);
    border: 1px solid var(--color02);
}

.t-banner {
    position: relative;
}

.t-banner:after {
    content: "";
    width: 100%;
    height: 200px;
    display: block;
    background: #f6f6f6;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.official_bnr {
    height: 100%;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    border: 2px solid var(--color02);
    background: #fff;
}

.official_bnr a {
    height: 100%;
    display: block;
}

.official_bnr .pic {
    width: 70%;
    margin: 0 auto 1.5rem;
    padding-top: 2rem;
}

.official_bnr .t {
    width: 100%;
    padding: 1rem;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background: var(--color02);
    position: relative;
}

.official_bnr .t:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 1rem;
}

/********************************
/********************************

m_toppage

********************************/
@media (max-width: 1024px) {
    .mainimage {
        max-width: 768px;
        margin: 0 auto;
    }

    .uk-slidenav-position:after {
        padding-top: 50%;
    }
    .mainimage .h2_wrap {
        width: 70%;
    }
    .mainimage .h2_wrap .h {
        padding: 2rem;
    }
    .t-concept .up-ofi:before {
        padding-top: 50%;
    }
    .t-concept .fifty_box .w50 {
        width: 100%;
    }
    .t-concept .fifty_box .txt_side {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .t-concept .fifty_box .txt_side .txt {
        max-width: none;
        padding: 2rem 2rem 3rem;
    }
    .t-concept .fifty_box .txt_side .h {
        font-size: 32px;
    }
    .t-concept .fifty_box .txt_side .lead {
        font-size: 18px;
    }
    .t-feature .wrap .fifty_box {
        margin-bottom: 3rem;
    }
    .t-feature .wrap .fifty_box:last-of-type {
        margin-bottom: 0;
    }
    .t-feature .wrap .fifty_box .w50 {
        width: 100%;
    }
    .t-feature .wrap .fifty_box .txt {
        max-width: 600px;
        margin: 0 auto 1rem;
        padding: 0;
    }
    .t-feature .wrap .fifty_box .h .no {
        margin: 1rem 0;
        font-size: 66px;
    }
    .t-feature .wrap .fifty_box .up-ofi:before {
        padding-top: 60%;
    }
    .t-feature .wrap .fifty_box:nth-of-type(even) .txt {
        margin: 0 auto 1rem;
    }
    .t-article .box {
        width: 100%;
    }
    .t-article .box .dl_wrap {
        padding: 0;
    }
    .t-article .box:first-of-type {
        margin-bottom: 40px;
    }
    .t-faq .flex {
        position: relative;
    }
    .t-faq .w60 {
        width: 93%;
        max-width: 768px;
        margin: auto;
        padding: 40px 0;
    }
    .t-faq .dl_wrap {
        padding-left: 0;
    }
    .t-faq .txt_side {
        width: 100%;
        margin-bottom: 3rem;
    }
    .t-faq .txt_side .btn_box {
        height: auto;
        position: absolute;
        bottom: -3rem;
        left: 0;
    }
    .t-faq .txt_side .btn_box .btn_wrap {
        width: auto;
    }
    .t-faq .txt_side .txt {
        height: 100%;
    }
    .t-faq .txt_side .subtit_t {
        margin: 0;
    }
    .t-faq .faq_side {
        width: 100%;
    }
    .t-greeting .w40 {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .t-greeting .pic_wrap {
        width: 60%;
        margin: 1rem auto 0;
    }
    .t-greeting .pic_wrap .pic {
        margin: 0 auto 1rem;
    }
    .t-greeting .txt_side {
        width: 100%;
    }
    .t-greeting .txt_side .txt {
        width: 100%;
        min-width: auto;
        max-width: none;
    }
    .t-access .w50 {
        width: 100%;
        margin-bottom: 2rem;
    }
    .t-access .w50:first-of-type {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .t-access .txt_side {
        width: 100%;
    }
    .t-access .txt_side .logo {
        width: 60%;
    }
    .t-access .gmap:before {
        padding-top: 60%;
    }
    .t-banner .w45 {
        width: 80%;
        margin: 0 auto 1rem;
    }
    .f-contact .box .tel {
        margin-bottom: 2rem;
    }
}

/********************************

s_toppage

********************************/
@media (max-width: 599px) {
    .mainimage .h2_wrap .h .sub{
    letter-spacing: -0.1px;
}
    .mainimage {
        max-width: 450px;
    }
    .mainimage .up-ofi:before {
        padding-top: 75%;
    }
    .mainimage .h2_wrap {
        width: 90%;
    }
    .mainimage .h2_wrap .h {
        padding: 0.5rem;
        font-size: 20px;
        letter-spacing: 2px;
    }
    .t-concept .fifty_box .txt_side .h {
        font-size: 28px;
    }
    .t-concept .fifty_box .txt_side .lead {
        font-size: 16px;
    }
    .t-concept .fifty_box .txt_side {
        margin: 0;
    }
    .t-concept .fifty_box .w50 {
        margin: 0;
    }
    .t-feature .wrap .fifty_box .h {
        font-size: 20px;
    }
    .t-feature .wrap .fifty_box .h .no {
        margin: 0.1rem 0 1rem;
        font-size: 46px;
    }
    .t-feature .wrap .fifty_box {
        margin-bottom: 2rem;
    }
    .t-article .box .t-article .box .date {
        width: 100%;
        padding-right: 0;
    }
    .t-article .box .t {
        width: 100%;
    }
    .t-faq .txt_side {
        margin-bottom: 0;
    }
    .t-faq dd {
        padding-left: 4rem;
        padding-right: 0;
    }
    .t-faq dd:before {
        left: 1rem;
    }
    .t-greeting .txt_side {
        padding: 1rem 1rem 2rem;
    }
    .t-greeting .pic_wrap {
        width: 100%;
    }
    .t-access .txt_side {
        padding: 0;
    }
    .t-access .txt_side .logo {
        width: 80%;
    }
    .t-banner .w45 {
        width: 100%;
    }
    .t-banner .w45 .pic {
        width: 100%;
    }
    .t-banner .w45 .official_bnr .pic {
        width: 80%;
    }
    .t-banner .w45 .official_bnr .t {
        font-size: 14px;
    }
    .f-ks .f-contact {
        padding-top: 30px;
    }
    .f-contact .box:first-of-type {
        padding: 0;
    }
    .f-contact .box {
        padding: 3rem 0 1rem;
    }
    .f-contact .box .tel a {
        font-size: 32px;
    }
    .f-contact .box .mail a {
        width: 100%;
    }
}

/********************************
/********************************
/********************************

l_underpage

********************************/
.u-mainimage .mainimage .img {
    width: 80%;
    margin-right: auto;
    position: relative;
}

.u-mainimage .mainimage .up-ofi:before {
    padding-top: 50%;
}

.u-mainimage .mainimage .h2_wrap {
    min-width: 400px;
    height: 50%;
    background: #fff;
    left: initial;
    right: 10%;
}

.u-mainimage .mainimage .h2_wrap .h {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 1rem 2.5rem;
    letter-spacing: 4px;
}

.breadclumb .inner {
    padding: 50px 0;
}

/********************************
/********************************

m_underpage

********************************/
@media (max-width: 1024px) {
    .u-mainimage .mainimage .img {
        width: 100%;
    }
    .u-mainimage .mainimage .h2_wrap {
        width: 60%;
        min-width: auto;
        height: auto;
        background: rgba(255, 255, 255, 0.8);
        /* -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        top: auto;
        bottom: 15px;
        right: 15px; */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto;
        right: auto;
    }
    .u-mainimage .mainimage .h2_wrap .h {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 1rem;
        text-align: center;
    }
}

/********************************

s_underpage

********************************/
@media (max-width: 599px) {
    .u-mainimage .mainimage .h2_wrap {
        width: 80%;
    }
    .u-mainimage .mainimage .h2_wrap .h {
        padding: 0.5rem;
        font-size: 18px;
    }
    .u-mainimage .mainimage .up-ofi:before {
        padding-top: 75%;
    }
}

/********************************
/********************************
/********************************

l_guide

********************************/
.guide01 {
    background: var(--color02);
    position: relative;
}

.guide01 .txt_wrap {
    position: relative;
    z-index: 2;
}

.guide01 .txt_wrap * {
    color: #fff;
}

.guide01 .pic {
    position: initial;
}

.guide01 .up-ofi img {
    opacity: 0.1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.guide02 .txt_wrap {
    width: 550px;
    margin-right: auto;
    padding: 0 2rem;
}

.guide02 .txt_wrap dt {
    width: 30%;
    padding: 0 1rem 2rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    color: var(--color02);
}

.guide02 .txt_wrap dd {
    width: 70%;
    padding: 0 0 2rem 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-left: 1px solid #bfbfbf;
}

.guide02 .up-ofi {
    max-height: 900px;
    position: relative;
}

.guide02 .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.guide02 .up-ofi:before {
    content: "";
    display: block;
    padding-top: 70%;
}

.guide03 figure .pic {
    margin-bottom: 1rem;
}

.guide03 figure .up-ofi {
    position: relative;
}

.guide03 figure .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.guide03 figure .up-ofi:before {
    content: "";
    display: block;
    padding-top: 65%;
}


.guide04 .gmap {
    height: 0;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 56.25%;
    position: relative;
}

.guide04 .gmap iframe,
.guide04 .gmap object,
.guide04 .gmap embed {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/********************************
/********************************

m_guide

********************************/
@media (max-width: 1024px) {
    .guide01 .fs26 {
        font-size: 18px;
    }
    .guide02 .w45 {
        width: 100%;
    }
    .guide02 .w45 .pic {
        width: 80%;
        margin: 0 auto 1rem;
    }
    .guide02 .w55 {
        width: 100%;
    }
    .guide02 .w55 .txt_wrap {
        width: 100%;
    }
}

/********************************

s_guide

********************************/
@media (max-width: 599px) {
    .guide01 .fs26 {
        font-size: 16px;
    }
    .guide02 .txt_wrap {
        padding: 0;
    }
    .guide02 .txt_wrap dl {
        margin-bottom: 1rem;
    }
    .guide02 .txt_wrap dt {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0;
    }
    .guide02 .txt_wrap dd {
        width: 100%;
        padding: 0.5rem 0 0.5rem 0.5rem;
    }
}

/********************************
/********************************
/********************************

l_staff

********************************/
.staff01 h3 {
    letter-spacing: 0.25em;
}

.staff01 h3 .pos {
    padding-right: 0.5rem;
    font-size: 0.75em;
    color: #000;
}

.staff01 .txt_wrap {
    width: 450px;
    margin-left: auto;
    padding: 0 2rem;
}

.staff01 .up-ofi {
    max-height: 900px;
    position: relative;
}

.staff01 .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.staff01 .up-ofi:before {
    content: "";
    display: block;
    padding-top: 70%;
}

.staff02 .dl_list dt {
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    color: #fff;
    background: var(--color02);
}

.staff02 .dl_list dd li {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 0.5rem;
    padding-left: 1em;
    font-size: 18px;
    text-indent: -1em;
}
.staff-num{
    padding-right: 1em;
}

/********************************
/********************************

m_staff

********************************/
@media (max-width: 1024px) {
    .staff01 .w45 {
        width: 100%;
    }
    .staff01 .w45 .txt_wrap {
        width: 80%;
        margin: 0 auto 1rem;
    }
    .staff01.gr .w45 .txt_wrap {
        width: 100%;
    }
    .staff01.gr .txt_wrap{
        padding: 0;
    }
    .staff01 .w55 {
        width: 100%;
    }
    .staff-tit{
        margin-bottom: 20px;
    }
}

/********************************

s_staff

********************************/
@media (max-width: 599px) {
    h3.staff-tit{
        margin-bottom: 10px;
    }
    .staff01 .w45 .txt_wrap {
        width: 100%;
        padding: 0;
    }
    .staff02 .dl_list dd li {
        font-size: 16px;
    }
}

/********************************
/********************************
/********************************

l_characteristic

********************************/
.characteristic01 .flex {
    margin-bottom: 100px;
}

.characteristic01 .flex .up-ofi {
    max-height: 600px;
    position: relative;
}

.characteristic01 .flex .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.characteristic01 .flex .up-ofi:before {
    content: "";
    display: block;
    padding-top: 50%;
}

.characteristic01 .flex .txt_side {
    width: calc(35% - 2rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-left: 2rem;
    background: var(--color02);
}

.characteristic01 .flex .txt_side * {
    color: #fff;
}

.characteristic01 .flex .txt_wrap {
    width: 360px;
    margin-right: auto;
    padding: 1rem 2rem;
}

.characteristic01 .flex:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.characteristic01 .flex:nth-of-type(even) .txt_side {
    margin: 0 2rem 0 0;
}

.characteristic01 .flex:nth-of-type(even) .txt_wrap {
    margin: 0 0 0 auto;
}

/********************************
/********************************

m_characteristic

********************************/
@media (max-width: 1024px) {
    .characteristic01 .flex .w65 {
        width: 100%;
        margin: 0;
    }
    .characteristic01 .flex .txt_side {
        width: 100%;
        margin: 0 !important;
    }
    .characteristic01 .flex .txt_wrap {
        width: 100%;
        padding: 1rem;
    }
    .characteristic01 .flex:nth-of-type(even) .txt_side {
        margin: 0 1rem 0 0;
    }
    .characteristic01 .flex .up-ofi:before {
        padding-top: 65%;
    }
}

/********************************

s_characteristic

********************************/
/********************************
/********************************
/********************************

l_price

********************************/
.price_wrap {
    padding: 50px 0 0;
}

.price_wrap dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-top: 1px solid var(--color02);
    border-left: 1px solid var(--color02);
    border-right: 1px solid var(--color02);
}

.price_wrap dl:last-of-type {
    border-bottom: 1px solid var(--color02);
}

.price_wrap dt {
    width: 80%;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    padding: 1.5rem;
    font-size: 22px;
    color: var(--color02);
    background: #f6f6f6;
}

.price_wrap dt.dt-txt{
    width: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


.price_wrap dd {
    width: 55%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 1.5rem;
    font-size: 20px;
    border-left: 1px solid var(--color02);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.price_wrap dd.dd-txt{
    width: 60%;
    font-size: 18px;
}

.price_wrap .double dd {
    width: 15%;
}

.price_wrap .double dd.notice {
    width: 40%;
}

/********************************
/********************************

m_price

********************************/
@media (max-width: 1024px) {
    .price_wrap {
        padding: 10px 0;
    }
    .price_wrap dl {
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--color02);
    }
    .price_wrap dt {
        width: 80%;
        padding: 1rem;
        font-size: 18px;
    }
    .price_wrap dd {
        width: 50%;
        padding: 1rem;
        font-size: 18px;
    }
    .price_wrap dd.dd-txt{
        font-size: 16px;
    }
    .price_wrap .double {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .price_wrap .double dt {
        width: 50%;
    }
    .price_wrap .double dd {
        width: 50%;
    }
    .price_wrap .double dd.notice {
        width: 100%;
        padding: 0.75rem;
        font-size: 16px;
        border-top: 1px solid var(--color02);
        border-left: none;
    }
}

/********************************

s_price

********************************/
@media (max-width: 599px) {
    .price_wrap dl {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .price_wrap dt,
    .price_wrap dd {
        width: 100% !important;
    }
    .price_wrap dt {
        font-size: 18px;
    }
    .price_wrap dd {
        font-size: 16px;
        border-top: 1px solid var(--color02);
        border-left: none;
    }
    .price_wrap dd.notice {
        font-size: 14px !important;
    }
}

/********************************
/********************************
/********************************

l_flow

********************************/
.flow01 .fifty_box {
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.flow01 .fifty_box .h {
    margin-bottom: 2rem;
    font-size: 32px;
}

.flow01 .fifty_box .h .st {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.75em;
}

.flow01 .fifty_box .h .no {
    vertical-align: sub;
    font-size: 4em;
}

.flow01 .fifty_box .txt {
    margin-left: auto;
}

_:-ms-fullscreen,
:root .flow01 .fifty_box .txt {
    margin-right: 15%;
}

.flow01 .fifty_box .up-ofi {
    max-height: 650px;
    position: relative;
}

.flow01 .fifty_box .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.flow01 .fifty_box .up-ofi:before {
    content: "";
    display: block;
    padding-top: 80%;
}

.flow01 .fifty_box:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flow01 .fifty_box:nth-of-type(even) .txt {
    margin-left: 0;
    margin-right: auto;
}

/********************************
/********************************

m_flow

********************************/
@media (max-width: 1024px) {
    .flow01 .fifty_box {
        margin-bottom: 50px;
    }
    .flow01 .fifty_box .h {
        font-size: 24px;
    }
    .flow01 .fifty_box .w50 {
        width: 100%;
    }
    .flow01 .fifty_box .w50:first-of-type {
        margin-bottom: 2rem;
    }
    .flow01 .fifty_box .txt {
        max-width: none;
        margin: auto;
        padding: 0;
    }
}

/********************************

s_flow

********************************/
@media (max-width: 599px) {
    .flow01 .fifty_box .h {
        font-size: 20px;
    }
}

/********************************
/********************************
/********************************

l_explain

********************************/
.sq_h {
    padding-left: 1.25em;
    position: relative;
}

.sq_h:before {
    content: "■";
    color: var(--color02);
    position: absolute;
    top: 0;
    left: 0;
}
.sq_h.new:before {
    content: "✓";
    color: var(--color02);
    position: absolute;
    top: 0;
    left: 0;
}


.bgmcb_con {
    background: var(--color02);
}

.bgmcb_con * {
    color: #fff;
}

.recruit02.bgmcb_con ul * {
    color: initial;
}

.bgmcb_con .sq_h:before {
    color: #fff;
}

.bgmcb_con li {
    margin-bottom: 0.5rem;
}

.isyoku .exp04 .fifty_box .txt {
    margin-right: auto;
}

.isyoku .exp04 .fifty_box .up-ofi {
    max-height: 650px;
    position: relative;
}

.isyoku .exp04 .fifty_box .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.isyoku .exp04 .fifty_box .up-ofi:before {
    content: "";
    display: block;
    padding-top: 65%;
}

.oyashirazu .exp03 .flex {
    margin-bottom: 3rem;
}

.oyashirazu .exp03 .up-ofi {
    max-height: 650px;
    position: relative;
}

.oyashirazu .exp03 .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.oyashirazu .exp03 .up-ofi:before {
    content: "";
    display: block;
    padding-top: 65%;
}

.oyashirazu .exp03 .txt {
    margin-left: auto;
}

_:-ms-fullscreen,
:root .oyashirazu .exp03 .txt {
    margin-right: 15%;
}

.oyashirazu .exp03 .flex:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.oyashirazu .exp03 .flex:nth-of-type(even) .txt {
    margin-left: 0;
    margin-right: auto;
}

.oyashirazu .exp04 .txt_side {
    padding-left: 2rem;
}

.implant .exp04 {
    margin: 100px 0;
}

.implant .exp04 .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.shita .exp01 .flex {
    margin-bottom: 2rem;
}
.shita .exp01 .flex.new01 {
    margin-bottom: 60px;
}

.shita .exp01 .flex:last-child{
    margin-bottom: 0;
}

.shita .exp01 .flex .txt_side {
    padding-right: 2rem;
}

.shita .exp01 .flex:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.shita .exp01 .flex:nth-of-type(even) .txt_side {
    padding-left: 2rem;
    padding-right: 0;
}

.shita .exp03 dt {
    width: 25%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 1rem;
}
.shita .exp03 dt.titarea{
    width: 100%;
}

.shita .exp03 dd {
    width: 75%;
}

.shita .exp05 .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.ago .exp01 .txt {
    margin-left: auto;
}
.ago .exp01 .txt.new01 {
    margin-left: 0;
}

.ago .exp01 .up-ofi {
    max-height: 650px;
    position: relative;
}

.ago .exp01 .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ago .exp01 .up-ofi:before {
    content: "";
    display: block;
    padding-top: 65%;
}

.ago .exp04 .txt {
    margin-right: auto;
}

.ago .exp04 .up-ofi {
    max-height: 650px;
    position: relative;
}

.ago .exp04 .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ago .exp04 .up-ofi:before {
    content: "";
    display: block;
    padding-top: 65%;
}

.ago .exp05 .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.kuchi .exp02 li {
    width: 46%;
    margin: 0 2% 0.5rem;
}

.kuchi .exp03 .txt {
    margin-right: auto;
}
.kuchi .exp03 .txt.txtpt2 {
    margin-right: auto;
    padding-left: 2em;
    padding-right: 4em;
}

.kuchi .exp03 .up-ofi {
    max-height: 650px;
    position: relative;
}

.kuchi .exp03 .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.kuchi .exp03 .up-ofi:before {
    content: "";
    display: block;
    padding-top: 65%;
}

.kuchi .exp04 .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/********************************
/********************************

m_explain

********************************/
@media (max-width: 1024px) {
    .shita .exp01 .txt01{
        letter-spacing: normal;
    }
    .isyoku .exp04 .fifty_box .w50 {
        width: 100%;
    }
    .isyoku .exp04 .fifty_box .w50:first-of-type {
        margin-bottom: 1rem;
    }
    .isyoku .exp04 .fifty_box .txt {
        max-width: none;
        margin: auto;
        padding: 1rem;
    }
    .oyashirazu .exp03 .w50 {
        width: 100%;
    }
    .oyashirazu .exp03 .txt {
        max-width: none;
        margin: auto;
        padding: 1rem;
    }
    .oyashirazu .exp04 .txt_side {
        padding-left: 1rem;
    }
    .implant .exp04 {
        margin: 80px 0;
    }
    .shita .exp01 .flex .txt_side {
        padding-right: 1rem;
    }
    .shita .exp01 .flex:nth-of-type(even) .txt_side {
        padding-left: 1rem;
        padding-right: 0;
    }
    .shita .exp03 dt {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .shita .exp03 dd {
        width: 100%;
    }
    .ago .exp01 .w50,
    .ago .exp04 .w50 {
        width: 100%;
    }
    .ago .exp01 .w50:first-of-type,
    .ago .exp04 .w50:first-of-type {
        margin-bottom: 1rem;
    }
    .ago .exp01 .txt,
    .ago .exp04 .txt,
    .exp01 .txt.me01 {
        max-width: none;
        margin: auto !important;
        padding: 1rem;
    }
    .kuchi .exp03 .w50 {
        width: 100%;
    }
    .kuchi .exp03 .txt{
        max-width: none;
        margin: auto;
        padding: 1rem;
    }
    .kuchi .exp03 .txt.txtpt2{
        max-width: none;
        margin: auto;
        padding: 0;
    }
    .shita .exp01 .flex.new01 {
    margin-bottom: 40px;
}
}

/********************************

s_explain

********************************/
@media (max-width: 599px) {
     .shita .exp01 .txt01{
        letter-spacing: 0.1em;
    }
    .shita .exp01.new .flex{
        margin-bottom: 1rem;;
    }
    .explain .pic {
        width: 100%;
    }
    .isyoku .exp04 .fifty_box .txt {
        padding: 0;
    }
    .oyashirazu .exp03 .txt {
        padding: 0;
    }
    .oyashirazu .exp04 .txt_side {
        padding-left: 0;
    }
    .implant .exp04 {
        margin: 60px 0;
    }
    .ago .exp01 .txt,
    .ago .exp04 .txt,
    .exp01 .txt.me01 {
        padding: 0;
    }
    .kuchi .exp02 li {
        width: 96%;
    }
    .kuchi .exp03 .txt {
        padding: 0;
    }
    .shita .exp01 .flex:nth-of-type(even) .txt_side {
        padding-left: 0;
    }
    .shita.new01 .exp01 .flex {
    margin-bottom: 1rem;
    }
    .shita .exp01.new01 .flex{
        margin-bottom: 1em;
    }
    .shita .exp01 .flex.new01 {
    margin-bottom: 30px;
}
}

/********************************
/********************************
/********************************

l_recruit

********************************/
.recruit01 .up-ofi {
    position: relative;
}
.recruit01 .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.recruit01 .up-ofi:before {
    content: "";
    display: block;
    padding-top: 75%;
}

.recruit02 .dl_wrap {
    width: 70%;
    margin: auto;
}

.recruit02 dl {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid;
}

.recruit02 dl:last-of-type {
    margin: 0;
    border-bottom: none;
}

.recruit02 dt {
    width: 100%;
    max-width: 100px;
    font-size: 20px;
}

.recruit02 dd {
    width: 75%;
    font-size: 20px;
    color: var(--color02)!important;
}

.recruit02 .box {
    background: #fff;
}

.recruit02 .dm-btn {
    padding: 1rem 2rem;
    text-align: center;
    background: #f1f1f1;
    position: relative;
}

/********************************
/********************************

m_recruit

********************************/
@media (max-width: 1024px) {
    .recruit02 .dl_wrap {
        width: 100%;
    }
    .recruit02 .dl_wrap dt {
        font-size: 18px;
    }
    .recruit02 .dl_wrap dd {
        font-size: 16px;
    }
}

/********************************

s_recruit

********************************/
@media (max-width: 599px) {
    .recruit01 h4 {
        height: auto !important;
    }
    .recruit02 dt {
        width: 100%;
        padding: 0;
        font-weight: bold;
        font-size: 16px;
    }
    .recruit02 dd {
        width: 100%;
        font-size: 16px;
    }
}

/********************************
/********************************
/********************************

l_faq

********************************/
.faq_dl_wrap {
    margin-bottom: 100px;
}

.faq_dl_wrap dl {
    margin-bottom: 50px;
}

.faq_dl_wrap dt,
.faq_dl_wrap dd {
    padding-left: 4rem;
    padding-right: 3rem;
    position: relative;
}

.faq_dl_wrap dt:before,
.faq_dl_wrap dd:before {
    width: 46px;
    height: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
}

.faq_dl_wrap dt {
    margin-bottom: 2rem;
    font-size: 24px;
    color: var(--color02);
}

.faq_dl_wrap dt:hover {
    opacity: 0.6;
    cursor: pointer;
}

.faq_dl_wrap dt:before {
    content: "Q";
    color: #fff;
    background: var(--color02);
}

.faq_dl_wrap dt:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    position: absolute;
    top: 0;
    right: 1rem;
}

.faq_dl_wrap dt.action:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq_dl_wrap dd {
    font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.faq_dl_wrap dd:before {
    content: "A";
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", "Sawarabi Mincho", serif;
    color: var(--color02);
    background: #f6f6f6;
}

/********************************
/********************************

m_faq

********************************/
@media (max-width: 1024px) {
    .faq_dl_wrap dt,
    .faq_dl_wrap dd {
        font-size: 20px;
    }
}

/********************************

s_faq

********************************/
@media (max-width: 599px) {
    .faq_dl_wrap dt,
    .faq_dl_wrap dd {
        font-size: 16px;
    }
}

/********************************
/********************************
/********************************

l_contact

********************************/
.contact_form {
    background: #f6f6f6;
}

.contact_form dl {
    width: 100%;
    margin-bottom: 3rem;
    color: var(--color02);
}

.contact_form dt {
    width: 25%;
}

.contact_form dd {
    width: 70%;
    margin-left: 5%;
}

.contact_form dd input,
.contact_form dd textarea {
    width: 100%;
    padding: 0.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid var(--color02);
}

.contact_form dd label {
    margin-right: 1em;
}

.contact_form .btn_wrap li {
    max-width: 350px;
    margin: 0 auto;
}

.contact_form .btn_wrap li .contact-btn {
    width: 100%;
    padding: 1rem 2rem;
    color: #fff;
    border: none;
    background: var(--color02);
    position: relative;
}

.contact_form .btn_wrap li .contact-btn:after {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 1rem;
}

.contact_form .btn_wrap li:last-child .contact-btn:after {
    content: "\f054";
    left: auto;
    right: 1rem;
}

.contact_form .btn:hover {
    opacity: 0.6;
    cursor: pointer;
}

.contact_form.confirm dt {
    width: 40%;
    padding-top: 0;
}

.contact_form.confirm dt:after {
    content: "：";
}

.contact_form dd {
    width: 60%;
    padding-left: 1rem;
}

/********************************
/********************************

m_contact

********************************/
@media (max-width: 1024px) {
    .contact_form dt {
        width: 100%;
        margin: 0;
        padding: 0 0 0.5em 0;
    }
    .contact_form dd {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }
    .contact_form.confirm dt {
        width: 100%;
    }
}

/********************************

s_contact

********************************/
@media (max-width: 599px) {
    .contact_form dt {
        width: 60%;
    }
}

/********************************
/********************************
/********************************

l_article

********************************/
.article01 .main_box {
    width: 70%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.article01 .cat,
.reco .cat {
    margin-bottom: 1rem;
}

.article01 .cat span,
.reco .cat span {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 5px 10px;
    color: #fff;
    background: var(--color02);
}

.btn_wrap .s {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color02);
}

.btn_wrap .s:after {
    content: "\f054";
    padding-left: 1rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.article_wrap li {
    margin-bottom: 3rem;
}

.article_wrap li .w65 {
    padding-left: 1rem;
}

.article_wrap .up-ofi {
    position: relative;
}

.article_wrap .up-ofi img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.article_wrap .up-ofi:before {
    content: "";
    display: block;
    padding-top: 75%;
}

.side_box {
    width: 30%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    padding-right: 3rem;
}

.side_box .cat_dl dt {
    padding: 1rem;
    font-size: 20px;
    color: white;
    text-align: center;
    background: var(--color02);
}

.side_box .cat_dl dd {
    font-size: 18px;
    border-bottom: 1px solid var(--color02);
    position: relative;
}

.side_box .cat_dl dd a {
    display: block;
    padding: 1rem 0.5rem 1rem 2.5rem;
}

.side_box .cat_dl dd:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--color02);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 1rem;
}

.side_box .cat_dl:first-of-type {
    margin-bottom: 3rem;
}

.detail_wrap .h {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #000;
}

.pager,
.detail_back {
    width: 100vw;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 50px;
    margin-bottom: 0;
    background: var(--color02);
}
.detail_back {
    margin-bottom: 50px;
}

.pager *,
.detail_back * {
    font-size: 24px;
    color: #fff;
}
.detail_back *{
  text-align: center;
}

.pager li,
.detail_back li {
    margin: 0 1rem;
    padding: 10px 0;
}

.pager .a_inner,
.detail_back .a_inner {
    width: 92%;
    max-width: 1000px;
    margin: auto;
}

.pager .a_inner a:before,
.detail_back .a_inner a:before {
    content: "\f053";
    padding-right: 1rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.pager .current span {
    text-decoration: underline;
}

/********************************
/********************************

m_article

********************************/
@media (max-width: 1024px) {
    .article01 .main_box {
        width: 100%;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .article01 .side_box {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        padding-right: 0;
    }
    .article01 .cat_dl {
        width: 48%;
    }
    .article01 .cat_dl:first-of-type {
        margin-bottom: 0 !important;
        margin-right: 4%;
    }
    .pager,
    .detail_back {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin: 50px 0;
    }
    .pager *,
    .detail_back * {
        font-size: 20px;
    }
    .pager .a_inner,
    .detail_back .a_inner {
        width: 93%;
        max-width: 768px;
    }
}

/********************************

s_article

********************************/
@media (max-width: 599px) {
    .article01 .article_wrap li .w65,
    .reco .article_wrap li .w65 {
        padding: 0;
    }
    .article01 .cat_dl {
        width: 100%;
        margin: auto !important;
    }
    .article01 .cat_dl:first-of-type {
        margin-bottom: 3rem !important;
    }
    .pager *,
    .detail_back * {
        font-size: 18px;
    }
    .pager .a_inner,
    .detail_back .a_inner {
        width: 94%;
        max-width: 450px;
    }
}

/********************************
/********************************
/********************************

l_A-BiSU組込み用

********************************/
[data-element-id]#header {
    padding: 2rem 0;
    position: relative;
}

[data-element-id].res_btn {
    position: relative;
}

[data-element-id] .tab_sm {
    width: 100%;
    display: block;
    padding: 0.5rem;
    text-align: right;
    background: #ccc;
}

[data-element-id] .tab_sm:before {
    content: "（※タブレット・スマートフォン時に表示される項目です）";
    padding-right: 1rem;
    font-size: 12px;
    color: red;
}

[data-element-id] footer .totop {
    position: absolute;
}

[data-element-id].guide01 .txt_wrap {
    position: static;
    z-index: 0;
}

[data-element-id].guide01 .txt_wrap .tac {
    position: relative;
    z-index: 2;;
}

[data-element-id] #wrapper {
    padding-top: 0 !important;
}

[data-element-id] .global_m.fixed {
    position: relative;
}

.list-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-table+.list-table {
    border-top: 1px solid #736150;
}

.list-table dt,
.list-table dd {
    padding: 1.5em 1em;
}

.list-table dt {
    width: 35%;
    min-width: 115px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: bold;
    color: #fff;
    background-color: var(--color02);
}

.up-btn-smoosh-ori .list-table dt {
    width: 30%;
}

.list-table dd {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: white;
}

.list-table-wrap {
    overflow: hidden;
    border: 1px solid #736150;
}

.inner-rec-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.5em 0;
}

.inner-rec-list .m-text {
    width: 100%;
    max-width: 145px;
    padding-right: 1em;
    font-weight: bold;
    position: relative;
}

.inner-rec-list .m-text::after {
    content: "：";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}

.inner-rec-list .text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.triangle-down li:not(:last-child) {
    padding-bottom: 120px;
    position: relative;
}

.triangle-down li:not(:last-child)::after {
    content: "";
    width: 70px;
    height: 70px;
    border-top: 23px solid var(--color01);
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    position: absolute;
    bottom: 0;
    left: 50%;
}

.title-sub {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
    color: var(--color02);
}

.rec-box a {
    display: block;
    padding: 30px 10px;
    background-color: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.35) 1px 2px 5px;
            box-shadow: rgba(0, 0, 0, 0.35) 1px 2px 5px;
}

@media (max-width: 599px) {
    .list-table dt,
    .list-table dd {
        width: 100%;
    }
    .up-btn-smoosh-ori .list-table dt {
        width: 100%;
    }

    .list-table dt {
        max-width: 100%;
        padding: 1em;
    }

    .list-table dd {
        padding: 1em 1em 1.5em 2em;
    }

    .inner-rec-list {
        margin-bottom: 10px;
    }

    .inner-rec-list .m-text,
    .inner-rec-list .text {
        width: 100%;
        max-width: 100%;
    }
    .inner-rec-list .m-text::after {
        content: none;
    }
}

.md-ttl {
    font-size: 24px;
}

@media (max-width: 599px) {
    .md-ttl {
        font-size: 20px;
    }
}

.d-none-tb,
.d-none-sp {
    display: block;
}
.d-b-tb,
.d-b-sp {
    display: none;
}
@media (max-width: 1024px) {
    .d-b-tb {
        display: block;
    }
    .d-none-tb {
        display: none;
    }
}
@media (max-width: 599px) {
    .d-none-sp {
        display: none;
    }
    .d-b-sp {
        display: block;
    }
}

/* パンくずリスト */
.breadcrumbs {
    padding: 20px 0;
    background: #fff;
    margin-bottom:-2px;
}
.breadcrumbs .inner {
    padding: 0;
}
.breadcrumbs .item {
    display: inline;
}
.breadcrumbs .item:not(:last-of-type):after {
    content: ">";
    display: inline;
    margin-left: 10px;
    margin-right: 6px;
}

.detail-content-text h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0.5em;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 2px;
    border-bottom: 3px solid var(--color02);
}

.detail-content-text h3 {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0.5em 1em;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
    background: var(--color02);
}

.detail-content-text h4 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    color: var(--color02);
    letter-spacing: 2px;
}
.detail-content-text ol {
    counter-reset: count 0;
}
.detail-content-text ol li {
    margin: 10px 0;
    padding-left: 20px;
    font-size: 16px;
    color: #000;
    position: relative;
}
.detail-content-text ol li::before {
    content: counter(count) ". ";
    display: inline-block;
    counter-increment: count 1;
    color: var(--color02);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}
.detail-content-text ul li {
    margin: 10px 0;
    padding-left: 20px;
    font-size: 16px;
    color: #000;
    position: relative;
}

.detail-content-text ul li::before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    background: var(--color02);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}
.detail-content-text ol li marker {
    display: none;
}

.detail-content-text iframe[src*="youtube"] {
    height: auto;
    margin-top: 30px;

    aspect-ratio: 16 / 9;
}

.article02 .inner {
    padding-top: 0;
}
@media (max-width: 1024px) {
    .article02 .inner {
        padding-top: 40px;
    }
}
@media (max-width: 599px) {
    .article02 .inner {
        padding-top: 30px;
    }
}

.contact-f dd.radiobtn label {
    display: inline-block;
    padding: 0 10px 0 30px;
    position: relative;
}

.contact-f dd.radiobtn label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #dcdcdc;
    border-radius: 3px;
    background-color: white;
    position: absolute;
    top: 0.2em;
    left: 0;
}

.contact-f dd.radiobtn label:hover {
    text-decoration: underline;
    cursor: pointer;
}

.contact-f dd.radiobtn input {
    display: none;
}

.contact-f dd.radiobtn input:checked+label {
    text-decoration: underline;
}

.contact-f dd.radiobtn input:checked+label::after {
    content: "\f00c";
    width: 0;
    height: 0;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 2px;
}

.contact-f dd.radiobtn input+label {
    margin-bottom: 15px;
    margin-right: 15px;
}

@media (max-width: 599px) {
    .contact-f dd.radiobtn {
        padding: 0.5em 0;
    }
}

/* 論文 */
.paper-tit{
    font-size: 20px;
    border-left: var(--color02) 8px solid;
    padding-left: 1em;
    margin-bottom: 10px;
}
.paper-tit + .paper-tit{
    margin-top: 20px;
}
.paper-item{
    width: 100%;
    height: 500px;
    overflow: auto;
    background-color: white;
    padding: 30px;
    border: 1px solid var(--color01);
}

.shozoku-tit{
    font-size: 18px;
    background-color: var(--color02);
    color: #fff;
    padding: 5px 1em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.shozoku .txt li{
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 0.5rem;
    padding-left: 1em;
    font-size: 18px;
    text-indent: -1em;
}

.group + .group{
    margin-top: 60px;
}

@media (max-width: 1024px){
   .group + .group{
    margin-top: 30px;
}
}
@media (max-width: 599px){
    .paper-item{
        padding: 10px;
    }
}

.cont-area a{
    display: block;
    color: #fff;
    font-size: 24px;
}
.cont-area{
    background-color: var(--color02);
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding: 10px 0;
}
.cont-area i{
    padding-right: 0.5em;
}
@media (max-width: 599px){
    .cont-area{
    font-size: 16px;
    margin-top: 20px;
}
}

.me-tit{
    position: relative;
    padding-left: 1em;
}
.me-num{
    position: absolute;
    top: 0;
    left: 0;
}

.list-item{
    position: relative;
    padding-left: 1em;
}
.list-item::before{
    content: "";
    background-color: var(--color02);
    width: 10px;
    height: 10px;
    border-radius: 50px;
    position: absolute;
    top: 10px;
    left: 0;
}

.flex-area div .txt_side{
    padding-right: 2rem;
}

.pic02{
    width: 40%;
    margin: auto;
}
@media(max-width: 599px){
    .pic02{
    width: 70%;
    margin: auto;
}
}

/* バナー */
.implant_tel {
    background: var(--color01);
    width: 100%;
    max-width: 980px;
    margin: 0 auto 50px;
    padding: 0.5%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.implant_tel .in {
    border: 1px solid #fff;
    position: relative;
    padding: 10px 0;
}
.implant_tel .center {
    margin: 0 auto;
    width: 100%;
    max-width: 430px;
    padding: 10px 0;
    z-index: 1;
}
#servicepage h4 {
    margin: 0 auto 20px;
    background-color: #1e1008;
    width: 80%;
    text-align: center;
    color: #fff;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    padding: 5px 0;
}
.implant_tel .center h4 {
    font-size: 25px;
    text-align: center;
    color: rgb(255, 255, 255) !important;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif !important;
    line-height: 140%;
    margin-bottom: 10px;
    background: none !important;
    width: 100% !important;
    margin: 0 auto !important;
}
.implant_tel .center .tel {
    color: #fff;
    line-height: 40px;
    font-size: 50px;
    text-align: center;
    margin-bottom: 10px;
    font-family: "Times New Roman", Times, serif;
}
.implant_tel .center .tel a {
    color: #fff;
}
.implant_tel .center .tel i{
    font-size: 40px;
}
.implant_tel .center .txt {
    font-size: 14px;
    color: #fff;
    text-align: center;
    font-weight: normal;
}
.implant_tel .pic {
    width: 100%;
    position: absolute;
    right: 16%;
    bottom: 0;
    max-width: 130px;
    z-index: 0;
}
.implant_tel .pic img {
    width: 100% !important;
    height: auto !important;
}
.clearfix:after {
    clear: both;
    content: "";
    display: table;
}
@media (max-width: 1024px) {
  .implant_tel {
    max-width: 90%;
}
.implant_tel .pic {
    right: 4%;
    max-width: 110px;
}
.implant_tel .center .tel {
    font-size: 42px;
}
.implant_tel .center h4 {
    font-size: 18px;
    padding-bottom: 5px;
}
.implant_tel .center .tel i{
    font-size: 35px;
}
}
@media (max-width: 599px) {
  .implant_tel {
    max-width: 100%;
    margin: 0 auto 20px;
}
.implant_tel .center {
    max-width: 70%;
    padding: 0 2%;
}
.implant_tel .center h4 {
    font-size: 12px;
}
.implant_tel .pic {
    right: 0;
    max-width: 65px;
}
.implant_tel .center .tel .i {
    width: 25px;
}
.implant_tel .center .tel {
    font-size: 30px;
}
.implant_tel .center .txt {

    padding: 0 5%;
}
.implant_tel .center .tel i{
    font-size: 25px;
}
}  
/* ここまで */

.t.goth.is-parent{
    display: none;
}
figcaption .js-toggle {
    position: relative;
    padding-right: 25px;
    cursor: pointer;
    display: block;
}

figcaption .js-toggle::before {
    content: "";
    position: absolute;
    right: 5px;
    top: 14px;
    width: 12px;
    height: 2px;
    background-color: var(--color02);
}

figcaption .js-toggle::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 9px;
    width: 2px;
    height: 12px;
    background-color: var(--color02);
}

figcaption .js-toggle.is-parent::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    opacity: 0;
}

figcaption .js-toggle.is-parent::before {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
}

/* インスタバナー */
.inst-banner {
    width: 70%;
    margin-top: 10px;
    background-image: linear-gradient(
        45deg,
        #515bd4 0%,
        #8134af 15%,
        #dd2a7b 30%,
        #f58529 45%,
        #feda77 60%
    );
    border-radius: 10px;
}

.inst-banner a {
    color: #ffffff;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    text-align: center;
    padding: 10px 0;
}

/* ドクターバナー */
.recruit-banner a{
    display: block;
}
.recruit-banner a .pic01{
    width: 60%;
    min-width: 300px;
    margin: auto;
}

.pic03 .pic{
    max-width: 500px;
    margin: auto;
}

/* Googlecalendar */
.calendar-tit{
    text-align: center;
    background-color: var(--color01);
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto;
    padding: 5px 80px;
}
.calendar3.clearfix iframe{
   aspect-ratio: 16 / 9;
    height: 600px;
    margin: auto;
}

@media (max-width: 599px){
  .calendar3.clearfix iframe{
    height: 400px;
  }
}

h4.flow-list-tit{
  margin-bottom: 10px;
  font-size: 21px;
}
.flow-list10 + .flow-list10{
  margin-top: 30px;
}

@media (max-width: 599px){
  h4.flow-list-tit{
  font-size: 18px;
}
}

/* 見たまま編集 */
[data-element-id] .h-inner {
    padding-top: 50px;
}

[data-element-id] .res_btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

[data-element-id] .h-inner #gnav .fixed_ul .t-contact a::after {
    content: none;
}

[data-element-id] .up-d-none {
    display: block;
    border: solid 4px black;
    position: relative;
}
[data-element-id] .up-d-none:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    text-shadow: none;
    background: black;
}

[data-element-id] .no .up-d-none{
  display: none;
}
[data-element-id] .up-d-none.none01{
  display: none;
}

[data-element-id] .up-sp-text {
    width: 100%;
    max-width: 375px;
    margin: auto;
}

[data-element-id] .mainimage .h2_wrap .up-sp-text .h {
    font-size: 20px;
}

[data-element-id] .up-sp-text .subtit_t {
    font-size: 32px;
}

[data-element-id] .t-feature .wrap .fifty_box .up-sp-text .h {
    font-size: 20px;
}

[data-element-id] .t-feature .wrap .fifty_box .up-sp-text .h .no {
    font-size: 46px;
}

[data-element-id] .flow01 .fifty_box .up-sp-text .h {
    font-size: 20px;
}
[data-element-id] #gnav .list02{
  visibility: visible;
  opacity: 1;
  position: relative;
  transform: none;
  top: 0;
  left: 0;
  margin-bottom: 50px;
  border: solid 4px black;
}
[data-element-id] #gnav .list02:after {
    content: "ドロップダウンメニュー";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    text-shadow: none;
    background: black;
}

/* 追加ボタン調整 */
.res_btn.web{
    top: 450px;
}
.res_btn{
    top: 200px;
}
.res_btn.web a:after{
    content: "\f133";
    font-size: 30px;
}
.res_btn a:after{
    content: "\f0e0";
    font-size: 30px;
}
@media (max-width: 1024px) {
    .h-inner #gnav .fixed_ul .t-contact {
        width: 46%;
    }
        .h-inner #gnav .fixed_ul .res_btn {
        width: 27%;
        top: 50%;
    }
    .h-inner #gnav .fixed_ul .res_btn.li{
       border-right: 1px solid #fff;
    }
        .h-inner #gnav .fixed_ul .t-contact a {
       height: 100%;
    }

}
@media (max-width: 599px) {
    .h-inner #gnav .fixed_ul .res_btn.web a,
    .h-inner #gnav .fixed_ul .res_btn a {
        font-size: 14px;
    }
        .h-inner #gnav .fixed_ul .res_btn a:after{
            padding-left: 0;
        }
        .h-inner #gnav .fixed_ul .res_btn.web a,    
    .h-inner #gnav .fixed_ul .res_btn a {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
        color: #fff;
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}

/* ハンバーガーメニュー追加 */

.inst-banner.inham{
    width: 30%;
    margin: 50px auto 0;
    font-size: 20px;
}

.ham-tel{
    width: 40%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: #9f8342;
    padding: 5px 0;
    outline: 1px solid #fff;    
    outline-offset: -4px;     
    -webkit-box-sizing: border-box;
            box-sizing: border-box;  
}

.ham-tel .tel-sub{
    font-size: 13px;
}
.ham-tel .tel-sub{
    width: 100%;
    text-align: center;
    color: #fff;
}
.ham-tel .tel{
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #fff;
}
.ham-tel .tel i{
    font-size: 25px;
    padding-right: 0.5em;
}
.ham-tel .tel a{
    display: block;
    color: #fff;
}
.pic04{
    width: 40%;
    margin: auto;
}

@media(max-width: 599px){
    .pic04{
    width: 80%;
}
.ham-tel{
    width: 80%;
    margin: 30px auto 0;
}
.inst-banner.inham{
    width: 80%;
    margin: 30px auto 0;
}
.ham-tel .tel-sub{
    font-size: 12px;
}
}

/* ABテストきらっと */
.fixed_ul li a {
  position: relative !important;
}

/* 光を閉じ込める透明なカバー */
.test-b {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden !important;
  pointer-events: none;
  z-index: 10;
}

.test-b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 35%,    
    rgba(255, 255, 255, 0.4) 50%, 
    rgba(255, 255, 255, 0) 65%, 
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 300% 100%;
  background-repeat: no-repeat;
  animation: shine 3.5s ease-in-out infinite; 
}

@keyframes shine {
  0% {
    background-position: 150% 0;
  }
  60%, 100% {
    background-position: -150% 0; 
  }
}
[data-ab-test-block] {
  position: absolute;
  top: 35%;
  right: 0;
}
[data-element-id] .fifty_box .txt_side .txt {
  margin-top: -240px;
  margin-left: 0;
}
[data-element-id] .t-feature .wrap .fifty_box:nth-of-type(even) .txt{
   margin-top: -240px;
  margin-right: 0;
}
[data-element-id] .fifty_box .txt_side .txt.me01{
  margin-top: 0;
}
[data-element-id] [data-element-id] .fifty_box .txt_side .txt.text01{
  margin-top: -360px;
  margin-left: 250px;
}
[data-element-id] .fifty_box .txt_side .txt.text02{
  margin-top: -170px;
  margin-left: 260px;
}
[data-element-id] .t.goth.is-parent{
  display: block;
}
[data-element-id] .paper-item{
  height: 100%;
}
[data-element-id] .res_btn.web{
    top: 55%;
}
[data-element-id] .res_btn{
    top: 25%;
}
.fifty_box .txt_side .txt.new{
  padding: 0;
}
.uk-lb{
  cursor: pointer;
}
.bc-num{
  background-color: var(--color02);
  padding: 0 10px;
  border-radius: 50px;
  color: #fff;
  position: absolute;
  top: -1px;
  left: 0;
}
@media (max-width: 599px){
  .bc-num{
    padding: 0 9px;
  }
}
[data-element-id] .kyo{
  padding-top: 20px;
}
.kajo{
  position: absolute;
  top: 0;
  left: 0;
}
[data-element-id] .fifty_box .txt_side .txt.noma{
  margin-top: 0;
}
.sikaku{
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}
.shita .exp01 .flex.flex-new{
  margin-bottom: 50px;
}
.shita .exp01 .flex.flex-new:last-of-type{
  margin-bottom: 0;
}
@media (max-width: 599px){
  .shita .exp01 .flex.flex-new{
  margin-bottom: 30px;
}
}

.num.up-pos-abs{
  top: 0;
  left: 0;
}
