/*-------------------------------
    共通
--------------------------------*/
html { scroll-behavior: smooth; }
body {
    letter-spacing: .1em;
    color: #333;
}

p {line-height: 1.875;}

h1 { font-size: 26px; }
h2 { font-size: 24px; }

a {
    display: block;
	text-decoration: none;
	color: #fff;
    cursor: pointer;
}

ul {
    list-style: none;
    margin: 0 0;
	padding: 0 0;
}

.c-sp-1024 { display: none; }
.c-sp-768 { display: none; }
.c-sp-478 { display: none; }
.c-sp-378 { display: none; }

.c-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
}

/*------ 共通レスポンシブ ------*/
@media(max-width: 1024px) {
    h1 { font-size: 26px; }

    .c-pc-1024 { display: none; }
    .c-sp-1024 { display: block;} 
}

@media(max-width: 768px) {
    h1 { font-size: 24px; }

    .c-sp-768 { display: block; }
    .c-pc-768 { display: none; }
    
}

@media(max-width: 478px) {
    .c-pc-478 { display: none; }
    .c-sp-478 { display: block; }
}

@media(max-width: 378px) {
    .c-pc-378 { display: none; }
    .c-sp-378 { display: block; }
}


/*-------------------------------
    ヘッダー
--------------------------------*/
header { 
    position: relative;
    z-index: 1000;
} 
.l-header {
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 700;
    transition: transform 0.6s ease-out;
}
.l-header__logo {
	position: absolute;
	top: 0;
	left: 0;
    z-index: 1000;
}
.l-header__logo a { display: inline-block; }
.l-header__logo img {height: 80px;}

.l-header__logo a:hover {
    opacity: .7;
    transition: .5s;
}

.l-header__nav--pc {
    position: relative;
	display: flex;
    justify-content: flex-end;
    z-index: 900;
}
.l-header__nav--sp {display: none;}

.l-header__item a {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    transition: color .5s;
}
.l-header__item a:hover {
    opacity: .8;
    transition: .5s;
}

.l-header__hm {display: none;}

.l-header__bg-pc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    transition: transform 0.5s ease-out;
    background: #fff;
    transform: translateY(-80px);
}

/*------ ヘッダーレスポンシブ ------*/
@media(max-width: 1500px) {
    .l-header__item a { padding: 0 20px; }
}
@media(max-width: 1200px) {
    .l-header__item a {
        font-size: 15px;
        padding: 0 10px;
    }
}

@media(max-width: 1024px) {
    .l-header__logo {
        z-index: 800;
        transition: .5s; 
        transition-delay: 2s;
    }
    .l-header__nav--pc { display: none; }
    .l-header__nav--sp {
        display: block;
        position: fixed;  
        top: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
    }

    .l-header__nav--sp  li+li { border-left: none; }
    .l-header__nav--sp .l-header__item {
        width: 100%;
        min-width: 220px;
        max-width: 400px;
        height: 10%;
        margin: 0 auto;
        text-align: center;
        flex-grow: 0;
    }
    .l-header__item a {
        background-position: 0 0;
        background-size: 200% auto;
        align-items: center;
        text-shadow: 0 0 0;
        color:#333;
    }
    .l-header__nav .l-header__item:nth-child(6)  a{ color: #fff; }
    .l-header__item a:hover {
        background-position: -100%, 0;
        transform:calc(1, 1);
    }
    .l-header__bg-hm {
        position: fixed;
        width: 100%;
        height: 0;
        top: 0;
        right: 0;
        z-index: 900;
        opacity: 0;
        transition: .8s;
            visibility: hidden;
    }

    .l-header__hm {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1100;
        background: #ee7a00;
        height: 80px;
        width: 80px;
        transition: top .5s;
        cursor: pointer;
    } 
    .l-header__hm div { margin-top: 10px; }

    .l-header__hm-line {
        display: block;
        position: relative;	
        height: 2.5px;
        background: #fff;
        transition: .5s;
        width: 30px;
        margin: 10px auto 0;
    }
    .l-header__hm-line::before,
    .l-header__hm-line::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: #fff;
        transition: .5s;
        width: 30px;
        transition: .5s;
    }
    .l-header__hm-line::before {
        transform: translateY(-9px);	
        -webkit-transform: translateY(-9px);
    }
    .l-header__hm-line::after {
        transform: translateY(9px);
        -webkit-transform: translateY(9px);
    } 

    .l-header__hm-txt {
        display: block;
        text-align: center;
        margin-top: 15px;
        font-size: 14px;
        color: #fff;
    }
}

