*{
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
}


/*aタグの効果を打ち消す */
a {
  color: inherit;
  text-decoration: none;
}

/*・を非表示 */
ul,
li {
  list-style: none;
}

/* クリックされた時、スクロールを禁止する */
body.active {
  overflow-y: hidden;
}

/* ヘッダー */
.header {
  background-color: white;
  height: 65px;
  width: 100%;
  position: fixed; /* スクロールしてもヘッダーを固定させる */
  top: 0;
  left: 0;
  right: 0;
  z-index: 999; /* 要素の重なり順を指定する */
  display: flex;
  justify-content: space-between;
}

.headerTop {
  display: flex;
}

.headerContainer {
  padding: 0 20px; /*左右の余白確保*/
  display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
}

/* ロゴ（画像入れる予定） */
.headerLogoBox {
  height: 50px;
  width: 50px;
  display: grid;
  place-items: center;
  padding-left: 14px;
}

.headerLogo {
  background-image: url('img/logo.JPG');
  background-size: cover;
  height: 63px;
  width: 68px;
}

.headerTitle {
  display: grid;
  place-items: center;
  padding-left: 50px;
}

.headerTitleText {
  font-weight: bold;
}

.headerContentsBox {
  display: flex;
}

/* ヘッダーの要素 */
.headerNav {
  display: grid;
  place-items: center;
  margin-right: 35px;
}

.navItems {
  height: 35px;
  display: flex;
}

.navItem {
  padding: 5px 30px;
  font-weight: bold;
}

.navItem1:hover, .navItem2:hover, .navItem3:hover, .navItem4:hover {
  text-decoration:underline;
}


/* お問い合わせボタン */
.navItemInquiry {
  height: 25px;
  width: 110px;
  padding: 5px 5px;
  margin-left: 20px;
  font-weight: bold;
  background-color: rgb(172, 210, 146);
  text-align: center;
  border-radius: 10px;
}

.navItemInquiry:hover {
  opacity: 0.8;
  transform: translateY(2px);
  border-bottom: 0px;
}

.navItemIcon {
  display: none;
}


/* ハンバーガーメニュー */
.hamburger-menu {
  width: 30px;
  height: 22px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.line {
  background-color: black;
  height: 2px;
  width: 100%;
  position: absolute;
  transition: all 0.3s;
}

.line:nth-of-type(1) {
  top: 0;
}

.line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.line:nth-of-type(3) {
  bottom: 0;
}

.hamburger-menu.active > .line:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active > .line:nth-of-type(2) {
  display: none;
}

.hamburger-menu.active > .line:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}


.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  padding: 8px;
  height: 100%;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  opacity: 0;
  position: fixed; /* スクロールしてもヘッダーを固定させる */
}

.nav-menuBoxs {
  width: 720px;
  margin:  0 auto;
  font-size: 24px;
  font-weight: bold;
  margin-top: 35px;
}

.nav-menuBox {
  padding-top: 5px;
  font-weight: 400;
}

.nav-menu.active {
  display: flex;
  animation: fadeIn 0.5s forwards;
  z-index: 10;
}


.nav-menu a {
  text-decoration: none;
  color: black;
  padding: 5px;
  margin: 5px;
  letter-spacing: 0.06em;
}

.nav-menuLi:hover {
  text-decoration:underline;
}

@keyframes fadeIn {
  0% {
    top: 45%;
    opacity: 0;
  }
  
  100% {
    top: 50%;
    opacity: 1;
  }
}


@media screen and (max-width: 960px) {
	/* 960px以下に適用されるCSS（タブレット用） */
  .navItem {
    padding: 5px 10px
  }

  .navItemInquiry {
    width: 40px;
  }

  .navItem5 {
    display: none;
  }

  .navItemIcon {
    display: contents;
  }

  .headerTitleText,.navItem1,.navItem2,.navItem3,.navItem4,.navItem5 {
    font-size: 10px;
  }

  .nav-menuBoxs {
    padding-left: 50px;
  }
}

@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
  .headerTitleText,.navItem1,.navItem2,.navItem3,.navItem4,.navItem5 {
    display: none;
  }

  .navItem {
    padding: 0px;
  }

  .navItemInquiry {
    width: 40px;
  }

  .navItemIcon {
    display: contents;
  }

  .nav-menuBoxs {
    font-size: 20px;
    padding-left: 50px;
  }
}


