@import url('https://fonts.googleapis.com/css2?family=Rounded+Mplus+1c:wght@300;400;700&display=swap');
:root{
    --blue:#172a88;
    --souken:#1866b2;
    --orange:#f39800;
}
html{
    /* overflow-x:hidden; */
    height:100%;
}
body{
    background:#fff;
    color:#333;
    font-family: 'Rounded Mplus 1c', sans-serif;
    font-weight:500;
    font-size:18px;
    line-height:1.5;
    margin: 0;
    padding: 0;
    overflow-x:hidden;
    height:100%;
}
@media screen and (max-width:1280px){
    body{
        font-size:17px;
        line-height:1.4;
    }
}
@media screen and (max-width:768px){
    body{
        font-size:16px;
        line-height:1.3;
    }
}
@media screen and (max-width:400px){
    body{
        font-size:15px;
        line-height:1.2;
    }
}
#skyCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* 背景を白に設定 */
    z-index: -1;
}
.c-wrapper-fluid{
    width:100%;
    margin:0;
    padding:0;
}
.c-wrapper-width{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:30px;
    box-sizing: border-box;
}
.c-wrapper-large{
    width:100%;
    max-width:1500px;
    margin:0 auto;
    padding:30px;
    box-sizing: border-box;
}
a {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}
img {
	border-style: none;
	box-sizing: border-box;
	height: auto;
	object-fit: cover;
	max-width: 100%;
	vertical-align: bottom;
}
li {
	list-style: none;
}
.btn{
    cursor:pointer;
}
.common_title{
    text-align:center;
    font-size:2.5em;
}
.btn--wrapper{
    margin:50px auto;
    display: flex;
    justify-content: center;
}
.btn{
    cursor:pointer;
}
.br-768{
    display:none;
}
.br-575{
    display:none;
}
/* .btn:hover{
    opacity:.8;
} */
/* .regular-btn{
    background: var(--blue);
    color: #fff;
    font-size: 1.2em;
    padding: 15px 30px;
    border-radius: 20px;
    min-width: 250px;
    display: block;
    text-align: center;
} */
.regular-btn {
    background: linear-gradient(135deg, var(--blue), var(--souken));
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    padding: 15px 30px;
    border:none;
    border-radius: 20px;
    min-width: 250px;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.small-btn{
    background: linear-gradient(135deg, var(--blue), var(--souken));
    color: #fff;
    font-size: .8em;
    padding: 8px 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.regular-btn:hover, .small-btn:hover{
    background: linear-gradient(135deg,  var(--souken), var(--blue));
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.regular-btn::after, .small-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: left 0.5s ease-in-out;
}
.regular-btn:hover::after, .small-btn:hover::after {
    left: 100%;
}

.wave-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Wave.svg/1920px-Wave.svg.png");
    background-size: cover;
    top: 0;
    left: 0;
    animation: waveAnimation 10s linear infinite alternate;
    opacity: 0.6;
}

@keyframes waveAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50px); }
}

.background {
    position: absolute;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index:-1;
}
.circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(173, 216, 230, 0.3);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.8;
}
@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
}
/****** MENU  *********/
nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    right : 0;
    color: #fff;
    background: var(--blue);
    text-align: center;
    width: 100%;
    height: 100vh;
    padding: 100px 0;
    clip-path: circle(0% at top right);
    transition: clip-path 0.6s ease-in-out;
}
nav.globalMenuSp.active {
    clip-path: circle(150% at top right);
}
.menuBtn {
    display: block;
    position: fixed;
    z-index: 3;
    right: 15px;
    top: 15px;
    width: 105px;
    height: 105px;
    cursor: pointer;
    text-align: center;
    background: var(--blue);
    color:#fff;
    border-radius: 50%;
}
.menuBtn span {
    display: block;
    position: absolute;
    width: 50px;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    background:#fff;
    transition: 0.5s all;
}
.menuBtn.active span{
    width:65px;
}
.menuBtn span:nth-child(1) { top: 30px; }
.menuBtn span:nth-child(2) { top: 45px; }
.menuBtn span:nth-child(3) { top: 60px; }

.menuBtn.active span:nth-child(1) {
    top: 36px;
    transform: translateX(-50%) rotate(-45deg);
}
.menuBtn.active span:nth-child(2) {
    top: 36px;
    transform: translateX(-50%) rotate(45deg);
}
.menuBtn.active span:nth-child(3) {
    top: 65px;
    height:0px;
    transition: 0s all;
}
#globalMenuSp_back {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity .6s;
}
#globalMenuSp_back.active {
    display: block;
}
#nav-menu{
    padding:0;
}
#nav-menu li{
    margin-bottom:30px;
}
#nav-menu li a{
    color:#fff;
    font-size:1.5em;
}
#nav-menu li a:hover{
    color:#aaa;
}
.nav-menu-contact, .nav-menu-contact a{
    color:#fff;
}
.nav-menu-hr{
    border: solid 1px #fff;
    margin: 50px auto;
    width: 50%;
}
.nav-menu-contact .icon img{
    width:100%;
    max-width:80px;
}
.nav-menu-contact .dial{
    display:flex;
    flex-direction:column;
    font-size:.9em;
}
.nav-menu-contact .dial .dial_tel{
    font-size:2.5em;
}
.nav-menu-contact .icon{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-top:30px;
}
/*Menu END*/

.contactWrap{
    width:235px;
    position:fixed;
    top:50%;
    right:-15px;
    transform:translateY(-50%);
    background:rgba(255, 255, 255, 0.5);
    padding:15px 15px 25px 15px;
    border-radius:15px 0 0 15px;
    box-shadow:-2px 2px 10px rgba(0,0,0,0.1);
    text-align:center;
    font-size:.9em;
    font-weight:700;
    z-index:1;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.8s forwards,
               contactAnimation 6s ease-in-out 3s infinite;
}
.sp-contactWrap{
    display:none;
    position:fixed;
    bottom:0;
    width:100%;
    background: repeating-linear-gradient(135deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.8) 0.5rem,
    rgba(240, 240, 245, 0.9) 0.5rem,
    rgba(240, 240, 245, 0.9) 1rem);
    /* background:rgba(255, 255, 255, 0.8); */
    z-index: 1;
    padding:10px;
    height: 80px;
    box-sizing: border-box;
}
.sp-contactBottom{
    display:flex;
    font-weight:bold;
    height:60px;
}
.sp-contactBottom .dial{
    width: 60%;
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #adadad;
}
.sp-contactBottom .icon{
    width:20%;
    display:flex;
    flex-direction:row;
    gap:15px;
    justify-content: center;
    align-items: center;
}
.sp-contactBottom .icon:nth-of-type(2){
    border-right: 1px solid #adadad;
}
.sp-contactBottom .icon img{
    width:50px;
}
.sp-contactWrap p{
    width:100%;
    text-align:center;
    margin:0;
    font-size:15px;
}
.sp-contactBottom span{
    font-size: .8em;
    color: var(--blue);
    margin-bottom: -3px
}
.sp-contactBottom .dial_tel {
    font-size: 2em;
    color: var(--blue);
}

