@charset "UTF-8";
/****************************************
ベース（基本設定）
****************************************/
/**
カラー
*/
.color01 {
    color: #F19266; }

.color02 {
    color: #60B421; }

.color03 {
    color: #222222; }

.bgcolor01 {
    background-color: #F19266; }

.bgcolor01_a {
    background-color: rgba(241, 146, 102, 0.1); }

.bgcolor02 {
    background-color: #60B421; }

.bgcolor03 {
    background-color: #222222; }

/*********************************************
汎用クラス
*********************************************/
/**
エリア
*/
.area {
    padding: 60px 0; }

.area80 {
    padding: 80px 0; }

.area60 {
    padding: 60px 0; }

.area40 {
    padding: 40px 0; }

.area20 {
    padding: 20px 0; }

.areab {
    padding-bottom: 60px; }

.area80b {
    padding-bottom: 80px; }

.area60b {
    padding-bottom: 60px; }

.area40b {
    padding-bottom: 40px; }

.area20b {
    padding-bottom: 20px; }

@media only screen and (max-width: 1024px) {
    .area {
        padding: 40px 0; }
    .area80 {
        padding: 60px 0; }
    .area60 {
        padding: 40px 0; }
    .area40 {
        padding: 20px 0; }
    .areab {
        padding-bottom: 40px; }
    .area80b {
        padding-bottom: 60px; }
    .area60b {
        padding-bottom: 40px; }
    .area40b {
        padding-bottom: 20px; } }

/**
マージン
*/
.mt10 {
    margin-top: 10px; }

.mb50 {
    margin-bottom: 50px; }

/**
テキスト
*/
.tac {
    text-align: center; }

.tar {
    text-align: right; }

/*文字をまとめて落とす*/
.group {
    display: inline-block; }

/*打消し線*/
.strike {
    text-decoration: line-through; }

/**
heightLineリセット
*/
@media only screen and (max-width: 1024px) {
    .resetheight.-tablet {
        height: auto !important; } }

@media only screen and (max-width: 599px) {
    .resetheight.-mobile {
        height: auto !important; } }

/**
その他
*/
/*トリミングする要素のブロック化*/
.trim {
    display: block; }

/*モバイル時に順序を並べ替え*/
@media only screen and (max-width: 599px) {
    .change-sp {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse; } }

/*PC時のみ非表示*/
@media only screen and (min-width: 1025px) {
    .no-pc {
        display: none; } }
[data-element-id] .no-pc {
  display: block;
}
/*sp時のみ非表示*/
@media only screen and (max-width: 599px) {
    .no-sp {
        display: none; } }

/*ポジション*/
.position {
    position: relative; }

/*********************************************
汎用レイアウト
*********************************************/
/*2カラムコンテンツ*/
.column2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 20px 0 80px; }
.column2 .side {
    width: 200px; }
.column2 .main {
    width: calc(100% - 220px); }
@media only screen and (max-width: 1024px) {
    .column2 {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .column2 .side {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        width: 100%;
        margin-bottom: 5%; }
    .column2 .main {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        margin-bottom: 5%; } }
@media only screen and (max-width: 1024px) { 
      .column2 {
        padding: 20px 0 40px;}
}

/*左右の要素を順に入れ替え*/
.alternate .flexb:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }

.inner98 {
    width: 98%;
    max-width: 1000px;
    margin: 0 auto; }
@media only screen and (max-width: 1024px) {
    .inner98 {
        width: 93%;
        max-width: 768px; } }
@media only screen and (max-width: 599px) {
    .inner98 {
        width: 94%;
        max-width: 450px; } }

.layout-cmn01 .title {
    margin-bottom: 40px; }

.layout-cmn01 .text {
    margin-bottom: 10px; }

@media only screen and (max-width: 599px) {
    .layout-cmn01 .title {
        margin-bottom: 20px; } }

/*********************************************
汎用画像クラス　img
*********************************************/
.img {
    text-align: center; }

/*背景画像*/
.bgimg {
    position: relative; }

.img.-bgimg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
.img.-bgimg 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%;'; }

/*フィルター*/
.img.-filter:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .8; }

/*object-fit(cover)IE対応*/
.img.-cover 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%;'; }

/*object-fit(contain)IE対応*/
.img.-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    /*IE対策*/
    font-family: 'object-fit: contain; object-position: 50% 50%;'; }

/*比率40％*/
.img.-ratio40 {
    position: relative; }
.img.-ratio40:before {
    content: "";
    display: block;
    padding-top: 40%; }
.img.-ratio40 img {
    position: absolute;
    top: 0; }

/*モバイル時に小さめに表示*/
.img.-smallsp {
    display: block;
    margin-left: auto;
    margin-right: auto; }
@media only screen and (max-width: 599px) {
    .img.-smallsp {
        width: 80%; } }

/*モバイル時により小さめに表示*/
.img.-smallersp {
    display: block;
    margin-left: auto;
    margin-right: auto; }
@media only screen and (max-width: 599px) {
    .img.-smallersp {
        width: 50%; } }

/*正円画像*/
.img.-circle {
    overflow: hidden;
    border-radius: 50%; }

/*角丸画像*/
.img.-round {
    overflow: hidden;
    border-radius: 20px; }

/*********************************************
共通ボックス　box -cmn
*********************************************/
/*********************************************
共通ブロック　block -cmn
*********************************************/
/*ブロック１*/
.block.-cmn01 {
    width: 50%;
    padding: 10px;
    margin: 0 auto;
    border: 1px solid #F19266; }
.block.-cmn01 .list {
    margin-bottom: 10px; }
.block.-cmn01 .datatitle {
    font-weight: bold; }
.block.-cmn01 .data {
    padding-right: 1em;
    margin-left: auto;
    font-weight: bold; }
.block.-cmn01 .text {
    margin-bottom: 10px;
    text-align: center; }
@media only screen and (max-width: 599px) {
    .block.-cmn01 {
        width: 90%; } }

/*ブロック２（電話ブロック）*/
.block.-cmn02 {
    display: none;
    position: absolute;
    z-index: 3;
    top: -40px;
    left: 50%;
    width: 200px;
    padding: 10px;
    text-align: center;
    border: 1px solid #F19266;
    font-size: 18px;
    font-weight: bold;
    color: #F19266;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
.block.-cmn02:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #FFF;
    z-index: 2; }
.block.-cmn02:after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-top: 14px solid #F19266;
    z-index: 1; }

/*********************************************
共通タイトル　title -cmn
*********************************************/
/*共通タイトル1*/
.title.-cmn01 {
    font-size: 24px;
    font-weight: bold;
    text-align: center; }
.title.-cmn01 .title-in {
    display: inline-block;
    position: relative;
    padding: 0 30px; }
.title.-cmn01 .title-in:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/leaf-title.png);
    position: absolute;
    top: 55%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
.title.-cmn01 .title-in:after {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/leaf-title.png);
    position: absolute;
    top: 55%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
.title.-cmn01 .title-in2 {
    display: inline-block;
    position: relative;
    padding: 0 10px;
    font-size: 50px;
    line-height: 0;
    color: #F19266; }
.title.-cmn01 .title-in2:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/deco-title.png);
    position: absolute;
    display: block;
    bottom: 1em;
    left: 50%;
    -webkit-transform: translate(-50%, 130%);
    -ms-transform: translate(-50%, 130%);
    transform: translate(-50%, 130%); }
.title.-cmn01 .title-in3 {
    display: inline-block; }
@media only screen and (max-width: 599px) {
    .title.-cmn01 {
        font-size: 20px; }
    .title.-cmn01 .title-in {
        width: 80%;
        line-height: 270%; }
    .title.-cmn01 .title-in2 {
        font-size: 40px; } }

/*共通タイトル2*/
.title.-cmn02 {
    position: relative;
    z-index: 1;
    min-height: 90px;
    font-size: 24px;
    font-weight: bold;
    text-align: center; }
.title.-cmn02 .title-in {
    display: inline-block;
    position: relative;
    z-index: -1;
    min-width: 60px;
    margin: 0 20px;
    color: #fff; }
.title.-cmn02 .title-in:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/dexo-title02.png);
    position: absolute;
    z-index: -1;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }

/*共通タイトル3*/
.title.-cmn03 {
    text-align: center;
    font-weight: bold;
    color: #fff;
    overflow: hidden; }
.title.-cmn03 .title-in {
    position: relative;
    display: block;
    margin-bottom: 10px;
    -webkit-transform: translateX(-100.5%);
    -ms-transform: translateX(-100.5%);
    transform: translateX(-100.5%);
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
    -webkit-transition-duration: .8s;
    transition-duration: .8s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-property: transform,-webkit-transform; }
.title.-cmn03 .title-in:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1); }
.title.-cmn03 .title-in01 {
    display: block;
    position: relative;
    font-size: 28px;
    -webkit-transform: translateX(-100.5%);
    -ms-transform: translateX(-100.5%);
    transform: translateX(-100.5%);
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
    -webkit-transition-duration: .8s;
    transition-duration: .8s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-property: transform,-webkit-transform; }
.title.-cmn03 .title-in01:before {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
    -webkit-transition-duration: 1.5s;
    transition-duration: 1.5s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1); }
.title.-cmn03 .title-in01:after {
    content: "";
    display: block;
    position: relative;
    width: 100px;
    height: 1px;
    margin: 5px auto 0;
    background: #fff; }
.title.-cmn03.mv .title-in {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
.title.-cmn03.mv .title-in:before {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0); }
.title.-cmn03.mv .title-in01 {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
.title.-cmn03.mv .title-in01:before {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0); }
@media only screen and (max-width: 599px) {
    .title.-cmn03 .title-in01 {
        font-size: 18px; } }

/*共通タイトル4*/
.title.-cmn04 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #F19266; }
.title.-cmn04 .title-in {
    position: relative;
    z-index: 1; }
.title.-cmn04 .title-in:after {
    content: url(/import/tenant_1/133.167.77.198/html/images/02clinic/title01.png);
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%); }
@media only screen and (max-width: 599px) {
    .title.-cmn04 {
        font-size: 24px; } }

/*共通タイトル5*/
.title.-cmn05 {
    text-align: center;
    font-size: 24px;
    font-weight: bold; }
