/* 共通 */
.pc.tb {
  display: inline-block
}
.tb {
  display: none;
}
.sp {
  display: none;
}

.clearfix::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: block;
}

/* 変数 */
:root {
  --headerHight: 120px;
  --headerContainerHight: 160px;
  --menuBarWidth: 80px;
  --searchBoxWidth: 272px;
  --searchBoxHeight: 30px;
  --primaryColor: #F7D0D3;
  --secondaryColor: #594842;
  --thirdColor: #12C4FF;
  --textColor: #3E3A39;
  --gradient1: linear-gradient(to right, #F9DCDE, #FFE2BE);
  --gradient2: linear-gradient(to right, #FAB2AA, #FFCC7A);
}
/* ここまで */

/* ショートコード */
.customLinkBtn {
  margin: 20px auto;
  text-align: center;
}
.customLinkBtn a {
  /* width: 100%;
  height: 100%; */
  display: inline-block;
  padding: 10px 20px;
  color: #fff!important;
  text-decoration: none!important;
  font-weight: bold;
  background: var(--primaryColor);
  border-radius: 5px;
}

/* 全体 */
@media (min-width: 561px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
  }

  .grecaptcha-badge { visibility: hidden; }

/* フォント関係 */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: var(--textColor);
}

a {
	color: var(--textColor);
	text-decoration: none;
  transition: 0.3s;
}
a:hover {
	color: var(--textColor);
  opacity: 0.7;
}

.gfontR {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.gfontM {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.gfontB {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.gfont2 {
  font-family: 'Rajdhani', sans-serif;
}



/* メニュー関係 */
header {
  width: 100%;
}

#topMenuContainer {
  width: 100%;
  height: var(--headerHight);
  transition: 1s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 1s;
}
#topMenuContainer.colorChange {
  background: var(--primaryColor);
}

.logoContainer {
  width: 140px;
  margin-left: 30px;
  z-index: 100;
}

.logoContainer img {
  width: 100%;
  vertical-align: bottom;
}





/* メニューバー */
#menuBarContainer {
  width: var(--menuBarWidth);
  margin: 0 20px;
  text-align: center;
  padding-bottom: 28x;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 100;
}

#menuBarContainer > span {
  width: 28px;
  height: 3px;
  margin: 7.5px auto 0 auto;
  background: var(--textColor);
  border-radius: 3px;
  z-index: 5;
  display: block;
  transition: 1s;
}
.colorChange #menuBarContainer > span, #menuBarContainer.open > span {
  background: #fff;
}

#menuBarContainer > span:first-of-type {
  margin-top: 0;
}

#menuBarContainer.open > span:first-of-type {
  animation: open1 1s both;
}
#menuBarContainer.open > span:nth-of-type(2) {
  animation: open2 1s both;
}
#menuBarContainer.open > span:last-of-type {
  animation: open3 1s both;
}

#menuBarContainer.close > span:first-of-type {
  animation: close1 1s both;
}
#menuBarContainer.close > span:nth-of-type(2) {
  animation: close2 1s both;
}
#menuBarContainer.close > span:last-of-type {
  animation: close3 1s both;
}

@keyframes open1 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(10.5px) rotate(0deg);}
  100% {transform: translateY(10.5px) rotate(45deg);}
}
@keyframes open2 {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(-10.5px) rotate(0deg);}
  100% {transform: translateY(-10.5px) rotate(-45deg);}
}

@keyframes close1 {
  0% {transform: translateY(10px) rotate(45deg);}
  50% {transform: translateY(10px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}
@keyframes close2 {
  0% {opacity: 0;}
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes close3 {
  0% {transform: translateY(-10px) rotate(-45deg);}
  50% {transform: translateY(-10px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}






/* メニュー内 */
#menuContents {
  margin-right: 30px;
}

#menu-1 {
  display: flex;
}

#menu-1 li {
  margin-right: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  transition: 1s;
}

#menu-1 li a {
  transition: 1s;
}
.colorChange #menu-1 li a {
  color: #fff;
}







/* フッター */
footer {
  width: 100%;
  margin-top: 40px;
}

.footerLogo {
  width: 200px;
  margin: 0 auto;
}

.footerLogo img {
  width: 100%;
  vertical-align: bottom;
}