@media(max-width: 600px) {
    .l-header__logo img { 
        height: auto;
        width: 342px; 
    }
}
@media(max-width: 478px) {
    .l-header {
        background: #fff;
        height: 60px;
    }
    
    .l-header__logo {
        width: 100%;
        text-align: center;
    }
    .l-header__logo img {width: 258px;}

    .l-header__nav--sp {
        width: 90%;
        right: 5%;
    }
    .l-header__nav--sp .l-header__item { min-width: 190px; }
    .l-header__hm {
        top: 60px;
        height: 60px;
        width: 60px;
    }
    .l-header__hm-txt { font-size: 12px; }

    .l-header__hm-line,
    .l-header__hm-line::before,
    .l-header__hm-line::after {
        height: 2px;
        width: 25px;
        width: 25px;
    }
}

/*------ ヘッダーjs css ------*/
.l-header.js-header-open {transform: translateY(-80px);}

.l-header__bg-pc.js-header-open {transform: translateY(0);}
.l-header__nav.js-header-open .l-header__item a {color: #333;}
.l-header__nav.js-header-open .l-header__item:nth-child(6) a{color: #fff;}

.js-hm-top0 {top: 0!important;}
.js-hm-top80 {top: 80px!important;}

@media(max-width: 1024px) {
    /*----- ハンバーガークリック時 -----*/
    .l-header__nav--sp.js-nav-open {
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
        transition: .8s;
        z-index: 1000;
        min-width: auto;
        visibility: visible;
        transition-delay: .3s;
    }
    .l-header__hm-line.js-nav-open {
        background: transparent;
    }
    .l-header__hm-line.js-nav-open::before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        background: #fff;
    }
    .l-header__hm-line.js-nav-open::after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        background: #fff;
    }

    .l-header__bg-hm.js-nav-open {
        background: #fff;
        opacity: .7;
        visibility: visible;
        height: 100vh;
    }

    .js-header-open .l-header__bg-hm {top: 80px;}
}

@media(max-width: 478px) {
    .l-header.js-header-open {transform: translateY(-60px);}
    .l-header__hm.js-hm-top80 {top: 0!important;}
    .js-header-open .l-header__bg-hm {top: 60px;}
}


/*--------------------------------
    追従ボタン
--------------------------------*/
#p-fix {
    position: fixed;
    bottom: 2%;
    right: 2%;
    transform: translate(-2%,-2%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: .5s;
}

#p-fix div {
    width: 90px;
    transition: .5s;
}

#p-fix div:hover {
    transform: scale(1.2);
}

.js-fix-hidden {
    visibility: hidden;
    opacity: 0;
}

@media(max-width: 768px) {
    #p-fix div {width: 80px;}
}
@media(max-width: 478px) {
    #p-fix div { width: 65px; }
}


/*--------------------------------
    FV
--------------------------------*/
#p-fv {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100svh;
}
#p-fv .p-fv__swiper {
    z-index: 0;
}
#p-fv .p-fv__slide {
    height: 100vh;
}
#p-fv .p-fv__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fv-swiper 16s linear infinite alternate;
}
@keyframes fv-swiper {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.p-fv__txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 100%;
    color: #fff;
}
.p-fv__txt h1 {
    line-height: 1.5;
    font-size: 38px;
}
.p-fv__txt p {
    font-size: 28px;
    font-weight: bold;
}
.p-fv__txt img {
    margin-top: 30px;
    width: 380px;
}
.p-fv__arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 20px;
  }
  .p-fv__arrows path {
    stroke: #fff;
    fill: transparent;
    stroke-width: 2.5px;  
    animation: arrow 2.5s infinite;
    -webkit-animation: arrow 2.5s infinite; 
  }
  
  @keyframes arrow {
    0% {opacity:0}
    40% {opacity:1}
    80% {opacity:0}
    100% {opacity:0}
  }
  
  @-webkit-keyframes arrow  {
    0% {opacity:0}
    40% {opacity:1}
    80% {opacity:0}
    100% {opacity:0}
  }
  
  .p-fv__arrows path.p-fv__arrows-a1 {
    animation-delay:-1s;
    -webkit-animation-delay:-1s;
  }
  
  .p-fv__arrows path.p-fv__arrows-a2 {
    animation-delay:-0.5s;
    -webkit-animation-delay:-0.5s;
  }
  
  .p-fv__arrows path.p-fv__arrows-a3 { 
    animation-delay:0s;
    -webkit-animation-delay:0s;
  }
