.accordion {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    background: #009743;
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-header:hover::before {
    left: 100%;
}

.accordion-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid white;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.accordion.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
opacity 0.3s ease 0.1s;
    opacity: 0;
    background: white;
}

.accordion.active .accordion-content {
    max-height: 500px;
    padding: 25px;
    opacity: 1;
}

.accordion-text {
    line-height: 1.7;
    color: #555;
    font-size: 16px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
    font-weight: 600;
}

.accordion.active .accordion-text {
    transform: translateY(0);
}

h1 {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.ripple {
    position: absolute;
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
transform: scale(4);
opacity: 0;
    }
}

.tab-wrapper {
	width: 90%;
	margin: 0 auto 2em;
}

h1 {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInDown 0.8s ease;
}

.tabs-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background: rgba(255, 255, 255, 0);
    gap: 10px;
}

.tab-btn {
    flex: 1;
    padding: 20px 30px;
    background: #f4fbdb;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn.open {
    background: #0f9142;
	color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.tabs-content {
    position: relative;
    overflow: hidden;
}

.tab-pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
opacity 0.4s ease;
    opacity: 0;
    background: white;
}

.tab-pane.open {
    max-height: 600px;
    padding: 0;
    opacity: 1;
    overflow: scroll;
}

.pane-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    transform: translateY(20px);
}

.tab-pane.open .pane-inner {
    transform: translateY(0);
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-text {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #666;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.info-list li:before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 12px;
    transition: transform 0.3s ease;
}

.info-list li:hover {
    color: #333;
    border-left-color: #667eea;
    padding-left: 40px;
}

.info-list li:hover:before {
    transform: scale(1.2);
}

/* アイコンアニメーション */
.tab-icon {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn.open .tab-icon {
    transform: rotate(180deg);
}

@keyframes slideInDown {
    from {
opacity: 0;
transform: translateY(-50px);
    }
    to {
opacity: 1;
transform: translateY(0);
    }
}

/* リップル効果 */
.tab-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: tabRipple 0.6s linear;
    pointer-events: none;
}

@keyframes tabRipple {
    to {
transform: scale(4);
opacity: 0;
    }
}

@media (max-width: 600px) {
    .tabs-header {
flex-direction: column;
    }
    
    .tab-btn {
border-right: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .tab-btn:last-child {
border-bottom: none;
    }
}
























































































* {
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}
.fix-wrap {
    position: fixed;
    bottom: 0;
    padding: 20px;
    width: 100%;
    color: #3e0801;
    background-color: #853665;
    display: none;
    transition: opacity 0.3s;
    font-weight: bold;
    border-top: 10px solid #ffc65b;
    z-index: 100;
}
.fix-wrap .listContact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin: 0 auto;
}
.logo_footer_img {
  height: 87px;
  width: auto;
}
.star1 {
	font-size: 1.5em;
}
.accordion {
    margin: 20px auto;
    font-family: sans-serif;
}
.accordion-item {
    border: 2px solid #853665;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-content {
    max-height: 0;
    padding: 0 15px;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background-color: white;
}
.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 15px 75px;
}