.title.-cmn05:after {
    content: "";
    display: block;
    position: relative;
    width: 100px;
    height: 2px;
    margin: 5px auto 0;
    background: #F19266; }

/*共通タイトル6*/
.title.-cmn06 {
    text-align: center;
    font-size: 20px;
    font-weight: bold; }
.title.-cmn06:after {
    content: "";
    display: block;
    position: relative;
    width: 100px;
    height: 1px;
    margin: 5px auto 0;
    background: #F19266; }

/*共通タイトル7*/
.title.-cmn07 {
    position: relative;
    padding: 5px 20px;
    font-size: 24px;
    font-weight: bold;
    background: rgba(241, 146, 102, 0.1); }
.title.-cmn07:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 70%;
    background: #F19266;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
@media only screen and (max-width: 599px) {
    .title.-cmn07 {
        font-size: 20px; } }

/*共通タイトル8*/
.title.-cmn08 {
    position: relative;
    text-align: center;
    font-size: 18px;
    font-weight: bold; }
.title.-cmn08 .title-in {
    position: relative; }
.title.-cmn08 .title-in:after {
    content: url(/import/tenant_1/133.167.77.198/html/images/08headspa/leaf.png);
    position: absolute;
    top: 100%;
    right: 0; }

/*********************************************
共通テキスト　text -cmn
*********************************************/
/*共通テキスト１*/
.text.-sentence.-cmn01 {
    line-height: 200%; }

/*共通小見出しテキスト*/
.text.-head {
    font-weight: bold; }
.text.-head.-cmn01 {
    font-size: 16px;
    color: #60B421; }
.text.-head.-cmn02 {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    color: #F19266; }
.text.-head.-cmn02:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    background: rgba(96, 180, 33, 0.4); }
.text.-head.-cmn02.-type01:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/09personal/leaf.png);
    top: 4px;
    background: none; }
.text.-head.-cmn03 {
    color: #F19266; }
.text.-head.-cmn04 {
    font-size: 18px;
    color: #F19266; }
.text.-head.-cmn04.-type01 {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3); }

/*共通メタテキスト*/
.text.-meta.-cmn01 .time:after {
    content: "/";
    display: inline-block;
    margin: 0 5px; }

/*********************************************
共通リスト　list -cmn
*********************************************/
/*リスト1（テーブルタイプ）*/
.list.-cmn01 table {
    width: 100%;
    border: 1px solid #F19266;
    border-collapse: collapse; }

.list.-cmn01 th,
.list.-cmn01 td {
    padding: 10px; }

.list.-cmn01 th {
    width: 30%;
    text-align: left;
    vertical-align: top;
    color: #fff;
    background: #F19266; }

.list.-cmn01 tr:not(:last-child) th {
    border-bottom: 1px solid #fff; }

.list.-cmn01 tr:not(:last-child) td {
    border-bottom: 1px solid #F19266; }

.list.-cmn01.-type02 {
    width: 80%;
    margin: 0 auto; }
.list.-cmn01.-type02 th {
    width: 60%; }

.list.-cmn01.-type03 {
    width: 80%;
    margin: 0 auto; }
.list.-cmn01.-type03 th,
.list.-cmn01.-type03 td {
    width: 50%;
    text-align: center; }

/*リスト２（チェックリスト）*/
.list.-cmn02 .listitem {
    margin-bottom: 15px; }

.list.-cmn02 .datatitle {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    font-weight: bold; }
.list.-cmn02 .datatitle:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/08headspa/check.png);
    position: absolute;
    left: 0; }

.list.-cmn02 .data {
    padding-left: 30px; }

/*リスト３（テーブルタイプ）*/
.list.-cmn03 table {
    width: 100%;
    border: 1px solid #F19266;
    border-collapse: collapse; }

.list.-cmn03 tr:not(:last-child) {
    border-bottom: 1px solid #F19266; }

.list.-cmn03 th,
.list.-cmn03 td {
    padding: 10px;
    text-align: center; }

.list.-cmn03 th {
    color: #fff;
    background: #F19266; }
.list.-cmn03 th:not(:last-child) {
    border-right: 1px solid #fff; }

.list.-cmn03 td:not(:last-child) {
    border-right: 1px solid #F19266; }

.list.-cmn03.-type01 tr:not(:last-of-type) th:first-of-type {
    border-bottom: 1px solid #fff; }

.list.-cmn03.-type01 tr:not(:last-of-type) td:first-of-type {
    border-bottom: 1px solid #fff; }

.list.-cmn03.-type01 tr:not(:last-of-type) th:not(:fitst-of-type) {
    border-bottom: 1px solid #F19266; }

.list.-cmn03.-type01 tr:not(:last-of-type) td:not(:first-of-type) {
    border-bottom: 1px solid #F19266; }

.list.-cmn03.-type01 td:first-of-type {
    color: #fff;
    background: #F19266; }
@media only screen and (max-width: 599px) {
  .list.-cmn03 th,
  .list.-cmn03 td {
      padding: 5px;
    
  }
}


/*リスト４（メインタイムテーブル）*/
.list.-cmn04 {
    display: table;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background: url(/import/tenant_1/133.167.77.198/html/images/01top/time-top.png) no-repeat;
    background-size: cover; }

.list.-cmn04 table {
    border-collapse: collapse; }
.list.-cmn04 table tr:not(:last-of-type) {
    border-bottom: 1px dashed #fff; }
.list.-cmn04 table th,
.list.-cmn04 table td {
    padding: 2px 5px; }

/*リスト５（ブログ・ニュース記事）*/
.list.-cmn05 .img {
    margin-bottom: 5px; }

.list.-cmn05 .img a {
    display: block; }

.list.-cmn05 .text {
    margin-bottom: 5px; }

/*********************************************
共通ボタン　button -cmn
*********************************************/
/*ボタン１*/
.button.-cmn01 a {
    display: inline-block;
    width: 200px;
    padding: 10px 0;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    background: #F19266;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 1px transparent;
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-box-shadow: inset 0 0 0 4px #F19266, 0 0 1px transparent;
    box-shadow: inset 0 0 0 4px #F19266, 0 0 1px transparent; }
.button.-cmn01 a:hover, .button.-cmn01 a:focus, .button.-cmn01 a:active {
    opacity: 1;
    color: #F19266;
    background: none; }

.button.-cmn01 .button-in {
    position: relative;
    padding: 0 20px; }
.button.-cmn01 .button-in:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f0a9";
    position: absolute;
    right: 0; }

.button.-cmn01.-back .button-in:after {
    content: "\f0a8";
    left: 0;
    right: inherit; }

/*ボタン２*/
.button.-cmn02 a {
    font-weight: bold;
    text-decoration: underline;
    color: #F19266; }
.button.-cmn02 a:after {
    content: "→"; }

/**************************************
共通要素
**************************************/
/**
ヘッダー
header
*/
.header-contents {
    position: relative;
    height: 150px;
    padding: 0 50px;
    background-image: url(/import/tenant_1/133.167.77.198/html/images/01top/leaf-header_left.png), url(/import/tenant_1/133.167.77.198/html/images/01top/leaf-header_right.png);
    background-repeat: no-repeat;
    background-position: 0 0, 100% 0; }

.header-logo {
    padding-top: 50px;
    text-align: center; }
.header-logo a {
    display: inline-block; }

.header-info {
    position: absolute;
    right: 50px;
    top: 0; }

.header-address {
    width: 180px;
    padding-top: 35px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
    background: url(/import/tenant_1/133.167.77.198/html/images/01top/plate.png) no-repeat bottom center;
    background-size: contain; }
.header-address .tel {
    display: block;
    font-size: 18px; }
.header-address .tel:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/tel.png);
    display: inline-block;
    position: relative;
    top: 3px;
    margin-right: 5px; }
.header-address a {
  color: #fff;
}

.header-contact {
    display: block;
    width: 180px;
    padding: 5px 0;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    background: url(/import/tenant_1/133.167.77.198/html/images/01top/banner-header.png) no-repeat center;
    background-size: cover; }
.header-contact:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    content: "\f0e0";
    padding-right: 5px; }

.totop {
    position: fixed;
    z-index: 100;
    bottom: 30px;
    right: 30px;
    line-height: 100%;
    text-align: center;
    color: #F19266;
    cursor: pointer;}
.totop:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/totop.png);
    display: block; }
/*sp_contactbtn*/
.sp_contactbtn{
  position: fixed;
  z-index: 100;
  top: 10px;
  left:20px;
  height: 0;
  opacity: 0;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
}
[data-element-id].sp_contactbtn{
  opacity: 1;
  height: 50px;
}
.sp_contactbtn li{
  width: 50px;
  height: 50px;
  margin: 0 2px;
  display: inline-block !important;
}
.sp_contactbtn li a{
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.sp_contactbtn li.telbtn{
  background: url(/upload/tenant_1/8c93940d3b46354589203d6704f1efcc) no-repeat bottom center;
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
}
.sp_contactbtn li.telbtn img{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
}
.sp_contactbtn li.telbtn .num{
  display: none;
}
[data-element-id].sp_contactbtn li.telbtn,[data-element-id].sp_contactbtn li.telbtn a{
  overflow: visible;
}
[data-element-id].sp_contactbtn li.telbtn .num{
  display: block;
  color: #000;
  width: 100px;
}
[data-element-id].sp_contactbtn li{
  display: block !important;
}
.sp_contactbtn li.mailbtn{
  background: url(/import/tenant_1/133.167.77.198/html/images/01top/banner-header.png) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
}
.sp_contactbtn li a{
  position: relative;
  display: block;
  color: #fff;
}
.sp_contactbtn li.telbtn a:before{
  content: "";
  position: absolute;
	width: 21px;
	height: 20px;
	background: url(/import/tenant_1/133.167.77.198/html/images/01top/tel.png) center center no-repeat;
	background-size:contain;
	display: block;
	top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
}

.sp_contactbtn li.mailbtn a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  content: "\f0e0";
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	font-size: 20px;
}
/*sp_contactbtn*/
@media only screen and (max-width: 1024px) {
    .header-contents {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        height: auto;
        padding-bottom: 10px;
        background-size: 50px, 30px; }
    .header-logo {
        padding-top: 20px; }
    .header-logo img {
        height: 60px; }
    .header-info {
        position: relative;
        right: inherit; }
    .header-address {
        height: 50px;
        padding-top: 2px;
        margin-top: 10px;
        margin-bottom: 5px;
        background-size: 100% auto;
        border-radius: 5px; }
    .header-address .tel {
        font-size: 16px; }
    .header-address .tel:before {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8); } }

@media only screen and (max-width: 599px) {
  .sp_contactbtn{
    opacity: 0;
    height: 50px;
    transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  }
  .sp_contactbtn a{
    pointer-events: none !important;
  }
  .sp_contactbtn.db{
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  opacity: 1;
  }
   .sp_contactbtn.db a{
    pointer-events: auto !important;
   }
    .header-contents {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0; }
    .header-logo {
        margin: 0 auto; }
    .header-logo img {
        height: 40px; }
    .header-info {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px; }
    .header-address {
        width: 50%;
        height: auto;
        min-height: 30px;
        padding: 0;
        margin: 0;
        line-height: 30px; }
    .header-contact {
        width: 50%;
        min-height: 30px;
        padding: 0;
        line-height: 30px; } }

/**
グローバルナビ
nav-global
*/
#gnav {
  position: relative;
  z-index: 500;
}
#gnav.fixed {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff; }
[data-element-id] #gnav.fixed {
  position: relative;
}
.nav-global {
    position: relative;
    z-index: 10;
    padding: 15px 0; }
.nav-global .navitem {
    text-align: center; }
.nav-global .nav-in {
    cursor: pointer;
    color: #F19266; }
.nav-global .nav-jp {
    display: block;
    color: #000; }
.nav-global .navitem.-parent {
    position: relative; }
[data-element-id] .nav-global .navitem.-parent {
  position: static;
}
.nav-global .navitem.-parent:hover .nav-second {
    opacity: 1;
    visibility: visible; }
.nav-global .nav-second {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 100%;
    min-width: 200px;
    padding-top: 10px;
    border-radius: 0 0 5px 5px;
    background: white 120%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .5s ease;
    transition: .5s ease; }
[data-element-id] .nav-global .nav-second {
    opacity: 1;
    visibility: visible;
    left: 0;
    display: flex;
    transform: none;
}
.nav-global .nav-second .navitem {
    margin-bottom: 10px; }
.nav-global a {
    display: inline-block;
    position: relative;
    color: #F19266; }
.nav-global a::after {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(96, 180, 33, 0.5);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px); }
.nav-global a:hover {
    opacity: 1; }
.nav-global a:hover::after,
.nav-global a:focus::after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); }
@media only screen and (max-width: 1024px) {
    .nav-global .navitem {
        margin-bottom: 10px;
        text-align: left; }
    .nav-global .nav-second {
        position: relative;
        opacity: 1;
        visibility: visible;
        top: inherit;
        padding-left: 20px;
        background: none; } }

.nav-sns {
    position: absolute;
    z-index: 11;
    top: 10px;
    right: 50px; }
.nav-sns .icon {
    margin-right: 20px; }
.nav-sns .icon:after {
    font-family: "Font Awesome 5 Brands";
    font-weight: 500;
    font-size: 40px; }
.nav-sns .icon.-facebook:after {
    content: "\f082";
    color: #3b5998; }
.nav-sns .icon.-line:after {
    content: "\f3c0";
    color: #00b900; }
    
    

/**
フッター
footer
*/
.footer-contents {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 30px 0;
}
.footer-info {
  padding: 0 10px;
}
.footer-info > * {
    margin-bottom: 5px; }

.footer-info .tel {
    display: block;
    font-size: 24px;
    font-weight: bold; }
.footer-info .tel:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/tel_footer.png);
    display: inline-block;
    position: relative;
    top: 3px;
    margin-right: 5px; }

.footer-logo img {
    height: 80px; }

.nav-footer {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 50%;
}
.nav-list.-footer {
    padding-right: 10px; }
.nav-list.-footer .navtitle {
    font-weight: bold;
    margin-bottom: 10px; }
.nav-list.-footer .navitem {
    position: relative;
    padding-left: 10px;
    margin-bottom: 5px; }
.nav-list.-footer .navitem:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    left: 0; }
    
.copy {
    text-align: center;
    color: #fff;
    background: url(/import/tenant_1/133.167.77.198/html/images/01top/footer.png); }
    
@media only screen and (max-width: 599px) {
  .footer-contents {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .nav-footer {
    width: 100%;
  }
}

/**
サイドメニュー
side
*/
.side {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start; }
.sidearea02 {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start; }
.side .section {
    width: 100%;
    margin-bottom: 30px; }
.side .section .section-in {
    padding: 5px; }
.side .section.-side-category {
    margin-bottom: 10px; }
.side .list {
    width: 100%; }

.section.-side01 {
    border: 1px solid rgba(0, 0, 0, 0.2); }

.title.-side01 {
    padding: 14px 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #F19266; }

.list.-side01 {
    display: table;
    padding: 0 5px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background: url(/import/tenant_1/133.167.77.198/html/images/01top/time-top.png) no-repeat;
    background-size: cover; }

.list.-side01 table {
    width: 100%;
    border-collapse: collapse; }
.list.-side01 table tr:not(:last-of-type) {
    border-bottom: 1px dashed #fff; }
.list.-side01 table th,
.list.-side01 table td {
    padding: 5px 0;
    line-height: 70%; }

.side-pro {
    border: 2px solid #50a5c0; }
.side-pro .text {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #50a5c0; }

.title.-side02 {
    position: relative;
    padding: 3px 3px 3px 33px;
    font-weight: bold;
    line-height: 130%;
    color: #fff;
    background: #50a5c0; }
.title.-side02:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/crown.png);
    position: absolute;
    left: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
.title.-side02 .title-in {
    display: inline-block;
    margin: 0 5px;
    font-size: 16px; }

.side-good {
    border: 2px solid #6eb36c; }
.side-good .section-in {
    position: relative; }
.side-good .section-in:after {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/deco-side.png);
    position: absolute;
    top: 0;
    right: 20px; }
.side-good .text {
    color: #6eb36c; }
.side-good .text-in {
    display: block;
    width: 100%;
    text-align: center; }

.title.-side03 {
    padding: 14px 5px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 130%;
    color: #fff;
    background: #6eb36c; }

.list.-sidemenu .listitem:not(:last-of-type) {
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5); }

.list.-sidemenu a {
    display: block;
    position: relative;
    padding: 5px 25px 5px 0; }
.list.-sidemenu a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f061";
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background: #F19266; }

.side-facebook iframe {
    position: relative;
    width: 200px;
    max-width: 100%;
    height: 300px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }

.list.-side-category .datatitle {
    position: relative;
    padding: 5px 3em 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    font-weight: bold;
    color: #60B421;
    cursor: pointer; }
.list.-side-category .datatitle:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    right: 1em; }

.list.-side-category .datatitle.is-parent:after {
    content: "\f077"; }

.list.-side-category .listitem {
    display: none; }

.list.-side-category .data {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3); }
.list.-side-category .data a {
    display: block;
    position: relative;
    padding: 5px 2em 5px 0; }
.list.-side-category .data a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
.list.-side-category .data a:hover {
    opacity: 1;
    color: #60B421; }

@media only screen and (max-width: 1024px) {
    .side .section {
        width: 48%; }
    .list.-archive .data {
        width: 48%; } }

@media only screen and (max-width: 599px) {
    .side .section {
        width: 100%; }
    .list.-archive .data {
        width: 100%; } }

/*********************************************
各個別コンテンツ
*********************************************/
/**
トップページ
*/
/*メインビジュアル（トップ）*/
.homevisual {
    position: relative;
    z-index: 1;
    padding: 30px 0; }
.homevisual .img {
    position: absolute;
    z-index: -1;
    top: 0;
    height: 100%;
    width: 100%; }

.homevisualbox .flex {
    width: 400px;
    margin-left: auto;
    margin-right: 0; }

.homevisualbox .text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    /* align-items: center; */
    position: relative;
    height: 360px;
    width: 360px;
    font-family: "游明朝", "YuMincho","ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", "Sawarabi Mincho", serif;
    font-size: 20px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 190%;
    letter-spacing: .1em;
    color: #a67c52;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%; }
.android .homevisualbox .text {
  font-family: 'Sawarabi Mincho', sans-serif;
}
.homevisualbox .text:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/leaf-top.png);
    position: absolute;
    top: 30px;
    right: 30px; }

.homevisualbox .list {
    position: relative;
    margin-top: 30px; }

@media only screen and (max-width: 599px) {
    .homevisualbox .flex {
        width: auto;
        margin: 0 auto; }
    .homevisualbox .text {
        width: 300px;
        height: 300px;
        font-size: 16px; } }

/*ニュース（トップ）*/
.home01 {
    position: relative;
    padding-left: 50px;
    padding-right: 50px; }
.home01:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/leaf-news.png);
    position: absolute;
    top: 0; }
@media only screen and (max-width: 1024px) {
    .home01 {
        padding-left: 0;
        padding-right: 0; } }

.home01box .button {
    margin-top: 10px; }

.title.-home01 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #F19266; }

.list.-home01 .listitem {
    padding: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.5); }
.list.-home01 .listitem:first-of-type {
    border-top: 1px dashed rgba(0, 0, 0, 0.5); }

.list.-home01 .flex {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }

.list.-home01 .datatitle {
    min-width: 100px;
    color: #F19266; }

@media only screen and (max-width: 599px) {
    .list.-home01 .datatitle {
        width: 100%;
    }
    .list.-home01 .flex {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

.button.-home01 {
    text-align: right; }
.button.-home01 a {
    position: relative;
    color: #F19266; }
.button.-home01 a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f0a9"; }

/*ごあいさつ（トップ）*/
.home02 {
    background: url(/import/tenant_1/133.167.77.198/html/images/01top/bg_check.png); }

.home02box .flex {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }

.home02box .text {
    padding: 0 10px;
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", "Sawarabi Mincho", serif;
    font-weight: 400;
    line-height: 220%; }
.home02box .text span {
    display: block; }

.home02box .button {
    margin-top: 30px;
    text-align: center; }

@media only screen and (max-width: 1024px) {
    .home02box .block {
        margin: 0 10px 20px; }
    .home02box .block.-left {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1; }
    .home02box .block.-right {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2; }
    .home02box .text {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        margin: 0 auto; } }

@media only screen and (max-width: 1024px) {
    .home02box .block {
        margin: 20px; }
    .home02box .block.-left {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1; }
    .home02box .block.-right {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3; } }

/*ポイント（トップ）*/
.home03 {
    position: relative;
    background: url(/import/tenant_1/133.167.77.198/html/images/01top/img18.png) no-repeat top center;
    background-size: cover; }
.home03:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .7; }

.list.-home03 {
    counter-reset: column; }
.list.-home03 .column {
    position: relative;
    padding: 0 15px 20px;
    border: 1px solid #F19266;
    background: #fff; }
.list.-home03 .column:before {
    counter-increment: column;
    content: "0" counter(column);
    display: block;
    position: relative;
    z-index: 2;
    top: -10px;
    text-align: center;
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", "Sawarabi Mincho", serif;
    font-weight: 400;
    font-size: 30px;
    color: #F19266; }
.list.-home03 .column:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: -1px;
    left: 50%;
    height: 1px;
    width: 60px;
    background: #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
.list.-home03 .img {
    width: 120px;
    margin: 0 auto 10px; }
.list.-home03 .img a {
    display: block; }
.list.-home03 .text {
    text-align: center; }
.list.-home03 .text.-head {
    margin-bottom: 5px; }
@media only screen and (max-width: 599px) {
    .list.-home03 .heightLine-title {
        height: auto !important; } }

/*お悩み（トップ）*/
.home04 {
    position: relative;
    z-index: 1;
    background: #fcf2ed; }
.home04:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #fcf2ed; }

.home04box .list {
    width: 36%; }

.home04box .img {
    width: 14%; }
.home04box .img img {
    max-width: 100%; }

.home04box .text {
    margin-top: 30px;
    text-align: center; }
.home04box .text .text-in {
    position: relative; }
.home04box .text .text-in:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: -40px;
    height: 40px;
    width: 1px;
    background: #F19266;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg); }
.home04box .text .text-in:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: -40px;
    height: 40px;
    width: 1px;
    background: #F19266;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg); }

@media only screen and (max-width: 1024px) {
    .home04box .block {
        width: 48%; }
    .home04box .block01 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3; }
    .home04box .block02 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1; }
    .home04box .block03 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4; }
    .home04box .block04 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2; } }

@media only screen and (max-width: 599px) {
    .home04box .block {
        width: 100%; }
    .home04box .block01 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2; }
    .home04box .block02 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1; }
    .home04box .block03 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4; }
    .home04box .block04 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3; } }

.list.-home04 .listitem {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-weight: bold; }
.list.-home04 .listitem:last-of-type {
    margin-bottom: 0; }
.list.-home04 .listitem:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/check01.png);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

/*メニュー（トップ）*/
.home05 {
    position: relative;
    background: #f9fbf6; }
.home05:after {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/leaf-top.png);
    position: absolute;
    top: 0;
    right: 0; }

.home05box .column {
    padding: 0 10px; }

.home05box .column:nth-of-type(6n-5) .img:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/deco-menu01.png); }

