/*
Theme Name: RDSGN ORIGINAL									
*/
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


.pc{
	display:none!important;
}

.grecaptcha-badge { visibility: hidden; }

.denwa-lp{
	        font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif!important;
	font-size:12px;
	font-weight:normal;
}
.all {
    position: relative;
    z-index: 1; /
	transition: 1.0s ;
}
.all a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2;
}
.all:hover {
	transition: 1.0s ;
    opacity:0.7;
    zoom:1;/*IE*/
}

.ov a img{
	transition: 1.0s ;
}
.ov a:hover img{
	opacity:0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

.rubik{
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
}
.yu{
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}


/* 光らせるためのstyle */
.shine {
  position: relative;
  overflow: hidden;
}
/* 光の疑似要素 */
.shine::before {
  content: "";
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
}
/* 光の動き */
@keyframes shine {
  0% {
    left: -160%;
    opacity: 0;
  }
  70% {
    left: -160%;
    opacity: 0.5;
  }
  71% {
    left: -160%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}

/**************************************************************
全体
**************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    font: 500 16px/1.75 "Noto Sans JP", sans-serif;
    color: #000;
    text-align: left;
    letter-spacing: 0.05em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-size: 13px;

    margin: 0px;
    text-align: center;
    line-height: 180%;
}
/**************************************************************
リンク
**************************************************************/
a:link {
    color: #000;
    text-decoration: none;
	transition: 1.0s ;
}
a:visited {
    color: #000;
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: none;
}
a:active {
    color: #000;
    text-decoration: none;
}

/**************************************************************
ヘッダー
**************************************************************/
#title {
    margin: 0px;
	padding:10px 0 0 0;
    position: relative;
    text-align: left;
}
#title-inner {
    margin: 0 auto;
}
#title-inner .logo {
	display:block;
	width:100%;
	text-align:center;
	padding-bottom:10px;
}

#title .chushaku{
	display:none;
}
#title-inner .logo img {
	width:40%;
	height:auto;
}
#title-inner .apply-set{
    display: flex;
    margin-top: 15px;
}
#title-inner .apply-set .tel{
	width:50%;
}
#title-inner .apply-set .tel a{
    background: linear-gradient(to bottom, #f6c100 50%, #f6ae00 50%);
    padding: 7px;
    font-size: 14px;
    font-weight: 600;
	justify-content:center;
    display: flex;
    align-items: center;
}
#title-inner .apply-set .tel img{
    width: 15px;
    height: auto;
    margin-right: 8px;
}
#title-inner .apply-set .mail{
	width:50%;
}
#title-inner .apply-set .mail a{
	justify-content:center;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #003a84 50%, #023576 50%);

    padding: 7px;
    font-size: 14px;
    color: #fff;
     font-weight: 600;
}

#title-inner .apply-set .mail img{
    width: 15px;
    height: auto;
    margin-right: 8px;
}


/**************************************************************
Humberger
**************************************************************/
.menu-btn {
    position: fixed;
    top: 5px;
    right: 7px;
    display: flex;
    height: 45px;
    width: 45px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    border-radius: 5px;
    z-index: 120;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #000;
    position: absolute;
    transition: all 0.3s;
}
.menu-btn span::before {
    bottom: 8px;
}
.menu-btn span::after {
    top: 8px;
}
#menu-btn-check {
    display: none;
}
/* アイコンがチェック時に変化する部分 */
#menu-btn-check:checked + label.menu-btn span {
    background-color: transparent;
}
#menu-btn-check:checked + label.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #fff; /* ここで白くする */
}
#menu-btn-check:checked + label.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #fff; /* ここで白くする */
}
/* メニューの表示設定 */
.menu-content {
    text-align: left;
    padding: 50px 30px;
    width: 80%;
    box-sizing: border-box;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background: rgba(0, 0, 0, 0.90);
    transition: left 0.5s ease; /* メニュー表示アニメーション */
    z-index: 100;
}
/* チェック時にメニューが表示される */
#menu-btn-check:checked ~ .menu-content {
    left: 20%;
}
.menu-content a {
    padding: 10px;
    display: block;
    border-bottom: dotted 1px #fff;
	color:#fff!important;
    display: flex;
}
.menu-content a img {
    width: 20px;
    height: auto;
    margin-right: 25px;
}
.menu-content h3 {
    font-size: 16px;
    padding-bottom: 5px;
    color: #fff;
    margin-bottom: 10px;
}
.menu-content .linkbox {
    position: relative;
}
.menu-content .linkbox a {
    padding: 20px 12px 20px 32px;
    border: solid 1px #fff;
    color: #fff;
    display: block;
    line-height: 100%;
    font-size: 16px;
    margin-left: 15px;
    position: relative;
    margin-bottom: 7px;
}
.menu-content .linkbox a::before {
    content: " ";
    display: block;
    width: 6px;
    height: 8px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../../../image/base/arw_white.svg) no-repeat center center;
    -webkit-background-size: 6px 8px;
    background-size: 6px 8px;
}
.menu-content .secont {
    margin-top: 35px;
}