/* ヘッダー用 */
@media screen and (max-width: 1200px) {
	/* 1200px以下に適用されるCSS（タブレット用） */
  .navItem {
    padding: 5px 12px;
  }

  .headerTitleText,.navItem1,.navItem2,.navItem3,.navItem4,.navItem5 {
    font-size: 14px;
  }
}

@media screen and (max-width: 890px) {
	/* 890px以下に適用されるCSS（タブレット用） */
  .headerTitleText {
    display: none;
  }
}

@media screen and (max-width: 630px) {
	/* 630px以下に適用されるCSS（スマホ用） */
  .headerTitle {
    padding-left: 0px;
  }

  .navItem {
    padding: 0px;
  }

  .headerTitleText,.navItem1,.navItem2,.navItem3,.navItem4,.navItem5 {
    display: none;
  }
}

@media screen and (max-width: 500px) {
	/* 500px以下に適用されるCSS（スマホ用） */
  .nav-menuBoxs {
    font-size: 8px;
    padding: 30px 0px 0px 30px;
  }
}


/* ここからメインコンテンツ */
/* アニメーション */
main {
  box-sizing: border-box;
  overflow: hidden;
}

.fadein {
  opacity: 0;
  transform: translate(0,0);
  transition: all 1.5s;
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}
/* ここまで */

/* ①ページ */
.content1 {
  margin-top: 65px;
  width: 100%;
  height: 630px;
  background-image: url('img/page1.jpg');
  background-color:rgba(255,255,255,0.5); /* 背景を半透明化 */
  background-size: cover;
  background-position: center;
  background-blend-mode:lighten;
}

.content1_Text {
  padding-top: 130px;
  text-align: center;
  font-size: 80px;
  font-family:  'Noto Serif JP', serif;
  font-weight: 500;
  color: black;
}

.content1_SubText {
  height: 100px;
  padding: 140px 0px;
  text-align: center;
  font-size: 25px;
  font-family:  'Noto Serif JP', serif;
}

