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

/* 変数 */
:root {
  --headerHight: 98px;
  --menuBarWidth: 90px;
  --primaryColor: #005773;
  --secondaryColor: #B4DBE6;
  --thirdColor: #9DD5D3;
  --fontColor: #4D4D4D;
  --fontColor2: #666666;
  --fontColor3: #808080;
}
/* ここまで */


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

/* リキャプチャ */
.grecaptcha-badge { visibility: hidden; }

/* フォント関係 */
body {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--fontColor);
}

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

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

.gfont {
  font-family: "Noto Sans JP", serif;
}

/* imgアニメーション */
.imgWrap, .imgWrap2 {
  overflow: hidden;
  position: relative;
}

.imgWrap::before, .imgWrap2::before {
  background: #fff;
  content: '';
  inset: -1%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.imgAnimation.imgWrap::before {
  animation: imgAnimation 2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes imgAnimation {
  0% {transform: translateX(0);}
  100% {transform: translateX(-100%);}
}

.imgAnimation2.imgWrap2::before {
  animation: imgAnimation2 2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes imgAnimation2 {
  0% {transform: translateX(0);}
  100% {transform: translateX(100%);}
}




/* フェードイン */
.fadeinTopBottom {
  opacity : 0;
  transform: translateY(80px);
  transition: opacity 2s, transform 2s;
}
@media(max-width: 560px) {
  .fadeinTopBottom {
    opacity : 0;
    transform: translateY(40px);
    transition: opacity 2s, transform 2s;
  }
}

.fadein_bottom {
  opacity : 0;
  transform: translateY(80px);
  transition: opacity 2s, transform 2s;
}
@media(max-width: 560px) {
  .fadein_bottom {
    opacity : 0;
    transform: translateY(40px);
    transition: opacity 2s, transform 2s;
  }
}





/* ヘッダー */
header {
  width: 100%;
  height: var(--headerHight);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

#topMenuContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 12;
}

.logo {
  flex: 0 1 268.1px;
  margin-left: 30px;
}

.logo img {
  width: 100%;
  vertical-align: bottom;
  transition: 1s;
}

.headerRight {
  width: 380px;
  display: flex;
}

.menuRightTelContainer {
  width: 290px;
  padding: 0 16px;
  box-sizing: border-box;
  background: #fff;
  color: var(--primaryColor);
}

.menuRightTelContainer > p {
  margin-top: 33px;
  font-size: 10px;
  font-weight: bolder;
  letter-spacing: 0.3px;
}

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

.tel img {
  width: 16.7px;
  margin-top: 5px;
}

.tel p {
  margin-left: 10px;
  font-size: 29px;
  font-weight: bolder;
  line-height: 1;
}

#menuBarContainer {
  width: var(--menuBarWidth);
  height: var(--headerHight);
  padding: 43px 0;
  background: var(--primaryColor);
  border-radius: 0 0 0 24px;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3;
}

#menuBarContainer span {
  width: 28px;
  height: 2px;
  margin: 8px auto 0 auto;
  background: #fff;
  border-radius: 3px;
  z-index: 5;
  display: block;
  transition: 1s;
}
#menuBarContainer > span:first-of-type {
  margin-top: 0;
}


#menuBarContainer.open {
  background: #fff;
}

#menuBarContainer.open span {
  background: var(--primaryColor);
}

#menuBarContainer.open > span:first-of-type {
  animation: open1 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(5px) rotate(0deg);}
  100% {transform: translateY(5px) rotate(45deg);}
}
@keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(-5px) rotate(0deg);}
  100% {transform: translateY(-5px) rotate(-45deg);}
}

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








#menuContents {
  width: 380px;
  max-width: 95vw;
  max-height: 95vh;
  padding-bottom: 50px;
  box-sizing: border-box;
  border-radius: 0 0 0 30px;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  right: -380px;
  z-index: 10;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.7s;
}
#menuContents.open {
  right: 0;
}

#menuContents nav {
  width: 74%;
  margin: 160px auto 0;
}

#menuContents #menu-1 {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

#menuContents #menu-1 li a {
  font-weight: bolder;
  color: var(--primaryColor);
}

.snsContainer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}

.snsContainer li:first-of-type img {
  width: 38px;
}

.snsContainer li:nth-of-type(2) img {
  width: 30px;
}

.menuContentsLogo {
  width: 270px;
  margin: 50px auto 0;
}









