@charset "utf-8";

*,
*:before,
*:after {
 font-feature-settings: "palt";
 letter-spacing: .01em;
}

#wcfront_head, #wcfront_foot { display:none; }

#wcfront_base header,
#wcfront_base nav,
#wcfront_base main,
#wcfront_base footer,
#wcfront_base section,
#wcfront_base article,
#wcfront_base aside {
 display: block;
}


#wcfront_base .parts--html a {
 color: #333;
 text-decoration: none;
}

#wcfront_base .parts--html p + p {
 margin-top: 0;
}

#wcfront_base .parts--html ul,
#wcfront_base .parts--html ol {
 list-style: none;
 margin-bottom: 0;
}

#wcfront_base .parts--html ul > li {
 padding-left: 0;
}

#wcfront_base .parts--html ul > li:before {
 content: none;
}


#wcfront_base .wcfront_parts--wrap {
 max-width: 100%;
 padding-left: 0;
 padding-right: 0;
}


#wcfront_base {
 position: relative;
 font-size: 16px;
 font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro",
  "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
 background: #fffdf5;
 color: #333;
}


#wcfront_base a {
 cursor: pointer;
 font-weight: bold;
 text-decoration: underline;
}


#wcfront_base p {
 margin-top: 20px;
 line-height: 1.8;
 color: #555;
}

#wcfront_base p.ex {
 margin-top: 0;
}

#wcfront_base p i {
 padding-left: 2px;
 padding-right: 5px;
}

.center {
 text-align: center;
}


#wcfront_base img {
 max-width: 100%;
}



.hamburger {
 display: none;
}

.overlay-menu {
 display: none;
}


.title {
 font-style: italic;
 font-weight: 900;
}


.title-max {
 display: block;
 font-size: 82px;
 letter-spacing: -5px;
 font-weight: 900;
 line-height: 1.1;
 font-style: italic;
 margin-bottom: 40px;
}


.title-large {
 font-size: 60px;
}


.title-midium {
 font-size: 44px;
}


.title-regular {
 font-size: 35px;
 margin-bottom: 10px;
}



.title-small {
 font-size: 26px;
}

/* ラッパー共通 */
.basic-wrap {
 max-width: 1300px;
 margin: 0 auto;
 padding: 80px 20px;
}

.wide-wrap {
 padding: 80px 0;
}

.slim-wrap {
 max-width: 800px;
 margin: 0 auto;
 padding: 80px 20px;
}

.bg-white {
 background: #fff;
}



/* タイトル共通 */
.title-line {
 font-size: 38px;
 font-weight: 900;
 text-align: center;
 display: inline-block;
 border-top: 8px solid #333;
 padding: 5px 30px;
 margin-bottom: 40px;
 border-bottom: 8px solid #333;
 transform: skewX(-10deg);
}


/* 共通ボタン */
#wcfront_base .btn,
#wcfront_base a.btn {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 background: #ffd400;
 color: #333;
 font-size: 16px;
 font-weight: 700;
 padding: 14px 60px;
 border-radius: 50px;
 text-decoration: none;
 position: relative;
 overflow: hidden;
 transition: color 0.3s ease;
}

.btn::before {
 content: '';
 position: absolute;
 inset: 0;
 background: #333;
 border-radius: 50px;
 transform: scaleX(0);
 transform-origin: left;
 transition: transform 0.35s ease;
 z-index: 0;
}

.btn span,
.btn i {
 position: relative;
 z-index: 1;
 transition: color 0.3s ease;
}

.btn:hover::before {
 transform: scaleX(1);
}

.btn:hover span,
.btn:hover i {
 color: #ffd400;
}



/* ヘッダー */
#wcfront_base header {
 background: #fff;
}

.header-inner {
 display: flex;
 align-items: center;
 gap: 20px;
 margin: 0 auto;
 padding: 5px 15px;
}

.header-logo img {
 height: 100px;
}

.header-contact {
 display: flex;
 align-items: center;
 gap: 10px;
 margin-left: auto;
}

.header-contact img {
 height: 60px;
}


.header-contact .info {
 text-align: center;
}

#wcfront_base .header-contact p {
 margin-bottom: -15px;
 margin-top:0;
 font-weight: 700;
}