@media(max-width: 768px) {
    .p-fv__txt h1 {
        line-height: 2.2;
        font-size: 32px;
    }
    .p-fv__txt p {
        font-size: 18px;
    }
    .p-fv__txt img {
        margin-top: 30px;
        width: 310px;
    }
}

@media(max-width: 478px) {
    .p-fv__txt h1 { 
        font-size: 26px;
        letter-spacing: -0.05em;
    }
    .p-fv__txt p {
        font-size: 14px;
    }
}


/*--------------------------------
    fv下画像
--------------------------------*/
.p-banner {
    background: #F9F7F1;
    text-align: center;
}

.p-banner img {
    width: 90%;
    max-width: 800px;
    margin: 70px auto;
}

@media(max-width: 478px) {
    .p-banner img {
        margin: 50px auto;
    }
}

/*--------------------------------
    地域のみなさまへ
--------------------------------*/
.p-area {
    width: 100%;
    background: url(../images/img-region-bg.jpg);
    background-size: cover;
    background-position: center;
    padding:90px 0;
}
.p-area__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-area__wrap div { width: 50%; }

.p-area__ttl {
    font-size: 28px;
    text-align: center;
}
.p-area__txt { margin-top: 30px; }
.p-area_img { width: 400px; }

@media(max-width: 768px) {
    .p-area__wrap {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }
    .p-area__wrap div { width: 100%; }
    .p-area__ttl {font-size: 24px;}
}

/*--------------------------------
    コンセプト
--------------------------------*/
.p-concept__img{
    position: relative;
    margin: 50px auto 0;
    z-index: 800;
}
.p-concept__img--first {
    border-radius: 20px;
}
.p-concept__img--second {
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
}

@media(max-width: 768px) {
    .p-concept__img{ width: 100%; }
    .p-concept__img--first { border-radius: 12px; }
}

@media(max-width: 475px) {
    .p-concept__img { margin: 35px auto 0; }
    .p-concept__img--second {
        bottom: -30px;
        width: 20px;
    }
}

/*--------------------------------
    コンセプト 理由1
--------------------------------*/
.p-reason1 {
    padding: 100px 0 100px;
    margin-top: -93px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px) , 50% 100% , 0 calc(100% - 80px) );
}

.c-reason-ttl {
    margin: 40px auto 25px;
    text-align: center;
}
.c-reason-ttl p {
    display: inline-block;
    border-bottom: 1px solid #ee7a00;
    font-size: 20px;
    line-height: 1.6;
    color: #ee7a00;
}

.c-reason-ttl h3 {
    font-size: 28px;
    margin-top: 10px;
    line-height: 1.5;
    letter-spacing: 0.2em;
}


.p-reason1__list {
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
    flex-wrap : wrap;
    gap: 20px;
}
.p-reason1__list::after{
    content:"";
    display: block;
    width: 30%;
    max-width: 280px;
}
.p-reason1__item {
    width: 30%;
    max-width: 300px;
}
.p-reason1__item img {
    border-radius: 15px;
}
.p-reason1__item p:nth-of-type(1) {
    font-size: 18px;
    margin: 10px auto;
    letter-spacing: .15em;
    text-align: center;
    color: #ee7a00;
    font-weight: bold;
}
.p-reason1__item p:nth-of-type(2) {
    letter-spacing: -0.01em;
}
#p-reason1 .c-ttl h2 {
    font-size:32px;
    line-height: 1.5;
    letter-spacing: 0.27em;
    color: #ee7a00;
}