/* フッター */
footer {
  width: 90%;
  max-width: 1055px;
  margin: 80px auto 0;
}

.footerBannerContainer {
  display: flex;
  gap: 0 25px;
}

.footerInfoContainer {
  margin-top: 40px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  border-bottom: 1px solid var(--fontColor3);
}

.footerInfo1 {
  flex: 0 1 400px;
}

.footerInfo1 p {
  margin-top: 30px;
}

.footerInfo2 {
  flex: 0 1 570px;
}

#menu-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 16px;
  font-weight: 600;
}

.footerTelContainer {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
}

.footerTel {
  flex: 1 1 auto;
}

.footerTel p {
  font-size: 15px;
  font-weight: 900;
  color: var(--primaryColor);
}

.footerTel p:nth-of-type(2) {
  display: flex;
  align-items: center;
  font-size: 43px;
  line-height: 1.2;
}

.footerTel p img {
  width: 25px;
  margin: 10px 13px 0 0;
}

.footerTel p:nth-of-type(3) {
  margin-top: 3px;
}

.footerSns {
  flex: 0 0 34.6px;
  display: flex;
  flex-direction: column;
  gap: 14px 0;
}

.footerSns li:nth-of-type(2) {
  width: 32px;
}

.footerContact {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  border-bottom: 1px solid var(--fontColor3);
}

.footerContact h2 {
  font-size: 35px;
  margin: -10px 0 0;
  color: var(--fontColor3);
  letter-spacing: 1.5px;
  font-family: "Noto Serif JP", serif;
}

.footerContactBtnContainer {
  flex: 0 1 625px;
  display: flex;
  gap: 0 25px;
}

.footerContactBtnContainer li {
  width: 300px;
  height: 54px;
  border: 1px solid var(--fontColor3);
  box-sizing: border-box;
  transition: 0.3s;
}

.footerContactBtnContainer li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14.4px;
  font-weight: 600;
  transition: 0.3s;
}

.footerContactBtnContainer li:hover a {
  color: #fff;
}
.footerContactBtnContainer li:first-of-type:hover {
  background: #7AA8CE;
  border: 1px solid #7AA8CE;
}
.footerContactBtnContainer li:nth-of-type(2):hover {
  background: #8BC53F;
  border: 1px solid #8BC53F;
}

.copy {
  display: block;
  padding: 30px 0 15px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
}







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

/* 変数 */
:root {
  --headerHight: 78px;
  --menuBarWidth: 70px;
}
/* ここまで */




/* ヘッダー */
.logo {
  flex: 0 1 214px;
}

.headerRight {
  width: 300px;
}

.menuRightTelContainer {
  width: 230px;
  padding: 0 16px 0 22px;
}

.menuRightTelContainer > p {
  margin-top: 23px;
}

.tel p {
  font-size: 24px;
}

#menuBarContainer {
  padding: 33px 0;
}

#menuContents {
  width: 300px;
}

.menuContentsLogo {
  width: 230px;
}










/* フッター */
footer {
  /* width: 90%;
  max-width: 1055px; */
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 6%;
}

.footerBannerContainer {
  /* display: flex; */
  flex: 0 1 41%;
  flex-direction: column;
  gap: 15px 0;
}

.footerInfoContainer {
  flex: 0 1 53%;
  margin-top: 0px;
  padding-bottom: 10px;
  /* display: flex; */
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px 0;
  border-bottom: none;
}

.footerInfo1 {
  flex: 0 1 auto;
}

.footerInfo1 p {
  margin-top: 20px;
}

.footerInfo2 {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column-reverse;
}

#menu-2 {
  padding-top: 23px;
  /* display: flex; */
  /* flex-wrap: wrap; */
  flex-direction: column;
  gap: 15px 0px;
  font-size: 15px;
  /* font-weight: 600; */
}

.footerTelContainer {
  margin-top: 12px;
  padding-bottom: 25px;
  /* display: flex; */
  align-items: flex-start;
  flex-direction: column;
  gap: 15px 0;
  border-bottom: 1px solid var(--fontColor3);
}

.footerTel {
  flex: 1 1 auto;
}

/* .footerTel p {
  font-size: 15px;
  font-weight: 900;
  color: var(--primaryColor);
} */

.footerTel p:nth-of-type(2) {
  /* display: flex; */
  /* align-items: center; */
  font-size: 34px;
  line-height: 1.5;
}