.accordion-item.active .accordion-content {
    opacity: 1;
    transform: scaleY(1);
}
.areaExample .titleExample {
  margin: 45px 0 15px 0;
}
.ribbon15 {  
    display: inline-block;
    position: absolute;
    top: -6px;
    left: 10px;
    margin: 0;
    padding: 10px 0;
    z-index: 2;
    width: 74px;
    text-align: center;
    color: white;
    font-size: 1.5em;
    background: linear-gradient(#ff8000 0%, #ff9c3a 100%);
    border-radius: 2px 0 0 0;
}
.ribbon15:before {
    position: absolute;
    content: '';
    top: 0;
    right: -6px;
    border: none;
    border-bottom: solid 6px #bd5f00;
    border-right: solid 6px transparent;
}
.ribbon15:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 37px solid #ff9c3a;
    border-right: 37px solid #ff9c3a;
    border-bottom: 10px solid transparent;
}
.listContact li {
	margin: 0 10px;
}
.price_list th, .price_list td {
    border: 2px solid #000;
    padding: 10px;
}
.price_list th {
	background-color: #853665;
	color: #fff;
}
.price_list {
	width: 80%;
	margin: 20px auto;
	font-size: 1.3em;
}
.price_list_p {
	width: 80%;
	text-align: left;
	margin: 20px auto;
    color: #292929;
}
.point_div_flex {
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.point_div {
	position: relative;
	background-color: #853665;
	color: #fff;
	padding: 15px 25px;
	font-size: 1.3em;
}
.ribbon20-wrapper {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 55px 20px 30px 20px;
	background: #fff;
	color: #000;
	font-size: 1.5em;
	border-radius: 5px;
    border: 2px solid #853665;
}
.ribbon20 {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 5px;
	box-sizing: border-box;
	padding: 0 12px;
	margin: 0;
	height: 40px;
	line-height: 40px;
	letter-spacing: 0.1em;
	color: white;
	background: #ff8000;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
	font-size: 1.2em;
}
.ribbon20:before {
  position: absolute;
  content: '';
  top: 0;
  left: -7px;
  border: none;
  height: 46px;
  width: 7px;
  background: #ff8000;
  border-radius: 5px 0 0 5px;
}
.ribbon20:after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: -5px;
  border: none;
  height: 7px;
  width: 5px;
  background: #ff8000;
  border-radius: 5px 0 0 5px;
}
.areaService1 .inner {
  width: 1080px;
  margin: 0 auto;
  width: 65%;
}
.areaService.areaService2 {
    background: #fff;
}
.cv_area {
	margin: 0 auto;
}
.cv_area_box {
	width: fit-content;
	display: flex;
	justify-content: center;
	margin: 25px auto 0 auto;
	align-items: center;
}
.cv_area_img img {
	width: 175px;
	transform: scale(-1, 1);
}
.cv_area_tel {
  margin: 0 30px;
}
.cv_area_tel img {
    width: 75px;
}
.cv_area_tel span {
    font-size: 3em;
}
.cv_area_tel .p_flex {
	display: flex;
	align-items: center;
	margin: 10px 0;
}
.fast_tel_p {
    font-size: 1.3em;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #ffd804;
    text-decoration-thickness: 10px;
    text-underline-offset: -3px;
}
.cv_btn_mail {
    background: linear-gradient(#ffb163, #ff8000);
  text-align: center;
  padding: 10px;
  border-radius: 5px;
}
.cv_btn_line {
    background: linear-gradient(#55e688, #00cc48);
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}
.cv_btn_mail a, .cv_btn_line a {
    display: block;
    color: #fff;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}
.cv_area_tel span.cv_label {
	font-size: 1em;
	background-color: #853665;
	margin: 5px 5px 5px 0;
	display: inline-block;
	padding: 2px 5px;
	border-radius: 5px;
	color: #fff;
}
.cv_btn_mail a img, .cv_btn_line a img {
	width: 40px;
	margin-right: 10px;
}
.cv_space {
  margin: 15px auto;
}
.iconTel img {
  width: 45px;
}
.phoneNumber {
	font-size: 2em;
}

.cv_area_box {
	position: relative;
	border: solid 3px #f29422;
	border-radius: 3px 0 3px 0;
	padding: 2em;
    background-color: #fff;
}
.cv_area_box:before,.cv_area_box:after
{
    content: '';
    position: absolute;
    width:10px;
    height: 10px;
    border: solid 2px #f29422;
    border-radius: 50%;
}
.cv_area_box:after {
    top:-13px;
    left:-13px;
}
.cv_area_box:before {
    bottom:-13px;
    right:-13px;
}
.cv_area_box p {
    margin: 0; 
    padding: 0;
}
.cv_area.cv_area2 {
	background-color: #fff;
	padding: 3em 0 4em 0;
}
.p_flex {
	display: flex;
	align-items: center;
}
.p_flex img {
	width: 55px;
}
.p_flex span {
	font-size: 2em;
}
.areaGuidance.worries_aa .inner {
	max-width: 1400px;
}
.worries_q, .worries_a {
	display: flex;
	justify-content: space-around;
}
.worries_solution {
	margin: 2.5em auto 1em auto;
	font-size: 2em;
	text-align: center;
}
.worries_q_item {
	position: relative;
	text-align: center;
	background-color: #EFF2F9;
	padding: 15px;
	border-radius: 5px;
	width: 20%;
}
.worries_q_item::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 38px solid #ffd700a3;
    border-right: 38px solid transparent;
    border-left: 38px solid transparent;
    border-bottom: 0px solid transparent;
    transform: translateX(-50%) translateY(100%);
}
.worries_q_item_text1 {
	font-size: 1.3em;
	color: #853665;
}
.worries_a_item {
    position: relative;
	text-align: center;
	background-color: #FFFACC;
	padding: 15px;
	border-radius: 5px;
	width: 20%;
}
.worries_q_item img {
	margin-bottom: 15px;
}
.worries_a_item_text1 {
	position: relative;
	font-size: 1.5em;
	width: fit-content;
	margin: 0 auto 1em;
}
.worries_a_item_text1::before, .worries_a_item_text1::after {
    position: absolute;
	top: 12%;
    height: 1.8rem;
    content: '';
}
.worries_a_item_text1::before {
	border-left: solid 3px;
	left: -.7em;
	transform: rotate(-30deg);
}
.worries_a_item_text1::after {
    border-right: solid 3px;
    right: -.7em;
    transform: rotate(30deg);
}
.worries_solution span {
	font-size: 1.3em;
	margin-left: 5px;
	color: #fdd630;
	text-shadow: 2px 2px 1px #333, -2px 2px 1px #333, 2px -2px 1px #333, -2px -2px 1px #333, 2px 0px 1px #333, 0px 2px 1px #333, -2px 0px 1px #333, 0px -2px 1px #333;
}
.worries_a_item_text2 {
	text-align: left;
}
.worries_a_item_btn {
  text-align: center;
  padding: 10px;
  border-radius: 5px;
}
.worries_a_item_btn a {
  display: flex;
  color: #fff;
  font-size: 1.5em;
  align-items: center;
}
.worries_a_item_btn a img {
    width: auto;
    margin-right: 10px;
    height: 35px;
}
.worries_a_item_btn {
    margin-top: 2em;
    font-size: .8em;
    padding-left: 1em;
}
.worries_a_item_btn.worries_a_item_btn_mail {
	background: linear-gradient(#ffb163, #ff8000);
}
.worries_a_item_btn.worries_a_item_btn_price {
    background: linear-gradient(#ffb1b1, #ff4747);
}
.worries_a_item_btn.worries_a_item_btn_line {
	background: linear-gradient(#55e688, #853665);
}
.worries_a_item_btn.worries_a_item_btn_tel {
	background: linear-gradient(#9bbcff, #428fe1);
}
.areaPlan .planCost .even.even2 {
margin-bottom: 39px;
}
.photo {
	position: relative;
}
.before_label {
background-color: #0070ff;
}
.after_label {
background-color: #f00;
}
.before_label, .after_label {
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	font-size: 1.5em;
	padding: 5px 15px;
}
.time, .phone .p_flex span a {
	color: #fff;
}
.headerBar .listContact {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.headerBar {
	width: 65%;
	margin: 0 auto;
}
.costPhoto2 {
    position: relative;
}
.tidying_label {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 1.5em;
    padding: 5px 15px;
    background-color: #853665;
}
.gallery-cell {
    width: 66%;
    margin-right: 10px;
}
.gallery-cell:before {
    display: block;
    text-align: center;
    line-height: 200px;
    font-size: 80px;
}
.areaWork.areaWork2 {
	background: #fff;
	padding: 59px 0 75px;
}
.gallery_box {
	background-color: #fff;
	border: 5px solid #853665;
	border-radius: 5px;
  padding: 15px;
}
.gallery_img {
	padding: 15px 0;
}
.gallery_title {
  color: #fff;
  background-color: #853665;
  font-size: 1.5em;
  padding: 5px 0 5px 15px;
}
.gallery_img1, .gallery_img2 {
	text-align: center;
    position: relative;
}
.gallery_img img {
	width: 75%;
	margin-top: 1em;
}
.gallery_img span {
	display: block;
}
.gallery_text .gallery_text_span1 {
	background-color: #853665;
	color: #fff;
	display: inline-block;
    padding: 5px 10px;
    width: 20%;
    text-align: center;
}
.gallery_text1 {
	border: 3px solid #853665;
	width: 90%;
	margin: 10px auto;
	border-radius: 5px;
}
.gallery_text_span2 {
	padding-left: 10px;
}
.gallery_text4 {
	width: 90%;
	margin: 20px auto;
	display: block;
}
.triangle {
    background: #853665;
    height: calc(tan(60deg) * 60px / 2);
    width: 100px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.gallery_img span {
	font-size: 1.5em;
	color: #853665;
	position: absolute;
	background-color: #fff;
    z-index: 1;
    padding: 5px;
    top: 2%;
    left: 5%;
    border: 2px solid #853665;
}
.flickity-button {
    background: hsla(0, 0%, 0%, 0.79) !important;
    color: #fff !important;
}
.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border:1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
    height: 20em;
}
#customers-testimonials .shadow-effect p {
    font-family: "Noto Sans JP", serif;;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 5px 0;
    font-weight: 400;
}
#customers-testimonials .item {
    text-align: center;
    margin-bottom:80px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 0 auto 17px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #3190E7;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #3190E7;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}
.owl-item.active.center {
  width: 550px !important;
}
.flickity-page-dots {
    bottom: -45px !important;
}
.owl-carousel .owl-stage-outer {
    height: 25em;
}
.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
    -moz-transform: translate3d(-75px,0,0) !important;
}
.boxTitle .titleJp .bigFont.bigFont2 {
	margin: 0 5px;
}
.form_area {
	width: 60%;
	margin: 0 auto;
}
.form_area dl, .form-group input, .form-group select {
	margin-bottom: 1em;
}
.checkbox-group {
    display: flex;
    gap: 10px;
}
.custom-checkbox {
    display: block;
    cursor: pointer;
}
.custom-checkbox input[type="checkbox"] {
    display: none;
}
.checkbox-text {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    border: 3px solid #853665;
    transition: all 0.3s ease;
    background-color: #fff;
}
.custom-checkbox input[type="checkbox"]:checked + .checkbox-text {
    background-color: #853665;
    border-color: #853665;
    color: #fff;
}
.custom-checkbox:hover .checkbox-text {
    background-color: rgba(16,166,70, 0.22);
}
.form-control.schedule1 {
	margin: 1em 0;
}
.hissu_label {
	background-color: #ff2a2a;
	color: #fff;
	padding: 5px;
	margin-right: 3px;
	border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
    width: fit-content;
}
.nini_label {
	background-color: #0064ff;
	color: #fff;
	padding: 5px;
	margin-right: 3px;
	border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
    width: fit-content;
}
.form_submit {
	text-align: center;
}
.form_submit input {
	background: linear-gradient(#ffb163, #ff8000);
	color: #fff;
	font-size: 1.5em;
	padding: 5px 30px;
	border-radius: 5px;
}
.form_submit {
	margin: 4em auto;
}
.cv_area_top {
	background-color: #fffafd;;
    padding-bottom: 4em;
}
.areaParison {
    background-color: #fffafd;;
}
.areaPlan {
    background-color: #fffafd;;
}
.tab-container {
    margin: 20px auto;
}
.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
}
.tab-input, .tab-close {
    display: none;
}
.tab-label {
    padding: 10px 20px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e4e4e4;
    border-bottom: none;
    margin-right: -1px;
    position: relative;
    z-index: 1;
    width: 25%;
    text-align: center;
}
.tab-content {
    max-height: 0;
    padding: 0 20px;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.tab-input:checked ~ .content1,
.tab-input:checked ~ .content2,
.tab-input:checked ~ .content3,
.tab-input:checked ~ .content4 {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0 20px;
}
#tab1:checked ~ .content1,
#tab2:checked ~ .content2,
#tab3:checked ~ .content3,
#tab4:checked ~ .content4 {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    padding: 3% 4%;
}
.tab-close:checked ~ .content1,
.tab-close:checked ~ .content2,
.tab-close:checked ~ .content3,
.tab-close:checked ~ .content4 {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0 20px;
}
#tab1:checked ~ .tabs label[for="tab1"],
#tab2:checked ~ .tabs label[for="tab2"],
#tab3:checked ~ .tabs label[for="tab3"],
#tab4:checked ~ .tabs label[for="tab4"] {
    background: #fff;
    border-color: #e4e4e4;
    z-index: 2;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: -1px;
    color: #853665;
    font-size: 1.3em;
}
.tab-close:checked ~ .tabs label {
    background: #f1f1f1;
    border-color: #ddd;
    border-bottom: none;
    margin-bottom: 0;
}
.tab-label:hover {
    background: #f4f4f4;
}
.tab-label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #853665;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
#tab1:checked ~ .tabs label[for="tab1"]::after,
#tab2:checked ~ .tabs label[for="tab2"]::after,
#tab3:checked ~ .tabs label[for="tab3"]::after,
#tab4:checked ~ .tabs label[for="tab4"]::after {
    transform: scaleX(1);
}
.tab-close:checked ~ .tabs label::after {
    transform: scaleX(0);
}
.content-inner {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease 0.1s;
}
#tab1:checked ~ .content1 .content-inner,
#tab2:checked ~ .content2 .content-inner,
#tab3:checked ~ .content3 .content-inner,
#tab4:checked ~ .content4 .content-inner {
    opacity: 1;
    transform: translateY(0);
}
.content-inner span {
	border: 2px solid #cecece;
	display: inline-block;
	margin: 3px;
	padding: 3px 10px;
}
html {
    scroll-behavior: smooth;
}
.etc_text .phone {
	width: fit-content;
	margin: 25px auto 0;
}
.fix-wrap.pc_only {
    position: relative;
    display: block;
    border: none;
    padding: 20px 0;
    background-color: #853665;
}
.fix-wrap.pc_only .logo_img {
  height: 82px;
  width: auto;
}
#copyright.copyright {
  padding: 15px 0;
}
.cv_title123 {
	background-color: #853665;
	text-align: center;
	padding: 1% 0;
}
.cv_area.cv_area2 {
  background-color: #fafffc;
}
.campaign_price_title2 {
	text-align: center;
	margin: 1em auto;
	font-size: 0.9em;
	color: #202020;
}
.campaign_price {
  font-size: 1.5em;
}
.campaign_price_arrow.pc_only {
  width: 10%;
  text-align: center;
}
.campaign_price_1 {
  color: #4b4b4b;
  position: relative;
  text-align: center;
}
.campaign_price_2 {
  font-size: 1.5em;
  color: #004cff;
  position: relative;
  text-align: center;
}
.campaign_price_div {
    background-color: #fff;
    border: 2px solid #ddd;
    box-shadow: 5px 3px 3px #bfbfbf;
    padding: 1em .2em;
    margin: 1em 0;
}
.inner.price_inner {
    padding: 3em 0;
}
.campaign_price_hiki {
	color: #ff8000;;
	border: 2px solid;
	border-radius: 45px;
    padding: 0 5px;
    font-size: .5em;
    position: absolute;
    top: -40%;
    left: 15%;
}
.campaign_price_title {
  display: block;
  text-align: center;
  font-size: 1.1em;
  width: fit-content;
  margin: 0 auto;
  padding: 0 10px;
}
.campaign_price_title {
  position: relative;
  padding-left: 25px;
}
.campaign_price_title:before {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px #2064ff;
}
.campaign_price_title:after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 10px;
  width: 100%;
  border-bottom: solid 3px #2064ff;
}
.areaParison .tableParison table tr th {
  font-size: 22px;
  color: #853665;
  letter-spacing: 1.5px;
  padding-top: 13px;
  vertical-align: top;
  text-align: center;
}
.campaign_price .gallery-cell {
  width: 30%;
  margin-right: 30px;
}
.campaign_price .gallery_title {
  background-color: #fff;
  color: #000;
  font-size: 1.3em;
}
.campaign_price .gallery_box {
  border-radius: 5px;
  height: auto;
  background-color: #fff;
  border: 2px solid #ddd;
  box-shadow: 5px 3px 3px #bfbfbf;
  padding: 1em .2em;
  margin: 1em 0;
}
.campaign_title {
	margin: 3em 0 0;
	text-align: center;
}
.campaign_title_title {
	font-size: 2em;
	color: #f00;
	margin-bottom: 10px;
}
.campaign_title span {
  font-size: 1.5em;
}
.etc_text h2 {
	font-size: 1.5em;
	margin: 20px 0;
}
.etc_text {
	text-align: left;
}
.boxTitle .titleJp.etc_title {
	font-size: 2em;
}
.etc_text h3 {
	font-size: 1.3em;
}
.etc_text th {
	padding: 15px;
}
.area_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area_flex_item {
  width: 200px;
} 
.area_flex_img {
  width: 100%;
  cursor: pointer;
}
#simpleModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
  text-align: center;
  padding-top: 50px;
}     
#modalImg {
  max-width: 80%;
  max-height: 80%;
}   
#closeBtn {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}
.area_flex_item2 {
  text-align: center;
  margin-top: 10px;
}
@media (min-width: 670px) {
.ip_only {
    display: none !important;
}
.campaign_price_review {
	color: #404040;
	font-size: .7em;
	padding: 5px 2em 10px;
	border-top: 2px solid;
	width: 85%;
	margin: 0 auto;
}
.campaign_price_flex {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    margin-top: 1.5em;
  }
.campaign_price_div_flex {
    display: flex;
    justify-content: space-around;
    align-items: end;
}
.inner.price_inner {
    width: 1500px;
}
.campaign_price_div {
  width: 30%;
}
.cv_title {
	text-align: center;
	font-size: 2em;
	background-color: #853665;
	padding: 10px 0;
	color: white;;
}
.cv_title {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.cv_title:before, .cv_title:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: white;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.cv_title:before {
  left:0;
  transform: rotate(-120deg);
}
.cv_title:after {
  right: 0;
}
.gallery_img {
	display: flex;
	align-items: center;
}
.gallery_text {
  display: flex;
  flex-wrap: wrap;
}
.gallery_text1 {
  border: 3px solid #853665;
  width: 45%;
}
.gallery_text .gallery_text_span1 {
  width: 45%;
  padding: 0;
}
.gallery_text_span2 {
  padding-left: 10px;
  width: 50%;
  display: inline-block;
  text-align: center;
}
.pdf_hik {
  width: 80%;
}
.point_area {
	margin: 3em auto;
}
.campaign_price_1 {
  width: 30%;
}
.campaign_price_2 {
  width: 40%;
}
.campaign_price_hikia {
  font-size: .8em !important;
  top: -100% !important;
  left: 20% !important;
}
}

@media (max-width: 670px) {
.pc_only {
    display: none !important;
}
.area_flex_item {
  width: 42% !important;
}
.campaign_price_hikia {
  font-size: .6em !important;
  top: -50% !important;
  left: 5% !important;
}
.campaign_price_review {
  color: #404040;
  font-size: .7em;
  padding: 5px 1em 10px;
  border-top: 2px solid;
  width: 80%;
  margin: 0 auto;
}
.point_area {
	margin: 1em auto;
}
.pdf_hik {
  width: 90%;
}
.gallery_box {
    height: 48.5em;
}
.gallery_text {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
.gallery_text1 {
  border: 3px solid #853665;
  width: 45%;
}
.gallery_text .gallery_text_span1 {
  width: 100%;
  padding: 0;
}
.campaign_price_flex {
	margin-top: 1em;
}
.campaign_price_flex span {
    display: block;
    text-align: center;
    font-size: 1.3em;
}
.cv_title {
	color: white;
	font-size: 5.5vw;
	padding: 10px 0;
}
.campaign_price_1 {
  font-size: .8em;
  margin-top: 1em;
}
.campaign_price_2 {
  margin-top: 1em;
  font-size: 1.5em !important;
}
.campaign_price_2 .campaign_price_hiki {
  font-size: .5em !important;
}
.cv_area_box {
  width: 90%;
  display: block;
  justify-content: center;
  margin: 25px auto 0 auto;
  align-items: center;
}
.fast_tel_p {
  font-size: 5vw;
}
.cv_area_btn {
  width: 95%;
  margin: 20px auto 0;
}
.cv_area_box .cv_area_img {
	display: none;
}
.price_list {
  width: 95%;
  font-size: 1em;
}
.price_list th, .price_list td {
    position: relative;
}
.price_list td.price_td_0 {
	padding: 10px;
}
.price_list .price_td_1, .price_list .price_td_2 {
    width: 40%;
}
.price_list.ip_only td span {
	position: absolute;
	left: 0;
	text-align: ;
	top: 0;
	background-color: #853665;
	padding: 3px;
	color: #fff;
}
#tab1:checked ~ .tabs label[for="tab1"], #tab2:checked ~ .tabs label[for="tab2"], #tab3:checked ~ .tabs label[for="tab3"], #tab4:checked ~ .tabs label[for="tab4"] {
  font-size: 5vw;
}
.tab-label {
  padding: 10px 0;
}
#tab1:checked ~ .content1, #tab2:checked ~ .content2, #tab3:checked ~ .content3, #tab4:checked ~ .content4 {
  max-height: fit-content;
}
.areaPlan .costContent .costTitle {
    font-size: 7vw;
    padding-left: 0;
}
.gallery_img span {
  font-size: 1em;
}
.gallery_img img {
  width: 85%;
}
.gallery_text .gallery_text_span1 {
  display: block;
}
.gallery_text_span2 {
	padding: 10px;
	display: block;
    text-align: center;
}
.gallery-cell {
  width: 85%;
}
.myBase .areaParison .tableParison table tr:first-child th:nth-child(2)::before {
	height: 12px;
}
.accordion-header {
  font-size: 4vw;
  padding: 15px 10px;
}
.accordion-item.active .accordion-content {
  padding: 15px 10px;
  font-size: 4vw;
}
.form_area {
  width: 90%;
}
.checkbox-group {
	flex-wrap: wrap;
}
.myBase #footer {
  padding: 100px 0 30px;
}
.hamburger123456789 {
  background-color: #853665;
}
.hamburger {
    position: fixed;
    top: 29px;
    right: 20px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
}
.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
}
.hamburger.active span {
  background: #853665;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 11px;
}
.hamburger span:nth-child(3) {
    bottom: 0;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}
.nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 90;
}
.nav.active {
    right: 0;
}
.nav-list {
    padding-top: 40px;
    list-style: none;
}
.nav-item {
    margin-bottom: 20px;
    padding: 0 20px;
}
.nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
}
.nav-link:hover {
    color: #666;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 80;
}
.overlay.active {
    visibility: visible;
    opacity: 1;
}
.nav-list li {
    font-size: 1em;
    padding: 10px;
    width: 45%;
    margin: 0 auto;
    list-style: disclosure-closed;
}
.worries_a_item_btn.worries_a_item_btn_tel, .worries_a_item_btn.worries_a_item_btn_mail, .worries_a_item_btn.worries_a_item_btn_line {
  width: 80%;
  margin: 10% auto 0;
}
.sp_logo_img {
	width: auto;
	height: 61px;
	margin: 10px;
}
.footer_cv_sp.ip_only {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
}
.footer_tel {
  background: linear-gradient(#9bbcff, #428fe1);
}
.footer_mail {
  background: linear-gradient(#ffb163, #ff8000);
}
.footer_line {
  background: linear-gradient(#55e688, #00cc48);
}
.footer_tel, .footer_mail, .footer_line {
	width: calc(100% / 3);
    height: 6em;
}
.footer_cv_sp.ip_only img {
  height: 45px;
  display: block;
  margin: 10px auto;
}
.footer_cv_sp.ip_only a {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 3vw;
}
.cv_area_box {
  padding: 2em 0;
}
.p__top-fv .p-home-mv {
  padding-top: 10px;
}
.cv_area_top {
    padding-bottom: 2em;
}
.inner.price_inner {
    padding-top: 1em;
}
.campaign_price .gallery-cell {
  width: 85%;
  margin-right: 10px;
}
.campaign_price_flex span.campaign_price_hiki {
	font-size: .6em;
	top: -50%;
	left: 5%;
}
.point_area {
  display: block !important;
  width: 95% !important;
}
.point_box {
  width: 95% !important;
  margin: 1em auto !important;
}
}

.pdf_hik {
  text-align: center;
  margin: 3em auto 0;
  border: 5px solid #853665;
  background-color: #fff;
  padding-top: 1em;
  border-radius: 15px;
}
.point_area {
	display: flex;
	justify-content: center;
	width: 75%;
}
.point_box_item1 {
	text-align: center;
	font-size: 2em;
	padding: 5% 0;
	background-color: #fff;
    border-radius: 15px 15px 0 0;
}
.point_box_item2 {
  background-color: #fff;
  border-top: 2px solid #853665;
  border-radius: 0 0 15px 15px;
  color: #151515;
}
.point_box {
	width: 30%;
	margin: 0 auto;
	border: 5px solid #853665;
	border-radius: 15px;
    box-shadow: 5px 3px 3px #e1e1e1;
}
.point_box div {
	padding: 10px;
}






.point_pdf_area_img {
  position: absolute;
  width: 45%;
  top: -5%;
  left: 1%;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}
.modal.is-open {
    visibility: visible;
    opacity: 1;
}
.modal-overlay, .modal-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}
.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 9999;
}
.modal.is-open .modal-container {
    transform: translate(-50%, -50%) scale(1);
}
.modal-content {
    width: 100%;
    min-height: min-content;
}
.menu-detail, .menu-detail2 {
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (max-width: 767px) {
.modal-container {
    width: 95%;
    padding: 15px;
    max-height: 80vh;
}
.triangle {
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
	margin: 1em auto 0;
}
.gallery_title {
    font-size: 4vw;
  }
.menu-detail {
  width: 115%;
  max-width: none;
  margin-left: -7%;
}
.menu-detail2 {
    width: 100%;
    max-width: none;
}
.modal-content {
     overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.modal-container {
  top: 48%;
}
}
.modal-close, .modal-close2 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    z-index: 1;
}
.modal-close:hover, .modal-close2:hover {
    color: #000;
}
body.modal-open {
    overflow: hidden;
}
.menu_img.pc_only {
	border: 5px solid #853665;
}
.money_tabletd {
  vertical-align: middle;
}





.point_pdf_area_ul ul span {
  background-color: yellow;
}
.point_pdf_area_ul ul {
  list-style: decimal-leading-zero;
  margin: 0 2em 0 3em;
}
.point_pdf_area {
  position: relative;
  padding-top: 8em;
}
.point_pdf_area_ul {
  padding: 0 10px;
  margin-bottom: 10px;
}
.pdf_ip_check_area {
  margin: 1em 1em 0;
  border: 3px solid #ffc000;
  padding-bottom: 1em;
}
.pdf_ip_ul_area {
  padding: 0 8%;
}
.pdf_ip_ul_area ul {
  list-style: outside;
}
.pdf_ip_check_li {
  margin: 3% 0;
}
.pdf_ip_check {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10vw;
}
.pdf_ip_check .check_pdf {
  width: 10%;
  margin-right: 2%;
}
.pdf_ip_title {
  color: #00b0f0;
  font-size: 7vw;
}
.pdf_ip_title2 {
  font-size: 4vw;
}
.container_slider2 {
width: 1000px;
margin: 4em auto 0;
}
.slider {
width: 100%;
margin: 0 auto;
}
.slide {
height: 300px;
margin: 0 10px;
position: relative;
transition: all 0.3s ease;
border-radius: 10px;
overflow: hidden;
}
.slide-content {
height: 100%;
background-color: white;
border: 2px solid #ddd;
box-shadow: 5px 3px 3px #bfbfbf;
font-size: 24px;
font-weight: bold;
transition: all 0.3s ease;
transform: scale(0.85);
opacity: 0.7;
}
.slick-center .slide-content {
transform: scale(1);
opacity: 1;
}
.slick-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
cursor: pointer;
border: none;
font-size: 0;
display: flex;
align-items: center;
justify-content: center;
outline: none;
}
.slick-prev {
left: -25px;
}
.slick-next {
right: -25px;
}
.slick-prev:before, .slick-next:before {
font-size: 24px;
color: #000000;
opacity: 1;
}
.slick-dots {
bottom: -40px;
}
.slick-dots li button:before {
font-size: 12px;
color: #333;
}
.slick-dots li.slick-active button:before {
color: #6e8efb;
}
.slick-next::before, .slick-prev::before {
color: #000000 !important;
}