.menu-content .linkbox2 a{
	background-color:#d90000!important;
}

/**************************************************************
Footer
**************************************************************/
#bottom {
	margin: 0px;
	position: relative;
	text-align: center;
	font-size: 12px;
	padding-top: 30px;
	padding-bottom: 10px;
	background-color: #fff;
	overflow: hidden;
	width: 100%;
	color:#000;
	border-top:solid 3px #fcc800;
}


#bottom-inner{
	width:1200px;
	margin:0 auto;
}

.bottom-box{width:360px;
float:left;
margin:20px;}

#bottom a:link, #bottom a:visited {
	color: #000;
	font-size: 14px;

}
#bottom a:hover, #bottom a:active {
	color: #c50000;
}

.bottom-tt{
	font-size:16px;
	color:#000;
	border-bottom:solid 1px #000;
	margin-bottom: 10px;
	padding: 5px 0;
}

.bottom-line{
	padding:3px;
	margin-bottom:1px;
	border-bottom:dotted 1px #000;
	margin-left: 15px;
	margin-right: 15px;
	text-align: left;
	font-size:14px;
}


.top-return{position:fixed;
bottom: 10px; 
right: 0px; 
z-index: 1500;}

.privacy-con{
	    float: right;
	width: 550px;}

#bottom .sns{
	padding-top:15px;
}
#bottom .sns img{
	width:50px;
	height:auto;
	margin-left:5px;
	margin-right:5px;
}

.footer-raijou a{
	padding:15px;
	display:block;
	background-color:#FFE500;
	font-size:18px;
	border-radius:5px;
}
.footer-raijou a:hover{
	background-color:#fff600;
	color:#000;
}


.footer-panf a{
	padding:15px;
	display:block;
	background-color:#ffa208;
	font-size:18px;
	border-radius:5px;
	margin-top:10px;
}
.footer-panf a:hover{
	background-color:#ffbc08;
	color:#000;
}

.gototop a{
	display:none;

}




.sub-title{
    background-color: #eb6100;
    padding: 30px;
    font-size: 24px;
    color: #fff;
}

.w1100{
    width: 1100px;
    padding: 80px 0;
    margin: 0 auto;
}
.w1000{
    width: 1000px;
    padding: 80px 0;
    margin: 0 auto;
}


/**************************************************************
各ページ
**************************************************************/

.main-visual{
    padding: 20px 0;
}

.main-visual img{
    width: 1100px;
    height: auto;
}

.cta{
    background-color: #f5f5f5;
    padding: 20px;
}
.cta-inner{
    margin: 0 auto;
}
.cta-inner .cta-tel{
    background-color: #fff;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 5px;
	margin-bottom:10px;
}

.cta-inner .mm{
    font-size: 16px;
    padding: 5px 0;
    line-height: 100%;
    font-weight: 600;
}
.cta-inner .pp{
    font-size: 18px;
        line-height: 100%;
    font-weight: 600;
    padding: 5px 0;
    color: #C30003;    
}
.cta-inner .bb{
    font-size: 26px;
    padding: 5px 0;
    display: flex;
    margin-top:5px;
    justify-content: center;
}
.cta-inner .bb img{
    width: 20px;
    height: auto;
    margin-right: 5px;
}