.footerTel p img {
  width: 20px;
  margin: 5px 8px 0 0;
}

/* .footerTel p:nth-of-type(3) {
  margin-top: 3px;
} */

.footerSns {
  flex: 0 1 auto;
  /* display: flex; */
  flex-direction: row;
  gap: 0px 10px;
}

.footerSns li:first-of-type {
  width: 34.6px;
}

/* .footerSns li:nth-of-type(2) {
  width: 32px;
} */

.footerContact {
  width: 100%;
  margin-top: 15px;
  padding: 30px 0;
  /* display: flex; */
  justify-content: flex-start;
  /* align-items: center; */
  gap: 0 20px;
  border-top: 1px solid var(--fontColor3);
  /* border-bottom: 1px solid var(--fontColor3); */
}

.footerContact h2 {
  flex: 1 1 300px;
  text-align: center;
  /* color: var(--fontColor3);
  letter-spacing: 1.5px; */
}

.footerContactBtnContainer {
  flex: 0 1 300px;
  margin-right: 20px;
  /* display: flex; */
  gap: 20px 0;
  flex-direction: column;
}

.footerContactBtnContainer li {
  width: 100%;
  /* height: 54px;
  border: 1px solid var(--fontColor3);
  box-sizing: border-box;
  transition: 0.3s; */
}

/* .footerContactBtnContainer li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14.4px;
  font-weight: 600;
  transition: 0.3s;
}

.footerContactBtnContainer li:hover a {
  color: #fff;
}
.footerContactBtnContainer li:first-of-type:hover {
  background: #7AA8CE;
  border: 1px solid #7AA8CE;
}
.footerContactBtnContainer li:nth-of-type(2):hover {
  background: #8BC53F;
  border: 1px solid #8BC53F;
} */

.copy {
  width: 100%;
  /* display: block; */
  padding: 0 0 15px;
  /* font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center; */
}


}







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


/* 変数 */
:root {
  --headerHight: 60px;
  --menuBarWidth: 34px;
}
/* ここまで */






/* ヘッダー */
header {
  /* width: 100%; */
  height: var(--headerHight);
  background: rgba(255, 255, 255, 0.8);
  /* position: fixed;
  top: 0;
  left: 0;
  z-index: 10; */
}

/* #topMenuContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 12;
} */

.logo {
  flex: 0 1 170px;
  margin-left: 20px;
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* .logo img {
  width: 100%;
  vertical-align: bottom;
  transition: 1s;
} */

.headerRight {
  width: 100px;
  /* display: flex; */
  gap: 0 15px;
}

.menuRightTelContainer {
  width: 51px;
  padding: 0;
  /* box-sizing: border-box; */
  background: transparent;
  /* color: var(--primaryColor); */
}

.menuRightTelContainer > p {
  /* margin-top: 23px; */
  /* font-size: 10px;
  font-weight: bolder;
  letter-spacing: 0.3px; */
  display: none;
}

/* .tel {
  display: flex;
  align-items: center;
} */

.tel img {
  width: 34px;
  margin-top: 0px;
}

.tel p {
  /* margin-left: 10px; */
  /* font-size: 24px; */
  /* font-weight: bolder;
  line-height: 1; */
  display: none;
}

#menuBarContainer {
  /* width: var(--menuBarWidth); */
  height: 34px;
  padding: 13px 0;
  /* background: var(--primaryColor); */
  border-radius: 50%;
  /* text-align: center;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3; */
}

#menuBarContainer span {
  width: 20px;
  height: 2px;
  margin: 4px auto 0 auto;
  /* background: #fff;
  border-radius: 3px;
  z-index: 5;
  display: block;
  transition: 1s; */
}
/* #menuBarContainer > span:first-of-type {
  margin-top: 0;
} */


/* #menuBarContainer.open {
  background: #fff;
}

#menuBarContainer.open span {
  background: var(--primaryColor);
}

#menuBarContainer.open > span:first-of-type {
  animation: open1 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(3px) rotate(0deg);}
  100% {transform: translateY(3px) rotate(45deg);}
}
@keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(-3px) rotate(0deg);}
  100% {transform: translateY(-3px) rotate(-45deg);}
}

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

#menuContents {
  width: 100%;
  max-width: initial;
  /* max-height: none; */
  border-radius: 0;
  /* padding-bottom: 50px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0; */
  right: -100%;