.hissu_label {
  background-color: #e74c3c;
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 0.8em;
  margin-right: 5px;
}
dl {
  margin: 20px 0;
}
dt {
  font-weight: bold;
  margin-bottom: 10px;
}
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  border: 3px solid #853665;
}
.custom-radio.active,
.custom-radio:has(input:checked) {
  background-color: #853665;
  color: #fff;
}
.radio-text {
  margin-left: 5px;
}
.area_flex {
	display: flex;
	justify-content: space-between;
}
















.area_flex_item {
  width: 200px;
  padding: 5px;
  margin: 5px;
  position: relative;
  overflow: hidden;
}
.area_flex_img {
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.area_flex_img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
#simpleModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
  text-align: center;
  padding-top: 50px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#modalImg {
  max-width: 80%;
  max-height: 80%;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}
#closeBtn {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}





.menu_table {
	background-color: white;
	padding: 20px;
	border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}





.menu_table table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
	font-size: 14px;
}
.menu_table th, .menu_table td {
	border: 2px solid #333;
	padding: 8px;
	text-align: center;
	vertical-align: middle;
}
.menu_table th {
	background-color: #90c695;
	font-weight: bold;
}
.category-header {
	background-color: #e8ffea;
	font-weight: bold;
	width: 80px;
}
.item-name {
	text-align: left;
	padding-left: 12px;
}
.price {
	text-align: right;
	padding-right: 12px;
	font-weight: bold;
}
.unit {
	width: 60px;
}
.note {
	font-size: 12px;
	color: #666;
	margin-top: 10px;
	text-align: left;
}
.small-table {
	margin-top: 15px;
}
.small-table th, .small-table td {
	font-size: 13px;
}