#wcfront_base .header-contact p:last-child {
 font-size: 14px;
 margin-top: -10px;
 margin-bottom: 0;
}


#wcfront_base a.header-tel {
 display: block;
 text-decoration: none;
 color: #333;
 margin-top: -10px;
}

.header-tel span {
 font-size: 40px;
 font-weight: 900;
 font-style: italic;
 letter-spacing: 0;
}


#wcfront_base .circle-btns {
 display: flex;
 gap: 8px;
}

#wcfront_base .circle-btns a {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 4px;
 width: 90px;
 height: 90px;
 border-radius: 50%;
 font-size: 13px;
 font-weight: 700;
 text-decoration: none;
 transition: transform 0.15s ease;
}

#wcfront_base .circle-btns a i {
 font-size: 22px;
 margin-bottom: -10px;
}

#wcfront_base a.btn-line {
 background: #06c755;
 color: #fff;
}

#wcfront_base a.btn-contact {
 background: #333;
 color: #fff;
}

@keyframes btn-hover {
 0% {
  transform: scale(1);
 }

 40% {
  transform: scale(0.90);
 }

 100% {
  transform: scale(1);
 }
}

#wcfront_base .circle-btns a:hover {
 animation: btn-hover 0.3s ease forwards;
}




/* ナビ */
.global-nav {
 background: #ffd400;
}

.global-nav ul {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 40px;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
 height: 50px;
}

#wcfront_base .global-nav li a {
 position: relative;
 font-weight: 700;
 color: #333;
 text-decoration: none;
 white-space: nowrap;
}

.global-nav li a::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 0;
 width: 0;
 height: 2px;
 background: #333;
 transition: width .3s ease;
}

.global-nav li a:hover::after {
 width: 100%;
}



/* ファーストビュー */
.fv {
 background: #fffaee;
}

.town-up {
 margin-top: 10px;
}


.town-bottom {
 margin-bottom: 10px;
}




.fv-inner {
 display: flex;
 justify-content: center;
 align-items: center;
 max-width: 1200px;
 margin: 0 auto;
 padding: 40px 20px;
}

.fv-left {
 position: relative;
 width: 37%;
}

.fv-left img:first-child {
 position: absolute;
 top: 0;
 left: 0;
 width: 200px;
}

.fv-left img:last-of-type {
 display: block;
 margin: 0 auto;
}


.fv-right {
 width: 63%;
 text-align: center;
}


.fv-area {
 display: inline-flex;
 align-items: center;
 gap: 0;
 transform: skewX(-8deg);
 margin-left: 10px;
}

.fv-area span:first-child {
 background: #333;
 color: #fff;
 font-size: 18px;
 font-weight: 700;
 padding: 10px 15px;
 white-space: nowrap;
 border: 2px solid #333;
}

.fv-area span.last {
 font-size: 18px;
 font-weight: 700;
 padding: 10px 20px;
 background: #fff;
 border: 2px solid #333;
 border-left: none;
}







/* 買取実績 */

.results {
 text-align: center;
}

.results .grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 50px;
 margin-top: 30px;
 margin-bottom: 30px;
}

.results .item {
 text-decoration: none;
 display: block;
}

.results .img {
 position: relative;
 width: 100%;
 height: 180px;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 border-radius: 12px;
 overflow: visible;
}

.results .img.case-1 {
 background-image: url('/common/upload/files/img/case-1.jpg');
}

.results .img.case-2 {
 background-image: url('/common/upload/files/img/case-2.jpg');
}

.results .img.case-3 {
 background-image: url('/common/upload/files/img/case-3.jpg');
}

.results .img.case-4 {
 background-image: url('/common/upload/files/img/case-4.jpg');
}

.results .area {
 position: absolute;
 top: -12px;
 right: 4px;
 background: #ffd400;
 font-size: 13px;
 font-weight: 700;
 padding: 4px 10px;
 border-radius: 8px;
 z-index: 1;
}

.results .badge {
 position: absolute;
 bottom: -15px;
 left: -28px;
 width: 140px;
}

.results .badge img {
 width: 100%;
 display: block;
}

.results .badge span,
.results .badge strong {
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 text-align: center;
 white-space: nowrap;
 color: #333;
}

