@charset "UTF-8";
/*======================== 
common
========================*/
:root{
    --primary-white: #FDFDFD;
    --primary-black: #000000;
    --primary-beige: #F8F7F5;
    --primary-darkBeige: #999483;
    --primary-naturalBeige:#EAE8E4;
    --primary-pink: #D03E53;
    --contentWidth: 81.5%;
}

html{
    font-size: 62.5%;
}

body{
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black);
    background-color: var(--primary-white);
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-size: 1.2rem;
    background: url(../img/background.jpg);
    background-attachment: fixed;
    background-size: contain;
    font-size: 15px;
}

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

span{
    color: var(--primary-black);
    display: block;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.3em;
}

.yajirushi{
    width: 8px;
    margin: 0 0 6px 15px;
}

.btn__1{
    border-radius: 50px;
    background-color: var(--primary-darkBeige);
    color: var(--primary-white);
    padding: 10px 40px;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    position: relative;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

/* common pc */
@media screen and (min-width: 769px){
    span{
        font-size: 1.8rem;
        margin-top: -5px;
    }

    .yajirushi{
        margin: 0 0 10px 15px;
    }

    .btn__1{
        padding: 13px 50px;
        font-size: 1.8rem;
    }
}    

/* ==============================
header
============================== */
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    background-color: var(--primary-white);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.header__topic,
.nav__topic{
    width: 89px;
    height: 26px;
    margin-left: 24px;
}

.nav_pc{
    display: none;
}

.header__btn{
    margin-right: 24px;
    margin-left: 17px;
    margin-bottom: 13px;
    width: 24px;
    height: 15px;
}

/* .nav初期表示 */
.nav{
    background-color: #f8f7f5e2;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header{
    margin-top: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.freedial{
    display: none;
}

.telbtn{
    width: 36px;
    height: 36px;
}

.telbtn:hover{
    opacity: 0.8;
    transition: 0.3s;
}

.reservation{
    width: 83px;
    height: 36px;
    margin-left: 6px;
}

.reservation:hover{
    opacity: 0.8;
    transition: 0.3s;
}

.nav__btn{
    margin-right: 26px;
    width: 20px;
}

.nav__list{
    margin:40px 0 0 32px;
}

.nav__home{
    width: 15px;
    height: 15px;
}

.nav__name{
    color: #999483;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-top: 45px;
}

.nav__item{
    font-size: 1.5rem;
    margin-top: 15px;
}

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

@media screen and (min-width: 1000px){

    .header__topic{
        width: 180px;
        margin-right: -50px;
    }

    .company__rogo{
        margin-top: -9px;
        width: 130px;
    }

    .header{
        padding: 10px 0;
        display: flex;
        justify-content: space-between;
    }

    .nav_pc{
        display: flex;
        font-size: 1.4rem;
        gap: 13px;
        justify-content: flex-end;
    }

    .nav_pc__item:hover{
        opacity: 0.8;
        transition: 0.3s;
        color: var(--primary-darkBeige);
    }
    
    .nav_pc__item img{
        width: 7px;
        margin:0 5px 8px;
    }

    .set{
        display: flex;
        align-items: center;
    }

    .freedial{
        display: flex;
        width: 190px;;
        height: 34px;
        margin-right:10px;
    }

    .telbtn{
        display: none;
    }

    .reservation{
        width: 140px;
        height: 56px;
        margin-right: 19px;
    }

    /* ハンバーガーメニュー */

    .header__btn{
        display: none;
    }

    .nav__topic{
        width: 180px;
        margin-top: -15px;
    }

    .nav__btn{
        width: 53px;
        height: 32px;
        margin-right: 40px;
        margin-top: 13px;
    }

    .nav__list{
        display: flex;
        margin-left: 70px;
        margin-top: 80px;
    }

    .nav__home{
        width: 22px;
        height: 22px;
        margin-top: 10px;
    }

    .nav__about{
        margin-left: 100px;
    }

    .nav__topics{
        margin-left: 100px;
    }

    .nav__menu{
        margin-left: 100px;
    }

    .nav__name{
        font-size: 1.8rem;
        margin-top: 0px;
    }

    .nav__item{
        font-size: 2rem;
    }

}


/* header pc */

@media screen and (min-width: 1250px){

    .company__rogo{
        margin-top: -10px;
    }

    .nav_pc{
        font-size: 1.6rem;
        gap: 49px;
    }
    
    .nav_pc__item img{
        width: 8px;
        margin:0 8px 8px;
    }

    .freedial{
        width: 234px;;
        height: 42px;
        margin-right:20px;
    }

    .reservation{
        width: 170px;
        height: 67px;
    }
}


/* ==============================
main
============================== */

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__topic{
    font-size: 3rem;
    font-family: "Noto Serif JP";
    text-align: center;
    letter-spacing: 0.17em;
    padding-top: 125px;
    color: #D03E53;
}

.section__topic::after{
    content: url(../img/illust_camera.PNG);
    position: absolute;
    scale:  0.07;
    margin-left: -285px;
    margin-top: -370px;
}

@media screen and (min-width: 769px){

    .section__topic{
        font-size: 4.8rem;
        padding-top: 200px;
    }
    
    .section__topic::after{
        scale: 0.13;
        margin-left: -286px;
        margin-top: -420px;
    }
}

.contact_attention{
    margin: 55px 30px 0;
}

@media screen and (min-width: 769px){
    .contact_attention{
        font-size: 1.8rem;
        max-width: 1440px;
        padding: 50px 60px 0;
    }
}


/* フォームはじまり */

.Form {
    margin:80px 30px;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
    .Form {
      margin-top: 40px;
    }
}

.Form-Item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}


@media screen and (max-width: 480px) {
    .Form-Item {
      padding-left: 14px;
      padding-right: 14px;
      padding-top: 22px;
      padding-bottom: 22px;
      flex-wrap: wrap;
      font-size: 1.5rem;
    }
}

.Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
    width: 100%;
    max-width: 277px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label {
      max-width: inherit;
      display: flex;
      align-items: center;
      font-size: 1.5rem;
    }
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label.isMsg {
      margin-top: 0;
    }
}

