@charset "UTF-8";

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
PCサイズレスポンシブ*/
@media(min-width:1000px) 
{
/* 共通 */
body {
    min-width: 1000px;
    background-color: #F7EDDA;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.section-wrap {
    margin: 40px 0;
}

a {
    text-decoration: none;
    color: #fff;
}

/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    right: 0;
    width: 20%;
    height: 50vh;
    /*ナビの高さ*/
    background: #99999990;
    /*動き*/
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

#top.LeftMove{
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
    from {
          opacity: 0;
          transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}
/*　右の動き　*/
  
#top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
  from {
      opacity: 1;
    transform: translateX(0);
  }
  to {
      opacity: 1;
    transform: translateX(100px);
  }
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 18%;
    height: 40vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}


/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    opacity: 0;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* =================================-
ヘッダー */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
    
}

.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}


/* 一覧メニュー */
.btn {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    font-family: 'Quicksand', sans-serif;
}

.btn li {
    text-align: center;
    list-style: none;
    font-size: 1.5vw;
}

.btn a {
    text-decoration: none;
    color: #000;
}

.btn a:hover {
    background-color: #F7D3C7;
    width: fit-content;
    cursor: pointer;
}

/* .btn a.active {
    background-color: #fff;
} */

.list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
   
.list li{
    width: 100%;
    margin-right: 1%;
    list-style:none;
    animation: test .8s;
}
   
.list img {
    width: 100%; /* ADD */
    object-fit: scale-down;
    background-color: #fff;
}
  
.list a {
    text-decoration: none;
    color: #333;
    font-size: 1vw
}
.list li:nth-child(even){
   margin-right: 0;
}
   
@keyframes test {
  0% { 
    transform: scale(.1);
  }
  100% {
    transform: none;
  }
}

/* ================================
お問い合わせ */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 150px;
    font-family: 'Quicksand', sans-serif;
}

.contact-ja {
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}


/* ================================-
フッター */
.footer {
    color: #000;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.footer-navi {
    display: flex;
    /* justify-content: center; */
    gap: 30px;
    margin-left: 150px;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
}

.fmenu a {
    color: #000;
}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tabサイズレスポンシブ*/
@media(min-width:630px) and (max-width:999px) {
body {
    min-width: 630px;
    max-width: 999px;
    background-color: #F7EDDA;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.section-wrap {
    margin: 40px 0;
}

a {
    text-decoration: none;
    color: #fff;
}

/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    right: 0;
    width: 20%;
    height: 50vh;
    /*ナビの高さ*/
    background: #99999990;
    /*動き*/
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

#top.LeftMove{
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
    from {
          opacity: 0;
          transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}
/*　右の動き　*/
  
#top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
  from {
      opacity: 1;
    transform: translateX(0);
  }
  to {
      opacity: 1;
    transform: translateX(100px);
  }
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 18%;
    height: 40vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}


/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    opacity: 0;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* =================================-
ヘッダー */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
    
}

.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}


/* 一覧メニュー */
.btn {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    font-family: 'Quicksand', sans-serif;
}

.btn li {
    text-align: center;
    list-style: none;
}

.btn a {
    text-decoration: none;
    color: #000;
}

.btn a:hover {
    background-color: #F7D3C7;
    width: fit-content;
    cursor: pointer;
}

.list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
   
.list li{
    width: 100%;
    margin-right: 1%;
    list-style:none;
    animation: test .8s;
}
   
.list img {
    width: 100%; /* ADD */
    object-fit: scale-down;
    background-color: #fff;
}
  
.list a {
    text-decoration: none;
    color: #333;
    font-size: 40x;
}
.list li:nth-child(even){
   margin-right: 0;
}
   
@keyframes test {
  0% { 
    transform: scale(.1);
  }
  100% {
    transform: none;
  }
}



/* ================================
お問い合わせ */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 15vw;
    font-family: 'Quicksand', sans-serif;
}

.contact-ja {
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}


/* ================================-
フッター */
.footer {
    color: #000;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.footer-navi {
    display: flex;
    /* justify-content: center; */
    gap: 30px;
    margin-left: 15vw;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
}

.fmenu a {
    color: #000;
}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SPサイズレスポンシブ*/
@media(max-width:629px) {
body {
    max-width: 629px;
    background-color: #F7EDDA;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
}

.section-wrap {
    margin: 40px 0 0 10px;
}

a {
    text-decoration: none;
    color: #fff;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    right: 0;
    width: 30vw;
    height: 40vh;
    /*ナビの高さ*/
    background: #99999990;
    /*動き*/
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}
    
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}
    
/**************ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 26%;
    height: 40vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
    
/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 39%;
    transform: translate(-50%, -50%);
}
    
#g-nav.panelactive ul {
    display: block;
}
    
/*リストのレイアウト設定*/
    
#g-nav li {
    list-style: none;
    text-align: center;
}
    
#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}
    
/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 25px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}
    
/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}
    
.openbtn span:nth-of-type(1) {
    top: 15px;
}
    
.openbtn span:nth-of-type(2) {
    top: 23px;
}
    
.openbtn span:nth-of-type(3) {
    top: 31px;
}
    
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
    
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
    
.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
    

/* =================================-
ヘッダー */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.header ul {
    display: none;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
    margin: 0 0 0 30px;
    
}

.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}


/* 一覧メニュー */
.btn {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    font-family: 'Quicksand', sans-serif;
}

.btn li {
    text-align: center;
    list-style: none;
}

.btn a {
    text-decoration: none;
    color: #000;
}

.btn a:hover {
    background-color: #F7D3C7;
    width: fit-content;
    cursor: pointer;
}

.list{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 30px;
}
   
.list li{
    width: 100%;
    margin-right: 1%;
    list-style:none;
    animation: test .8s;
}
   
.list img {
    width: 100%; /* ADD */
    object-fit: scale-down;
    background-color: #fff;
}
  
.list a {
    text-decoration: none;
    color: #333;
    font-size: 40x;
}
.list li:nth-child(even){
   margin-right: 0;
}
   
@keyframes test {
  0% { 
    transform: scale(.1);
  }
  100% {
    transform: none;
  }
}

/* ==============================
お問い合わせ
============================== */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin: 0 auto;
}

.contact-ja {
    display: none;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}
.contact-en:hover  a{
    color: #DAA095;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* ======================
フッター */
/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#63534A;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
  }
  
  #page-top a:hover{
    background: #777;
  }
  
  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 10px;
    bottom:10px;
    z-index: 2;
      /*はじめは非表示*/
    opacity: 0;
    transform: translateX(100px);
  }
  
  /*　左の動き　*/
  
  #page-top.LeftMove{
    animation: LeftAnime 0.5s forwards;
  }
  
  @keyframes LeftAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /*　右の動き　*/
  
  #page-top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
    from {
      opacity: 1;
    transform: translateX(0);
    }
    to {
      opacity: 1;
    transform: translateX(100px);
    }
}

.footer {
    color: #000;
    width: 100%;
    align-items: center;
}


.footer-navi {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
    font-family: 'Quicksand', sans-serif;
}

.fmenu a {
    color: #000;
}
small {
    display: block;
    text-align: center;
    padding: 10px;
    font-family: 'Quicksand', sans-serif;
}
}