@media(max-width: 1024px) {
    .p-reason1 { margin-top: -72px; }
    .p-reason1 .c-ttl { padding-top: 20px; }
}

@media(max-width: 768px) {
    .p-reason1 { margin-top: -50px; }
    #p-reason1 .c-ttl h2 {font-size: 24px;}
}
@media(max-width: 600px) {
    .p-reason1__list::after,
    .p-reason1__item { width: 45%; }

    .p-reason1__item p:nth-of-type(1) {font-size: 16px;}
}
@media(max-width: 478px) {
    .p-reason1 { margin-top: -35px; }
    .p-reason1 .c-ttl { padding-top: 0 }
    #p-reason1 .c-ttl h2 {
        letter-spacing: 0.2em;
        font-size: 20px;
    }
    .c-reason-ttl h3 {
        font-size: 22px;
        letter-spacing: 0.1em;
    }
}


/*--------------------------------
    コンセプト 理由2
--------------------------------*/
.p-reason2 {
    position: relative;
    padding: 30px 0 100px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 85px) , 50% 100% , 0 calc(100% - 85px) );
    z-index: 800;
}

.p-reason2__inner {
    position: relative;
    margin-bottom: 30px;
}
.p-reason2 .p-reason2__pagination {
    bottom: -35px;
}
.p-reason2 .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
}


/*== swiper ===========*/
.swiper-pagination-bullet-active {
    background: #ee7a00;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    cursor: pointer;
    outline: none;
    height: 20px;
    width: 20px;
    z-index: 800;
}
.swiper-button-prev {
    left: -1.5%;
    content: url(../images/img-slide-left.svg);
    vertical-align: middle;
}

.swiper-button-next {
    right: -1.5%;
    content: url(../images/img-slide-right.svg);
    vertical-align: middle;
}

/*--------------------------------
    コンセプト 理由3
--------------------------------*/
.p-reason3 {
    position: relative;
    z-index: 600;
    margin-top: -90px;
    padding: 100px 0 110px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px) , 50% 100% , 0 calc(100% - 80px) );
}

.p-reason3__img img{
    margin: 50px auto 20px;
}

.p-reason3__list { margin-top: 40px; }
.p-reason3__list li {
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 10px;
    line-height: 1.875;
}
.p-reason3__list li:last-of-type { margin-bottom: 0; }


.c-form-link {
    padding: 40px 0 60px;
    text-align: center;
}
.c-form-link p {font-size: 20px;}
a.c-form-link__btn {
	vertical-align: middle;
	position: relative;
	width: 390px;
	margin: auto;
	padding: 1.3rem 4rem;
	font-weight: bold;
	border-radius: 30px;
    background: linear-gradient(0deg, #FF554F 0%, #FF9146 50%, #FBCF29 100%);
	box-shadow: 5px 5px #BF5700;
    margin-top: 20px;
	transition: 0.3s ease-in-out;
}
a.c-form-link__btn:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
}

a.c-form-link__btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% - 75%);
    transform: translateY(-50%);
    border: 9px solid transparent;
    border-left: 12px solid #fff;
}

@media(max-width: 478px) {
    .c-form-link p {font-size: 18px;}
    a.c-form-link__btn {width: 100%;}

    .p-reason3__list { margin-top: 20px; }
}

/*--------------------------------
    サービス
--------------------------------*/
#p-service {
    padding: 20px 0 60px;
}

.p-service__list {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap : wrap;
    gap: 20px;
}

.p-service__item {
    width: 30%;
    max-width: 340px;
    text-align: center;
    background: #fff;
}
.p-service__item a {
    background: #fff;
    color: #333;
    padding: 20px 15px 15px;
}
.p-service__item a div { overflow: hidden; }

.p-service__item a img {transition: .5s;}
.p-service__item a:hover img {transform:scale(1.2);}

.p-service__item h3 {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 20px;
}

.p-service__txt {
    font-size: 22px;
    text-align: center;
    margin: 35px auto 0;
    max-width: 830px;
    font-weight: bold;
    color: #ee7a00;
}

