@charset "utf-8";

/*==========================
common
==========================*/

:root {
    --orange01: #FFC700;
    --orange02: #FF7B00;
    --black: #352F26;
    --white: #FFFEFD;
    --red: #FF544F;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", "Noto Serif JP", sans-serif;
    font-style: normal;
    color: var(--black, #352F26);
    line-height: 1.5;
    background-image: url(../images/bg_cloth.jpg);
    background-repeat: repeat;
}

img {
    max-width: 100%;
    height: auto;
}


.maintopic, .topic {
    color: var(--white);
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.50);
    font-family: "Noto Serif JP";
    font-size: 2.4rem;
    font-weight: 700;  
    text-align: center;
    display: flex;
    justify-content: center;

}

.subTopic, .subTopic-white {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-weight: 700;
}

.subTopic::after {
    display: block;
    content:'';
    width: 200px;
    height: 24.246px;
    background-image: url(../images/kazari_orange.png);
    background-position: center;
    background-size: contain;
    margin: 10px auto 0;
}

.subTopic-white::after {
    display: block;
    content:'';
    width: 200px;
    height: 24.246px;
    background-image: url(../images/kazari_white.png);
    background-position: center;
    background-size: contain;
    margin: 10px auto 0;
}

/* ボタン */
.btn__tel {
    text-align: center;
    width: 271px;
    padding: 30px;
    border-radius: 8px;
    border: 4px solid var(--orange02);
    background: var(--white);
    color: var(--orange02);
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-weight: 700;
}

.btn__form {
    text-align: center;
    width: 271px;
    padding: 30px;
    border-radius: 8px;
    background: var(--orange02);
    color: var(--white);
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-weight: 700;
}

.btn__tel:hover {
    background-color: white;
    color: var(--orange01);
    border: 4px solid var(--orange01);
    transition: 0.4s;
}

.btn__form:hover {
    background-color: var(--orange01);
    transition: 0.4s;
}

/* br */
.pcBr {
    display: none;
}

.spBr {
    display: block;
}

/* scroll top */
.topBtn, .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: var(--orange01);
    font-family: "Noto Sans JP";
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

    position: fixed;
    bottom: 5.3%;
    right: 5.3%;
    z-index: 100;
    cursor: pointer;
    transition: 0.5s;
    
    opacity: 0;
    visibility: hidden;
}

.active{
    opacity: 1;
    visibility: visible;
}

/* common pc */
@media screen and (min-width:769px) {
    .maintopic, .topic {
        font-size: 4.6rem;    
    }

    .subTopic, .subTopic-white {
        font-size: 3.2rem;
    }
    
    .subTopic::after, 
    .subTopic-white::after {
        width: 308px;
        height: 37.339px;
    }

    /* ボタン */
    .btn__tel {
        width: 390px;
        padding: 30px 60px;
        font-size: 2.4rem;
    }

    .btn__form {
        width: 390px;
        padding: 30px 60px;
        font-size: 2.4rem;
    }

    /* br */
    .spBr {
        display: none;
    }

    .pcBr {
        display: block;
    }
}
/* pc 769px */


/*==========================
header
==========================*/

.header {
    display: flex;
    display: flex;
    padding: 30px 4.7%;
    justify-content: space-between;
    align-items: center;
}

.header__topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.header__topic p {
    color: var(--white);
    text-shadow: 0px 1px 1px #737373;
    font-family: "Noto Serif JP";
    font-size: 1rem;
    font-weight: 700;
}

.header__logo {
    width: 62.5%;
}

.header__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.header__btn p{
    color: var(--white);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0px 1px 1px #737373;
}

.mainVisual {
    background-image: url(../images/bg_main2.jpg);
    width: 100%;
    height: 240px;
    background-size: cover;
    background-repeat: no-repeat;
}

.maintopic {
    margin-top: 10px;
}

/* header pc */
@media screen and (min-width:769px) {
    
    .header__topic {
        gap: 5px;
    }
    
    .header__topic p {
        font-size: 2.4rem;
    }
    
    .header__logo {
        width: 500px;
        height: 70.124px;
    }
    
    .header__btn {
        gap: 10px;
    }
    
    .header__btn p{
        font-size: 2rem;
    }
    
    .mainVisual {
        height: 360px;
    }
    

}
/* pc 769px */