.home05box .column:nth-of-type(6n-4) .img:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/deco-menu02.png); }

.home05box .column:nth-of-type(6n-3) .img:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/deco-menu03.png); }

.home05box .column:nth-of-type(6n-2) .img:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/deco-menu04.png); }

.home05box .column:nth-of-type(6n-1) .img:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/deco-menu05.png); }

.home05box .column:nth-of-type(6n) .img:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/deco-menu06.png); }

.home05box .img {
    position: relative;
    width: 160px;
    margin: 0 auto; }
.home05box .img:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9); }
.home05box .img a {
    display: block;
    border-radius: 50%;
    overflow: hidden; }

.home05box .text.-head01 {
    position: relative;
    z-index: 1;
    margin-top: -20px;
    margin-bottom: 20px;
    text-align: right;
    color: #F19266; }

.home05box .text.-head02 {
    text-align: center; }

.home05box .button {
    text-align: center;
    margin-top: 30px; }

.title.-home05 {
    position: relative;
    text-align: center;
    font-size: 24px;
    color: #fff; }
.title.-home05 .title-in {
    content: "";
    display: inline-block;
    min-width: 200px;
    max-width: 100%;
    padding: 0 30px;
    background: url(/import/tenant_1/133.167.77.198/html/images/01top/deco-title03.png) no-repeat center;
    background-size: 100% 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

/*お客様の声（トップ）*/
.home06 .img:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 220, 199, 0.6); }

.title.-home06 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #a45b33; }
.title.-home06 .title-in {
    display: block;
    line-height: 100%;
    font-size: 14px; }

.list.-voice01 .listitem {
    position: relative;
    margin-bottom: 30px; }
.list.-voice01 .listitem:before {
    display: block;
    position: absolute;
    width: 20%;
    text-align: center; }
.list.-voice01 .listitem.女性:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/17voice/img02.png); }
.list.-voice01 .listitem.男性:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/17voice/img03.png); }