@media(max-width: 768px) {
    .p-service__list { gap: 10px; }
    .p-service__item { width: 48%; } 
}
@media(max-width: 478px) {
    .p-service__item h3 {
        line-height: 1.4;
        font-size: 16px;
        letter-spacing: -0.01em;
    }
    #p-service .p-concept__txt {
        font-size: 16px;
        letter-spacing: 0em;
    }
    .p-service__txt {
        font-size: 16px;
    }
}

/*--------------------------------
    施工事例
--------------------------------*/
#p-works { padding-bottom: 110px; }

.p-works__inner {
    position: relative;
    margin:30px auto 0;
}
.p-works__txt { 
    margin-top:10px; 
    text-align: center;
}

.p-works .p-works__slide {
    transform: translate(-50%,0);
}

.p-works__slide img {
    border-radius: 15px;
}
.p-works .p-works__pagination {
    bottom: -30px;
}
.p-works .swiper-pagination-bullet {
    width:20px;
    height:6px;
    border-radius: 0;
}


@media(max-width: 768px) {
}
@media(max-width: 600px) {
    .p-works .p-works__slide {
        transform: translate(0,0);
    }
    .p-works__txt { font-size:14px; }
}


/*--------------------------------
    お問い合わせ
--------------------------------*/
#p-contact {
    padding: 40px 0 120px;
}
.p-contact__tel {
    max-width: 650px;
    margin: 50px auto 0;
    padding: 35px 0;
    border-top: double; 
    border-bottom: double; 
    text-align: center;
}

.p-contact__tel p:nth-of-type(2) {
    font-size: 36px;
    font-weight: bold;
}
.p-contact__tel-inner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.p-contact__tel-inner a {
    color:#333;
    text-decoration:none;
    line-height: 1.4;
}
.p-contact__tel-txt {
    font-size: 22px;
}

form {
    margin: 40px auto 0;
    max-width: 900px;
    width: 100%;
}
table {
    width: 100%;
}
tr {
    margin-top: 30px;
    display: flex;
    gap: 40px;
}

tr td {
    flex: 1;
    width: 100%;
}
tr th span:nth-of-type(1) {
    width: 140px;
    text-align: left;
    display: inline-block;
    font-size: 18px;
}
.p-contact__note {
    background: #a9000d;
    color: #fff;
    padding: 5px 15px;
    font-weight: 400;
    display: inline-block;
    margin-left: 20px;
}

.error {
    color: #a9000d;
    text-align: left;
    font-weight: 500;
}
table input[type="text"]::placeholder,
table input[type="email"]::placeholder,
table textarea::placeholder {
    color: #888;
}
table input[type="text"],
table input[type="email"],
table textarea {
    padding: 7px 20px;
    width: 100%;
    color: #111;
    line-height: 1.6;
    font-weight: bold;
    font-size: 18px;
}

.p-contact__btn {
	position: relative;
    display: inline-block;
    margin-top: 55px;
    vertical-align: middle;
    width: 100%;
	max-width: 390px;
	border-radius: 30px;
    background: linear-gradient(0deg, #FF554F 0%, #FF9146 50%, #FBCF29 100%);
	box-shadow: 5px 5px #BF5700;
    cursor: pointer;
    border: none;
	transition: 0.3s ease-in-out;
}

.p-contact__btn input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
	font-weight: bold;
    font-size: 16px;
    color: #fff;
    padding: 1.3rem 4rem;
    width: 100%;
    cursor: pointer;
}

.p-contact__btn:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
}

.p-contact__btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% - 75%);
    transform: translateY(-50%);
    border: 9px solid transparent;
    border-left: 12px solid #fff;
    z-index: 10;
	transition: 0.3s ease-in-out;
}

.p-contact__btn:hover:before {
    top: 50%;
    left: calc(100% - 74%);
    transition: 0.3s ease-in-out;
}