/*==========================
nav設定
==========================*/

/* .nav初期表示 */

.nav {
    width: 100%;
    height: 100vh;
    margin-left: auto;
    background-image: url(../images/bg_menu.jpg);
    opacity: 0.95;
    background-size: cover;
    background-repeat: no-repeat;

    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s;
}

.nav__header {
    padding-right: 4.7%;
    height: 108px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav__btn {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.nav__list {
    padding: 0 9.3% 60px;
}

.nav__item {
    color: var(--white);
    font-family: "Noto Serif JP";
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
}

.nav__item a {
    display: block;
}


.nav__item:first-of-type {
    margin-top: 0;
}

.nav__item::after {
    display: inline-block;
    content: '';
    width: 100%;
    height: 1px;
    margin-bottom: 5px;
    background-color: var(--white);
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

/* nav設定 pc */
@media screen and (min-width:769px) {
    .nav {
        width: 46.4%;
    }

    .nav__header {
        padding-right: 11%;
        height: 160px;
    }

    .nav__btn {
        width: 40px;
        height: 40px;
    }

    .nav__list {
        padding: 0 10.1% 77px;
    }

    .nav__item {
        font-size: 2rem;
    }

    .nav__item:first-of-type {
        margin-top: 0;
    }

    /* .nav.active表示 */
    .nav.active {
        transform: translateX(0);
    }
}
/* pc 769px */

/*==========================
slick
==========================*/
.slider__top {
    margin: 1px 0;
}
.slider__bottom {
    margin-top: 0px;
    margin-bottom: 1px;
}

.slider__item {
    margin-left: 1px;
}

/*==========================
breadcrumb
==========================*/

.breadcrumb {
    margin: 0; 
    padding: 15px 4.7% 0;
    list-style: none;
}

.breadcrumb li {
    display: inline;
    list-style: none;
    font-weight: 400;
    font-size: 1.2rem;
}
  
.breadcrumb li:after {
    content: '▶︎';
    padding: 0  10px;
    color: var(--orange01);
}
  
.breadcrumb li:last-child:after {
    content: '';
}
  
.breadcrumb li a {
    text-decoration: none;
}
  
.breadcrumb li a:hover {
    text-decoration: underline;
}

/* breadcrumb pc */
@media screen and (min-width:769px) {
    .breadcrumb li {
        font-size: 1.8rem;
    }
}
/* pc 769px */

/*==========================
form explain
==========================*/
.formExplain {
    padding: 75px 6.25% 90px;
    text-align: center;
}

.formExplain__txt {
    font-size: 1.4rem;
    margin: 30px auto 0;
    max-width: 505px;
    text-align: start;
}

.formExplain__txt-border {
    text-decoration-line: underline;
}

/* form explain pc */
@media screen and (min-width:769px) {
    .formExplain {
        padding: 105px 15.6% 120px;
    }
    
    .formExplain__txt {
        font-size: 1.8rem;
        margin-top: 60px;
        text-align: center;
        max-width: 880px;
    }
}
/* pc 769px */

/*==========================
form 
==========================*/
.form {
    background-image: url(../images/bg_gradation.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    width: 100%;
    padding: 90px 3.12%;
    flex-direction: column;
    align-items: center;
}
.form__category, .group {
    width:auto;
	display:block;
}

.form__category {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 30px;
}

.form__category--first {
    margin-top: 0;
}

.form__category::before {
    margin-right: 15px;
    display: inline-block;
    content: '必須';
    background-color: var(--red);
    width: 48px;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
}

input[type="text"], 
input[type="tel"],
input[type="email"] {
    margin-top: 5px;
    width: 270px;
    padding: 10px 6.25%;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #C6C6C6;
    background: var(--white, #FFFEFD);
    font-size: 1.4rem;
    line-height: 1;
}

input[type="text"]:focus, 
input[type="tel"]:focus,
input[type="email"]:focus {
    outline: solid 1px var(--orange02);
}


.group--radio {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 270px;
    padding: 10px 30px 10px 20px;
    font-size: 1.4rem;
    font-weight: 500;
}

input[type="radio"] {
    margin-right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #C6C6C6;
    background: var(--white, #FFFEFD);

}

input[type="radio"]:checked{
    position: relative;
}

input[type="radio"]:checked::after{
    display: block;
    content: '';
    width: 17px;
    height: 17px;
    background-color: var(--orange02);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.group__textArea {
    margin-top: 5px;
    width: 270px;
    min-height: 160px;
    border-radius: 4px;
    border: 1px solid #C6C6C6;
    background-color: var(--white);
    font-size: 1.4rem;
}

.group__textArea:focus {
    outline: solid 1px var(--orange02);
}

.textarea__ex {
    margin-top: 5px;
    color: #6B6B6B;
    font-size: 1.2rem;
    font-weight: 400;
}

::placeholder {
    color: #C6C6C6;
    font-size: 1.4rem;
    font-weight: 400;
}

.form__parts--submit {
    display: flex;
    flex-direction: column;
}

input[type="submit"] {
    display: block;
	text-align: center;
    width: 271px;
    padding: 10px 0;
    border-radius: 8px;
    border: 2px solid var(--red);
    background: var(--red);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
	margin-top: 60px;
}

input[type="reset"] {
    display: block;
	text-align: center;
    width: 271px;
    padding: 10px 0;
    border-radius: 8px;
    border: 2px solid var(--red);
    background: var(--white);
    color: var(--red);
    font-size: 1.6rem;
    font-weight: 700;
	margin-top: 15px;
}


/* form  pc */
@media screen and (min-width:769px) {

    .form {
        padding: 120px 15.6%;
    }
    
    .form__category {
        font-size: 1.8rem;
    }

    input[type="text"], 
    input[type="tel"],
    input[type="email"] {
        width: 500px;
        font-size: 1.8rem;
    }
    
    .group--radio {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 50px;
        width: 500px;
        padding: 10px 30px 10px 20px;
        font-size: 1.8rem;
    }
    
    .group__textArea {
        width: 500px;
        min-height: 160px;
        font-size: 1.8rem;
    }
    
    .group__textArea:focus {
        outline: solid 1px var(--orange02);
    }
    
    ::placeholder {
        font-size: 1.8rem;
    }

    .btn--form {
        padding: 15px 80px;
        font-size: 2rem;
        font-weight: 700;
    }

    input[type="submit"] {
        width: 300px;
        padding: 15px 0;
        font-size: 2rem;
    }
    
    input[type="reset"] {
        width: 300px;
        padding: 15px 0;
        font-size: 2rem;
        margin-top: 15px;
    }
    
    
}
/* pc 769px */

/*==========================
contact
==========================*/
.contact__group {
    padding: 90px 6.25%;
}

.contact__txt {
    margin: 30px auto 0;
    max-width: 505px;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: start;
}

.btn__tel {
    margin: 30px auto 0;
    display: block;
}

/* form explain pc */
@media screen and (min-width:769px) {
    .contact__group {
        padding: 120px 15.6%;
    }
    
    .contact__txt {
        margin-top: 60px;
        max-width: 880px;
        font-size: 1.8rem;
        text-align: center;
    }
    
    .btn__tel {
        margin-top: 60px;
    }
}
/* pc 769px */

/*==========================
footer
==========================*/
.footer__group {
    display: flex;
    padding: 90px 0px 30px 0px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-image: url(../images/bg_gradation&sun.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.footerNav__list {
    display: flex;
    padding: 0px 18.7%;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 5px 15px;
    flex-wrap: wrap;
}


.footerNav__item {
    color: var(--white);
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
}

.footer__logo {
    display: block;
    width: 160px;
    height: 147.925px;
}

.footer__tel {
    color: var(--white);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 500;
}

.copy {
    color: var(--white);
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 0.9rem;
    font-weight: 400;
}


/* footer pc */
@media screen and (min-width:769px) {
    .footer__group {
        padding: 120px 0px 60px 0px;
        gap: 30px;
    }
    
    .footerNav__list {
        gap: 15px 30px;
        padding: 0px 15.6%;
    }  
    
    .footerNav__item {
        font-size: 1.8rem;
    }
    
    .footer__logo {
        width: 200px;
        height: 184.906px;
    }
    
    .footer__tel {
        font-size: 1.8rem;
    }
    
    .copy {
        font-size: 1.2rem;
    }
}
/* pc 769px */