/* フェードイン */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes contactAnimation {
    0%, 70% {
        transform: translateY(-50%) translateX(0) scale(1);
    }
    75% {
        transform: translateY(-50%) translateX(-20px) scale(1.03);
    }
    80% {
        transform: translateY(-50%) translateX(0) scale(1);
    }
    85% {
        transform: translateY(-50%) translateX(-20px) scale(1.03);
    }
    90% {
        transform: translateY(-50%) translateX(0) scale(1);
    }
}
.contactWrap .icon{
    display:flex;
    gap:15px;
    justify-content:center;
}
.contactWrap .icon img{
    width:100%;
    max-width:70px;
}
.contactWrap .dial{
    color:var(--blue);
}
.contactWrap .dial a{
    display:block;
    color:var(--blue);
    font-size:1.7em;
    font-weight:900;
}
.contactWrap .info .time{
    font-size:1.3em;
}
.red{
    color:#bd0000;
}
.center{
    text-align:center;
}
#toppage{
    background:url('../img/top-image-pc.jpg') no-repeat center center/cover;
    width:100%;
    height:80vh;
    position:relative;
}
#toppage img.logo{
    width: 540px;
    padding: 60px 50px;
}
.left-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height:auto;
    height: 90vh;
    background: var(--souken);
    clip-path: polygon(0 0, 100% 0, 0% 100%, 0 100%);
    /* 右斜め上から開始 */
    transform: translate(-50px, -50px);
    opacity: 0;
    animation: topslideIn-R 0.8s ease-out forwards;
}
@keyframes topslideIn-R {
    0% {
        transform: translate(-50px, -50px);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}
.headTop-contact{
    position:absolute;
    right:180px;
    text-align:center;
}
.headTop-contact h3{
    margin-bottom:0;
}
.headTop_tel{
    font-size:3em;
    color:var(--blue);
    font-weight:900;
}
.toppage-menu{
    color:#fff;
    font-size:1.2em;
    line-height:2em;
    margin:50px 0 0 30px;
}
.toppage-menu li {
    position: relative;
    padding-left: 35px;
    margin: 10px 0;
    transition: transform 0.3s ease;
}
.toppage-menu li a{
    color:#fff;
}
.toppage-menu li::before {
    content: "―";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-weight: bold;
}
.toppage-menu li:hover {
    transform: translateX(5px);
}
.area__kinki_sakai{
    width:400px;
    height:400px;
    position:absolute;
    top:200px;
    left:50%;
    transform: translateX(-50%);
    background:url('../img/tizu-Kinkiarea.svg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    filter: drop-shadow(1px 3px 5px gray);
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.area__kinki_sakai h1{
    font-size:2em;
    margin-top:0;
}
.vertical-text {
    position: absolute;
    right: 260px;
    top: 20%;
    writing-mode: vertical-rl;
    font-size: 3em;
    font-weight: bold;
    color: #333;
    display: flex;
    gap:30px;
    flex-direction: column;
}
.vertical-text span {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 0.8s ease-out forwards;
}
.vertical-text span:nth-child(1) {
    animation-delay: 0s;
}
.vertical-text span:nth-child(2){
    margin-top:30px;
    animation-delay: 0.3s;
}
.vertical-text span:nth-child(3){
    margin-top:60px;
    animation-delay: 0.6s;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.recommend-area{
    position: absolute;
    display: flex;
    gap: 45px;
    left: 10%;
    bottom:10%;
}
.recommend-area .recommend-items{
    border:solid 3px var(--orange);
    width: 200px;
    height: 200px;
    border-radius: 15px;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    font-size:1.4em;
    font-weight:600;
    text-align:center;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.8s ease-out forwards;
}
.recommend-area .recommend-items span.medium{
    font-size:1.6em;
}
.recommend-area .recommend-items span.large{
    font-size:2.3em;
    margin-top:-10px;
}
.recommend-area .recommend-items:not(:nth-child(2)){
    background:var(--orange);
    color:#fff;
}
.recommend-area .recommend-items:nth-child(2){
    background:#fff;
    color:var(--orange);
}
/* `vertical-text` のアニメーションが終わった後に順番に表示 */
.recommend-area .recommend-items:nth-child(1) {
    animation-delay: 1s; /* `vertical-text` の表示完了後に開始 */
}

.recommend-area .recommend-items:nth-child(2) {
    animation-delay: 1.3s; /* 0.3秒遅らせる */
}

.recommend-area .recommend-items:nth-child(3) {
    animation-delay: 1.6s; /* さらに0.3秒遅らせる */
}
/* 左からフェードイン */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/*TOPICS Start*/
#topics{
    margin:50px auto;
}
.topics__wrapper{
    font-size:1.2em;
    display:flex;
    flex-direction:column;
    gap:30px;
    max-width: 950px;
    margin: 0 auto;
}
.topics__item{
    display:flex;
    flex-direction:row;
    gap:50px;
    align-items:center;
}
.topics__item > div:hover{
    opacity:.8;
    padding-left:15px;
}
.topics__item > div p.title{
    font-size:1.5em;
    margin:0;
}
.topics__item > div p.contents{
    margin:0;
}

/*COMPANY Start*/
#company{
    margin:50px auto;
    background-image: url('../img/slidearea_bk.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    
    /* 初期状態: 透明＆少し上に移動 */
    opacity: 0;
    transform: translateY(-30px);

    /* アニメーションの適用 */
    animation: fadeInSlideDown 1.5s ease-out forwards;
}
@keyframes fadeInSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.company_slide_head{
    margin-bottom:45px;
}
.company_slide_head h1, .company_slide_head h3, .company_slide_head p{
    text-align:center;
    font-size:1.5em;
    margin:0;
}
.company_slide_head h1{
    font-size:2.2em;
    margin-bottom:30px;
}
.company_slide_head h3{
    font-size:1.7em;
}
.company_slide_head p{
    font-size:1em;
}
.c_slide_photoarea{
    position:relative;
}
/* スライドショー */
.swiper {
    width: 100%;
    max-width: 750px;
    border-radius: 25px;
    border:solid 5px #fff;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    border-radius: 10px;
}

/* 吹き出しコメント */
.comment {
    position: absolute;
    background: var(--orange);
    color: #fff;
    padding: 20px;
    border-radius: 45px;
    font-size: 18px;
    max-width: 180px;
    text-align: center;
    z-index:1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.comment.show {
    opacity: 1;
    transform: translateY(0);
}
.comment::after {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 20px;
}


/* 吹き出しの位置（元に戻す） */
.comment1 { top: 10%; left: -5%; transition-delay: 0.3s;}
.comment2 { top: 43%; left: -8%; transition-delay: 1.5s;} 
.comment3 { bottom: 12%; left: 0%; transition-delay: 1.2s;}
.comment4 { top: 25%; right:-6%; transition-delay: 0.9s;}
.comment5 { bottom: 28%; right:-6%; transition-delay: 0.6s;}

/* 矢印の向き */
.comment1::after {
    border-color: var(--orange) transparent transparent transparent;
    top: 50%;
    right: -9%;
    transform: rotate(40deg);
}

.comment2::after {
    border-color: transparent var(--orange) transparent transparent;
    top: 16%;
    right: -20px;
    transform: rotate(68deg);
}

.comment3::after {
    border-color: transparent transparent var(--orange) transparent;
    top: 0%;
    right: -8%;
    transform: rotate(-48deg);
}

.comment4::after {
    border-color: var(--orange) transparent transparent transparent;
    top: 46%;
    left: -9%;
    transform: rotate(-36deg);
}

.comment5::after {
    border-color: transparent transparent #f89c35 transparent;
    top: 15%;
    left: -7%;
    transform: rotate(50deg);
}

/* 矢印カスタマイズ */
.swiper-button-prev, .swiper-button-next {
    color: var(--orange);
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 10px;
    border: solid 3px var(--orange);
}

/* ボタン */
.more-button {
    display: inline-block;
    background: #1e40af;
    color: white;
    padding: 12px 24px;
    margin-top: 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

/*Service Start*/
#service{
    margin:80px auto 0px;
}
.service_wrapper{
    display:flex;
    flex-direction:row;
    gap:80px;
    box-sizing:border-box;
}
.service_wrapper .left__wrap h1{
    margin:0 0 30px 0;
    text-align:center;
    font-size:2.2em;
}
.service_wrapper .left__wrap h3{
    margin:0;
    text-align:center;
    font-size:1.7em;
}
.left__wrap{
    width:30%;
}
.right__wrap{
    width:70%;
}
.reasons {
    margin:50px auto;
}

/* 各項目のスタイル */
.reason_item {
    display: flex;
    flex-direction:column;
    align-items: center;
    margin-bottom: 35px;
    padding:0 15px;
    box-sizing:border-box;
}

/* 左側の数字（円形）とh2をつなげる */
.reason_header {
    display: flex;
    align-items: center;
    justify-content:center;
    background-color: var(--souken);
    color: white;
    border-radius: 30px;
    padding: 5px 15px 5px 80px;
    position:relative;
    height:60px;
    text-align:center;
}

/* 左側の数字（円形） */
.reason__number {
    position:absolute;
    background-color: var(--souken);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    left:0;
}

/* 右側の数字（逆向き用） */
.reason_item:nth-child(even) .reason_header {
    padding: 5px 80px 5px 15px;
}

.reason_item:nth-child(even) .reason__number {
    left:auto;
    right:0;
}

/* タイトル（h2のみ青背景＋白字） */
.reasons__content h2 {
    color: white;
    font-size: 1.4em;
    line-height:1;
    font-weight: bold;
    margin: 0;
}

/* 説明文（p は通常の黒字） */
.reasons__content p {
    color: black;
    font-size: .9em;
    margin: 20px auto 0;
}
.license_link{
    margin-top:15px;
    width:100%;
    display: flex;
    justify-content: center;
}

.services{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.service_item{
    border: solid 2px var(--souken);
    border-radius: 25px;
}
.service_item img{
    width:100%;
    border-radius:25px 25px 0 0;
}
.service_item h1{
    text-align:center;
    font-size: 1.8em;
    margin: 15px 0 10px;
}
.service_item hr{
    border:solid 3px var(--souken);
    width:80%;
    margin:0 auto;
}
.service_item p{
    padding:0 30px;
}

/*Area Start*/
#area{
    margin:50px auto;
    background:#ebf5ec;
}
.area_wrapper{
    display:flex;
    gap:50px;
    box-sizing:border-box;
}
/* 地図とピンのコンテナ */
.map-container {
    position: relative;
    width: 35%;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    margin-top:-100px;
    margin-bottom:-100px;
}

.map-container.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 地図画像 */
.map {
    width: 100%;
    display: block;
}

/* ピン（初期は上に隠しておく） */
.pin {
    position: absolute;
    top: 42%;
    left: 47%;
    width: 45px;
    transform: translate(-50%, -50%) translateY(-30px);
    opacity: 0;
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
}
.map-container.visible .pin {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}
.area-text {
    width: 65%;
    text-align: left;
    padding-left: 30px;
}
.area-text h1 {
    font-size: 2em;
    font-weight: bold;
    margin:15px 0;
}
.area-text h3 {
    font-size: 1.3em;
    margin: 15px 0 0;
}

.areas {
    font-size: 1.6em;
    font-weight: bold;
    margin: 5px 0 10px;
}

.note {
    font-size: 1em;
    margin:0;
}

/*Guidance Start*/
#guidance{
    margin: 30px auto;
}
.guidance_wrapper{
    display:flex;
    flex-direction:row;
    box-sizing:border-box;
    gap:50px;
    align-items: stretch;
}
.cashless_wrapper{
    width:65%;
    background:#fffde5;
    padding: 5px 30px 30px;
    text-align: center;
}
.line_wrapper{
    width:35%;
}

/*License Start*/
#license{
    margin:50px auto;
    background:#eaf6fd;
}
.license_wrapper{
    display:flex;
    flex-wrap: wrap;
    box-sizing:border-box;
    justify-content: space-between;
    padding: 0 0 35px;
}
.license_wrapper h1{
    width:100%;
    text-align:center;
    margin-bottom:30px;
}
.license_img_area{
    width:65%;
    display: flex;
    box-sizing:border-box;
    flex-wrap: wrap;
    gap: 10px;
}
.license_img{
    width:calc(100% / 4 - 10px);
    cursor:pointer;
}
.license_img:nth-child(n+5){
    width:calc(100% / 3 - 10px);
}
.license_text_area{
    width:30%;
}
.license_text_area dl{
    margin:0;
}
.license_text_area dl dt{
    margin-top:15px;
}
.license_text_area dl dd{
    margin-left:10px;
    font-size:.85em;
    cursor:pointer;
}
.license_text_area dl dd:hover{
    font-weight:bold;
}

/*許可証MODAL*/
/* モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 50px;
    right: 60px;
    font-size: 60px;
    color: white;
    cursor: pointer;
}

/*Footer Start*/
.footer-contact{
    margin: 150px auto -130px;
    position:relative;
}
.footer-contact .c-wrapper-width{
    padding:0;
}
.contact-container {
    background-color: white;
    margin: 0;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--souken);
}
.contact-title {
    font-size: 2.3em;
    font-weight: bold;
    color: var(--souken);
    margin: 0px;
    text-align: center;
}
.contact-title-sp{
    display:none;
}
.contact-methods {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.contact-methods h3{
    font-size:1.5em;
    margin:0 0 20px;
}
.phone-section {
    text-align: center;
    padding: 10px;
    width:60%;
}
.free-call{
    color: var(--blue);
    margin:0 0 -15px;
}
.working-hours{
    font-size:1.1em;
    font-weight:bold;
    margin:0;
}
.phone-number {
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0;
    font-size: 3em;
    font-weight: bold;
    color: var(--blue);
    gap:10px;
}
.phone-logo {
    width: 60px;
    vertical-align: middle;
    margin-right: 5px;
}

/* LINE・メールエリア */
.chat-section {
    text-align: center;
    padding: 10px;
    width:40%;
}

.chat-icons {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-top: 10px;
}

.chat-icons a img {
    width: 105px;
    cursor: pointer;
}

/* フッター */
footer {
    background:var(--souken);
    padding: 150px 0 20px;
    margin: 0;
    text-align: center;
    color:#fff;
}
footer p{
    margin:0;
}
footer a{
    color:#fff;
}
.footer{
    display:flex;
    flex-direction:row;
    gap:15px;
    justify-content:space-between;
}
.footer-info{
    width:60%;
}
.address{
    margin:0;
}
.telfax{
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.telfax a{
    display:flex;
    align-items:center;
    gap:5px;
}
.telfax img{
    width:40px;
}
.footer-menu{
    width:30%;
    text-align: left;
    font-size:.9em;
}
.footer-menu ul{
    margin:0;
    padding:0;
}
.footer-menu ul li{
    margin-bottom:8px;
    position:relative;
}
.footer-menu ul li::before {
    content: "―";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-weight: bold;
}
.footer-menu ul li:hover {
    transform: translateX(5px);
}
.footer-logo {
    max-width: 380px;
    margin-bottom:15px;
}
.copyright{
    font-size:.7em;
}

/* トップに戻るボタンのスタイル */
.to-top {
    background-color: transparent;
    font-size: .9em;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    writing-mode: vertical-rl !important;
    z-index: 1;
    position: fixed;
    right: 3%;
    bottom: 5%;
}
.to-top::before {
    content: "";
    background-color: #4a4949;
    height: 100px;
    bottom: 9rem;
    display: block;
    margin: auto;
    width: 1px;
    position: absolute;
    left: 0;
    right: 0;
}
.to-top a {
    color: #4a4949;
    padding: 0;
    width: auto;
}

/*パンくずリスト*/
.breadcrumb {
    width:100%;
    max-width:1200px;
    font-size: 16px;
    margin: 15px auto;
    padding:0 15px;
    box-sizing:border-box;
  }
  
  .breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumb li {
    display: flex;
    align-items: center;
  }
  
  .breadcrumb li + li::before {
    content: "›";
    margin: 0 8px;
    color: #999;
  }
  .breadcrumb a {
    color: var(--souken);
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .breadcrumb a:hover {
    font-weight:bold;
    opacity:.8;
    text-decoration: underline;
  }

  /*サービス・料金ページ*/
.head_wrapper{
    margin:0 auto;
    padding:0;
    width:100%;
    text-align:center;
    max-height:280px;
    overflow:hidden;
}
  .service-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px 0;
  }
  .service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background-color: var(--blue);
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    text-decoration: none;
    position: relative;
    transition: transform 0.2s ease;
  }
  .service-btn:hover {
    transform: scale(1.05);
  }
  .icon-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .service01 {
    background-image: url('../img/icon_service01.svg');
  }
  .service02 {
    background-image: url('../img/icon_service02.svg');
  }
  .service03 {
    background-image: url('../img/icon_service03.svg');
  }
  .service04 {
    background-image: url('../img/icon_service04.svg');
  }
  .service05 {
    background-image: url('../img/icon_service05.svg');
  }
  .p-click {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
    width:100%;
  }
.detail_title{
    background: var(--souken);
    color: #fff;
    padding: 15px 30px;
    font-size:1.8em;
    box-sizing:border-box;
}
.service-content{
    display: flex;
    gap: 15px 50px;
    box-sizing: border-box;
    flex-wrap: wrap;
    margin-bottom:100px;
}
.pack-content{
    justify-content: center;
    margin-bottom:0px;
}
.left-column{
    width:50%;
}
.right-column{
    width:calc(50% - 50px);
}
.price-table-box{
    background:#eaf6fd;
    padding:30px;
}
#service_detail h3{
    font-size:1.7em;
    color:var(--souken);
    text-align:center;
    margin:0 0 15px;
}
.price-table-box .note{
    text-align:center;
    font-size:.9em;
}
.price-table{
    width:100%;
    margin-top:30px;
    box-sizing:border-box;
    border-collapse: collapse;
}
.price-table thead tr th{
    border-bottom: solid 2px var(--souken);
}
.price-table tbody tr td{
    border-bottom: solid 1px #ccc;
}
.price-table thead tr th,
.price-table tbody tr td{
    padding:13px 5px;
    text-align:center;
}
.price-table thead tr th:nth-child(1){
    width:25%;
}
.price-table thead tr th:nth-child(2){
    width:25%;
}
.price-table thead tr th:nth-child(3){
    width:50%;
}
.example-column{
    display:flex;
    flex-direction:column;
    width:80%;
    margin:0 auto;
}
.example-item{
    display:flex;
    gap:50px;
    margin-bottom: 30px;
}
.example-item .before{
    width:42%;
}
.example-item .after{
    width:calc(58% - 50px);
}
.p-before, .p-after{
    color: var(--souken);
    font-weight: bold;
    margin: 0;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    height:25px;
}
.p-before strong, .p-after strong{
    font-size:1.5em;
}
.p-before{
    margin-top:10px;
    justify-content: flex-start;
}
.p-after{
    justify-content: flex-end;
    text-align:right;
    font-size:1.5em;
}
.service-content p.summary{
    line-height:1.6em;
}
.summary-margin0{
    margin:0px;
}
.summary-price{
    font-size:.9em;
    border-top:solid 1px;
    border-bottom:solid 1px;
}
.pack_box{
    background:#eaf6fd;
    padding:30px;
    width:calc(33.333% - 50px);
    box-sizing: border-box;
    gap:5px;
}
.pack_box .note{
    text-align:center;
    min-height:54px;
}
.pack-price{
    font-weight:bold;
    text-align:center;
}
.add-content ul{
    margin:0 auto 40px;
    padding:0;
    width:90%;
    box-sizing:border-box;
}
.add-content ul li{
    position:relative;
    background:#eaf6fd;
    padding:15px 25px;
    color:var(--souken);
    font-weight:bold;
    box-sizing:border-box;
    margin-bottom:15px;
    border-radius:4px;
}
.add-content ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: var(--souken);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

/*ご依頼の流れ*/
.step__title{
    display: flex;
    gap: 30px;
    border-bottom: solid 7px var(--souken);
    color: var(--souken);
    justify-content:center;
    align-items: center;
    padding: 0 0 15px 0;
}
.step__title h1{
    font-size: 2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.step__title h1 strong{
    font-size: 1.2em;
    margin-left: 10px;
    background: var(--souken);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.step__title h2{
    font-size:2em;
    margin:0;
}
.step__detail{
    display:flex;
    align-items:center;
    gap:50px;
    padding:30px;
    box-sizing:border-box;
    width:100%;
}
.step__detail .image_area{
    width:30%;
}
.step__detail .summary_area{
    width:calc(70% - 50px);
}
.flow-arrow {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    gap: 0px;
    margin: -30px 0px 50px;
}
.flow-arrow span {
    width: 35px;
    height: 35px;
    border-left: 5px solid var(--souken);
    border-bottom: 5px solid var(--souken);
    transform: rotate(-45deg);
    animation: arrowDown 1.5s infinite;
    opacity: 0;
}
@keyframes arrowDown {
0% {
    transform: rotate(-45deg) translateY(0);
    opacity: 0;
}
50% {
    transform: rotate(-45deg) translateY(10px);
    opacity: 1;
}
100% {
    transform: rotate(-45deg) translateY(20px);
    opacity: 0;
}
}
.flow-arrow span:nth-child(1) {
    animation-delay: 0s;
}
.flow-arrow span:nth-child(2) {
    animation-delay: 0.2s;
    margin-top:-15px;
    width:45px;
    height:45px
}

.summary_area .contact{
    background:#eaf6fd;
    border-radius:15px;
    padding:10px;
}
.summary_area .flow_cashless{
    background:#fffde5;
    border-radius:15px;
    padding:10px 20px;
}
.flow_cashless h3{
    text-align:center;
    margin:5px;
}
.summary_area .contact .chat-icons{
    gap:30px;
}
.summary_area .contact .chat-icons a img{
    width:75px;
}
.summary_area .contact .contact-methods h3{
    font-size:1.1em;
    margin: 0 0 10px;
}
.summary_area .contact .phone-number{
    font-size:1.6em;
}
.summary_area .contact .phone-logo{
    width:35px;
}
.summary_area .contact .free-call{
    font-size:.75em;
    margin: 0px 0 -7px;
}
.summary_area .contact .working-hours{
    font-size:1em;
}
#link-faq{
    background:#eaf6fd;
}
.link-faq__area{
    position:relative;
}
.link-faq__img{
    width:100%;
    max-width:253px;
    margin:0 auto;
}
.faq_comment {
    position: absolute;
    background: var(--souken);
    color: #fff;
    padding: 15px 25px;
    border-radius: 45px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.5;
}
.faq_comment::before,
.faq_comment::after {
    content: "";
    position: absolute;
    background: var(--souken);
    border-radius: 50%;
}
.faq_comment::before {
    width: 30px;
    height: 30px;
}
.faq_comment::after {
    width: 18px;
    height: 18px;
}
.faq_comment1{
    top:30px;
    left:0px;
}
.faq_comment2{
    top:205px;
    left:65px;
}
.faq_comment3{
    top:90px;
    right:0px;
}
.faq_comment1::before{
    bottom:0px;
    right:-30px;
}
.faq_comment1::after{
    bottom:-5px;
    right:-54px;
}
.faq_comment2::before {
    top: 5px;
    right: -37px;
}
.faq_comment2::after {
    top: 6px;
    right: -64px;
}
.faq_comment3::before {
    bottom: 15px;
    left: -37px;
}
.faq_comment3::after {
    bottom: 12px;
    left: -62px;
}

/*よくある質問*/
.faq__item {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}
.faq__item p{
    margin:0;
}
.question__area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #fff;
    padding: 10px 50px 10px 25px;
    border-radius: 35px;
}
.question__area.color01{
    background: var(--souken);
}
.question__area.color02{
    background: #4084c5;
}

.toggle-icon {
    font-size: 1.8em;
    transition: transform 0.3s ease;
}
  
.faq__item.active .toggle-icon {
    content: "−";
    transform: rotate(180deg);
}
  
.answer__area {
    display: none;
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.6;
    padding:25px 25px;
}
.faq_bottom_contact{
    margin:50px auto 0;
    text-align:center;
}

/*会社概要*/
.company-info {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
    display: grid;
    gap: 1.5rem;
}
.info-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    overflow: hidden;
    transition: transform 0.2s ease;
    margin-bottom:15px;
}
  
