@charset "UTF-8";

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
PCサイズレスポンシブ*/
@media(min-width:960px) 
{
/* 共通 */
body {
    min-width: 960px;
    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;
}

.sp {
    display: none;
}

/*========= 
ハンバーガーメニュー
ナビゲーションのための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;
    font-family: 'Quicksand', sans-serif;
}

.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;
}

/* ~========================
googleフォーム
========================== */
.tabsp {
    display: none;
}
.c-form {
    margin: 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.c-form__item {
	margin-bottom: 20px;
}

.c-form__input,
.c-form__select {
	padding: 10px;
}

.c-form__label {
	width: auto;
    display: block;
    margin-top: 25px;
    margin-bottom: -10px;
}

.c-form__input {
	width: auto;
	font-size: 16px;
	border: solid 1px #333;
	border-radius: 4px;
}
.c-form__input:focus-visible {
	outline: #daa095 auto 1px;
}
.c-form__required {
    font-size: 12px;
	color: #fff;
	background-color: #daa095;
	border-radius: 4px;
	padding: 5px 5px;
	margin: 0 0 0 18px;
}
textarea.c-form__input {
	height: 160px;
}
.c-form__submit {
	text-align: center;
}
.c-form__submit button {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: #daa095;
	border: solid 1px #daa095;
	border-radius: 4px;
	padding: 5px 32px;
	transition: 0.4s;
	cursor: pointer;
}
.c-form__submit button:hover {
	color: #daa095;
	background-color: transparent;
}

@media (min-width: 300px) {
	.c-form__item {
		flex-wrap: nowrap;
	}
	.c-form__label {
		width: 100%;
	}
	.c-form__input {
		width: 100%;
	}
}

/* ==========================
お問い合わせ
=========================== */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
    font-family: 'Quicksand', sans-serif;
}

.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;
}

/* =============
フッター
============== */
.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: 10vw;
    padding-left: 0;
}

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

.fmenu a {
    color: #000;
}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tabサイズレスポンシブ*/
@media(min-width:630px) and (max-width:959px) 
{
/* 共通 */
body {
    min-width: 630px;
    max-width: 959px;
    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;
}

.sp {
    display: none;
}

/*========= ==============
ハンバーガーメニュー
ナビゲーションのための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;
    font-family: 'Quicksand', sans-serif;
}

.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;
}

/* ~========================
googleフォーム */
.form-wrap {
    
}

.c-form {
    margin: 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.c-form__item {
	margin-bottom: 20px;
}

.c-form__input,
.c-form__select {
	padding: 10px;
}

.c-form__label {
	width: auto;
    display: block;
    margin-top: 25px;
    margin-bottom: -10px;
}

.c-form__input {
	width: auto;
	font-size: 16px;
	border: solid 1px #333;
	border-radius: 4px;
}
.c-form__input:focus-visible {
	outline: #daa095 auto 1px;
}
.c-form__required {
    font-size: 12px;
	color: #fff;
	background-color: #daa095;
	border-radius: 4px;
	padding: 5px 5px;
	margin: 0 0 0 18px;
}
textarea.c-form__input {
	height: 160px;
}
.c-form__submit {
	text-align: center;
}
.c-form__submit button {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: #daa095;
	border: solid 1px #daa095;
	border-radius: 4px;
	padding: 5px 32px;
	transition: 0.4s;
	cursor: pointer;
}
.c-form__submit button:hover {
	color: #daa095;
	background-color: transparent;
}

@media (min-width: 300px) {
	.c-form__item {
		flex-wrap: nowrap;
	}
	.c-form__label {
		width: 100%;
	}
	.c-form__input {
		width: 97%;
	}
}

/* ===========================-
お問い合わせ
=========================== */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
    font-family: 'Quicksand', sans-serif;
}

.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;
}

/* =======================
フッター
======================= */
.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: 10vw;
    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;
    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: 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: 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;
}

.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;
}
.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
    font-family: 'Quicksand', sans-serif;
}

.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;
}

/* ~========================
googleフォーム
========================= */
.c-form {
    margin: 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.c-form__item {
	margin-bottom: 20px;
}

.c-form__input,
.c-form__select {
	padding: 10px;
}

.c-form__label {
	width: auto;
    display: block;
    margin-top: 25px;
    margin-bottom: -10px;
}

.c-form__input {
	width: auto;
	font-size: 16px;
	border: solid 1px #333;
	border-radius: 4px;
}
.c-form__input:focus-visible {
	outline: #daa095 auto 1px;
}
.c-form__required {
    font-size: 12px;
	color: #fff;
	background-color: #daa095;
	border-radius: 4px;
	padding: 5px 5px;
	margin: 0 0 0 18px;
}
textarea.c-form__input {
	height: 160px;
}
.c-form__submit {
	text-align: center;
}
.c-form__submit button {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: #daa095;
	border: solid 1px #daa095;
	border-radius: 4px;
	padding: 5px 32px;
	transition: 0.4s;
	cursor: pointer;
}
.c-form__submit button:hover {
	color: #daa095;
	background-color: transparent;
}

@media (min-width: 300px) {
	.c-form__item {
		flex-wrap: nowrap;
	}
	.c-form__label {
		width: 100%;
	}
	.c-form__input {
		width: 93%;
	}
}

/* ===========================-
お問い合わせ
=========================== */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
    font-family: 'Quicksand', sans-serif;
}

.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;
}

/* =======================
フッター
======================= */
.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;
}
}