@media (max-width: 670px) {
.menu_table {
	overflow: scroll;
}
.menu_table table {
  width: 175%;
}
}

/* ポップアップスタイル */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(-50px) scale(0.9);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: scroll;
    height: 75%;
    position: absolute;
    top: 14%;
}

.popup-overlay.show .popup {
    transform: translateY(0) scale(1);
}

.popup h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.popup p {
    color: #666;
    margin-bottom: 1.5rem;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary2 {
    background: #000;
    color: white;
    background: #000;
    color: white;
    width: 35px;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 15%;
    right: 34%;
}

.btn-primary2:hover {
  color: #fff;
}

.po_cv_bt {
	background: #ffb447;
	color: white;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e9ecef;
}

.btn-secondary:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .content {
padding: 1rem;
    }
    
    h1 {
font-size: 2rem;
    }
    
    .scroll-indicator {
display: none;
    }
}

.rt-post-entry-content .to11pp44 {
	margin: 10px auto !important;
	width: 75%;
	list-style: cjk-earthly-branch;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	font-weight: 500;
}
.rt-post-entry-content .to11pp44 li {
	list-style-type: disclosure-closed;
	width: 45%;
}
.rt-post-entry-content .to11pp44.to11pp4445 {
	width: 100%;
}
.rt-post-entry-content .to11pp44.to11pp4445 li {
	width: 100%;
}
.to11pp44_ppp {
	padding: 10px 20px;
	margin: 0 !important;
}
.textkkoom {
	margin: 10px auto !important;
}
.line_text_p {
	font-weight: bold;
	text-decoration: underline;
	text-decoration-color: #ffd804;
	text-decoration-thickness: 10px;
	text-underline-offset: -3px;
}
.to11pp44.to11pp4445.to11pp444566 {
	padding: 10px 0 10px 2.5em !important;
}
.to11pp44_ppp123 {
	font-weight: 600;
}