.results .badge span {
 font-size: 12px;
 font-weight: 700;
 top: 7px;
 left: 97px;
}

.results .badge strong {
 font-size: 13px;
 font-weight: 900;
 top: 10px;
 left: 100px;
}

.results .badge strong em {
 font-size: 32px;
 font-style: normal;
}


.results .info {
 text-align: left;
 padding: 20px;
}

.results .info div {
 display: flex;
 align-items: center;
 gap: 10px;
 font-size: 14px;
 margin-bottom: 10px;
}

.results .info span:first-child {
 background: transparent;
 color: #333;
 font-size: 13px;
 font-weight: 700;
 padding: 4px 8px;
 border: 2px solid #333;
 white-space: nowrap;
}




/* カウベルとは */
.about-index {
 display: flex;
 align-items: center;
 gap: 60px;
 background: #fffbe6;
 border-radius: 20px;
 padding: 60px 40px;
 max-width: 1100px;
 margin: 0 auto;
}

.about-index .left {
 width: 45%;
 text-align: center;
 flex-shrink: 0;
}

.about-index .left img {
 width: 100%;
 display: block;
}



.about-index .right {
 width: 55%;
}


.about-index .right p {
 margin-bottom: 30px;
}


/* 手続き */
.flow-index {
 display: flex;
 align-items: center;
 margin: 0 auto;
}

.flow-index .img {
 width: 60%;
 flex-shrink: 0;
}

.flow-index .info {
 width: 40%;
 padding: 0 60px;
}

.flow-index p {
 margin-bottom: 20px;
}



/* メンバー紹介 */
.staff-index {
 text-align: center;
}

.staff-index .grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 20px;
 margin-bottom: 30px;
 align-items: end;
}

.staff-index .item .img {
 margin-bottom: 10px;
}

.staff-index .item .img img {
 width: 100%;
 display: block;
}

.staff-index .item span {
 font-size: 15px;
 font-weight: 700;
}

.staff-index h3 {
 margin: 20px 0 30px;
}




/* よくある質問 */
.faq-bg {
 background: #fffbe6;
}

.faq-index {
 width: 800px;
 margin: 0 auto;
 text-align: center;
}

.faq-index .list {
 margin-top: 40px;
 margin-bottom: 40px;
}

.faq-index .item {
 display: flex;
 align-items: flex-start;
 gap: 30px;
 text-align: left;
 margin-bottom: 80px;
}

.faq-index .item img {
 width: 120px;
}





/* 運営会社 */
#wcfront_base .parts--html .company-index {
 text-align: center;
}

#wcfront_base .parts--html .company-index .txt-box {
 text-align: left;
 line-height: 1.8;
 margin: 0 auto;
 margin-bottom: 40px;
 width: 60%;

}

#wcfront_base .parts--html .company-index .inner {
 display: flex;
 align-items: center;
 gap: 40px;
 margin-bottom: 40px;
 text-align: left;
}

#wcfront_base .parts--html .company-index table {
 width: 45%;
 border-collapse: collapse;
 flex-shrink: 0;
}

#wcfront_base .parts--html .company-index th,
#wcfront_base .parts--html .company-index td {
 padding: 16px 10px;
 border-bottom: 1px solid #ccc;
 font-size: 15px;
 vertical-align: top;
}

#wcfront_base .parts--html .company-index th {
 font-weight: 700;
 white-space: nowrap;
 width: 140px;
}

#wcfront_base .parts--html .company-index td {
 line-height: 1.8;
}

#wcfront_base .parts--html .company-index .inner img {
 width: 55%;
 object-fit: cover;
 border-radius: 8px;
}





/* マップ */
.map {
 width: 100%;
}

.map iframe {
 width: 100%;
 height: 450px;
 border: none;
 display: block;
}



/* CTA */
.cta {
 text-align: center;
}

.cta .tel {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 16px;
 margin-bottom: 30px;
}

.cta .tel img {
 width: 80px;
}

.cta .tel .info {
 display: flex;
 align-items: center;
 flex-direction: column;
 text-align: left;
}

.cta .tel .copy {
 font-size: 26px;
 font-weight: 700;
}

#wcfront_base .cta .tel a {
 text-decoration: none;
 color: #333;
}