.info-item:hover {
    transform: translateY(-2px);
}
.info-label {
    background-color: var(--souken);
    color: #fff;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 20px;
    position: relative;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.info-label::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--souken);
}
.info-content {
    background: #f3f3f3;
    flex: 1;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.9;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.info-content .partner{
    display:flex;
    align-items: center;
}
.info-content .partner:hover{
    opacity:.7;
    font-weight:bold;
}
.partner .partner-logo{
    width:115px;
    margin-right:15px;
}
.map-google {
    margin-top: 1rem;
}
.map-google iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 12px;
}
.ceo_message_area{
    display:flex;
    gap:50px;
    align-items: flex-end;
}
.ceo_message_area img{
    width:100%;
    max-width:250px;
}
.ceo_message_area p{
    line-height:2em;
}
.right__message{
    background:#eaf6fd;
    border-radius:25px;
    padding: 25px 45px;
    position: relative;
}
.right__message::before {
    content: "";
    position: absolute;
    top: 100px;
    left: -30px;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 29px solid transparent;
    border-right: 35px solid #eaf6fd;
}

/*お問い合わせ*/
.contact-form {
    max-width: 700px;
    margin: 3rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: 'Helvetica Neue', sans-serif;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group > label{
    font-weight:bold;
}
.form-label {
    display:block;
    margin-bottom: 0.5rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: white;
    box-sizing: border-box;
}
textarea {
    resize: vertical;
}
.radio-group .radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.radio-options label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    gap: 0.4rem;
}
.privacy-policy__contents{
    height: 180px;
    padding: 10px 25px 10px;
    font-size: 0.8rem;
    font-weight: 400;
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 8px;
    overflow-y: scroll;
}
.contact-form__alert{
    text-align: center;
    border-bottom: solid 1px #ccc;
    padding: 0 30px 15px;
    width: 80%;
    margin: 0 auto;
}
.contact_top{
    background: #eaf6fd;
    text-align: center;
    padding: 15px 25px;
    border-radius: 25px;
    margin-bottom: 45px;
}
.contact_top .dial{
    display:flex;
    gap:15px;
    align-items: center;
    justify-content: center;
}
.contact_top .dial .dial_tel{
    font-size:2em;
    color:var(--blue);
    font-weight:bold;
}
.required{
    margin-left:8px;
    font-size:.8em;
    font-weight:bold;
    color:#bd0000;
}
.required_alert{
    color:#bd0000;
    font-size:.9em;
    text-align:center;
}
.required_alert span{
    font-weight:bold;
    margin-right:5px;
}
.contact_caution{
    font-size: .9em;
    color: #bd0000;
    text-align: center;
    border-top: solid 1px #bd0000;
    border-bottom: solid 1px #bd0000;
    padding: 3px;
    margin: 15px 50px;
}
.contact__proc_area p{
    font-size:1.2em;
    line-height:3;
    text-align:center;
}