/*  z-index: 10;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.7s; */
}
/* #menuContents.open {
  right: 0;
} */

#menuContents nav {
  /* width: 74%; */
  margin: 90px auto 0;
}

#menuContents #menu-1 {
  /* display: flex;
  flex-direction: column; */
  gap: 15px 0;
}

#menuContents #menu-1 li a {
  /* font-weight: bolder;
  color: var(--primaryColor); */
  font-size: 16px;
}

.snsContainer {
  margin-top: 30px;
  /* display: flex; */
  flex-direction: row;
  gap: 0 15px;
}

.snsContainer li:first-of-type img {
  width: 32px;
}

.snsContainer li:nth-of-type(2) img {
  width: 26px;
}

.menuContentsLogo {
  width: 180px;
  margin: 30px auto 0;
}










/* フッター */
footer {
  width: 84%;
  /* max-width: 1055px; */
  margin: 60px auto 0;
  /* display: flex;
  flex-wrap: wrap; */
  gap: 15px 0;
}

.footerBannerContainer {
  /* display: flex; */
  flex: 0 1 100%;
  /* flex-direction: column; */
  /* gap: 15px 0; */
}

.footerInfoContainer {
  flex: 0 1 100%;
  margin-top: 0px;
  padding-bottom: 0px;
  /* display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column; */
  gap: 5px 0;
  /* border-bottom: none; */
}

/* .footerInfo1 {
  flex: 0 1 auto;
} */

.footerInfo1 p {
  margin-top: 15px;
  font-size: 15px;
}

/* .footerInfo2 {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column-reverse;
} */

#menu-2 {
  /* padding-top: 23px; */
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* flex-direction: column; */
  gap: 10px 0px;
  font-size: 15px;
  /* font-weight: 600; */
}

.footerTelContainer {
  margin-top: 10px;
  /* padding-bottom: 25px; */
  /* display: flex; */
  /* align-items: flex-start;
  flex-direction: column;
  gap: 15px 0;
  border-bottom: 1px solid var(--fontColor3); */
}

/* .footerTel {
  flex: 1 1 auto;
} */

.footerTel p {
  font-size: 14px;
  /* font-weight: 900;
  color: var(--primaryColor); */
}

.footerTel p:nth-of-type(2) {
  /* display: flex; */
  /* align-items: center; */
  font-size: 31px;
  /* line-height: 1.5; */
}

/* .footerTel p img {
  width: 20px;
  margin: 5px 8px 0 0;
} */

/* .footerTel p:nth-of-type(3) {
  margin-top: 3px;
} */

.footerSns {
  /* flex: 0 1 auto; */
  /* display: flex; */
  /* flex-direction: row; */
  gap: 0px 10px;
}

.footerSns li:first-of-type {
  width: 30px;
}

.footerSns li:nth-of-type(2) {
  width: 28px;
}

.footerContact {
  width: 100%;
  margin-top: 8px;
  /* padding: 18px 0 20px; */
  /* display: flex; */
  justify-content: flex-start;
  /* align-items: center; */
  gap: 25px 0;
  border-top: 1px solid var(--fontColor3);
  /* border-bottom: 1px solid var(--fontColor3); */
  flex-direction: column;
}

.footerContact h2 {
  font-size: 25px;
  flex: 0 1 auto;
  line-height: 1.2;
  /* text-align: center; */
  /* color: var(--fontColor3);
  letter-spacing: 1.5px; */
}

.footerContactBtnContainer {
  width: 100%;
  flex: 0 1 auto;
  margin-right: 0px;
  /* display: flex; */
  gap: 15px 0;
  flex-direction: column;
}

.footerContactBtnContainer li {
  width: 100%;
  /* height: 54px;
  border: 1px solid var(--fontColor3);
  box-sizing: border-box;
  transition: 0.3s; */
}

/* .footerContactBtnContainer li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14.4px;
  font-weight: 600;
  transition: 0.3s;
}

.footerContactBtnContainer li:hover a {
  color: #fff;
}
.footerContactBtnContainer li:first-of-type:hover {
  background: #7AA8CE;
  border: 1px solid #7AA8CE;
}
.footerContactBtnContainer li:nth-of-type(2):hover {
  background: #8BC53F;
  border: 1px solid #8BC53F;
} */

.copy {
  width: 100%;
  /* display: block; */
  padding: 0 0 15px;
  /* font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center; */
}




}