.cta .tel .number {
 font-size: 64px;
 font-weight: 900;
 font-style: italic;
 line-height: 1.1;
}

.cta .tel .time {
 font-size: 18px;
 font-weight: 700;
 margin-top: 10px;
}


.cta .btns {
 display: flex;
 justify-content: center;
 gap: 20px;
 margin-bottom: 20px;
}

#wcfront_base .cta .btns a {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 20px 60px;
 border-radius: 50px;
 font-size: 18px;
 font-weight: 700;
 text-decoration: none;
 position: relative;
 overflow: hidden;
 transition: color 0.3s ease;
}

.cta .btns a::before {
 content: '';
 position: absolute;
 inset: 0;
 border-radius: 50px;
 transform: scaleX(0);
 transform-origin: left;
 transition: transform 0.35s ease;
 z-index: 0;
}

.cta .btns a span,
.cta .btns a i {
 position: relative;
 z-index: 1;
 transition: color 0.3s ease;
}

.cta .btns a:hover::before {
 transform: scaleX(1);
}

/* LINE */
.cta .btns .btn-line::before {
 background: #333;
}

.cta .btns .btn-line:hover span,
.cta .btns .btn-line:hover i {
 color: #06c755;
}

/* お問い合わせ */
.cta .btns .btn-contact::before {
 background: #ffd400;
 ;
}

.cta .btns .btn-contact:hover span,
.cta .btns .btn-contact:hover i {
 color: #333;
}

.town-footer {
 width: 100%;
 display: block;
 margin-top: 40px;
}


/* フッター */
#wcfront_base footer {
 background: #ffd400;
}


.footer-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 margin: 0 auto;
 padding: 20px;
}

.footer-left img {
 width: 300px;
 display: block;
 margin-bottom: 10px;
}

.footer-left span {
 font-size: 14px;
 font-weight: 700;
}

.footer-right {
 display: flex;
 align-items: center;
 gap: 20px;
}

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

.footer-contact img {
 height: 60px;
}

.footer-contact .info {
 text-align: center;
}

.footer-contact p {
 margin-top: 0;
 font-weight: 700;
}

.footer-contact p:last-child {
 font-size: 13px;
 font-weight: normal;
 margin-top: 5px;
}

#wcfront_base a.footer-tel {
 display: block;
 text-decoration: none;
 color: #333;
 line-height:1.3;
}

.footer-tel span {
 font-size: 40px;
 font-weight: 900;
 font-style: italic;
 letter-spacing: 0;
}

.footer-btns {
 display: flex;
 gap: 8px;
}









/* ナビ */
.footer-nav {
 border-top: 1px solid rgba(0, 0, 0, .15);
}

.footer-nav ul {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 40px;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
 height: 50px;
}

#wcfront_base .footer-nav li a {
 position: relative;
 font-weight: 700;
 color: #333;
 text-decoration: none;
 white-space: nowrap;
 font-size: 14px;
}

.footer-nav li a::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 0;
 width: 0;
 height: 2px;
 background: #333;
 transition: width .3s ease;
}

.footer-nav li a:hover::after {
 width: 100%;
}





/* コピーライト */
.footer-copy {
 background: #333;
 text-align: right;
 padding: 10px 20px;
}

.footer-copy span {
 font-size: 12px;
 color: #fff;
}



/* ページタイトル */
.page-title {
 text-align: center;
 margin-bottom: 40px;
}


.cont {
 width: 800px;
 margin: 0 auto;
 display: flex;
 align-items: center;
 gap: 40px;
 margin-bottom: 60px;
}

.cont .left {
 width: 350px;
 flex-shrink: 0;
 text-align: center;
}

.cont .left img {
 width: 100%;
 display: block;
}

.cont .left span {
 font-size: 13px;
 color: #999;
 display: block;
 margin-top: 8px;
}

.cont .right {
 flex: 1;
}


.box-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 20px;
}

.box-grid .item {
 display: flex;
 align-items: center;
 gap: 30px;
 border-radius: 12px;
 overflow: hidden;
}

.box-grid .item .img {
 width: 220px;
 height: 180px;
 background: #fffbe6;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
}

