@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 */

/*==========================
faq
==========================*/

.faq__group {
    padding: 75px 3.12% 90px 3.12%;
}

.faq__item {
    margin-top: 30px;
}

.faq__item:first-of-type {
    margin: 0;
}

.question {
    display: flex;
    align-items: center;
    border-radius: 8px 8px 0px 0px;
    padding: 20px 3.12%;
    border: 2px solid var(--orange01);
    background: var(--white);
    cursor: pointer;
    position: relative;
}

.Q {
    color: var(--orange01);
    font-size: 2.4rem;
    font-weight: 700;
}

.question__txt {
    width: 66.6%;
    margin-left: 15px;
    font-size: 1.6rem;
    font-weight: 400;
}

.question::before,
.question::after {
  position: absolute;
  content: '';
  right: 23px;
  width: 18px;
  height: 3px;
  margin: auto;
  background: var(--orange01);
}

.question::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.question.active::after {
    transform: rotate(0deg);
}

.answer {
    display: flex;
    align-items: center;
    border-radius: 0px 0px 8px 8px;
    border: 2px solid var(--orange01);
    border-top: 0px;
    padding: 20px 3.12%;
    background: var(--white);
}

.A {
    color: var(--orange01);
    font-size: 2.4rem;
    font-weight: 700;
}

.answer__txt {
    width: 85.4%;
    margin-left: 15px;
    font-size: 1.4rem;
    font-weight: 400;
}

.faq__item a:hover {
    color :var(--orange02);
}

/* faq pc */
@media screen and (min-width:769px) {
    .faq__group {
        padding: 105px 15.6% 120px;
    }
    
    .faq__item {
        margin-top: 60px;
    }
    
    .question__txt {
        width: 66.6%;
        margin-left: 30px;
        font-size: 2rem;
    }
    
    .answer__txt {
        margin-left:30px;
        font-size: 1.8rem;

    }
}
/* 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 */