/* ①ページ レスポンシブ対応 */
@media screen and (max-width: 960px) {
	/* 960px以下に適用されるCSS（タブレット用） */
  .content1 {
    height: 500px;
  }

  .content1_Text {
    font-size: 50px;
  }

  .content1_SubText {
    padding: 100px 0px;
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
  .content1 {
    height: 50vh;
  }

  .content1_Text {
    font-size: 30px;
  }

  .content1_SubText {
    padding: 60px 0px;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
  .content1 {
    height: 300px;
  }

  .content1_Text {
    padding-top: 100px;
    font-size: 23px;
  }

  .content1_SubText {
    padding: 40px 0px;
    font-size: 12px;
  }
}


/* ②ページ */
.content2 {
  padding: 85px 0px 85px 0px;
  display: flex;
  justify-content: center;
}

.content2_left {
  height: 490px;
  width: 450px;
  margin-right: 120px;
}

.content2_leftTitle {
  padding-top: 20px;
  font-size: 30px;
  font-weight: bold;
}

.content2_leftText {
  padding-top: 40px;
}

.content2_leftBtn {
  padding-top: 50px;
  text-align: center;
}

button {
  height: 60px;
  width: 300px;
  font-size: 22px;
  color: rgb(47, 47, 47);
  background-color: rgb(172, 210, 146);
  border-radius: 100vh;
  border:none;
  font-weight: bold;
}

button:hover {
  opacity: 0.8;
  cursor : pointer;
  transform: translateY(2px);
}

.content2_right {
  height: 440px;
  width: 410px;
  background-image: url('img/page2.jpg');
  background-size: cover;
  background-position: center;
}

/* ②ページ レスポンシブ対応 */
@media screen and (max-width: 1000px) {
	/* 1000px以下に適用されるCSS（タブレット用） */
  .content2_left {
    height: 330px;
    width: 330px;
    margin-right: 60px;
  }

  .content2_leftTitle {
    padding-top: 0px;
    font-size: 23px;
  }

  .content2_leftText {
    font-size: 11px;
  }

  .content2_right {
    height: 330px;
    width: 330px;
  }
}

@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
  button {
    height: 45px;
    width: 220px;
    font-size: 17px;
  }

  .content2 {
    display: grid;
  }

  .content2_left {
    order: 2;
    height: 220px;
    width: 330px;
    text-align: center;
    margin-right: 0px;
  }

  .content2_leftTitle {
    padding-top: 20px;
    font-size: 23px;
  }

  .content2_leftText {
    padding-top: 60px;
  }

  .content2_leftBtn {
    padding-top: 90px;
  }

  .content2_right {
    order: 1;
    height: 220px;
    width: 330px;
    text-align: center;
  }
}


/* ③ページ */
.content3 {
  padding: 85px 0px 85px 0px;
  display: flex;
  justify-content: center;
}

.content3_left {
  height: 440px;
  width: 410px;
  background-color: burlywood;
  background-image: url('img/page3.jpg');
  background-size: cover;
  background-position: center;
  margin-right: 120px;
}

.content3_right {
  height: 490px;
  width: 450px;
}

.content3_rightTitle {
  font-size: 30px;
  font-weight: bold;
}

.content3_rightText {
  padding-top: 27px;
}

.content3_rightText2 {
  padding-top: 60px;
}

.content3_rightBtn {
  height: 60px;
  padding-top: 25px;
  /* text-align: center; */
}

/* ③ページ レスポンシブ対応 */
@media screen and (max-width: 1000px) {
	/* 1000px以下に適用されるCSS（タブレット用） */
  .content3_left {
    height: 330px;
    width: 300px;
    margin-right: 60px;
  }

  .content3_right {
    height: 330px;
    width: 300px;
  }

  .content3_rightTitle {
    font-size: 23px;
  }

  .content3_rightText {
    padding-top: 20px;
  }
  
  .content3_rightText,.content3_rightText2 {
    font-size: 12px;
  }
}

@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
  .content3 {
    display: grid;
    margin-top: 100px;
    padding-bottom: 110px;
  }

  .content3_left {
    height: 220px;
    width: 330px;
    text-align: center;
    margin-right: 0px;
  }

  .content3_right {
    height: 220px;
    width: 330px;
    text-align: center;
  }

  .content3_rightTitle {
    padding-top: 20px;
  }

  .content3_rightText {
    padding-top: 14px;
  }

  .content3_rightText2 {
    padding-top: 40px;
  }
}


/* ④ページ */
.content4 {
  padding: 85px 0px 85px 0px;
  background-color: #FFFAF0;
}

.content4_text1 {
  text-align: center;
  font-size: 17px;
  font-weight: bold;
}

.content4_text2 {
  text-align: center;
  font-size: 27px;
  padding-top: 25px;
  font-weight: bold;
}