@media(max-width: 768px) {
    form {
        margin: 15px auto 0;
        max-width: 675px;
    }
    tr {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 30px;
        letter-spacing: 0;
    }
    /*td {  width: 100%; }*/

    table input[type="text"], 
    table input[type="email"], 
    table textarea {
        font-size: 16px;
    }

    tr th span:nth-of-type(1) { width: 130px; }
}
@media(max-width: 478px) {
    .p-contact__tel-txt {font-size: 18px;}
    .p-contact__tel p:nth-of-type(2) {font-size: 30px;}

    .p-contact__tel-inner a span.p-contact__tel-num {
        font-size: 24px;
    }
    .p-contact__tel-inner a { letter-spacing: -.03em; }
    
    tr th span:nth-of-type(1) {
        font-size: 16px;
        width: 115px;
    }

    .p-contact__note {
        font-size: 14px;
        padding: 5px 10px;
    }
    table input[type="text"],
    table input[type="email"],
    table textarea {
        font-size: 16px;
    }
}

/*--------------------------------
    店舗情報
--------------------------------*/
#p-shop {
    padding: 30px 0 60px;
}
.p-shop__wrap {
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
}
.p-shop__name {
    font-size: 20px;
    padding: 15px 20px;
    font-weight: bold;
    margin-top: 40px;
    color: #54585a;
}

.p-shop__access {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}
.p-shop__access img {
    width: 48%;
}
.p-shop__access iframe {
    width: 100%;
    aspect-ratio: 16/9;
}
.p-shop__item {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #e4e4e4;
    padding: 10px 15px;
    color: #54585a;
    font-size: 18px;
}
.p-shop__item p:nth-of-type(1) {
    min-width: 100px;
}
.p-shop__item a {
    display: inline;
    color: #54585a;
}
@media(max-width: 700px) {
    .p-shop__access { flex-direction: column; }
    .p-shop__access img { width: 100%; }

}
@media(max-width: 600px) {
    .p-shop__name { font-size: 18px; }
}
@media(max-width: 478px) {
    #p-shop {
        padding: 0 0 60px;
    }
    #p-contact { padding: 20px 0 80px; }
    .p-shop__item p:nth-of-type(1) { min-width: 80px; }

    .p-shop__item { 
        gap: 10px; 
        font-size: 16px;
    }

    .p-shop__name {
        line-height: 1.6;
        letter-spacing: -.01em;
        padding: 10px 20px;
    } 
}


/*--------------------------------
   店舗ページへ
--------------------------------*/
.c-store-site {
    position: relative;
    width: 100%;
    background: url(../images/img-store-bg.jpg);
    background-size: cover;
    background-position: top;
}
.c-store-site__link {
    width: 50%;
    min-width: 550px;
    background:rgba(200,75,0,0.6);
    padding: 130px 10px;
    text-align: center;
}
.c-store-site__link p {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
.c-store-site__link a {
    color: #ee7a00;
    background: #fff;
    vertical-align: middle;
	position: relative;
	width: 310px;
	margin: auto;
	padding: 1rem 3rem;
	font-weight: bold;
	box-shadow: 5px 5px #fd9646;
    margin-top: 30px;
	transition: 0.3s ease-in-out;
}
.c-store-site__link a:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
}
@media(max-width: 768px) {
    .c-store-site__link {
        width: 100%;
        min-width: auto;
    }
}

@media(max-width: 478px) {
    .c-store-site__link p { font-size: 16px; }
    .c-store-site__link a { width: 90%; }   
}