/*遺品整理とは？*/
#ihinseiri{
    margin:0px auto 150px;
}
.ihin_area{
    display:flex;
    gap:50px;
}
.ihin_area h1{
    font-size: 2.1em;
    border-bottom: double 7px var(--souken);
    padding-bottom: 5px;
}
.ihin__01{
    align-items: flex-end;
}
.ihin__02{
    align-items:center;
}
.ihin__01 .ihin__text, .ihin__02 .ihin__text{
    width:calc(80% - 50px);
}
.ihin__01 .ihin__img, .ihin__02 .ihin__img{
    width:20%;
}
.ihin__text p span{
    font-size:1.3em;
    color:var(--souken);
    font-weight:bold;
}
.ihin__img_sp{
    display:none;
}
.ihin__text p{
    line-height:2em;
}

/*TOPICS & BLOG*/
.news__inner{
    display:flex;
    flex-direction:column;
    gap:50px;
}
.news__inner p.no-data{
    text-align:center;
    font-size:20px;
}
.news-item{
    background:#fff;
    box-shadow:1px 1px 10px lightgray;
    padding:30px 50px;
    border-radius:15px;
    position:relative;
    cursor: pointer;
}
.news-item .news-label{
    position: absolute;
    right: 25px;
    top: 20px;
    padding: 6px;
    width: 130px;
    text-align: center;
    color:#fff;
}
.news-item.BLOG .news-label{
    background:var(--souken);
}
.news-item.TOPICS .news-label{
    background:var(--orange);
}
.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.news-item.BLOG time{
    color:var(--souken);
}
.news-item.TOPICS time{
    color:var(--orange);
}
.news-filter {
    margin-bottom: 50px;
    text-align: center;
}
.news-filter button {
    margin: 0 10px;
    padding: 15px 30px;
    border: none;
    background: #ddd;
    cursor: pointer;
    border-radius: 4px;
    font-size: 18px;
    transition: background 0.3s;
}
.news-filter button.active,
.news-filter button:hover {
    background: var(--blue);
    color: #fff;
}
.news-more-wrap{
    text-align:center;
    margin-top:50px;
}
.view-more-btn {
    padding: 20px 40px;
    font-size: 22px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}