.content4_LeftAndRight {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.content4_leftBox {
  height: 380px;
  width: 380px;
  border-radius: 20px;
  background-color: white;
  display: grid;
  place-items: center;
}

.content4_left {
  height: 360px;
  width: 360px;
  border-radius: 20px;
  background-image: url('img/page4-1.jpg');
  background-size: cover;
  background-position: center;
  background-color:rgba(255,255,255,0.6); /* 背景を半透明化 */
  background-blend-mode:lighten;
  display: grid;
  place-items: center;
}

.content4_left:hover {
  height: 380px;
  width: 380px;
  background-color:rgba(255,255,255,0.3);
}


.content4_leftTitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.content4_leftText {
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
}

.content4_center {
  width: 120px;
}

.content4_rightBox {
  height: 380px;
  width: 380px;
  border-radius: 20px;
  background-color: white;
  display: grid;
  place-items: center;
}

.content4_right {
  height: 360px;
  width: 360px;
  border-radius: 20px;
  background-image: url('img/page4-2.jpg');
  background-size: cover;
  background-position: center;
  background-color:rgba(255,255,255,0.6); /* 背景を半透明化 */
  background-blend-mode:lighten;
  display: grid;
  place-items: center;
}

.content4_right:hover {
  height: 380px;
  width: 380px;
  background-color:rgba(255,255,255,0.3);
}

.content4_rightTitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.content4_rightText {
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
}

.content4_text3 {
  text-align: center;
  padding-top: 40px;
  font-weight: bold;
}

/* ④ページ レスポンシブ対応 */
@media screen and (max-width: 960px) {
	/* 960px以下に適用されるCSS（タブレット用） */
  /* .content4 {
    padding: 30px 0px;
    margin: 70px 0px;
  } */

  .content4_leftBox {
    height: 280px;
    width: 280px;
  }

  .content4_left {
    height: 260px;
    width: 260px;
  }

  .content4_left:hover {
    height: 280px;
    width: 280px;
  }

  .content4_leftText {
    font-size: 11px;
  }

  .content4_rightBox {
    height: 280px;
    width: 280px;
  }
  
  .content4_right {
    height: 260px;
    width: 260px;
  }

  .content4_right:hover {
    height: 280px;
    width: 280px;
  }

  .content4_rightText {
    font-size: 11px;
  }
}

@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
  .content4 {
    padding: 40px 0px 85px 0px;
    margin-top: 80px;
  }

  .content4_text1 {
    font-size: 10px;
  }
  
  .content4_text2 {
    font-size: 18px;
  }
  
  .content4_LeftAndRight {
    display: grid;
  }
  
  .content4_leftBox {
    height: 180px;
    width: 280px;
  }

  .content4_left {
    height: 160px;
    width: 260px;
  }

  .content4_left:hover {
    height: 180px;
    width: 280px;
  }

  .content4_rightBox {
    height: 180px;
    width: 280px;
    margin-top: 20px;
  }
  
  .content4_right {
    height: 160px;
    width: 260px;
  }

  .content4_right:hover {
    height: 180px;
    width: 280px;
  }  

  .content4_rightText {
    font-size: 10px;
  }

  .content4_text3 {
    font-size: 13px;
  }
}


/* フッター */

.footerTitle {
  font-size: 27px;
  font-weight: bold;
}

.footerAddress {
  margin-top: 35px;
}

.footerInquiry {
  margin-top: 45px;
}

@media all and (min-width: 961px) {

  footer {
    padding-top: 50px;
    padding-bottom: 100px;
    background: rgba(243, 247, 243, 0.7);
  }

  .footerSub {
    max-width: 1200px;
    width: auto;
    margin: 0 auto;
  }

  .footer-mainBoxs {
    display: flex;
    max-width: auto;
    justify-content: center;
    margin-bottom: 35px;
    margin-left: -100px;
  }

  .footer-menuBoxs1 {
    display: flex;
    width: 400px;
    padding: 0px 0px;
  }

  .footer-menuBoxs1-1 {
    width: 200px;
    padding: 0px 10px;
  }

  .footer-menuBoxs1-2 {
    width: 200px;
    padding: 0px 10px;
  }

  .footertxt3 {
    padding-left: 10px;
  }

  .footer-menuBoxs2 {
    width: 200px;
    padding: 0px 0px;
  }

  .footer-menusub {
    width: 150px;
    margin: 0 auto;
  }

  .footer-menuLi1 {
    display: block;
    line-height: 2em;
    padding: 0.3em;
    color: #333;
    border-bottom: solid 1px rgba(67, 67, 67, 0.383);
  }

  .footer-menuLi2 {
    display: block;
    line-height: 2em;
    padding: 0.3em;
    color: #333;
    border-bottom: solid 1px rgba(67, 67, 67, 0.383);
  }

  .footer-menutitle {
    font-size: 0.7rem;
    margin-bottom: -10px;
    padding-left: 10px;
  }

  .footer-menuBox {
    margin-left: 10px;
    font-size: 0.6rem;
  }

  .footerBox {
    margin-top: -200px;
  }

  .footerTitle {
    font-size: 15px;
    font-weight: bold;
  }

  .footerAddress {
    margin-top: 25px;
    font-size: 0.8rem;
    margin-left: 5px;
  }

  .footerInquiry1 {
    display: flex;
    margin-top: 30px;
    font-size: 0.8rem;
    margin-left: 5px;
  }

  .footerInquiry2 {
    display: flex;
    font-size: 0.8rem;
    margin-top: 5px;
    margin-left: 5px;
  }

  .footer-mail-icon {
    display: grid;
    place-items: center;
    max-width: 250px;
    width: auto;
    height: 50px;
    margin-left: 75%;
    margin-top: -150px;
    border-top: 1px solid rgba(67, 67, 67, 0.383);
    border-bottom: 1px solid rgba(67, 67, 67, 0.383);
  }

  .css-mail {
    margin-left: -200px;
    display: inline-block;
    position: relative;
    z-index: -1;
    max-width: auto;
    width: 20px;
    height: 16px;
    background: rgba(0, 0, 0, 1);
  }

  .css-mail:before,
  .css-mail:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
  }

  .css-mail:before {
    border: 10px solid transparent;
    border-top-color: rgba(237, 237, 237, 0.9);
  }

  .css-mail:after {
    left: 2px;
    border: 8px solid transparent;
    border-top-color: rgba(0, 0, 0, 1);
  }


  .fbtn {
    max-width: auto;
    margin-left: 80%;
    margin-top: -37px;
    margin-bottom: 100px;
  }

  .fbtn:hover,
  .footer-menuLi1:hover,
  .footer-menuLi2:hover {
    color: rgba(67, 67, 67, 0.383);
  }
}

