@charset "UTF-8";
/* ======================
ヘッダーの電話番号　表示／非表示設定
表示したいとき
.nav__btn--phone {
    display: block;
}
非表示にしたいとき
.nav__btn--phone {
    display: none;
}
====================== */

.nav__btn--phone {
    display: block;
}
/* ======================
common
====================== */
:root{
    --primary-white: #FFFCF7;
    --primary-low-orange: #FFEBD0;
    --primary-low-yellow: #FFEBB0;
    --primary-bright-orange: #FFD49C;
    --primary-brown: #251A0C;
    --primary-red: #D7220E;
    --primary-orange: #EB8317;
    --primary-blue: #357BBE;
    --primary-dark-blue: #15497A;
}

html{
    font-size: 62.5%;
}
body{
    font-family:
    "Noto Sans", 
    sans-serif;
    font-weight: 400;
    color: var(--primary-brown);
    background-color: var(--primary-white);
    line-height: 1.5;
    font-style: normal;
}
img{
    max-width: 100%;
    height: auto;
}

.brSp {
    display: block;
}
h2 {
    font-size: 2.1rem;
    text-align: center;
    font-weight: 700;
    font-style: normal;
}
.logo-pc {
    width: 150px;
}

.subtitle {
    font-family: "Petrona", serif;
    font-size: 1rem;
    text-align: center;
    color: #876046;
    font-weight: 700;
}
.subtitle__img {
    display: block;
    width: 24px;
    height: 18px;
    margin: 3px auto 1px;
}

.sectionbase {
    padding: 70px 4.2%;
}

@media screen and (min-width: 999px){   
    h2 {
        font-size: 3.6rem;
        font-style: normal;
    }
    .subtitle {
        color: #876046;
        text-align: center;
        font-family: Petrona;
        font-size: 1.2rem;
        font-weight: 700;
    }
    .subtitle__img {
        display: block;
        width: 43px;
        height: 33px;
        margin: 5px auto 2px;
    }
    .logo-pc {
        width: 200px;
    }

    .sectionbase {
        padding: 200px 7%;
    }

}

/* ======================
header
====================== */
.header {
    background-color: var(--primary-white);
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    font-style: normal;
}
.header__txt {
    min-width: 150px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    margin-top: 5px;
    margin-left: 5%;
}
.logo-pc {
    display: block;
    width: 150px;
    margin-bottom: 3px;
}
.h1 {
    font-size: 1rem;
    line-height: 1.3;
}
.nav__list {
    display: flex;
    align-items: center;
    margin-right: 5%;
}
.nav__list img {
    display: block;
    width: 40px;
}
.nav-items__btn {
    margin-left: 5%;
}
.header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #F9DAB9;
    transition: ease .4s;
}
.nav__items {
    margin: 48px 0 0 65px;
    display: grid;
}
.nav-items__item:nth-of-type(-n+3) {
    display: block;
    margin-left: 17px;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}
.nav-items__item:nth-child(-n+3) ::before{
    content: '';
    display: block;
    width: 2px;
    height: 25px;
    background: var(--primary-orange);
    position: absolute;
    top: 2px;
    left: -17px;
}
.nav__btn--mithumori {
    display: inline-block;
    width: 150px;
    color: #FFF;
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 5px;
    border: 1px solid #463014;
    background: var(--primary-orange);
    padding: 9px 14px 10px 36px;
    position: relative;
    margin-bottom: 20px;
}
.nav__btn--mithumori::before {
    content: '';
    background-image: url(../../images/btn_mitumori_pc.png);
    background-size: contain;
    display: block;
    width: 19px;
    height: 19px;
    position: absolute;
    top: 10px;
    left: 12px;
}
.nav__btn--toiawase {
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    width: 150px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1px solid #463014;
    background: #FFF;
    padding: 9px 35px 10px 56px;
    position: relative;
    margin-bottom: 20px;
}
.nav__btn--toiawase::before {
    content: '';
    background-image: url(../../images/btn_toiawase2_pc.png);
    background-size: contain;
    display: block;
    width: 19px;
    height: 19px;
    position: absolute;
    top: 10px;
    left: 27px;
}
.nav__btn--phone {
    font-size: 1.8rem;
    position: relative;
    margin-bottom: 20px;
    order: 3;
}
.nav__btn--phone p {
    font-size: 1rem;
}