.cta-inner .cta-ap{

    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-sizing: border-box;
}
.cta-inner .botan{

}
.cta-inner .botan a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: #bd0000;
    color: #fff;
    width: 80%;
    margin: 10px auto 0;
    font-size: 16px;
    line-height: 100%;
    border-radius: 5px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-inner .botan a:hover {
    background-color: #a00000; /* 少し濃い赤 */
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-inner .botan img{
    width: 19px;
    height: auto;
    margin-right: 5px;
}

.kyokan{
    padding: 30px 20px 15px 20px;
}

.kyokan h2{
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
}

.kyokan-inner{
    margin: 0 auto;
    display: flex;
    padding-bottom: 50px;
	flex-wrap:wrap;
}

.kyokan-inner .case{
    width: 48%;
    margin: 1%;
    background-color: #F1F1F1;
    padding: 15px;
    box-sizing: border-box;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
	margin-bottom:20px;
}
.kyokan-inner .case .pic{
    text-align: center;
}
.kyokan-inner .case .pic img{
    width: 70%;
    height: auto;
    border-radius: 50%;
}
.kyokan-inner .case h3{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.kyokan-inner .case p{
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}
.kyokan-inner .case p br{
	display:none;
}
.kyokan-inner .case p strong{
    font-size: 18px;
    color: #B70003;
}

.restage-solution {
  background: #f9f9f9;
  padding: 30px 20px;

}

.restage-solution .container {
  margin: auto;
  text-align: center;

}

.solution-title {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}

.solution-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.solution-card {
	width:46%;
	margin:1%;
	box-sizing:border-box;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
}

.solution-card .icon {
  font-size: 36px;
  margin-bottom: 20px;
}


.solution-card .icon img{
    width: 50px;
    height: auto;
}

.solution-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #222;
    line-height: 120%;
}
.solution-card h3 br{
	display:none;
}

.solution-card p {
  font-size: 13px;
    margin-top: 15px;
        font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
        line-height: 150%;
}
.solution-card p br{
	display:none;
}
.anshinmax{
    font-weight: 800;
    font-size: 16px;
    line-height: 150%;
    padding: 80px 0 10px 0;
    margin-bottom: 0!important;
	padding:10px;
	margin:20px;
	margin-top:100px;
        background-color: rgba(255, 255, 255, 0.7);
}
.anshinmax br{
	display:none;
}
.anshinmax span{
    font-size: 30px;
    color: #D30003;
    font-weight: 500;
}

.an-max{
    background-color: #f2f4ef;
    padding: 50px 0 20px 0;
    background-image: url("../../../image/main/bg.jpg");
    background-position: right top;
    background-repeat: no-repeat;
	background-size:120%;
}


.ree{
    justify-content: center;
    font-size: 24px;
    align-items: center;
    color: #003a84;
    font-weight: 800;
    margin-bottom: 30px;
	margin:20px;
	padding:10px;

}
.ree img{
    height: 60px;
    width: auto;
}

/***買取商品一覧**************/
.furniture-accordion {
  margin: 50px auto;
  padding: 0 20px;

}

.furniture-accordion h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 600;
}

.itenkaitori{
    font-size: 16px;
    color: #CA0003;
    font-weight: 600;
    line-height: 160%;
    margin-bottom: 30px;
}



.accordion-toggle {
  width: 100%;
  background: #f0f0f0;
  border: none;
  padding: 10px;
  font-size: 13px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 5px;
  transition: background 0.2s;
}

.accordion-toggle:hover {
  background: #e0e0e0;
}

.accordion-content {
  display: none;
  background: #fff;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
}

.accordion-content ul {
  padding-left: 20px;
  margin: 0;
}

.accordion-content li {
  margin-bottom: 6px;
  font-size: 13px;
}

.accordion-content {
  display: none; /* 初期状態で非表示 */
  background: #fff;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
}

.accordion-content ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.accordion-content li {
	width:48%;
	margin:1%;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 10px 12px;
  box-sizing: border-box;
  font-size: 12px;
  color: #333;
  text-align: center;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    line-height: 150%;
	font-weight:normal;
}


.accordion-toggle.active {
  background-color: #e0f5ff;
  font-weight: bold;
}

.re-taisho{
    padding: 10px 0;
    font-size: 13px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    line-height: 150%;
}


.cta-before-list {
  background: #fff100;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  margin: 25px auto;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    line-height: 150%;
}

.cta-before-list h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222;
}

.cta-before-list p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #000;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  line-height: 150%;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s;color: #fff;
    font-weight: 500;
}

.btn-primary {
  background: #ff4800;
  color: #fff!important;
}

.btn-primary:hover {
  background: #b31100;
}

.btn-secondary {
  background: #fff;
  color: #007acc;
  border: 2px solid #007acc;
}