@media all and (max-width: 960px) {
  footer {
    padding-top: 50px;
    padding-bottom: 100px;
    background: rgba(243, 247, 243, 0.7);
  }

  .footerSub {
    max-width: 960px;
    width: auto;
    margin: 0 auto;
  }

  .footer-mainBoxs {
    display: flex;
    max-width: auto;
    justify-content: center;
    margin-bottom: 35px;
    margin-left: -50px;
  }

  .footer-menuBoxs1 {
    display: flex;
    width: 250px;
    padding: 0px 0px;
  }

  .footer-menuBoxs1-1 {
    width: 100px;
    padding: 0px 0px;
    margin-left: 0%;
  }

  .footer-menuBoxs1-2 {
    width: 100px;
    padding: 0px 0px;
    margin-left: 25px;
  }

  .footertxt3 {
    padding-left: 0px;
  }

  .footer-menuBoxs2 {
    width: 100px;
    padding: 0px 0px;
    margin-left: 0%;
  }

  .footer-menusub {
    width: 100px;
    margin: 0 auto;
  }

  .footer-menuLi1 {
    display: block;
    line-height: 2em;
    padding: 0.3em;
    color: #333;
    border-bottom: solid 1px rgba(67, 67, 67, 0.383);
  }

  .footer-menuLi2 {
    display: block;
    line-height: 2em;
    padding: 0.3em;
    color: #333;
    border-bottom: solid 1px rgba(67, 67, 67, 0.383);
  }

  .footer-menutitle {
    font-size: 0.7rem;
    margin-bottom: -10px;
    padding-left: 0px;
  }

  .footer-menuBox {
    margin-left: 10px;
    font-size: 0.6rem;
  }

  .footerBox {
    margin-top: -200px;
  }

  .footerTitle {
    font-size: 15px;
    font-weight: bold;
  }

  .footerAddress {
    margin-top: 25px;
    font-size: 0.8rem;
    margin-left: 5px;
  }

  .footerInquiry1 {
    display: flex;
    margin-top: 30px;
    font-size: 0.8rem;
    margin-left: 5px;
  }

  .footerInquiry2 {
    display: flex;
    font-size: 0.8rem;
    margin-top: 5px;
    margin-left: 5px;
  }

  .footer-mail-icon {
    display: grid;
    place-items: center;
    max-width: 180px;
    width: auto;
    height: 40px;
    margin-left: 75%;
    margin-top: -170px;
    border-top: 1px solid rgba(67, 67, 67, 0.383);
    border-bottom: 1px solid rgba(67, 67, 67, 0.383);
  }

  .css-mail {
    margin-left: -150px;
    display: inline-block;
    position: relative;
    z-index: -1;
    max-width: auto;
    width: 20px;
    height: 16px;
    background: rgba(0, 0, 0, 1);
  }

  .css-mail:before,
  .css-mail:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
  }

  .css-mail:before {
    border: 10px solid transparent;
    border-top-color: rgba(237, 237, 237, 0.7);
  }

  .css-mail:after {
    left: 2px;
    border: 8px solid transparent;
    border-top-color: rgba(0, 0, 0, 1);
  }


  .fbtn {
    max-width: auto;
    margin-left: 80%;
    margin-top: -35px;
    margin-bottom: 120px;
  }

  .btn-mod,
  a.btn-mod {
    font-size: 11px;
  }

  .fbtn:hover,
  .footer-menuLi1:hover,
  .footer-menuLi2:hover {
    color: rgba(67, 67, 67, 0.383);
  }
}