.view-more-btn:hover {
    background: #357ab8;
}
.news__detail_wrap{
    background:#fff;
    box-shadow:1px 1px 10px lightgray;
    padding:30px 50px;
    border-radius:15px;
    position:relative;
}
.news__detail_wrap .news__detail_title{
    font-size:1.8em;
    margin:10px;
}
.news__detail_wrap .title-title{
    display:flex;
    gap:15px;
    align-items: center;
}
.news_category{
    padding: 6px;
    width: 130px;
    text-align: center;
    color:#fff;
}
.news_category.BLOG{
    background:var(--souken);   
}
.news_category.TOPICS{
    background:var(--blue);
}
.news_date{
    color:var(--souken);
}
.detail_img{
    display:flex;
    gap:50px;
    justify-content: center;
}
.img-col1{
    max-width:850px;
}
.img-col2{
    width:calc(50% - 25px);
}

.error_404 p{
    font-size:30px;
    text-align:center;
    line-height:2em;
}
@media screen and (max-width:1500px){
    #toppage{
        height:95vh;
    }
    .left-overlay{
        height:100vh;
    }
    .vertical-text{
        right:90px;
        gap:25px;
    }
    .area__kinki_sakai{
        left:52%;
        top:135px;
    }
    .comment1{left:-2%;}
    .comment2{left:-4%;}
    .comment3{left:3%;}
    .comment4{right:0%;}
    .comment5{right:-3%;}

    .service_wrapper .left__wrap h1{
        font-size:2em;
    }
    .service_wrapper{
        gap:50px;
    }
    .services{
        gap:30px;
    }
}
@media screen and (max-width:1280px){
    .c-wrapper-width{
        padding:15px;
    }
    .c-wrapper-large{
        padding:15px;
    }
    #toppage img.logo{
        width:350px;
        padding:30px 10px;
    }
    .toppage-menu {
        font-size: 1em;
        line-height: 1.8em;
        margin: 20px 0 0 0px;
    }
    .left-overlay{
        width:42%;
    }
    .headTop-contact{
        right:130px
    }
    .headTop_tel{
        font-size:2.8em;
    }
    .headTop-contact h3 {
        margin-bottom: -5px;
        font-size: 18px;
    }
    .area__kinki_sakai {
        width: 310px;
        height: 310px;
        left: 45%;
        top: 115px;
    }
    .recommend-area {
        gap: 30px;
        left: 5%;
        bottom: 5%;
    }
    .recommend-area .recommend-items{
        width:165px;
        height:165px;
        font-size:1.2em;
    }
    .vertical-text{
        font-size:2.5em;
    }
    nav.globalMenuSp{
        padding:80px 0;
    }
    #nav-menu li a{
        font-size:1.3em;
    }
    #nav-menu li{
        margin-bottom:20px;
    }
    .nav-menu-hr{
        margin:30px auto;
        width:70%;
    }
    .nav-menu-contact .dial .dial_tel{
        font-size:2.2em;
    }
    .nav-menu-contact .logo{
        width:300px;
    }
    .nav-menu-contact .icon img{
        max-width:60px;
    }
    .common_title{
        font-size:2.3em;
    }
    .topics__item > div p.title{
        font-size:1.3em;
    }
    .company_slide_head h1{
        font-size:2em;
    }
    .swiper{
        max-width:600px;
    }
    .comment{
        font-size:15px;
        max-width: 140px;
    }
    .comment2{
        left:0%;
    }
    .comment2{
        top:40%;
        left:-2%;
    }
    .comment3{
        left:5%;
    }
    .comment4{
        top:22%;
    }
    .comment5{
        bottom:15%;
        right:0%;
    }
    .service_wrapper .left__wrap h1{
        font-size:1.8em;
    }
    .service_wrapper .left__wrap h3{
        font-size:1.4em;
    }
    .service_wrapper{
        gap:30px;
    }
    .left__wrap{
        width:32%;
    }
    .reasons{
        margin:30px auto;
    }
    .reason_item{
        padding:0 0;
    }
    .reasons__content h2{
        font-size:1.2em;
    }
    .reason__number{
        font-size:40px;
        width:80px;
        height:80px;
    }
    .reason_header{
        height:50px;
    }
    .right__wrap{
        width:68%;
    }
    .services{
        gap:20px;
    }
    .service_item h1{
        font-size:1.5em;
    }
    .service_item hr{
        border:solid 2px var(--souken);
        width:90%;
    }
    .service_item p{
        padding:0 15px;
    }
    .area_wrapper{
        gap:30px;
    }
    .area-text h1{
        font-size:1.8em;
    }
    .areas{
        font-size:1.4em;
    }
    .pin{
        top:35%;
    }
    .guidance_wrapper{
        gap:30px;
    }
    .cashless_wrapper{
        width:60%;
    }
    .line_wrapper{
        width:40%;
    }
    .license_img_area{
        width:65%;
    }
    .license_text_area{
        width:30%;
    }
    .footer-contact .c-wrapper-width{
        max-width:850px;
    }
    .contact-title{
        font-size:2em;
    }
    .contact-container{
        padding:15px;
    }
    .contact-methods h3{
        font-size:1.4em;
    }
    .free-call{
        margin:0 0 -10px;
    }
    .phone-number{
        font-size:2.5em;
    }
    .chat-icons{
        gap:30px;
    }
    .chat-icons a img{
        width:95px;
    }
    .contactWrap{
        top:70%;
    }
    .to-top{
        bottom:53%;
    }
    .service-icons{
        gap:20px;
    }
    .service-btn{
        width:160px;
        height:160px;
        font-size:24px;
    }
    .detail_title{
        font-size:1.6em;
    }
    .service-content{
        gap:15px 25px;
    }
    .left-column{
        width:45%;
    }
    .right-column{
        width:calc(55% - 25px);
    }
    .ihin_area{
        gap:30px;
    }
    .ihin__01 .ihin__text, .ihin__02 .ihin__text{
        width:calc(75% - 30px);
    }
    .ihin__01 .ihin__img, .ihin__02 .ihin__img{
        width:25%;
    }
    .ihin_area h1{
        font-size:2em;
    }
}
@media screen and (max-width:960px){
    #toppage{
        height:100vh;
    }
    .left-overlay{
        width: 50%;
        clip-path: polygon(0 0, 100% 0%, 0 60%, 0 100%);
    }
    #toppage img.logo{
        width:310px;
    }
    .toppage-menu{
        display:none;
    }
    .headTop-contact{
        right:120px;
    }
    .menuBtn{
        width:90px;
        height:90px;
    }
    .menuBtn span{
        width:45px;
    }
    .menuBtn span:nth-child(1){
        top:20px;
    }
    .menuBtn span:nth-child(2){
        top:35px;
    }
    .menuBtn span:nth-child(3){
        top:50px;
        line-height:2;
    }
    .area__kinki_sakai{
        width: 260px;
        height: 260px;
        left: 40%;
        top: 125px;
        font-size:.85em;
    }
    .headTop_tel{
        font-size:2.4em;
    }
    .headTop-contact h3{
        font-size:16px;
    }
    .vertical-text{
        top:15%;
        gap:20px;
    }
    .recommend-area{
        gap:20px;
    }
    .recommend-area .recommend-items{
        width:135px;
        height:135px;
        font-size:1em;
    }
    .contactWrap{
        top:74%;
        padding: 5px 15px 15px 5px;
        width:220px;
    }
    .recommend-area .recommend-items span.large{
        margin-top:0;
    }
    .common_title{
        font-size:2.0em;
    }
    .topics__item{
        gap:30px;
    }
    .topics__wrapper{
        font-size:1em;
    }
    .regular-btn{
        font-size:1.1em;
        padding:15px 15px;
        min-width:235px;
    }
    .company_slide_head{
        margin-bottom:30px;
    }
    .company_slide_head h3{
        font-size:1.3em;
    }
    .company_slide_head h1{
        font-size:1.7em;
    }
    .comment2{
        top:66%;
    }
    .comment2::after{
        top:6%;
        right:-15px;
        transform:rotate(43deg);
    }
    .comment3{
        left:30%;
        bottom:-5%;
    }
    .comment3::after{
        top:-20%;
        right:28%;
        transform:rotate(-95deg);
    }
    .comment5 {
        bottom: 7%;
        right: 2%;
    }
    .service_wrapper{
        flex-direction:column;
    }
    .left__wrap, .right__wrap{
        width:100%;
    }
    .s-photo_area{
        text-align:center;
    }
    .s-photo_area img{
        width:60%;
        max-width:315px;
    }
    .service_wrapper .left__wrap h1{
        margin:0 0 15px 0;
    }
    .reasons{
        width:60%;
        max-width:430px;
    }
    .reason_item{
        margin-bottom:20px;
    }
    .reasons__content h2{
        font-size:1.1em;
    }
    .reason_header{
        height:43px;
    }
    .reasons__content p{
        margin:15px auto 0;
    }
    .license_link{
        margin-top:5px;
    }
    .service_item p{
        font-size:.9em;
    }
    .area_wrapper{
        gap:0;
    }
    .area-text h1{
        font-size:1.5em;
    }
    .area-text h3{
        font-size:1em;
    }
    .areas{
        font-size:1.1em;
    }
    .note{
        font-size:.8em
    }
    .map-container{
        margin-top:-50px;
        margin-bottom: -50px;
    }
    .pin{
        width:35px;
        top:40%;
    }
    .guidance_wrapper {
        flex-direction:column;
    }
    .cashless_wrapper, .line_wrapper{
        width:100%;
        text-align:center;
        box-sizing:border-box;
    }
    .line_img{
        width:100%;
        max-width:380px;
    }
    .license_img_area{
        width:60%;
    }
    .license_text_area{
        width:35%;
    }
    .license_img{
        width:calc(100% / 2 - 10px);
    }
    .license_img:nth-child(n+5){
        width:calc(100% / 2 - 10px);
    }
    .contact-title{
        font-size:1.6em;
    }
    .contact-methods h3{
        font-size:1.2em;
    }
    .phone-number{
        font-size:2em;
    }
    .phone-logo{
        width:45px;
    }
    .footer-contact .c-wrapper-width{
        max-width:700px;
    }
    .phone-section{
        width:55%;
    }
    .chat-section{
        width:45%;
    }
    .contact-container{
        padding:10px;
    }
    .service-btn{
        width:130px;
        height:130px;
        font-size:21px;
    }
    .service-icons{
        gap:10px;
    }
    .detail_title{
        font-size:1.5em;
    }
    .service-content{
        gap:15px 15px;
    }
    #service_detail h3{
        font-size:1.5em;
    }
    .price-table thead tr th{
        font-size:.9em;
    }
    .price-table thead tr th, .price-table tbody tr td{
        padding:11px 5px;
    }
    .price-table-box .note{
        margin: 0 -30px;
    }
    .example-column{
        width:95%;
    }
    .example-item{
        gap:25px;
    }
    .p-before, .p-after{
        font-size:1em;
    }
    .p-after{
        font-size:1.3em;
    }
    .pack_box{
        padding:15px;
        width:calc(33.333% - 15px);
    }
    .step__title h1{
        font-size:2em;
    }
    .step__title h1 strong{
        width:40px;
        height:40px;
    }
    .step__title h2{
        font-size:1.7em;
    }
    .step__detail{
        gap:30px;
        padding: 15px;
    }
    .summary_area .contact .contact-methods h3{
        font-size:1em;
    }
    .summary_area .contact{
        padding:5px;
    }
    .summary_area .contact .phone-logo{
        width:30px;
    }
    .summary_area .contact .phone-number{
        gap:0px;
        font-size:1.3em;
    }
    .summary_area .contact .working-hours{
        font-size:.9em;
    }
    .summary_area .contact .working-hours span.red{
        display:block;
    }
    .summary_area .contact .chat-icons{
        gap:15px;
    }
    .summary_area .contact .chat-icons a img{
        width:60px;
    }
    .faq_comment{
        font-size:1em;
    }
    .faq_comment2{
        left:22px;
    }
    .faq__item p{
        font-size:.9em;
    }
    .ceo_message_area{
        align-items:center;
        gap:15px;
    }
    .ceo_message_area img{
        max-width:215px;
    }
    .right__message{
        padding:10px 30px;
    }
    .ihin_wrapper{
        width:85%;
        margin:0 auto;
    }
    .ihin_area{
        flex-direction:column;
        gap:0px;
    }
    .ihin__01{
        align-items:flex-start;
    }
    .ihin__01 .ihin__text, .ihin__02 .ihin__text{
        width:100%;
    }
    .ihin__img_sp{
        display:flex;
        gap:15px;
        width:70%;
    }
    .ihin__img{
        display:none;
    }
    .contact_caution{
        font-size:.8em;
        margin:15px 0px;
    }
    .news-filter button{
        font-size:14px;
    }
    .view-more-btn{
        font-size:18px;
    }
    .news__detail_wrap{
        padding:25px 30px;
    }
    .detail_img{
        gap:30px;
    }
    .img-col2 {
        width: calc(50% - 15px);
    }
    .news__detail_wrap .news__detail_title{
        font-size:1.5em;
    }
    .news_category{
        width:105px;
    }
}
@media screen and (max-width:768px){
    .br-768{
        display:block;
    }
    #nav-menu li a{
        font-size:1.1em;
    }
    .nav-menu-contact .logo{
        width:250px;
    }
    .nav-menu-contact .dial .dial_tel{
        font-size:1.8em;
    }
    .nav-menu-contact .icon img{
        max-width:45px;
    }
    .headTop-contact{
        display:none;
    }
    .contactWrap{
        display:none;
    }
    .to-top{
        bottom:15%;
    }
    .vertical-text{
        right:30px;
        font-size:2em;
    }
    .left-overlay {
        width: 75%;
        clip-path: polygon(0 0, 100% 0%, 0 40%, 0 100%);
    }
    .area__kinki_sakai{
        left:28%;
        top:auto;
        bottom:245px;
    }
    .recommend-area{
        gap:15px;
        bottom: 115px;
    }
    .recommend-area .recommend-items {
        width: 100px;
        height: 100px;
        font-size: .8em;
    }
    .sp-contactWrap{
        display:block;
    }
    .topics__item{
        flex-direction:column;
        gap:5px;
    }
    .topics__item > div{
        text-align:center;
    }
    .swiper{
        max-width:425px;
    }
    .comment {
        font-size: 12px;
        max-width: 95px;
        padding:15px;
    }
    .comment2{
        top:76%;
    }
    .comment3 {
        left: 40%;
        bottom: -10%;
    }
    .comment3::after {
        top: -17%;
        right: 28%;
        transform: rotate(-126deg);
    }
    .comment4{
        top:12%;
    }
    .comment5{
        bottom:-3%;
    }
    .services{
        gap:15px;
    }
    .service_item h1{
        font-size:1.4em;
    }
    .area_wrapper{
        flex-direction:column;
        gap:0;
        align-items:center;
        margin-bottom: 30px;
    }
    .map-container {
        margin-top: -100px;
        margin-bottom: 0;
    }
    .area-text {
        width: 90%;
        padding-left:0;
        text-align:center;
    }
    .license_wrapper{
        flex-direction:column;
        align-items: center;
    }
    .license_img_area{
        width:90%;
    }
    .license_text_area {
        width: 50%;
    }
    .footer-contact{
        margin:100px auto -130px;
    }
    .footer-contact .c-wrapper-width {
        max-width: 600px;
        padding:0 50px;
    }
    .contact-title{
        font-size:1.4em;
    }
    .contact-methods{
        flex-direction:column;
        gap:10px;
    }
    .phone-section, .chat-section {
        width: 100%;
        box-sizing:border-box;
        padding:5px;
    }
    .phone-logo{
        width:30px;
    }
    .contact-methods h3{
        margin:0 0 10px;
    }
    .free-call{
        margin:0 0 -5px;
    }
    .chat-icons a img {
        width: 65px;
    }
    .footer{
        flex-direction:column;
    }
    .footer-info, .footer-menu{
        width:100%;
    }
    .footer-logo{
        max-width:280px;
    }
    .footer-menu ul {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
    .footer-menu ul li::before{
        content:"";
    }
    .service-content{
        flex-direction:column;
        gap:0;
        margin-bottom:75px;
    }
    .left-column, .right-column{
        width:100%;
    }
    .example-column{
        margin-top:30px;
        width:100%;
    }
    .example-item{
        gap:15px;
    }
    .example-item .after{
        width:calc(58% - 15px);
    }
    .summary-margin0{
        margin: 16px 0
    }
    .summary-price{
        margin-bottom:30px;
    }
    .pack-content{
        gap:15px;
        margin-bottom:30px;
    }
    .pack_box{
        display: flex;
        width: 100%;
        align-items: center;
    }
    .pack_box .note{
        min-height:auto;
    }
    .pack_box span{
        width:60%;
    }
    .pack_box .pack-price{
        width:calc(40% - 5px);
    }
    #service_detail h3{
        margin:0 0 5px;
    }
    .price-table{
        margin-top:15px;
    }
    .step__title{
        gap:15px;
    }
    .step__detail{
        flex-direction:column;
        gap:0px;
    }
    .step__title h1{
        font-size:1.6em;
    }
    .step__title h1 strong {
        width: 30px;
        height: 30px;
    }
    .step__title h2{
        font-size:1.5em;
    }
    .step__detail .image_area{
        width:80%;
        text-align: center;
    }
    .step__detail .summary_area{
        width:100%;
    }
    .summary_area .contact .working-hours span.red{
        display:inline-block;
    }
    .summary_area .contact{
        padding:15px 5px;
    }
    .flow-arrow span{
        width:30px;
        height:30px;
    }
    .flow-arrow span:nth-child(2){
        width:40px;
        height:40px;
    }
    .link-faq__img{
        max-width:180px;
    }
    .faq_comment{
        font-size:.8em;
        padding: 15px 10px;
    }
    .faq_comment::before{
        width:25px;
        height:25px;
    }
    .faq_comment::after {
        width: 13px;
        height: 13px;
    }
    .faq_comment1::before {
        right: -25px;
    }
    .faq_comment1::after {
        right: -42px;
    }
    .faq_comment2::before{
        right:-27px;
    }
    .faq_comment2::after {
        right: -45px;
    }
    .faq_comment3::before {
        left: -29px;
    }
    .faq_comment3::after {
        left: -45px;
    }
    .faq_comment3 {
        top: 52px;
    }
    .question__area{
        padding: 7px 25px 7px 20px;
        gap:5px;
    }
    .faq__item p{
        font-size:.85em;
    }
    .answer__area{
        padding:15px 15px;
    }
    .faq_bottom_contact h1{
        font-size:1.3em;
        line-height: 1.5em;
    }
    .ceo_message_area{
        flex-direction: column;
        gap:0px;
    }
    .ceo_message_area img{
        max-width:180px;
    }
    .right__message::before{
        border:none;
    }
    .info-item{
        flex-direction:column;
        align-items: center;
        gap:10px;
        margin-bottom:20px;
    }
    .info-label{
        padding:.75rem 1.25rem;
    }
    .info-label::after{
        border:none;
    }
    .info-content{
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    .info-content .partner{
        justify-content:center;
    }
    .partner .partner-logo{
        width:100px;
    }
    .contact_top .dial{
        flex-direction:column;
        gap:0px;
    }
    .contact-form__alert{
        font-size:.9em;
    }
    .radio-group .radio-options{
        gap: 0.5rem 1rem;
    }
    #ihinseiri{
        margin:0px auto 100px;
    }
    .ihin_wrapper{
        width:95%;
    }
    .ihin_area h1{
        font-size:1.6em;
        text-align:center;
    }
    .ihin__img_sp{
        width:90%;
    }
    .ihin__text p{
        font-size:.95em;
        line-height:2em;
    }
    .news-filter button{
        margin: 0 5px;
        font-size:13px;
        padding:10px 15px;
    }
    .news-item{
        padding:25px 30px;
    }
    .news-item .news-label{
        right:20px;
        top:15px;
        width:100px;
    }
    .news__inner{
        gap:15px;
    }
    .news-filter{
        margin-bottom:30px;
    }
    .news-more-wrap{
        margin-top:30px;
    }
    .news__detail_wrap .title-title{
        flex-direction:column;
        gap: 0px;
        align-items: flex-start;
    }
    .news__detail_wrap {
        padding: 15px 15px;
    }
    .news__detail_wrap .news__detail_title{
        font-size:1.3em;
    }
    .news_date{
        margin:5px;
    }
    .detail_img{
        gap:10px;
    }
    .img-col2 {
        width: calc(50% - 5px);
    }
    .news__detail_item p{
        font-size:15px;
    }
}
@media screen and (max-width:575px){
    .br-575{
        display:block;
    }
    .common_title{
        font-size:1.9em;
    }
    .sp-contactBottom .dial_tel {
        font-size: 1.6em;
    }
    .sp-contactWrap{
        padding:10px 5px;
    }
    .menuBtn {
        width: 80px;
        height: 80px;
        top:10px;
        right:10px;
    }
    .menuBtn span {
        width: 40px;
    }
    .menuBtn span:nth-child(1) {
        top: 20px;
    }
    .menuBtn span:nth-child(2) {
        top: 32px;
    }
    .menuBtn span:nth-child(3) {
        top: 44px;
        font-size: .9em;
    }
    .menuBtn.active span{
        width:55px;
    }
    .menuBtn.active span:nth-child(3){
        top:60px;
    }
    #toppage img.logo{
        width:250px;
    }
    .left-overlay {
        width: 100%;
        clip-path: polygon(0 0, 100% 0%, 0 35%, 0 100%);
    }
    .area__kinki_sakai {
        width: 230px;
        height: 230px;
        font-size: .75em;
    }
    .vertical-text {
        right: 15px;
        gap:15px;
    }
    .recommend-area{
        left:15px;
    }
    .recommend-area .recommend-items{
        width:90px;
        height:90px;
        font-size:.75em;
    }
    .company_slide_head p{
        font-size:.9em;
    }
    .swiper{
        max-width:300px;
    }
    .swiper-button-prev, .swiper-button-next{
        width: 28px;
        height: 28px;
        border:solid 2px var(--orange);
    }
    .swiper-button-next:after, .swiper-button-prev:after{
        font-size:25px!important;
    }
    .comment{
        font-size:10px;
        padding:8px;
    }
    .comment::after{
        border-width:10px;
    }
    .comment1::after{right:-5%;}
    .comment2::after{right:-5px;}
    .comment5{bottom:7%;}
    .comment2{top:71%;}
    .map-container{
        width:55%;
    }
    .reasons {
        width: 85%;
        max-width: 300px;
    }
    .services{
        grid-template-columns:1fr;
        width: 90%;
        margin: 0 auto;
    }
    .cashless_wrapper{
        padding:5px 15px 15px;
    }
    .cashless_wrapper h1{
        font-size:1.3em;
    }
    .license_text_area{
        width:80%;
    }
    .footer-contact{
        margin:50px auto -130px;
    }
    .footer-contact .c-wrapper-width{
        padding:0 15px;
    }
    .contact-title{
        display:none;
    }
    .contact-title-sp{
        display:block;
        font-size:1.4em;
        font-weight: bold;
        color: var(--souken);
        margin: 0px;
        text-align: center;    
    }
    .phone-logo{
        width:25px;
    }
    .phone-number{
        font-size:1.8em;
    }
    .working-hours{
        font-size:1em;
    }
    .footer-logo{
        width:250px;
    }
    .chat-icons a img{
        width:55px;
    }
    .address{
        font-size:.9em;
    }
    .telfax{
        flex-direction:column;
        gap:0px;
    }
    .telfax a{
        font-size:.9em;
    }
    .telfax img{
        width:25px;
    }
    .footer-menu ul{
        flex-wrap:wrap;
        gap: 5px 15px;
    }
    .footer-menu ul li{
        margin-bottom:0;
    }
    .service-btn{
        width:115px;
        height:115px;
        font-size:19px;
    }
    .service-icons{
        gap:0 5px;
    }
    .p-click{
        font-size:17px;
    }
    .detail_title{
        font-size:1.4em;
        padding:13px 20px;
    }
    .price-table-box{
        padding:15px;
    }
    .service-content{
        margin-bottom:50px;
    }
    #service_detail h3{
        font-size:1.3em;
    }
    .p-before, .p-after{
        height:15px;
    }
    .p-before{
        font-size:.8em;
        margin-top:5px;
    }
    .p-after{
        font-size:1.1em;
    }
    .example-item{
        gap:10px;
    }
    .example-item .after{
        width:calc(58% - 10px);
    }
    .summary-price{
        padding:.5em 0;
        margin-bottom:25px;
    }
    .pack_box{
        padding:10px;
    }
    .pack_box span{
        width:55%;
    }
    .pack_box .pack-price{
        width:calc(45% - 5px);
    }
    .add-content ul{
        width:100%;
    }
    .add-content ul li{
        padding:10px 20px;
    }
    .step__detail{
        padding:10px 5px;
    }
    .step__title{
        padding:0 0 10px 0;
        gap: 5px;
    }
    .step__title h1{
        font-size:1.4em;
    }
    .step__title h1 strong {
        width: 20px;
        height: 20px;
        margin-left: 5px;
    }
    .step__title h2 {
        font-size: 1.4em;
    }
    .flow-arrow span {
        width: 25px;
        height: 25px;
    }
    .flow-arrow span:nth-child(2) {
        width: 35px;
        height: 35px;
    }
    .link-faq__img{
        max-width:150px;
    }
    .faq_comment {
        font-size: .7em;
    }
    .faq_comment::before {
        width: 15px;
        height: 15px;
    }
    .faq_comment::after {
        width: 8px;
        height: 8px;
    }
    .faq_comment1{
        top:3px;
    }
    .faq_comment1::before{
        right: -10px;
    }
    .faq_comment1::after{
        right:-18px;
    }
    .faq_comment2{
        top:145px;
        left:5px;
    }
    .faq_comment2::before {
        top: -3px;
        right: -7px;
    }
    .faq_comment2::after {
        top: -8px;
        right: -14px;
    }
    .faq_comment3 {
        top: 36px;
    }
    .faq_comment3::before {
        left: 17px;
        bottom: -17px;
    }
    .faq_comment3::after {
        left: 12px;
        bottom:-25px;
    }
    #link-faq .c-wrapper-width{
        padding:10px 5px;
    }
}
@media screen and (max-width:400px){
    .common_title{
        font-size:1.8em;
    }
    .sp-contactBottom .dial_tel {
        font-size: 1.3em;
    }
    .sp-contactBottom .icon img{
        width:45px;
    }
    .menuBtn{
        width:70px;
        height:70px;
    }
    .menuBtn span{
        width:35px;
    }
    .menuBtn span:nth-child(1){
        top:16px;
    }
    .menuBtn span:nth-child(2) {
        top: 26px;
    }
    .menuBtn span:nth-child(3) {
        top: 36px;
        font-size:.85em;
    }
    #toppage img.logo{
        width:225px;
    }
    .vertical-text{
        font-size:1.6em;
        top: 18%;
    }
    .area__kinki_sakai{
        width:180px;
        height:180px;
    }
    .recommend-area .recommend-items{
        width:75px;
        height:75px;
        font-size:.65em;
    }
    .service-btn{
        width:100px;
        height:100px;
        font-size:18px;
    }
    .step__title h2{
        letter-spacing:-2px;
    }
    .link-faq__img{
        max-width:135px;
    }
    .faq_comment{
        padding:10px 5px;
    }
}