.list.-voice01 .block {
    position: relative;
    width: 60%;
    padding: 10px;
    margin-left: auto;
    border: 1px solid #a45b33;
    background: #fff; }
.list.-voice01 .block:before {
    content: "";
    position: absolute;
    top: 50px;
    left: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-right: 12px solid #FFF;
    z-index: 2; }
.list.-voice01 .block:after {
    content: "";
    position: absolute;
    top: 50px;
    left: -28px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-right: 14px solid #a45b33;
    z-index: 1; }

.list.-voice01 .text {
    margin-bottom: 5px;
    color: #a45b33; }

.list.-voice01 .text.-head {
    padding-bottom: 5px;
    border-bottom: 1px solid #a45b33;
    font-size: 20px; }

@media only screen and (max-width: 599px) {
    .list.-voice01 .listitem:before {
        position: relative;
        margin: 0 auto;
        width: auto; }
    .list.-voice01 .block {
        width: 100%; }
    .list.-voice01 .block:before {
        content: none; }
    .list.-voice01 .block:after {
        content: none; } }

.button.-home06 {
    position: relative;
    z-index: 1;
    text-align: center; }
.button.-home06 a {
    display: inline-block;
    position: relative;
    font-weight: bold;
    color: #a45b33; }
.button.-home06 a:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/button01.png);
    position: absolute;
    z-index: -1;
    top: 70%;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
.button.-home06 a:after {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/arrow.png);
    position: absolute;
    top: 100%;
    left: 70%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

/*ブログ（トップ）*/
.title.-home07 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #F19266; }
.title.-home07:after {
    content: url(/import/tenant_1/133.167.77.198/html/images/01top/leaf_three.png);
    display: block;
    position: relative;
    line-height: 0; }

/*マップ（トップ）*/
.home08box .map {
    max-height: 500px; }

/**
下層ページ共通要素
*/
/*下層トップビジュアル*/
.topvisualbox {
    position: relative; }
.topvisualbox:before{
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 500px;
    height: 60%;
    background: url(/import/tenant_1/133.167.77.198/html/images/02clinic/bg01.png) no-repeat bottom right;
    background-size: contain;
}
.topvisualbox .inner {
    position: relative; }
.topvisualbox .inner:before {
    content: "";
    display: block;
    padding-top: 30%; }
.topvisualbox .inner:after {
    /* content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 500px;
    height: 60%;
    background: url(/import/tenant_1/133.167.77.198/html/images/02clinic/bg01.png) no-repeat bottom right;
    background-size: contain; */ }
.topvisualbox .title {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    max-width: 80%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
.topvisualbox .img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    /* width: calc(50vw + 400px); */
    width: calc(100vw - 100px);
    height: 100%; }
.topvisualbox .img:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); }
.topvisualbox .img:after {
    content: url(/import/tenant_1/133.167.77.198/html/images/02clinic/icon_leaf.png);
    position: absolute;
    top: 10px;
    right: 5px;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%); }