.btn-secondary:hover {
  background: #e6f2ff;
}

.ree {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.arrow-down {
    text-align: center;
    font-size: 46px;
    color: #ca0003;
    animation: bounce 1.5s infinite;
}

/* 下にピョンピョンするアニメーション（任意） */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}



/*********買取の流れ****/
.flow-section-outer{
    background-color: #f5f5f5;
	padding:30px 20px;
}

.flow-section {
  margin: 0 auto;


}

.flow-section h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
    font-weight: 600;
}

.flow-lead {
  text-align: center;
  font-size: 13px;
  color: #666;
    margin-bottom: 20px;
}

.timeline {
  position: relative;
  border-left: 3px solid #007acc;
  padding-left: 30px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item .circle {
    font-size: 20px;
  position: absolute;
  left: -20px;
  top: 0;
  background: #007acc;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;font-style: italic;

}

.timeline-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #222;
}

.timeline-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.content-with-image {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.step-image {
  width: 180px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.step-text {
  flex: 1;
  min-width: 200px;
    text-align: left;
}


.m-irai-botan a{
    display: block;
    margin: 0 auto;
    background-color: #B90003;
	padding:10px;
    font-size: 16px;
    line-height: 100%;
    color: #fff!important;
	margin-top:15px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.m-irai-botan a:hover {
    background-color: #a00000; /* 少し濃い赤 */
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/*************************************
他社との比較
***********************/

.hikaku{
    background-image: url("../../../image/main/fee-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 20px;
}

.hikaku-inner{
    margin: 0 auto;
 background-color: rgba(255, 255, 255, 0.9); /* ← ここがポイント */
    padding: 25px;
    box-sizing: border-box;
    border-radius: 10px;
}


.compare-section {
  text-align: center;
}

.compare-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
	line-height:140%;
}

.compare-section .lead {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
	margin-top:25px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  line-height: 150%;
}

.compare-table-wrapper {
  overflow-x: auto;
    background-color: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  border: 1px solid #ccc;
  padding: 12px 10px;
  text-align: center;
	  white-space: nowrap;
}

.compare-table thead th {
  background: #f5f5f5;
    font-weight: 600;
    font-size: 18px;
}

.compare-table .col-rs {
  background-color: #e0f5ff;
}

.compare-table .col-rs img{
    width: 150px;
    height: auto;
}





.compare-table .total {

}

.compare-table .total img{
    width: 100px;
    height: auto;
}


.compare-table .totalnum2{
    font-size: 20px;
	width:130px;
}


.compare-table .highlight {
  color: #007acc;
}

.compare-table .minus {
  color: #c00;
}

.compare-table small {
  display: block;
font-size: 14px;
    color: #e05959;
}

.compare-section .rei{

}

.compare-section .rei .joken{
    box-sizing: border-box;
    border: solid 1px #ccc;
    padding: 20px;
    font-size: 14px;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 25px;
    margin-bottom: 25px;
    background-image: url("../../../image/main/bikkuri2.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 200px;
	padding-bottom:100px;
}
.compare-section .rei .joken h3{
    color: #AF0002;
    font-size: 18px;
    line-height: 180%;
}
.compare-section .rei .joken p{
    text-align: left;
    padding: 7px;
    border-bottom:dashed 1px #ccc;
}

/***********************
会社概要
***********************/

.company{

}
.company-inner{
    margin: 0 auto;
    padding: 40px 20px;
}

.company-inner h2{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}
.company-inner h3{
    font-size: 18px;
    font-weight: 600;
    color: #D50003;
    margin-bottom: 30px;
}
.company-inner h3 span{
    font-size: 23px;
}

.com-pic{
    display: flex;
	flex-wrap:wrap;
}

.com-pic .point{
    width: 31%;
	margin:1%;

    box-sizing: border-box;
}
.com-pic .point img{
    width: 100%;
    height: auto;
}
.com-pic .point h4{
    padding: 10px;
    font-size: 14px;
	line-height:140%;
}
.com-pic .point p{
    font-size: 11px;
    line-height: 120%;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
.com-pic .point p br{
	display:none;
}
.c-outline{
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    margin: 0 auto;
    padding: 20px;
    margin-top: 40px;
    background-color: #f5f5f5;
    border-radius: 5px;
}
.c-outline .line{
    border-bottom: dashed 1px #ccc;
    text-align: left;
    font-size: 12px;
    line-height: 140%;
    align-items: center;
    padding: 15px 0;
}
.c-outline .line .mm{
	margin-bottom:5px;
    border-left: solid 3px #003a84;
    padding-left: 15px;
	font-weight:bold;
}
.c-outline .line .tex{

    border-left: solid 3px #f6c100;
    padding-left: 15px;
}
.footer-area{
	text-align:center;
	padding:25px 0;
}
.footer-area img{
	width:200px;
	height:auto;
	margin-bottom:20px;
}



.c-outline .staff-pic{
	margin-bottom:25px;
}
.c-outline .staff-pic img{
	width:100%;
	height:auto;
}

.youtube{}

.youtube iframe{
	width:100%;
	height:180px;
	margin-top:10px;
	border-radius:5px;
}

/****************************************
反響ページ　ヘッダーとフッターイレギュラー
*************************************************/

.ap-outer{
	background-color:#fffbe7;
	padding:40px 20px;
}

.ap-w1100{
	margin:0 auto;


}
.ap-w1100 .ll{
	box-sizing:border-box;

	background-repeat:no-repeat;
	background-position:bottom right;
}

.ap-w1100 .ll-1{
	background-image:none!important;
	padding-top:0!important;
}
.ap-midashi{
	display:none;
	text-align:left;
}

.ap-midashi img{
	height:auto;
}


.ap-w1100 .ll img{
	width:100%;
	height:auto;
}
.ap-w1100 .ll .ap-intro{
	text-align:left;
	font-size:16px;

	line-height:160%;
	font-weight:600;
}
.ap-w1100 .ll .ap-intro2{

	border:solid 1px #d90000;
	margin-top:30px;

	background-color:#fff;
}
.ap-w1100 .ll .ap-intro2-1{
	margin-right:10px!important;
	margin-top:0!important;
}
.ap-w1100 .ll .ap-intro2 h3{
	background-color:#d90000;
	color:#fff;
	padding:10px;
	font-size:18px;
	margin-bottom:15px;
}
.ap-w1100 .ll .ap-intro2 .naka{
	padding:15px;
}
.ap-w1100 .ll .ap-intro2 .naka p{
	padding:10px;
	font-size:14px;
	text-align:left;
}
.ap-w1100 .ll .ap-intro2 .naka h4{
	background-color:#000;
	padding:5px;
	margin-right:5px;
	color:#fff;
	font-size:13px;
	border-radius:5px;
	line-height:100%;
}

.ap-w1100 .rr{
}

.contact-frame{
	background-color:#fff;
	box-sizing:border-box;
	margin-top:20px;
}
.contact-frame h3{
	background-color:#d90000;
	color:#fff;
	font-size:18px;
	padding:10px;
}

.contact-inner-in{
	padding:15px;
}

.contact-frame .line{
	border-bottom:dotted 1px #ccc;
	padding:10px 0;
	align-items:center;
}
.contact-frame .line .mm{
	font-size:13px;
	text-align:left;
	margin-bottom:6px;
}
.contact-frame .line .mm span{
	background-color:#d95c00;
	color:#fff;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size:10px;
	text-align:left;
	margin-left:5px;
	padding:3px;
	line-height:100%;
}
.contact-frame .line .tx{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;

}

.contact-frame .line .tx input {
    width: 90%;
	padding:10px 5px;
    font-size: 19px;
    border: 1px solid #878787;
    border-radius: 0;
	box-sizing:border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;

}
.contact-frame .line .tx textarea {
    width: 90%;
	padding:10px 5px;
    font-size: 19px;
    border: 1px solid #878787;
    border-radius: 0;
	box-sizing:border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.wpcf7 input[type="submit"] {
	width:80%;
	margin:0 auto;
    background-color: #d90000; 
    color: #ffffff; 
    border-radius: 4px; 
    font-size: 16px; 
    padding: 10px 20px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
	border:none;
	    font: 500 16px/1.75 "Noto Sans JP", sans-serif;
	display:block;
	margin-top:25px;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #9a0000; 

    color: #fff;
	    font: 500 16px/1.75 "Noto Sans JP", sans-serif;
}

/* ラジオボタンのリストを横並びに */
.wpcf7-form-control-wrap .wpcf7-radio {
    display: flex;
    flex-wrap: wrap; /* はみ出した場合折り返し */
    gap: 5px; /* ラジオボタン同士の間隔 */
}

/* 各ラジオボタンのアイテム */
.wpcf7-form-control-wrap .wpcf7-list-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ★ ここを追加：ラジオボタンのデフォルトデザインを維持 */
.wpcf7-form-control-wrap .wpcf7-list-item input[type="radio"] {
    width: auto; /* 幅を制限せず、デフォルトの見た目に */
    padding: 0; /* 余計な余白を削除 */
    font-size: inherit; /* フォームのデフォルトフォントサイズを適用 */
    border: none; /* 枠線を削除 */
    box-shadow: none; /* 影を削除 */
    cursor: pointer; /* クリック可能な要素に */
}


.thx-mes{
	font-size:16px;
	line-height:180%;
	margin-bottom:50px;
}

.kotowari{
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        margin-top: 20px;
        color: #3e8d2b;

}
.kotowari2{
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        margin-top: 20px;
        color: #3e8d2b;
        font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}



/***********TOP POINT**************************/

.top-point{
	padding:50px 20px;
	margin:0 auto;
	border-bottom:dotted 1px #ccc;
}


.top-point-rev{
	flex-direction:row-reverse!important;
}

.top-point .top-point-l{
}
.top-point .top-point-l img{
	width:100%;
	height:auto;
}


.top-point .top-point-r{
	text-align:left;
	padding:20px;
}

.top-point .top-point-r h2{
        font-size: 60px;
        font-weight: 500;
        color: #e8e8e8;
        font-style: italic;
	
}
.top-point .top-point-r .etc{
	font-size:15px;
	padding:10px 0;
	margin-bottom:15px;
}
.top-point .top-point-r h3{
	font-size:28px;
	font-weight:600;
	line-height:140%;
	text-align:center;
	margin-bottom:18px;
}
.top-point .top-point-r h3 span{
	font-size:60px;
	font-style:italic;
}
.top-point .top-point-r h4{
	font-size:26px;
	font-weight:600;
	color:#b30000;
	margin-bottom:15px;
}
.top-point .top-point-r .setsumei{
	font-size:16px;
	line-height:180%;
}


.yokohyou{
	padding:5px;
	background-color:#fff;
	border-radius:5px;
	line-height:100%;
	font-size:12px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	line-height: 150%;
	margin-bottom:10px;
}



.mm-logo{
	border:solid 1px #ccc;
		border-radius:5px;
	background-color:#fff;
	text-align:center!important;
}
.mm-logo a{
	padding:5px!important;
}
.mm-logo img{
	width:60%!important;
	height:auto!important;
}


/*************************************
フッター
************/
.floating{
 background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0;
    z-index: 9999;
    width: 100%;

	box-sizing:border-box;
}

.floating .inner{
	display:flex;
    background-color: #fff;
    margin: 0 auto;
    align-items: center;
    border-radius: 5px;
	box-sizing:border-box;
}

.floating .inner .tel{
	display:none;
    font-size: 32px;
    font-weight: 800;
    line-height: 100%;
    color: #00a56f;
}

.floating .inner .tel::before {
    content: "";
    display: inline-block;
    background-image: url('../../../image/base/tel2.png'); /* 画像のパスを正しく指定してください */
    background-size: contain;
    background-repeat: no-repeat;
    width: 36px; /* アイコンの幅 */
    height: 36px; /* アイコンの高さ */
    margin-right: 8px; /* アイコンと電話番号の間のスペース */
    vertical-align: middle; /* アイコンとテキストの垂直位置を揃える */
}

.floating .inner .time{
	display:none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 120%;
    text-align: left;
    padding-left: 15px;
}

.floating .inner .raiten{
		width:35%;
}

.floating .inner .raiten a{
    display: block;
    padding: 12px 5px;
    background-color: #eb6100;
    color: #fff;
    font-size: 13px;
    line-height: 100%;
}

.floating .inner .raiten a:hover{
    background-color: #ff5400;
}


.floating .inner .raiten a::before {
    content: url(../../../image/base/icon-ap.png);
    position: relative;
    display: inline-block;
    width: 15px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}
.floating .inner .toi{
		width:50%;
}

.floating .inner .toi a{
    display: block;
    padding: 12px 5px;
    background-color: #00a75a;
    color: #fff;
    font-size: 13px;
    line-height: 100%;
}

.floating .inner .toi a:hover{
    background-color: #03874a;
}

.floating .inner .toi a::before {
  position: relative;
  display: inline-block;
  width: 15px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

/****スマホのみフッターTEL*********/

.floating .inner .teltel{
		width:50%;
}

.floating .inner .teltel a{
    display: block;
    padding: 12px 5px;
    background-color: #4fa4df;
    color: #fff;
    font-size: 13px;
    line-height: 100%;
}

.floating .inner .teltel a:hover{
    background-color: #4fa4df;
}

.floating .inner .teltel a::before {
  position: relative;
  display: inline-block;
  width: 15px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

/******************************************
よくある質問
************************************************/



.faq-inner{
	background-color:#f8fbfe;
	padding:50px 20px;
}

.faq-inner h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
	text-align:center;
}



section.faq{max-width: 900px;
    margin: 50px auto;
    text-align: right;}
.accordion-area{
	text-align:left;
    list-style: none;
    width: 100%;
    max-width: 1100px;
    margin:30px auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
  background-color: #FFF;
  position: relative;
}

/*アコーディオンタイトル*/
.accordion-area .title {
        position: relative;
        cursor: pointer;
        font-weight: 500;
        font-size: 15px;
        padding: 2% 50px 2% calc(2% + 40px);
        transition: all .5s ease;
}
.accordion-area section:before{content: "Q";padding-top: 1%;padding-left: 1rem; position: absolute;color: #b70202;font-size: 2rem;font-weight: 700;}

/*アイコンの＋と×*/
.accordion-area .title::before,
.accordion-area .title::after{
    position: absolute;
    content:'';
    width: 20px;
    height: 2px;
    background-color: #b70202;
    
}
.accordion-area .title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
    
}
.accordion-area .title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.accordion-area .title.close::before{
  transform: rotate(45deg);
}

.accordion-area .title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.accordion-area .box {
    display: none;/*はじめは非表示*/
    background: #f6f6f6;
  margin:0 2% 2% 2%;
    padding: 2%;
}
.accordion-area .box p{
	font-size: 14px;
	line-height:2;
    padding: 10px;
}
.accordion-area .box a{font-weight: 700;padding: 0 .5rem;border-bottom: 2px dotted #004da0;transition: .2s;}
.accordion-area .box a:hover{color: #004da0;}

.guide .gurai{
	margin-top:30px;
	font-size:26px;
	font-weight:600;
}

.accordion-area .box .tt{
	margin-top:20px;
	font-family: "游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

.case-midashi{
	font-size:15px;
	line-height:170%;
	margin-bottom:50px;
}

.case-faq{
	padding-top:0!important;
	margin-top:0!important;
}


.thx{
	padding:50px 25px;
	font-size:14px;
	line-height:180%;
}

/*********************************当社について*************************/


.about-p{

}

.about-p h2{
	background-color:#004484;
	padding:30px;
	font-size:18px;
	color:#fff!important;
}

.about-mv{
	background-image: linear-gradient(rgba(0, 88, 171, 0.6), rgba(0, 88, 171, 0.6)), url(https://p-pata.com/pataweb/wp-content/themes/rdsgn/image/base/hbg.jpg);
	background-color: #0058ab;
	padding:15px 20px;
	background-position: center;
	text-align:center;
}
.about-mv img{
	width:100%;
	height:auto;
	display:block;
	margin:0 auto;
}

.about-p h3{
	font-size:16px;
	line-height:150%;
	padding:20px;
	color:#3e7dd2;
}

.about-p p{
	padding:10px;
	margin:0 auto;
	font-size:12px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.about-p p br{
	display:none;
}

.about-p .link-botan{
	width:300px;
	margin:0 auto;
	margin-top:30px;
	margin-bottom:30px;
}

.about-p .link-botan a{
	background: #007cd8;
        color: #fff;
        background-image: url(https://p-pata.com/pataweb/wp-content/themes/rdsgn/image/base/hbg.jpg);
	padding:15px;
	display:block;
	border-radius:10px;

}

.about-p .link-botan a:hover{	transition: 1.0s ;
    opacity:0.7;}
.about-p .link-botan img{
	width:100%;
	height:auto;
	display:block;
}

.footer{
	margin-top:50px;
	padding:10px;
	background-color:#565656;
	color:#fff;
	font-size:11px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