.box-grid .service-1 .img {
 background-image: url('/common/upload/files/img/service-1.jpg');
}

.box-grid .service-2 .img {
 background-image: url('/common/upload/files/img/service-2.jpg');
}

.box-grid .service-3 .img {
 background-image: url('/common/upload/files/img/service-3.jpg');
}

.box-grid .service-4 .img {
 background-image: url('/common/upload/files/img/service-4.jpg');
}

.box-grid .item .text {
 padding: 20px 20px 20px 0;
 flex: 1;
}



.cont-2 {
 width: 1200px;
 display: flex;
 align-items: center;
 margin: 0 auto;
}

.cont-2 .img {
 width: 40%;
 flex-shrink: 0;
}



.cont-2 .info {
 width: 55%;
 padding: 0 60px;
}


.cont-2 p {
 margin-bottom: 20px;
}



.txt-box {
 width: 650px;
 margin: 0 auto;
 margin-bottom: 60px;
}



/* 手続きの流れ */
.flow-steps {
 width: 800px;
 margin: 40px auto;
}





.flow-steps .step {
 background: #333;
 color: #fff;
 font-size: 24px;
 font-weight: 700;
 text-align: center;
 padding: 16px;
 transform: skewX(-8deg);
}

.flow-steps .step span {
 display: inline-block;
 transform: skewX(8deg);
}

.flow-steps .arrow {
 width: 0;
 height: 0;
 border-left: 20px solid transparent;
 border-right: 20px solid transparent;
 border-top: 20px solid #333;
 margin: 20px auto;
}

/* 手続きリスト */


.flow-list {
 width: 800px;
 padding-top: 60px;
 margin: 40px auto;
}



.flow-list .item {
 display: flex;
 align-items: center;
 gap: 30px;
 margin-bottom: 40px;
}

.flow-list .item .img {
 width: 200px;
 height: 160px;
 flex-shrink: 0;
 border-radius: 12px;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 background-color: #fffbe6;
}

.flow-list .item.f-1 .img {
 background-image: url('/common/upload/files/img/flow-1.jpg');
}

.flow-list .item.f-2 .img {
 background-image: url('/common/upload/files/img/flow-2.jpg');
}

.flow-list .item.f-3 .img {
 background-image: url('/common/upload/files/img/flow-3.jpg');
}

.flow-list .item.f-4 .img {
 background-image: url('/common/upload/files/img/flow-4.jpg');
}

.flow-list .item.f-5 .img {
 background-image: url('/common/upload/files/img/flow-5.jpg');
}

.flow-list .item.f-6 .img {
 background-image: url('/common/upload/files/img/flow-6.jpg');
}

.flow-list .item .text h3 {
 font-size: 22px;
 font-weight: 900;
 margin-bottom: 10px;
}

.flow-list .item .text p {
 font-size: 15px;
 line-height: 1.8;
}



/* スタッフリスト */
.staff-list {
 width: 800px;
 margin: 0 auto;
 margin-top: 60px;
}

.staff-list .item {
 display: flex;
 align-items: center;
 gap: 40px;
 padding: 60px 0;
 border-bottom: 1px solid #ddd;
}


.staff-list .item:last-child {
 border-bottom: 0px;
}



.staff-list .item .img {
 width: 240px;
 flex-shrink: 0;
}




/* ページャー */
.pager {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 8px;
 margin-top: 80px;
}

.pager.ex {
 margin-top: 40px;
}


.pager a {
 display: flex;
 align-items: center;
 justify-content: center;
 min-width: 50px;
 height: 50px;
 padding: 0 16px;
 border: 2px solid #333;
 font-size: 15px;
 font-weight: 700;
 text-decoration: none;
 color: #333;
}

.pager a.current {
 background: #333;
 color: #fff;
}

.pager a:hover {
 background: #f5c800;
}




/* お問い合わせフォーム */
.contact-form {
 max-width: 700px;
 margin: 0 auto;
 margin-top: 30px;
}

.contact-form .field {
 margin-bottom: 50px;
}

.contact-form label {
 display: block;
 font-size: 18px;
 font-weight: 700;
 margin-bottom: 8px;
}

.contact-form .required {
 color: #e00;
 margin-left: 4px;
}