.cv_flex {
	display: flex;
	gap: 30px;
	margin: 2em auto !important;
}
.cv_flex .vk_button_link.btn.has-background.has-vk-color-primary-background-color.btn-md {
	font-size: 1.5em;
}
.cv_flex .vk_button_link.btn.has-background.has-luminous-vivid-orange-background-color.btn-md {
	font-size: 1.5em;
}

.ip_only {
	display: none;
}
.rh-block-group-3 .wp-block-columns:not(.is-not-stacked-on-mobile).rh-block-group-3-card-row {
	justify-content: center;
}
.rh-block-group-3 .wp-block-columns:not(.is-not-stacked-on-mobile).rh-block-group-3-card-row > .wp-block-column.rh-block-group-3-card-col {
	width: 20%;
}
.rh-block-group-3-merit-content-main {
	width: 95%;
}

.wp-block-column.rh-month-recommend-content-col-body.is-layout-flow.wp-block-column-is-layout-flow {
  margin-top: 1em;
}

@media screen and (min-width: 650px) {
.logoimgwith {
  width: 55% !important;
}
.wp-block-columns.rh-month-recommend-content-row.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex {
	display: block;
}
}

@media screen and (max-width: 650px) {
.ip_only {
	display: block !important;
}
.popup {
	padding: 1rem;
	height: auto;
}
.btn-primary2 {
	color: white;
	background: #fff;
	color: black;
	top: 9%;
	right: 1%;
	border: 1px solid;
}
.wp-block-columns.rh-month-recommend-content-row.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex {
	display: block !important;
}
.wp-block-list.rh-month-recommend-content-list li {
	padding: 0 !important;
}
.wp-block-columns.alignwide.rh-block-group-2-row.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex.w1340wwww {
	display: block !important;
	width: 90% !important;
}
.to11pp44 li {
	font-size: 1rem;
}
.rt-post-entry-content .to11pp44 {
	display: block !important;
	width: 100% !important;
	margin-left: 2em !important;
}
.wp-block-column.rh-block-group-2-col.is-layout-flow.wp-block-column-is-layout-flow .rh-block-group-2-point {
	margin-bottom: 3em !important;
}
.rh-block-group-2 .rh-block-group-2-card {
	height: auto !important;
}
.rh-block-group-2 .rh-block-group-2-card-header-text {
	font-size: 1rem !important;
}
.to11pp44.to11pp4445 {
	padding: 0 !important;
}
.to11pp44_ppp123.to11pp44.to11pp4445.to11pp444566 {
	padding: 0 !important;
}
.cv_flex .vk_button_link.btn.has-background.has-vk-color-primary-background-color.btn-md {
	font-size: 1.2rem;
}
.cv_flex {
	display: block;
}
.cv_flex .wp-block-vk-blocks-button.vk_button.vk_button-color-custom.vk_button-align-left.is-style-shine {
	text-align: center;
	margin-bottom: 1em;
}
.cv_flex .vk_button_link.btn.has-background.has-vk-color-primary-background-color.btn-md {
	font-size: 1.2rem;
}
.cv_flex .vk_button_link.btn.has-background.has-luminous-vivid-orange-background-color.btn-md {
	font-size: 1.2rem;
}
.pane-inner {
	padding: 5px;
}
.rt-post-entry-content .rt-product-block-detail {
	justify-content: center;
}
.rt-product-block-detail .rt-product-block-detail-col {
	width: 45% !important;
}
#p_ryoukin, #p_sokudo, #p_tokuten, #p_sougou {
	width: 97%;
}
.rh-block-group-3-merit-content-main {
	width: fit-content;
}
.review_icon123 .wp-block-image.size-full.rh-block-group-3-summary-icon {
	width: 90%;
}
.rh-block-group-4 .rh-block-group-4-inner {
	position: relative;
}
.rh-block-group-4 .rh-block-group-4-summary {
	margin-top: 1em;
}
.rh-block-group-4 .rh-block-group-4-summary-icon {
	position: absolute;
	width: 85px;
	top: -5px;
}
.rh-block-group-4 .rh-block-group-4-row {
	padding-left: 20%;
}

