@media only screen and (max-width: 768px){
	.onlyPc{
		display: none;
	}
	.onlySp{
		display: block;
	}
	.wrapper{
		padding: 8% 2%;
	}
	
	/* ============ header ============ */
	#header{
		flex-direction: column;
		align-items: flex-start;
		position: relative;
		gap: 0;
		padding: 0 1rem;
	}
	#site-Title{
		width: 80%;
	}
	.site-Title-Link{
		display: flex;
		align-items: center;
	}
	.site-Title-Link img{
		width: 100%;
	}
	#header .site-Title-Name{
		font-size: 1.3rem;
	}
    #hamburger {
        display: block;
        position: absolute;
        top: 33%;
        right: 1rem;
        width: 45px;
        height: 45px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 9999;
    }
    #hamburger span {
        display: block;
        height: 4px;
        background: #333;
        margin: 12px 0;
        border-radius: 2px;
        transition: 0.3s;
    }
	#hamburger span:first-child{
		margin-top: 0;
	}
	#hamburger span:last-child{
		margin-bottom: 0;
	}
	#hamburger.open span:nth-child(1) {
        transform: translateY(16px) rotate(45deg);
    }
    #hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    #hamburger.open span:nth-child(3) {
        transform: translateY(-16px) rotate(-45deg);
    }

    #header-Navi {
        display: none;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
            padding-top: 2rem;
    }
    #header-Navi.open {
        display: flex;
    }
    #header-Navi .menu {
        flex-direction: column;
        width: 100%;
    }
    #header-Navi .menu li {
        width: 100%;
        border-bottom: 1px solid #dcdcdc;
        padding: 0.5rem 0;
    }
	#header-Navi .menu li.dropdown {
        border-bottom: none;
    }
    #header-Navi .menu li a,
    #header-Navi button.dropdown-toggle {
        width: 100%;
        text-align: left;
        padding: 1rem;
    }
    #header-Navi .submenu{
        display: block;
		border-left: none;
        padding: 0;
        position: relative;
	}
	#header-Navi .submenu li{
		border-bottom: none;
	}
    #header .submenu li a {
        padding-left: 2rem;
        position: relative;
    }
	#header .submenu li a::before {
        content: "";
		position: absolute;
		top: calc(50% - 0.2rem);
		left: 0;
		background-color: #fff150;
		width: 0.4rem;
		height: 0.4rem;
		border-radius: 50%;
    }
	
	/* ============ FV ============ */
	.bg-fixed{
		width: 100vw;
		background-image: url(https://shimonosekimemory.jp/wp-content/uploads/2025/07/tentative-sp.png);
	}
	.home-Hero-Inner{
		width: 100%;
		bottom: 1rem;
	}
	.home-Hero-Tel{
		flex-direction: column;
	}
	.home-Hero-Tel .title{
		border-radius: 10rem;
		width: 100%;
	}
	.home-Hero-Tel .time{
		justify-content: center;
	}
	.home-Hero-text-Container .text{
		text-align: center;
	}
	
	/* ============ introduction ============ */
	#introduction{
		flex-direction: column-reverse;
	}
	#introduction video{
		width: 100%;
	}
	#introduction .introduction-container{
		width: 100%;
	}
	
	/* ============ plan ============ */
	.plan-Menu{
		flex-direction: column;
		gap: 1rem;
	}
	.plan-Menu li{
		width: 100%;
	}
	.plan-Menu .plan-Title,
	.plan-Menu .plan-Price{
		padding: 0.3rem 0;
	}
	.plan-Head{
		flex-direction: column;
	}
	.plan-Head img{
		width: 100%;
		margin-bottom: 1rem;
	}
	.plan-Head .plan-Head-Container{
		width: 100%;
	}
	.plan-Head .plan-Head-Container-Title{
		flex-direction: column;
		gap: 0.3rem;
	}
	.plan-Head .plan-Head-Container-Title .price{
		text-align: center;
	}
	.plan-Feature-Title{
		margin-bottom: 0.5rem;
	}
	.plan-Feature-Funeralhall{
		gap: 0.3rem;
	}
	.plan-Feature-Funeralhall li{
		width: calc(32% - 0.3rem);
	}
	.plan-Feature-Container li p{
		font-size: 0.75rem;
		margin-top: 0;
	}
	.plan-Feature-Equipment{
		flex-wrap: wrap;
		gap: 0.3rem;
	}
	#plan25 .plan-Feature-Equipment li{
		width: calc(33.3% - 0.3rem);
	}
	.option-Title{
		padding: 0.3rem;
		font-size: 0.75rem;
		text-align: center;
	}
	.option-Menu{
		gap: 0.3rem;
		flex-direction: column;
	}
	.option-Menu li{
		width: 100%;
	}
	.option-Menu li:nth-child(5),
	.option-Menu .supplement{
		flex-direction: column;
	}
	.option-Menu li:nth-child(5) .text,
	.option-Menu .supplement .text{
		font-size: 0.8rem;
	}
	.option-Text{
		border-bottom: none;
		text-decoration:underline solid var(--blue--main);
	}
	#plan15 .plan-Feature-Equipment li{
		width: calc(50% - 0.3rem);
	}
	
	/* ============ feature ============ */
	#feature .feature-Container{
		flex-direction: column;
	}
	#feature .feature-Item{
		width: 100%;
	}
	#feature .feature-Wrapper{
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0.3rem;
		padding: 0.5rem 1rem;
	}
	#feature .feature-Wrapper img{
		width: 25%;
	}
	#feature .feature-Item:first-child .feature-Wrapper .title span::before{
		top: 0.6rem;
		left: 0;
	}
	#feature .feature-Item:first-child .feature-Wrapper .title span::after{
		top: 0.6rem;
		right: 0;
	}
	
	/* ============ flow ============ */
	.flow-Container{
		gap: 0.5rem;
	}
	#flow .plan2535-Attention,
	.flow-Plan15{
		width: calc(50% - 0.3rem);
	}
	.flow-List{
		padding: 0.3rem;
	}
	#flow .flow-List p.flow-List-Title{
		font-size: 1rem;
	}
	#flow p.flow-List-Title span{
		font-size: 0.75rem;
		margin-right: 0.3rem;
	}
	#flow .flow-List-Text,
	#flow .plan2535-Attention p.attention{
		font-size: 0.8rem;
	}
	
	/* ============ access ============ */
	#access .access-Container{
		flex-direction: column;
	}
	#access .access-Item{
		width: 100%;
	}
	
	/* ============ question ============ */
	#question .question{
		line-height: 2;
		font-size: 1rem;
	}
	
	/* ============ knowledge ============ */
	#knowledge .home-Sec-Title-Container,
	#knowledge .col-lg-10{
		flex-direction: column;
		gap: 0;
	}
	#knowledge .home-Sec-Title-Container .knowledge-Text{
		margin-top: 0;
	}
	#knowledge .module-Article-Item{
		width: 100%;
	}
	
	/* ============ movie ============ */
	#movie{
		flex-direction: column;
		gap: 1rem;
	}
	#movie iframe{
		width: 100%;
	}

	
	/* ============ contact-parts ============ */
	#contact .contact-Tel{
		flex-direction: column;
		padding: 1rem;
		gap: 0.5rem;
	}
	#contact .contact-Tel-Number{
		flex-direction: column;
		align-items: center;
		gap: 0.3rem;
	}
	#contact .contact-Container{
		gap: 0.3rem;
	}
	#contact .contact-Form,
	#contact .contact-Guide{
		padding: 0.5rem;
		width: calc(50% - 0.3rem);
	}
	#contact .more-Link{
		padding: 0.5rem;
	}
	
	/* ============ footer ============ */
	#footer{
		padding: 6% 2% 12% 2%;
	}
	#footer .footer-Container{
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	#footer .footer-Widgets{
		width: 100%;
	}
	#footer-Title .site-Title-Link img{
		width: 50%;
	}
	#footer #footer-Navi .menu{
		flex-direction: column;
		gap: 0.5rem;
	}
	#footer .footer-Info{
		margin-top: 1rem;
		padding-top: 1rem;
		flex-direction: column-reverse;
	}