.Form-Item-Label-Required {
    border-radius: 6px;
    margin-right: 11px;
    width: 55px;
    padding: 6px;
    display: inline-block;
    text-align: center;
    background: #D03E53;
    color: #fff;
    font-size: 1.4rem;
}
 
@media screen and (max-width: 480px) {
    .Form-Item-Label-Required {
      border-radius: 4px;
      padding-top: 5px;
      padding-bottom: 4px;
      width: 47px;
      height: 24px;
      font-size: 1.2rem;
    }
}

.Form-Item-Label-any {
    border-radius: 6px;
    margin-right: 11px;
    width: 55px;
    padding: 6px;
    display: inline-block;
    text-align: center;
    background: #999483;
    color: #fff;
    font-size: 1.4rem;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label-any {
        border-radius: 4px;
        padding-top: 5px;
        padding-bottom: 4px;
        width: 47px;
        height: 24px;
        font-size: 1.2rem;
    }
}

.Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #EAE8E4;
    font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
    .Form-Item-Input {
      margin-left: 0;
      margin-top: 18px;
      height: 40px;
      flex: inherit;
      font-size: 1.5rem;
    }
}

.Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #EAE8E4;
    font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
    .Form-Item-Textarea {
      margin-top: 18px;
      margin-left: 0;
      height: 200px;
      flex: inherit;
      font-size: 1.5rem;
    }
}

/* ラジオボタン */

.radio{
    margin-top: 5px;
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="radio"] {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 50%;
    vertical-align: -2px;
    margin-top: 1.5rem;
}
  
input[type="radio"]:checked:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #000;
    content: '';
}

@media screen and (min-width: 480px) {
    .radio_div{
        margin-left: 40px;
    }
}


/* footer */
.footer{
    font-size: 1rem;
    text-align: center;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-white);
}

.footer__group{
    display: flex;
    gap: 15px;
}

.footer__item{
    width: 20px;
    height: 20px;
    margin-top: 20px;
}

.copy{
    margin-top: 25px;
}

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

    .footer{
        padding: 60px 77px;
        margin-top: 0px;
    }

    .footer__group{
        gap: 25px;
    }

    .footer__item{
        width: 35px;
    }

    .footer__item:last-of-type{
        margin-top: 24px;
    }

    .copy{
        font-size: 1.6rem;
        margin-top: 55px;
        white-space: nowrap;
    }
}