.phone-pc {
    display: none;
}
/* ホバー設定 */
.nav__btn--mithumori:hover {
    background: #F7A958;
    transition: all 0.5s 0s ease;
}
.nav__btn--toiawase:hover {
    background: #FFE9D3;
    transition: all 0.5s 0s ease;
}
.nav__list img:hover {
    opacity: 0.7;
    transition: all 0.5s 0s ease;
}
@media screen and (min-width: 1310px) {
    h1 {
        font-size: 1.4rem;
        font-weight: 400;
    }
    .header__txt {
        width: 25vw;
    }

    .logo-pc {
        display: block;
        width: 296px;
        height: 55px;
    }
    .header__logo {
        margin: 0;

    }
    .nav--logo {
        display: none;
    }
   
    .header__nav {
      position: static;
      transform: initial;
      background-color: inherit;
      height: inherit;
      display: flex;
      justify-content: end;
    }
    .nav__items {
        font-size: 1.8rem;
      width: 100%;
      display: flex;
      align-items: center;
      height: initial;
      justify-content: flex-end;
      margin: 0;
    }
    .nav-items {
      padding-top: inherit;
      padding-bottom: inherit;
      position: inherit;
      top: 0;
      left: 0;
      transform: translate(0, 0);
    }
    .nav-items__item:nth-child(-n+3) ::before{
        top: 2px;
        left: -5px;
    }
    .header {
        height: 130px;
        padding: 23px 1.5vw;
    }
    .nav-items__item:nth-of-type(-n+3) {
        margin-left: 1.5vw;
        margin-bottom: 0px;
    }
    .nav__btn--mithumori {
        font-size: 1.8rem;
        font-weight: 600;
        display: inline-block;
        width: 182px;
        padding: 11px 0 11px 39px;
        position: relative;
        margin: 0 0 0 10px;
    }
    .nav__btn--mithumori::before {
        width: 27px;
        height: 27px;
        position: absolute;
        top: 11px;
        left: 9px;
    }
    .nav__btn--toiawase {
        font-size: 1.8rem;
        font-weight: 600;
        display: inline-block;
        width: 182px;
        padding: 11px 0 11px 59px;
        position: relative;
        margin: 0 0 0 10px;
    }
    .nav__btn--toiawase::before {
        width: 27px;
        height: 27px;
        position: absolute;
        top: 12px;
        left: 25px;
    }
    .nav__btn--phone {
        color: var(--primary-orange);
        font-size: 2.1rem;
        order: 0;
        margin: 0 0 0 10px;
    }
    .phone-sp {
        display: none;
    }
    .phone-pc {
        display: inline-block;
        width: 24px;
        height: 24px;
        position: relative;
        top: -4px;
    }
}
/* ハンバーガーメニュー */
.header__hamburger {
    width: 25px;
    height: 100%;
    margin-left: 2vw;
}

@media screen and (min-width: 1310px) {
    .nav__list {
      display: none;
    }
}
.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    display: block;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    margin: 7px 0;
}
.hamburger span:nth-child(3) {
    top: 0;
}
  
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
} 