.contact-form .checks {
 border: 1px solid #ccc;
 border-radius: 8px;
 padding: 45px;
 background: #fff;
}

.contact-form .checks label {
 display: flex;
 align-items: center;
 gap: 8px;
 font-weight: 500;
 margin-bottom: 20px;
}

.contact-form .checks label:last-child {
 margin-bottom: 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
 width: 100%;
 border: 1px solid #ccc;
 border-radius: 8px;
 padding: 20px;
 font-size: 15px;
 font-family: inherit;
 outline: none;
 background: #fff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
 border-color: #f5c800;
}

.contact-form textarea {
 resize: vertical;
}

.contact-form .submit {
 text-align: center;
 margin-top: 40px;
}

.contact-form button.btn {
 border: none;
 cursor: pointer;
}

/* お電話でのお問合せ */
.contact-tel {
 text-align: center;
 display: block;
}



.contact-tel {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 10px;
}

.contact-tel img {
 height: 100px;
}

.contact-tel .info {
 display: flex;
 flex-direction: column;
 text-decoration: none;
}

.contact-tel .time {
 font-size: 20px;
 font-weight: 700;
 margin-top: 10px;
}


.contact-tel a {
 text-decoration: none;
}


/* LINEで相談 */
.contact-line {
 text-align: center;
}

.contact-line img {
 width: 200px;
 height: 200px;
 background: gray;
 margin-top: 20px;
 display: block;
 margin-left: auto;
 margin-right: auto;
 background: #f0f0f0;
}



/* アクセス */
.access-info {
 max-width: 700px;
 margin: 0 auto 60px;
}

.access-info table {
 width: 100%;
 border-collapse: collapse;
}

#wcfront_base .parts--html .access-info th,
#wcfront_base .parts--html .access-info td {
 padding: 16px 10px;
 border:none;
 border-bottom: 1px solid #ccc;
 font-size: 15px;
 vertical-align: top;
}

#wcfront_base .parts--html .access-info th {
 font-weight: 700;
 white-space: nowrap;
 width: 140px;
}

.access-info td {
 line-height: 1.8;
}



/* 買取実績詳細 */
.case-detail {
 display: flex;
 align-items: flex-start;
 gap: 60px;
}

.case-detail .img {
 width: 45%;
 flex-shrink: 0;
}

.case-detail .img img {
 width: 100%;
 display: block;
 border-radius: 16px;
}

.case-detail .info {
 flex: 1;
}


.case-detail table {
 width: 100%;
 margin-top: 30px;
 border-collapse: collapse;
}

.case-detail th,
.case-detail td {
 padding: 16px 10px;
 border-bottom: 1px solid #ccc;
 font-size: 15px;
 vertical-align: middle;
}

.case-detail th {
 font-weight: 700;
 white-space: nowrap;
 width: 120px;
}

.case-detail td {
 line-height: 1.8;
}





.breadcrumb {
 padding: 6px 16px;
 margin-top: 30px;
 margin-left: 30px;
}

.breadcrumb span {
 margin-left: 5px;
 margin-right: 5px;
}





/* ---------------------------- */



body:not(.admin_edit) .anm-fade_up,
body:not(.admin_edit) .anm-fade_down,
body:not(.admin_edit) .anm-fade_left,
body:not(.admin_edit) .anm-fade_right {
 opacity: 0;
 transition: opacity 0.6s ease, transform 0.6s ease;
}

body:not(.admin_edit) .anm-fade_up {
 transform: translateY(30px);
}

body:not(.admin_edit) .anm-fade_down {
 transform: translateY(-30px);
}

body:not(.admin_edit) .anm-fade_left {
 transform: translateX(30px);
}

body:not(.admin_edit) .anm-fade_right {
 transform: translateX(-30px);
}

body:not(.admin_edit) .anm-fade_up.animated,
body:not(.admin_edit) .anm-fade_down.animated,
body:not(.admin_edit) .anm-fade_left.animated,
body:not(.admin_edit) .anm-fade_right.animated {
 opacity: 1;
 transform: translate(0);
}


#wcfront_base .sp {
 display: none;
}

#wcfront_base .sub {
 display: none;
}


#wcfront_base .tab {
 display: none;
}

#wcfront_base .pc {
 display: block;
}