.rt-hero.rt-hero2 img {
  width: 100%;
}
.rt-post-entry-content .rt-product-block-detail-comment {
	height: 115px;
    padding: 0;
}
.title4title4 {
  padding-left: 0 !important;
}
}






.wp-block-group.rt-inside-nav-trigger {
	width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.popup-demo-success-title, .popup-demo-warning-title, .popup-demo-error-title, .popup-demo-info-title {
	padding-bottom: 20px !important;
  margin-left: 1em !important;
}

.popup-demo-wrapper {
    margin: 0;
}

.popup-demo-main-container {
    text-align: center;
    margin: 0 auto;
}

.popup-demo-title {
    color: #333;
    margin-bottom: 10px;
}

.popup-demo-description {
    color: #666;
    margin-bottom: 30px;
}

.popup-demo-button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.popup-demo-trigger-button {
    background-color: white;
    color: #333;
    padding: 20px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    cursor: pointer;
    border: 3px solid #ddd;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: bold;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    font-family: inherit;
}

.popup-demo-trigger-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #999;
}

.popup-demo-trigger-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popup-demo-button-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.popup-demo-button-icon {
    font-size: 24px;
    margin-right: 12px;
}

.popup-demo-button-text {
    font-size: 20px;
    font-weight: 600;
}

.popup-demo-button-arrow {
    font-size: 20px;
    color: #666;
    transition: transform 0.3s ease;
}

.popup-demo-trigger-button:hover .popup-demo-button-arrow {
    transform: translateX(3px);
    color: #333;
}

/* ボタンタイプ別の色設定 */
.popup-demo-btn-info {
    border-color: #2196F3;
}
.popup-demo-btn-info:hover {
    background-color: #f3f8ff;
    border-color: #1976D2;
}
.popup-demo-btn-info .popup-demo-button-icon {
    color: #2196F3;
}

.popup-demo-btn-success {
    border-color: #4CAF50;
}
.popup-demo-btn-success:hover {
    background-color: #f8fff8;
    border-color: #45a049;
}
.popup-demo-btn-success .popup-demo-button-icon {
    color: #4CAF50;
}

.popup-demo-btn-warning {
    border-color: #ff9800;
}
.popup-demo-btn-warning:hover {
    background-color: #fffbf0;
    border-color: #f57c00;
}
.popup-demo-btn-warning .popup-demo-button-icon {
    color: #ff9800;
}

.popup-demo-btn-danger {
    border-color: #f44336;
}
.popup-demo-btn-danger:hover {
    background-color: #fff8f8;
    border-color: #d32f2f;
}
.popup-demo-btn-danger .popup-demo-button-icon {
    color: #f44336;
}

/* ポップアップのオーバーレイ */
.popup-demo-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: popup-demo-fadeIn 0.3s ease-in-out;
}

.popup-demo-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    animation: popup-demo-slideIn 0.3s ease-in-out;
    padding: 1em;
    height: 70%;
    overflow: scroll;
}

.popup-demo-modal-header {
    border-bottom: 1px solid #eee;
}

.popup-demo-modal-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
}

.popup-demo-title-icon {
    margin-right: 10px;
    font-size: 28px;
}

.popup-demo-close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s;
    font-family: inherit;
    position: absolute;
    top: 0;
    right: 2%;
}

.popup-demo-close-button:hover {
    background-color: #f0f0f0;
    color: #333;
}

.popup-demo-modal-body {
    padding: 25px;
    color: #555;
    line-height: 1.6;
}

.popup-demo-modal-actions {
    padding: 20px 25px;
    text-align: right;
}

.popup-demo-modal-actions button {
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-family: inherit;
}

.popup-demo-btn-primary {
    background-color: #2196F3;
    color: white;
}

.popup-demo-btn-primary:hover {
    background-color: #1976D2;
}

.popup-demo-btn-secondary {
    background-color: #ccc;
    color: #333;
}

.popup-demo-btn-secondary:hover {
    background-color: #bbb;
}