.footerSns {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerSns li {
  margin-right: 30px;
}

.footerSns li:first-of-type {
  width: 26.8px;
}
.footerSns li:nth-of-type(2) {
  width: 25px;
}
.footerSns li:nth-of-type(3) {
  width: 26.2px;
}
.footerSns li:nth-of-type(4) {
  width: 29.8px;
  margin-right: 0;
}

.footerSns li img {
  width: 100%;
  /* vertical-align: bottom; */
}

footer small {
  display: block;
  margin-top: 30px;
  padding: 5px 0;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background: var(--primaryColor);
}






@media (max-width: 1024px) {
.pc {
  display: none;
}
.tb {
  display: inline-block;
}
.tb.sp {
  display: inline-block;
}

/* 変数 */
:root {
  --headerHight: 80px;
  --headerContainerHight: 120px;
  --menuBarWidth: 80px;
  --searchBoxWidth: 60vw;
  --searchBoxHeight: 30px;
  /* --primaryColor: #1EB9D0;
  --secondaryColor: #a48e98; */
}
/* ここまで */







/* メニューバー */
#menuBarContainer {
  /* width: var(--menuBarWidth); */
  margin: 0 5px;
  /* text-align: center;
  padding-bottom: 28x;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3; */
}






/* メニュー内 */
#menuContents {
  width: 100%;
  height: 100vh;
  margin-right: 0;
  background: var(--primaryColor);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  z-index: 10;
}
#menuContents.open {
  opacity: 1;
  visibility: visible;
}

#menu-1 {
  margin-top: 150px;
  display: block;
  text-align: center;
}

#menu-1 li {
  margin: 20px auto;
  font-size: 26px;
  /* font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500; */
}

#menu-1 li a {
  color: #fff;
}




/* フッター */
/* footer {
  width: 100%;
  background: url(../img/footerBack.jpg) center center / cover no-repeat;
} */

.footerContainer {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 0 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  /* align-items: center;
  position: relative; */
}

.footerLogo {
  width: 136px;
}

/* .footerLogo img {
  width: 100%;
  vertical-align: bottom;
} */

.footerNav {
  /* max-width: 570px; */
  display: none;
}

/* .pageNav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.pageNav li {
  min-width: 140px;
  margin-right: 50px;
  margin-bottom: 10px;
  list-style: disc;
  color: #fff;
} */
/* .pageNav li:nth-of-type(3n) {
  margin-right: 0;
} */

/* .pageNav li a {
  position: relative;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
} */

.copy {
  /* width: 100%;
  margin: 0; */
  height: auto;
  padding: 8px 0;
  /* display: block;
  background: var(--secondaryColor);
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center; */
}


}










/* スマホ */
@media (max-width: 560px) {
.tb {
  display: none;
}
.pc.tb {
  display: none;
}
.sp {
  display: inline-block;
}

body {
  font-size: 14px;
}

/* 変数 */
:root {
  --headerHight: 55px;
  --headerContainerHight: 95px;
  --menuBarWidth: 55px;
  --searchBoxWidth: 90vw;
  --searchBoxHeight: 30px;
  /* --primaryColor: #1EB9D0;
  --secondaryColor: #a48e98; */
}
/* ここまで */








/* メニュー関係 */
/* header {
  width: 100%;
}

#topMenuContainer {
  width: 100%;
  height: var(--headerHight);
  transition: 1s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 1s;
}
#topMenuContainer.colorChange {
  background: var(--primaryColor);
} */

.logoContainer {
  width: 91px;
  margin-left: 15px;
  /* z-index: 100; */
}

/* .logoContainer img {
  width: 100%;
  vertical-align: bottom;
} */





/* メニューバー */
#menuBarContainer {
  /* width: var(--menuBarWidth); */
  margin: 0 5px;
  /* text-align: center;
  padding-bottom: 28x;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3; */
}






/* メニュー内 */
/* #menuContents {
  width: 100%;
  height: 100vh;
  margin-right: 0;
  background: var(--primaryColor);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  z-index: 10;
}
#menuContents.open {
  opacity: 1;
  visibility: visible;
} */

#menu-1 {
  margin-top: 100px;
  /* display: block;
  text-align: center; */
}

#menu-1 li {
  /* margin: 20px auto; */
  font-size: 22px;
  /* font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500; */
}

/* #menu-1 li a {
  color: #fff;
} */




/* フッター */
/* footer {
  width: 100%;
  background: url(../img/footerBack.jpg) center center / cover no-repeat;
} */

.footerContainer {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 0 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  /* align-items: center;
  position: relative; */
}

.footerLogo {
  width: 136px;
}

/* .footerLogo img {
  width: 100%;
  vertical-align: bottom;
} */

.footerNav {
  /* max-width: 570px; */
  display: none;
}

/* .pageNav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.pageNav li {
  min-width: 140px;
  margin-right: 50px;
  margin-bottom: 10px;
  list-style: disc;
  color: #fff;
} */
/* .pageNav li:nth-of-type(3n) {
  margin-right: 0;
} */

/* .pageNav li a {
  position: relative;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
} */

/* .copy {
  width: 100%;
  margin: 0;
  height: auto;
  padding: 8px 0;
  display: block;
  background: var(--secondaryColor);
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
} */


}