/* ======================
お問い合せバナー
====================== */
.contactbox__txt {
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1.92px;
    background-image: url(../../images/ribon_pc.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 142px;
    height: 31px;
    text-align: center;
    position: absolute;
    top: 10px;
    left: -5px;
    padding-top: 3px;
}
.contactbox__title {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-top: 47px;
}
.btn__quote {
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    box-sizing: border-box;
    width: 128px;
    height: 35px;
    border-radius: 50px;
    border: 2px solid #FFF;
    background: #FF8E3F ;
    padding: 7px 10px 7px 28px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    position: relative;
}
.btn__quote::before {
    content: '';
    background-image: url(../../images/btn_mitumori_pc.png);
    background-size: contain;
    display: block;
    width: 19px;
    height: 19px;
    position: absolute;
    top: 6px;
    left: 6px;
}
.btn__contact {
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    box-sizing: border-box;
    width: 128px;
    height: 35px;
    border-radius: 50px;
    border: 2px solid #FFF;
    background: #15497A ;
    padding: 7px 10px 7px 45px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    position: relative;
}
.btn__contact::before {
    content: '';
    background-image: url(../../images/btn_toiawase_pc.png);
    background-size: contain;
    display: block;
    width: 19px;
    height: 19px;
    position: absolute;
    top: 6px;
    left: 17px;
        
}
.contactbox__btn {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 7px;
}
.contactbox__content {
    max-width: 500px;
    min-height: 132px;
    border-radius: 10px;
    border: 1px solid #000;
    background: #FFF;
    box-shadow: 4px 5px 1px 0px #EB8317;
    margin: 0 auto;
    position: relative;
}
.contactbox__content img {
    display: block;
    width: 82px;
    height: 83px;
    position: absolute;
    bottom: -52px;
    right: -11px;
}
.contactbox {
    padding: 36px 4.2% 52px;
    background: #FFB049;
}
/* ホバー設定 */
.btn__quote:hover {
    background: #FFAB4C;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    transition: all 0.5s 0s ease;
}
.btn__contact:hover {
    background: #357BBE;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    transition: all 0.5s 0s ease;
}

@media screen and (min-width: 999px) {
    .contactbox {
        padding: 47px 0;
    }
    .contactbox__content img {
        width: 270px;
        height: 271px;
        bottom: -48px;
        right: -176px;
    }
    .contactbox__content {
        width: 52vw;
        min-width: 650px;
        max-width: 754px;
        height: 216px;
    }
    .contactbox__txt {
        font-size: 2.1rem;
        letter-spacing: 3.36px;
        width: 242px;
        height: 47px;
        top: 20px;
        left: -8px;
        padding-top: 5px;
    }
    .contactbox__title {
        font-size: 2.8rem;
        margin-top: 72px;
    }
    .btn__quote {
        font-size: 1.8rem;
        width: 250px;
        height: 55px;
        padding: 12px 0 0 69px;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
    .btn__quote::before {
        width: 27px;
        height: 27px;
        position: absolute;
        top: 12px;
        left: 29px;
    }
    .btn__contact {
        font-size: 1.8rem;
        width: 250px;
        height: 55px;
        padding: 12px 0 0 97px;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
    .btn__contact::before {
        width: 27px;
        height: 27px;
        position: absolute;
        top: 12px;
        left: 51px;
    }
    .contactbox__btn {
        gap: 5%;
        margin-top: 18px;
    }
}



/* TOPページに戻るボタン */
.pagetop {
    color: #FFF;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1.62px;
    width: 56px;
    height: 56px;
    position: fixed;
    right: 1%;
    bottom: 1%;
    background: #EB8317;
    stroke-width: 1px;
    stroke: rgba(37, 26, 12, 0.80);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border: solid 1px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    padding-left: 2px
}
.pagetop::before {
    content: '';
    background-image: url(../../images/icon_top.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 16px;
    height: 17px;
    position: absolute;
    top: 4px;
    left: 18px;
    
}
/* ホバー設定 */
.pagetop:hover {
    background: #FFAB4C;
    transition: all 0.5s 0s ease;
}
@media screen and (min-width: 999px) {
    .pagetop {
        font-size: 2.4rem;
        letter-spacing: 2.16px;
        width: 84px;
        height: 84px;
        right: 1%;
        bottom: 1%;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        padding-top: 5px;
        padding-left: 3px;
    }
    .pagetop::before {
        width: 23px;
        height: 13px;
        top: 9px;
        left: 29px;
    }
}
/* タイトル装飾 */
.ginouTitle {
    display: inline-block;
    padding: 6px 20px;
    margin-top: 15px;
    color: var(--primary-orange);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1.62px;
    border-radius: 50px;
    border: 1px solid #251A0C;
    background: #FFF3E7;
    box-shadow: 4px 5px 1px 0px rgba(235, 131, 23, 0.70);
}
.tokuteiTitle {
    display: inline-block;
    padding: 6px 20px;
    margin-top: 15px;
    color: #357BBE;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1.62px;
    border-radius: 50px;
    border: 1px solid #251A0C;
    background: #E7F3FF;
    box-shadow: 4px 5px 1px 0px #357BBE;
}
@media screen and (min-width: 999px) {
    .ginouTitle, 
    .tokuteiTitle {
        font-size: 2.8rem;
        padding: 13px 40px;
        margin-top: 0;
    }
}

/* ======================
footer
====================== */
.footerMenu {
    padding: 30px 25px 33px;
    background: var(--primary-dark-blue);
}
.footerMenu__list {
    color: #FFF;
    font-size: 1.2rem;
}
.footerMenu__item {
    margin-bottom: 13px;
}
.footerMenu__phone {
    text-align: center;
    margin-top: 31px;
}
.footerMenu__number {
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 300;
}
.footerMenu__txt {
    color: #FFF;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 2px;
}
.footer {
    text-align: center;
    margin: 20px 0 20px;
}
.copy {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
}

.logo__footer {
    margin: 0 auto;
}
@media screen and (min-width: 999px) {
    .footerMenu {
        padding: 66px 0 43px;
        background: var(--primary-dark-blue);
    }
    .footerMenu__list {
        display: flex;
        justify-content: center;
        gap: 55px;
    }
    .footerMenu__item {
        margin-bottom: 0;
        font-size: 1.8rem;
    }
    .footerMenu__phone {
        text-align: center;
        margin-top: 40px;
    }
    .footerMenu__number {
        font-weight: 400;
    }
    .footerMenu__txt {
        font-weight: 400;
        margin-top: 4px;
    }
    .footer {
        text-align: center;
        margin: 50px auto;
    }
    .copy {
        font-size: 1.4rem;
    }
    .logo__footer {
        margin: 0 auto;
        margin-bottom: 30px;
    }
}