/*--------------------------------
    フッター
--------------------------------*/
#l-footer {
    padding: 40px 0;
}
.l-footer__logo { text-align: center; }
.l-footer__logo img {
    max-width: 500px;
    width: 100%;
}
.l-footer__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    font-size: 14px;
}
.l-footer__nav a { color: #333; }
@media(max-width: 768px) {
    .l-footer__nav { gap: 20px; }
    .l-footer__nav a { font-size: 14px; }
}

/* --- --------------------------------------------
・完了画面
 --------------------------------------------*/
.p-completion__ttl img {
    width: 230px;
}

.p-completion p {
    margin-top: 10px;
}

.p-completion__ttl {
    border-bottom: 2px solid #ee7a00;
    margin: 40px auto 30px;
    text-align: center;
}
.p-completion__ttl p {
    font-size: 24px;
    font-weight: bold;
    margin: 30px auto;
    color: #ee7a00;
}

.p-completion__note {
    background: #f2f2f2;
    padding: 40px 60px;
    margin-top:30px;
    line-height: 1.7;
}
.p-completion .c-form-link {
    padding-bottom: 60px;
}
@media(max-width: 478px) {
    .p-completion__ttl img { width: 170px; }
    .p-completion__ttl p {font-size: 17px; letter-spacing: -.01em;}
    .p-completion__note {padding: 30px;}

}
/* --- --------------------------------------------
・
 --------------------------------------------*/

/* --- 要素 --- */
.content-box {
    padding: 70px 10px 0;
    margin-top: -70px;
}
.c-ttl { 
    padding-top: 50px; 
    text-align: center;
}
.c-ttl h2 {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    color: #ee7a00;
}

.p-concept__txt {
    margin: 30px auto 0;
    max-width: 830px;
    text-align: center;
}

.content-950 {
    max-width: 950px;
    margin: 0 auto;
}

.content-radius {border-radius: 10px;}

.txt-mark { background: linear-gradient(transparent 60%, #ffff00 60%); }
.txt-note {
    text-indent: -1.5em;
    padding-left: 1.5em;
}


@media(max-width: 1024px) {
    .content-950 {width: 95%;}
}

@media(max-width: 768px) {
    
}

@media(max-width: 478px) { 
    .c-ttl h2 {font-size: 28px;}
}


/* --- フォント --- */
.txt-spacing {letter-spacing: -.01em;}

.txt-bold { font-weight: bold;}

.c-txt-center {text-align: center!important;}
.txt-left {text-align: left!important;}
.txt-right {text-align: right!important;}
.txt-just {text-align: justify!important;}

.txt-14 {font-size: 14px!important;}
.txt-16 {font-size: 16px!important;}
.txt-18 {font-size: 18px!important;}
.txt-20 {font-size: 20px!important;}
.txt-22 {font-size: 22px!important;}
.txt-24 {font-size: 24px!important;}
.txt-26 {font-size: 26px!important;}
.txt-28 {font-size: 28px!important;}

@media(max-width: 768px) { 
    .txt-20 {font-size: 18px!important;}
}
@media(max-width: 478px) { 
    .txt-20 {font-size: 16px!important;}
    .txt-18 {font-size: 16px!important;}
}


/* --- フォントカラー --- */
.txt-white {color: #fff!important;}
.txt-pink {color: #d1268c!important;}
.txt-orange {color: #ee7a00;}


/* --- 背景色 --- */
.c-bg-black {background: #333;}
.c-bg-white {background: white;}
.c-bg-orange {background: #ee7a00;}
.c-bg-beige {background: #F9F7F1;}


/* --- マージン上 --- */
.mt-70 {margin-top: 70px!important;}
.mt-60 {margin-top: 60px!important;}
.mt-50 {margin-top: 50px!important;}
.mt-40 {margin-top: 40px!important;}
.mt-30 {margin-top: 30px!important;}
.mt-20 {margin-top: 20px!important;}
.mt-10 {margin-top: 10px!important;}

/* --- マージン下 --- */
.mb-70 {margin-bottom: 70px!important;}
.mb-60 {margin-bottom: 60px!important;}
.mb-50 {margin-bottom: 50px!important;}
.mb-40 {margin-bottom: 40px!important;}
.mb-30 {margin-bottom: 30px!important;}
.mb-20 {margin-bottom: 20px!important;}
.mb-10 {margin-bottom: 10px!important;}



/* --- パディング上 --- */
.pt-80 {padding-top: 80px!important;}
.pt-70 {padding-top: 70px!important;}
.pt-60 {padding-top: 60px!important;}
.pt-50 {padding-top: 50px!important;}
.pt-40 {padding-top: 40px!important;}
.pt-30 {padding-top: 30px!important;}
.pt-20 {padding-top: 20px!important;}
.pt-10 {padding-top: 10px!important;}

/* --- パディング下 --- */
.pb-80 {padding-bottom: 80px!important;}
.pb-70 {padding-bottom: 70px!important;}
.pb-60 {padding-bottom: 60px!important;}
.pb-50 {padding-bottom: 50px!important;}
.pb-40 {padding-bottom: 40px!important;}
.pb-30 {padding-bottom: 30px!important;}
.pb-20 {padding-bottom: 20px!important;}
.pb-10 {padding-bottom: 10px!important;}

/* --- パディング右 --- */
.pr-50 {padding-right: 50px!important;}
.pr-40 {padding-right: 40px!important;}
.pr-30 {padding-right: 30px!important;}
.pr-20 {padding-right: 20px!important;}
.pr-10 {padding-right: 10px!important;}

/* --- パディング左 --- */
.pl-l50 {padding-left: 50px!important;}
.pl-l40 {padding-left: 40px!important;}
.pl-l30 {padding-left: 30px!important;}
.pl-l20 {padding-left: 20px!important;}
.pl-l10 {padding-left: 10px!important;}


/* スライドズーム率設定 */
@-webkit-keyframes kenburns {
    0% {-webkit-transform: scale(1.3);
                transform: scale(1.3);
    }
    100% {-webkit-transform: scale(1);
                transform: scale(1);
    }
}
@keyframes kenburns {
    0% {-webkit-transform: scale(1.3);
                transform: scale(1.3);
    }
    100% {-webkit-transform: scale(1);
                transform: scale(1);
    }
}

@-webkit-keyframes kenburnsUp {
    0% {-webkit-transform: scale(1.3) translate(0 , 10%);
                transform: scale(1.3) translate(0 , 10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}
@keyframes kenburnsUp {
    0% {-webkit-transform: scale(1.3) translate(0 , 10%);
                transform: scale(1.3) translate(0 , 10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}

@-webkit-keyframes kenburnsDown {
    0% {-webkit-transform: scale(1.3) translate(0 , -10%);
                transform: scale(1.3) translate(0 , -10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}
@keyframes kenburnsDown {
    0% {-webkit-transform: scale(1.3) translate(0 , -10%);
                transform: scale(1.3) translate(0 , -10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}

@-webkit-keyframes kenburnsRight {
    0% {-webkit-transform: scale(1.3) translate(-10% , 0);
                transform: scale(1.3) translate(-10% , 0);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}
@keyframes kenburnsRight {
    0% {-webkit-transform: scale(1.3) translate(-10% , 0);
                transform: scale(1.3) translate(-10% , 0);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}

@-webkit-keyframes kenburnsLeft {
    0% {-webkit-transform: scale(1.3) translate(10% , 0);
                transform: scale(1.3) translate(10% , 0);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}
@keyframes kenburnsLeft {
    0% {-webkit-transform: scale(1.3) translate(10% , 0);
                transform: scale(1.3) translate(10% , 0);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}

@-webkit-keyframes kenburnsUpRight {
    0% {-webkit-transform: scale(1.3) translate(-10% , 10%);
                transform: scale(1.3) translate(-10% , 10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}
@keyframes kenburnsUpRight {
    0% {-webkit-transform: scale(1.3) translate(-10% , 10%);
                transform: scale(1.3) translate(-10% , 10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}

@-webkit-keyframes kenburnsUpLeft {
    0% {-webkit-transform: scale(1.3) translate(10% , 10%);
                transform: scale(1.3) translate(10% , 10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}
@keyframes kenburnsUpLeft {
    0% {-webkit-transform: scale(1.3) translate(10% , 10%);
                transform: scale(1.3) translate(10% , 10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}

@-webkit-keyframes kenburnsDownRight {
    0% {-webkit-transform: scale(1.3) translate(-10% , -10%);
                transform: scale(1.3) translate(-10% , -10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}
@keyframes kenburnsDownRight {
    0% {-webkit-transform: scale(1.3) translate(-10% , -10%);
                transform: scale(1.3) translate(-10% , -10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}

@-webkit-keyframes kenburnsDownLeft {
    0% {-webkit-transform: scale(1.3) translate(10% , -10%);
                transform: scale(1.3) translate(10% , -10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}
@keyframes kenburnsDownLeft {
    0% {-webkit-transform: scale(1.3) translate(10% , -10%);
                transform: scale(1.3) translate(10% , -10%);
    }
    100% {-webkit-transform: scale(1) translate(0 , 0);
                transform: scale(1) translate(0 , 0);
    }
}