@media all and (max-width: 600px) {

  .css-mail {
    display: none;
  }

  footer {
    padding-top: 20px;
    padding-bottom: 10px;
    background: rgba(243, 247, 243, 0.7);
  }

  .footerSub {
    max-width: auto;
    margin: 0 0;
  }

  .footer-mainBoxs {
    display: flex;
    max-width: auto;
    justify-content: center;
    margin-left: 0;
    margin: 0 auto;
    margin-bottom: 35px;
  }

  .footer-menuBoxs1-1 {
    width: 190px;
    padding: 0px 0px;
  }

  .footer-menuBoxs1-2 {
    width: 190px;
    padding: 0px 0px;
    margin-left: 0;
  }

  .footer-menuBoxs1 {
    display: block;
    width: 190px;
    padding: 10px 0px;
  }

  .footer-menuBoxs2 {
    width: 190px;
    padding: 10px 0px;
  }

  .footertxt3 {
    padding-left: 0px;
  }

  .footer-menusub {
    width: 150px;
    margin: 0 auto;
  }

  .footer-menuLi1 {
    display: block;
    line-height: 2em;
    padding: 0.3em;
    color: #333;
    border-bottom: solid 1px rgba(67, 67, 67, 0.383);
  }

  .footer-menuLi2 {
    display: block;
    line-height: 2em;
    padding: 0.3em;
    color: #333;
    border-bottom: solid 1px rgba(67, 67, 67, 0.383);
  }

  .footer-menutitle {
    font-size: 0.7rem;
    margin-bottom: -10px;
    padding-left: 10px;
  }

  .footer-menuBox {
    margin-left: 10px;
    font-size: 0.6rem;
  }

  .footerBox {
    margin-top: 0px;
    margin-left: 0px;
  }

  .footerTitle {
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 27px;
    font-weight: bold;
  }

  .footerAddress {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 25px;
    font-size: 0.8rem;
  }

  .footerInquiry1 {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    font-size: 0.8rem;
  }

  .footerInquiry2 {
    display: flex;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 5px;
    text-align: center;
  }

  .footer-mail-icon {
    display: none;
  }

  .fbtn {
    max-width: auto;
    display: flex;
    justify-content: center;
    margin: 0 0 0 0;
  }

  .mb-10 {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .btn-mod,
  a.btn-mod {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 4px 13px;
    color: #fff;
    background: rgb(187, 219, 164);
    border: 2px solid transparent;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;

    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;

    -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  }

  .btn-mod:hover,
  .btn-mod:focus,
  a.btn-mod:hover,
  a.btn-mod:focus {
    font-weight: 400;
    color: rgba(255, 255, 255, .85);
    background: rgb(0, 0, 0);
    text-decoration: none;
    outline: none;
  }

  .btn-mod:active {
    cursor: pointer !important;
  }

  .btn-mod.btn-medium {
    padding: 8px 37px;
    font-size: 12px;
  }

  .btn-mod.btn-border {
    color: #151515;
    border: 2px solid #151515;
    background: transparent;
  }

  .btn-mod.btn-border:hover,
  .btn-mod.btn-border:focus {
    color: #fff;
    border-color: transparent;
    background: rgb(0, 0, 0);
  }

  .btn-mod.btn-circle {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
  }

  .footer-menuLi1:hover,
  .footer-menuLi2:hover {
    color: rgba(67, 67, 67, 0.383);
  }
}

@media all and (max-width: 360px) {
  .footer-menuBoxs1-1 {
    width: 180px;
  }

  .footer-menuBoxs1-2 {
    width: 180px;
  }

  .footer-menuBoxs1 {
    display: block;
    width: 180px;
  }

  .footer-menuBoxs2 {
    width: 180px;
  }
}