@media only screen and (max-width: 1024px) {
    .topvisualbox .img {
        width: calc(80% + 50px);}
    .topvisualbox .img:after {
        top: -10px;
        right: -10px;
        -webkit-transform-origin: top right;
        -ms-transform-origin: top right;
        transform-origin: top right;
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7); } }
@media only screen and (max-width: 599px) {
    .topvisualbox .img {
        width: calc(75% + 50px); } }

/*パンくずリスト*/
.list.-breadcrumb .listitem {
    display: inline-block; }
.list.-breadcrumb .listitem:not(:last-of-type):after {
    content: "＞";
    display: inline-block;
    margin: 0 5px; }

@media only screen and (max-width: 599px) {
    .list.-breadcrumb {
        display: none; } }

/**
当院について
*/
.clinic05box .map {
    height: 250px; }

/**
料金表
*/
/*メニュー(料金表)*/
.list.-fees01 .listtitle {
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #F19266; }

.list.-fees01 .listitem {
    padding: 15px 30px; }
.list.-fees01 .listitem:not(:last-of-type) {
    border-bottom: 1px dashed #F19266; }
.list.-fees01 .listitem:last-of-type {
    border-bottom: 1px solid #F19266; }

.list.-fees01 .datatitle {
    font-weight: bold; }

.list.-fees01 .data {
    color: #F19266;
    font-weight: bold; }

.list.-fees01 .text.-comment {
    margin-top: 10px; }

@media only screen and (max-width: 599px) {
    .list.-fees01 .listitem {
        padding: 15px 0; }
    .list.-fees01 .datatitle {
        width: 100%;
        margin-bottom: 10px; }
    .list.-fees01 .data {
        margin-left: auto; } }

.list.-fees02 {
    counter-reset: listitem; }
.list.-fees02 .box {
    position: relative;
    padding: 30px 15px 10px;
    background: #F19266; }
.list.-fees02 .box:before {
    counter-increment: listitem;
    content: "0" counter(listitem);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    color: #60B421;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
.list.-fees02 .box .text {
    margin-bottom: 10px;
    color: #fff; }
.list.-fees02 .text.-head {
    padding-bottom: 10px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.4);
    text-align: center;
    font-size: 16px;
    color: #fff; }
.list.-fees02 .list01 {
    margin-bottom: 10px; }
.list.-fees02 .listtitle01 {
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #F19266; }
.list.-fees02 .listitem01 {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 5px 0; }
.list.-fees02 .listitem01:not(:last-of-type) {
    border-bottom: 1px dashed #F19266; }
.list.-fees02 .listitem01:last-of-type {
    border-bottom: 1px solid #F19266; }
.list.-fees02 .datatitle {
    padding-right: 1em;
    font-weight: bold; }
.list.-fees02 .data {
    margin-left: auto;
    font-weight: bold;
    color: #F19266; }
.list.-fees02 .text.-comment {
    margin-top: 5px; }

/**
ブログ・ニュース
*/
.list.-category .datatitle {
    margin-bottom: 5px;
    text-align: center;
    font-weight: bold;
    color: #60B421; }

.list.-category .data {
    padding: 0 10px;
    margin-bottom: 5px;
    text-align: center;
    font-weight: bold; }
.list.-category .data a:hover {
    opacity: 1;
    color: #60B421; }

@media only screen and (max-width: 599px) {
    .list.-category .datatitle {
        width: 100%; }
    .list.-category .data {
        min-width: 33.333%; } }

.list.-article .listitem {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3); }

.list.-article .img a {
    display: block; }

.list.-article .text {
    margin-bottom: 5px; }
    
.list.-article .text.-head a {
  color: #F19266;
}

.list.-pagenation {
    text-align: center; }
.list.-pagenation .listitem {
    display: inline-block;
    margin: 0 .1rem; }
.list.-pagenation .listitem .present-in,
.list.-pagenation .listitem a {
    display: block;
    height: 25px;
    width: 25px;
    line-height: 25px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #60B421; }
.list.-pagenation .listitem .present-in,
.list.-pagenation .listitem a:hover {
    opacity: 1;
    border: none;
    color: #fff;
    background: #60B421; }
.list.-pagenation .listitem.-prev a:before {
    content: "＜"; }
.list.-pagenation .listitem.-next a:before {
    content: "＞"; }

/**
施術の流れ
*/
.list.-flow01 {
    counter-reset: listitem; }
.list.-flow01 .listitem:not(:last-of-type) {
    margin-bottom: 50px; }
.list.-flow01 .listitem:not(:last-of-type):after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f063";
    display: block;
    position: relative;
    margin-top: 50px;
    text-align: center;
    font-size: 50px;
    color: #F19266; }
.list.-flow01 .img {
    width: 50%;
    margin-bottom: -150px; }
.list.-flow01 .block01 {
    position: relative;
    width: 55%;
    padding: 30px 20px 20px;
    margin-left: auto;
    border: 1px solid #F19266;
    background: rgba(255, 255, 255, 0.8); }
.list.-flow01 .block01:before {
    counter-increment: listitem;
    content: "0" counter(listitem);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", "Sawarabi Mincho", serif;
    font-size: 28px;
    color: #F19266;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
.list.-flow01 .block01:after {
    content: url(/import/tenant_1/133.167.77.198/html/images/06menu/leaf01.png);
    position: absolute;
    top: 5px;
    right: 5px; }
.list.-flow01 .listitem:nth-of-type(even) .img {
    margin-left: auto; }
.list.-flow01 .listitem:nth-of-type(even) .block01 {
    margin-left: inherit; }
.list.-flow01 .listitem:nth-of-type(even) .block01:after {
    content: url(/import/tenant_1/133.167.77.198/html/images/06menu/leaf02.png);
    right: inherit;
    left: 5px; }
.list.-flow01 .text.-head {
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    color: #F19266; }
.list.-flow01 .listitem01 {
    position: relative;
    margin: 10px 0; }
.list.-flow01 .listitem01 a {
    display: inline-block;
    min-width: 100px;
    padding: 5px 15px;
    text-align: center;
    border-radius: 10px;
    color: #fff;
    background: #F19266; }
.list.-flow01 .item-in01 {
    display: inline-block; }
.list.-flow01 .item-in01.-tel:hover {
    cursor: pointer; }
.list.-flow01 .item-in01.-tel:hover a {
    opacity: .6; }
.list.-flow01 .block.-cmn02 {
    display: none;
    position: absolute;
    z-index: 3;
    top: -40px;
    left: 50%;
    width: 200px;
    padding: 10px;
    text-align: center;
    border: 1px solid #F19266;
    font-size: 18px;
    font-weight: bold;
    color: #F19266;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
.list.-flow01 .block.-cmn02:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #FFF;
    z-index: 2; }
.list.-flow01 .block.-cmn02:after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-top: 14px solid #F19266;
    z-index: 1; }
.list.-flow01 .list02 {
    padding: 5px 0; }
.list.-flow01 .list02 .listitem02 {
    margin-bottom: 5px; }
.list.-flow01 .list02 .datatitle02 {
    font-weight: bold; }
@media only screen and (max-width: 1024px) {
    .list.-flow01 .img {
        margin-bottom: -50px; }
    .list.-flow01 .block01 {
        width: 80%; } }
@media only screen and (max-width: 599px) {
    .list.-flow01 .img {
        width: 80%;
        margin-bottom: -20px; }
    .list.-flow01 .block01 {
        width: 90%; } }

/**
交通事故治療
*/
.accident03box .list {
    width: 80%;
    margin: 0 auto; }

.list.-accident03 .listitem {
    padding: 0 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: #F19266; }

.accident04 .list {
    padding: 0 10%;
    margin-bottom: 30px; }

@media only screen and (max-width: 599px) {
    .accident04 .list {
        padding: 0 5%; } }

.list.-accident04 .listitem {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px; }
.list.-accident04 .listitem:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/07accident/leaf.png);
    position: absolute;
    left: 0;
    top: 2px; }

.accident05box .list {
    padding: 0 10%; }

@media only screen and (max-width: 599px) {
    .accident05box .list {
        padding: 0 5%; } }

.list.-accident05 .listitem {
    position: relative;
    padding-left: 30px;
    padding-bottom: 20px; }
.list.-accident05 .listitem:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 3px;
    width: 10px;
    height: 10px;
    border: 3px solid #60B421;
    border-radius: 50%;
    background: #fff; }
.list.-accident05 .listitem:not(:last-of-type):after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 6px;
    width: 3px;
    height: 100%;
    background: #60B421; }

.list.-accident05 .datatitle {
    font-weight: bold;
    color: #F19266; }

/**
ダイエット
*/
.list.-diet02 {
    width: 80%;
    margin: 0 auto; }
.list.-diet02 table {
    width: 100%;
    border: 1px solid #F19266;
    border-collapse: collapse; }
.list.-diet02 tr:not(:last-child) {
    border-bottom: 1px solid #F19266; }
.list.-diet02 th,
.list.-diet02 td {
    width: 50%;
    padding: 10px;
    text-align: center; }
.list.-diet02 th {
    color: #fff;
    background: #F19266; }
.list.-diet02 th:not(:last-child) {
    border-right: 1px solid #fff; }
.list.-diet02 td:not(:last-child) {
    border-right: 1px solid #F19266; }

/**
保険診療
*/
.list.-insurance05 table {
    width: 100%;
    border: 1px solid #F19266;
    border-collapse: collapse; }

.list.-insurance05 th,
.list.-insurance05 td {
    padding: 10px;
    text-align: center; }

.list.-insurance05 th {
    color: #fff;
    background: #F19266; }

.list.-insurance05 td:not(:last-child) {
    border-right: 1px solid #F19266; }

.list.-insurance05 tr:first-of-type th:not(:last-of-type) {
    border-right: 1px solid #fff; }

.list.-insurance05 tr:not(:last-of-type) th:first-of-type {
    border-bottom: 1px solid #fff; }

.list.-insurance05 tr:not(:last-of-type) td {
    border-bottom: 1px solid #F19266; }

/**
求人
*/
.list.-recruit02 .listitem {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }

.list.-recruit02 .datatitle {
    width: 180px;
    padding: 10px;
    margin-right: 40px;
    border-bottom: 2px solid rgba(96, 180, 33, 0.2);
    font-weight: bold;
    color: #F19266; }

.list.-recruit02 .data {
    width: 100%;
    padding: 10px;
    border-bottom: 2px solid rgba(96, 180, 33, 0.2); }

@media only screen and (max-width: 599px) {
    .list.-recruit02 .listitem {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .list.-recruit02 .datatitle {
        padding-bottom: 0;
        padding-left: 0;
        border-bottom: none; } }

/**
お問い合わせ
*/
.contact01box .img {
    position: relative; }

.contact01box .item {
    display: inline-block; }

.contact01box .item:hover {
    cursor: pointer; }
.contact01box .item:hover a {
    opacity: .6; }

.contact01box a {
    display: inline-block; }

/*フォーム*/
.form dl {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }

.form dt {
    width: 200px;
    padding: 10px;
    margin-right: 40px;
    border-bottom: 2px solid rgba(96, 180, 33, 0.2);
    font-weight: bold;
    color: #F19266; }

.form dt .reqw {
    display: inline-block;
    margin-left: 5px;
    color: red;
    font-weight: 600; }

.form dd {
    width: 100%;
    padding: 10px;
    border-bottom: 2px solid rgba(96, 180, 33, 0.2); }

.form dd input {
    width: 70%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 5px; }

.form dd select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px; }

.form dd input[type="radio"] {
    display: none; }

.form dd input[type="radio"] + label {
    padding-left: 20px;
    position: relative;
    margin-right: 20px;
    line-height: 200%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

.form dd input[type="radio"] + label::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #303841;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: inset 1px 1px 0px 1px #999;
    box-shadow: inset 1px 1px 0px 1px #999; }

.form dd input[type="radio"]:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 3px;
    width: 7px;
    height: 7px;
    background: #303841;
    border-radius: 50%; }

.form dd input[type="radio"]:checked + label {
    -webkit-transition: 0.6s;
    transition: 0.6s; }

.form dd input[type="number"] {
    width: 70px;
    margin-right: 10px; }

.form dd textarea {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px;
    font-size: 14px;
    font-family: "游ゴシック",
        YuGothic,
        Hiragino Sans,
        "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic Pro",
        Hiragino Kaku Gothic ProN,
        "メイリオ",
        Meiryo,
        'ＭＳ Ｐゴシック',
        sans-serif;
    height: 150px; }

.form .requirement span {
    display: inline-block; }

.form .company {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }

.form .company01 {
    width: 70%;
    padding-right: 20px; }

.form .company01 input {
    width: 100%; }

.form .company02 {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }

.form .name01 {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 50%;
    max-width: 300px;
    padding-right: 20px; }

.form .name01 input {
    width: 80%; }

.form .post input {
    width: 100px;
    margin-left: 5px;
    margin-right: 5px; }

.form .prefectures input {
    width: 100px; }

.form .comfirm-address div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.form .comfirm-address div span {
  flex-shrink: 0;
}

.formbtn li button {
    text-align: center;
    color: #fff;
    display: block;
    background: #F19266;
    padding: .5em 4em;
    position: relative;
    z-index: 1;
    opacity: 1;
    overflow: hidden;
    border: none;
    margin: 80px auto;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease; }

.formbtn li button:after {
    position: absolute;
    font-family: FontAwesome;
    content: "\f105";
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px; }

.formbtn2 li:nth-of-type(odd) button:after {
    right: auto;
    left: 20px;
    content: "\f104"; }

.formbtn li button:hover {
    opacity: 0.6;
    cursor: pointer; }

.formbtn li {
    width: 100%;
    max-width: 320px;
    margin: auto; }

.formbtn2 li {
    max-width: 250px; }

@media only screen and (max-width: 1024px) {
    .form dl {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .form dt {
        width: 100%;
        padding-bottom: 0;
        border-bottom: none; }
    .form dd {
        width: 100%; }
    .form .post input {
        width: 100px; }
    .form .name div {
        margin-left: 0;
        margin-right: 0; }
    .formbtn li button {
        margin: 60px auto;
        padding: 15px 40px; }
    .formbtn2 li {
        max-width: 200px; } }

@media only screen and (max-width: 599px) {
    .form .company {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .form .company01 {
        width: 100%; }
    .form .company02 {
        margin-left: 0;
        margin-right: 0; }
    .form .name01 {
        width: 100%; }
    .formbtn li button {
        margin: 40px auto;
        padding: 10px 40px;
        max-width: 250px; }
    .formbtn2 li {
        max-width: 130px; } }

/**
よくある質問
*/
.list.-faq01 .listitem {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dotted rgba(96, 180, 33, 0.5); }

.list.-faq01 .datatitle {
    position: relative;
    padding-left: 40px;
    padding-top: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #F19266; }
.list.-faq01 .datatitle:before {
    content: "Q";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    background: url(/import/tenant_1/133.167.77.198/html/images/16faq/img01.png) no-repeat center;
    background-size: contain; }

.list.-faq01 .data {
    position: relative;
    padding-left: 40px; }
.list.-faq01 .data:before {
    content: "A";
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #60B421; }

/**
お客様の声
*/
.list.-voice02 .listitem {
    position: relative;
    margin-bottom: 30px; }
.list.-voice02 .listitem:before {
    display: block;
    position: absolute;
    width: 20%;
    text-align: center; }
.list.-voice02 .listitem.女性:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/17voice/img02.png); }
.list.-voice02 .listitem.男性:before {
    content: url(/import/tenant_1/133.167.77.198/html/images/17voice/img03.png); }

.list.-voice02 .listitem:nth-of-type(odd) .block:before {
    left: -24px;
    border-right: 12px solid #FFF; }

.list.-voice02 .listitem:nth-of-type(odd) .block:after {
    left: -28px;
    border-right: 14px solid #a45b33; }

.list.-voice02 .listitem:nth-of-type(even):before {
    right: 0; }

.list.-voice02 .listitem:nth-of-type(even) .block {
    margin-left: 0; }
.list.-voice02 .listitem:nth-of-type(even) .block:before {
    right: -24px;
    border-left: 12px solid #FFF; }
.list.-voice02 .listitem:nth-of-type(even) .block:after {
    right: -28px;
    border-left: 14px solid #a45b33; }

.list.-voice02 .block {
    position: relative;
    width: 75%;
    padding: 10px;
    margin-left: auto;
    border: 1px solid #a45b33; }
.list.-voice02 .block:before {
    content: "";
    position: absolute;
    top: 50px;
    margin-top: -12px;
    border: 12px solid transparent;
    z-index: 2; }
.list.-voice02 .block:after {
    content: "";
    position: absolute;
    top: 50px;
    margin-top: -14px;
    border: 14px solid transparent;
    z-index: 1; }

.list.-voice02 .text {
    margin-bottom: 5px;
    color: #a45b33; }

.list.-voice02 .text.-head {
    padding-bottom: 5px;
    border-bottom: 1px solid #a45b33;
    font-size: 20px; }

@media only screen and (max-width: 599px) {
    .list.-voice02 .listitem:before {
        position: relative;
        margin: 0 auto;
        width: auto; }
    .list.-voice02 .block {
        width: 100%; }
    .list.-voice02 .block:before {
        content: none; }
    .list.-voice02 .block:after {
        content: none; } }