.popup-demo-btn-confirm {
    background-color: #4CAF50;
    color: white;
}

.popup-demo-btn-confirm:hover {
    background-color: #45a049;
}

.popup-demo-btn-delete {
    background-color: #f44336;
    color: white;
}

.popup-demo-btn-delete:hover {
    background-color: #d32f2f;
}

/* 特別なスタイル */
.popup-demo-info-title { color: #2196F3; }
.popup-demo-success-title { color: #4CAF50; }
.popup-demo-warning-title { color: #ff9800; }
.popup-demo-error-title { color: #f44336; }

/* フォームスタイル */
.popup-demo-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.popup-demo-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.popup-demo-form-group input,
.popup-demo-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
    box-sizing: border-box;
}

.popup-demo-form-group input:focus,
.popup-demo-form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
}

.popup-demo-form-group textarea {
    resize: vertical;
    height: 80px;
}

.tableParison table th, .tableParison table td {
	border: 1px solid #094;
	padding: 10px;
	text-align: center;
	background-color: #eefff5;
	color: #000;
}
.tableParison table {
	width: 100%;
	margin-bottom: 2em !important;
}
.price {
	text-align: right;
	padding-right: 5px;
	font-weight: bold;
	font-size: 1.2em;
	color: #ff8408;
}
.demo1demo {
	font-size: 1.2em !important;
	font-weight: bold;
	color: #009944 !important;
  text-align: center;
}
.popup-demo-modal-body p span {
	color: #007cff;
	font-weight: bold;
}

.cv_tel_1 img {
	width: 10%;
}
.cv_tel_1 {
	display: flex;
	align-items: center;
	font-size: 2em;
	justify-content: center;
}
.cv_btn_line {
	width: fit-content;
	margin: 0 auto;
}
/* アニメーション */
@keyframes popup-demo-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popup-demo-slideIn {
    from { 
opacity: 0;
transform: translate(-50%, -60%);
    }
    to { 
opacity: 1;
transform: translate(-50%, -50%);
    }
}

/* スマホ対応 */
@media (max-width: 600px) {
.popup-demo-modal-content {
width: calc(100% - 40px);
} 
.popup-demo-button-grid {
grid-template-columns: 1fr;
}
.popup-demo-trigger-button {
	padding: 20px 15px;
}
.popup-demo-modal-header {
	padding: 20px 10px;
}
.tableParison {
	overflow: scroll;
}
.tableParison table {
	width: 180%;
	margin-bottom: 2em !important;
}
.cv_btn_mail a, .cv_btn_line a {
	font-size: 6vw;
}
.cv_fixed_footer {
	position: fixed;
	bottom: -1%;
	z-index: 25;
}
footer#colophon {
	padding-bottom: 30%;
}
}

.pc_only.cv_fixed_footer {
	position: fixed;
	bottom: 0;
	right: 0;
}

#a02, #a03, #a04, #a05 {
width: 100%;
}

@media (min-width: 600px) {
.pc_only.cv_fixed_footer {
	position: fixed;
	bottom: 1%;
	right: 1%;
	width: 13%;
}
.pc_only.cv_fixed_footer img {
	border: 2px solid #094;
}
}



.content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }

 .content h1 {
     color: #333;
     text-align: center;
     margin-bottom: 30px;
 }

 .content p {
     margin-bottom: 20px;
     color: #666;
 }

 /* 固定フッターの基本スタイル */
 .cv_fixed_footer {
     position: fixed;
     z-index: 1000;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* 表示状態 */
 .cv_fixed_footer.show {
     opacity: 1;
     transform: translateY(0);
     pointer-events: auto;
     visibility: visible;
 }

 /* PC用の固定フッター */
 .pc_only.cv_fixed_footer {
     bottom: 20px;
     right: 20px;
 }

 /* スマートフォン用の固定フッター */
 .ip_only.cv_fixed_footer {
     left: 0;
     right: 0;
 }

 .ip_only.cv_fixed_footer.show {
     transform: translateY(0);
 }

 /* 画像のスタイル */
 .cv_fixed_footer img {
     max-width: 100%;
     height: auto;
     border-radius: 8px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
     transition: transform 0.3s ease;
 }

 .cv_fixed_footer img:hover {
     transform: scale(1.05);
 }

 /* レスポンシブデザイン */
 @media (max-width: 768px) {
     .pc_only {
  display: none !important;
     }
     .ip_only {
  display: block !important;
     }
 }

 @media (min-width: 769px) {
     .ip_only {
  display: none !important;
     }
     .pc_only {
  display: block !important;
     }
 }

 /* デバッグ用のスクロール表示 */
 .scroll-debug {
     position: fixed;
     top: 20px;
     left: 20px;
     background: rgba(0, 0, 0, 0.8);
     color: white;
     padding: 10px 15px;
     border-radius: 5px;
     font-family: monospace;
     font-size: 12px;
     z-index: 1001;
 }

 /* デモ用コンテンツの高さ確保 */
 .demo-content {
     height: 300vh;
     background: linear-gradient(45deg, #e8f5e8, #f0f8ff);
     padding: 50px 20px;
 }

 .demo-section {
     background: white;
     margin-bottom: 30px;
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .flex_cv112 {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.flex_cv112 .rt-product-block-btn {
  min-width: 300px !important;
}
.flex_cv112.flex_cv112558 .rt-product-block-btn {
  min-width: 275px !important;
}

.rt-post-entry-content .flex_cv112 .rt-product-block-btn-wrap .rt-product-block-btn a {
  background-image: none !important;
}

.telcvvv77 {
  background-color: #4786ff !important;
}
.linecvvv77 {
  background-color: #094 !important;
}
.rt-post-entry-content .rt-product-block-btn-wrap .rt-product-block-btn2::after {
	background: #3077ff !important;
}
.rt-post-entry-content .rt-product-block-btn-wrap .rt-product-block-btn3::after {
	background: #007936 !important;
}

.detail_li1 {
	margin-bottom: 0 !important;
	padding: 0 !important;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
  width: 60%;
}
.detail_li1 li {
	list-style: none !important;
	width: 45%;
  font-weight: bold;
}


@media (max-width: 675px) {
.detail_li1 li {
	width: 100%;
}
.flex_cv112 {
  display: block;
}
.rt-product-block-btn.rt-product-block-btn2 {
	margin: 1.2em 0 !important;
}
.ip_only.cv_fixed_footer {
	visibility: initial;
}
}