@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600&display=swap");
/*
min-font-size ($font_size, $min_font_size)
$font_size (vw):     可変フォントサイズ
$min_font_size (px): 最小フォントサイズ
*/
/*
max-font-size ($font_size, $max_font_size)
$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/* ----------------------------------------------------------------------- 

	common layout 共通レイアウト

----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	settings
----------------------------------------------------------------------- */
html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

*, *:before, *:after {
  margin: 0px;
  padding: 0px;
  box-sizing: inherit;
}

body {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78vw;
  font-weight: 400;
  color: #1E1E1E;
  text-align: left;
  text-justify: inter-ideograph;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6em;
  background-color: #F4E7DC;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 3.7vw;
  }
}

.wrapper {
  position: relative;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

div ul p {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/*-------------------------------------------------------------------
  Header
-------------------------------------------------------------------*/
#header {
  position: fixed;
  width: 100vw;
  height: 80px;
  z-index: 9999;
  background-color: #F4E7DC;
  border-bottom: 1px solid #999;
}
@media screen and (max-width: 800px) {
  #header {
    height: 60px;
  }
}
#header.open {
  height: 100%;
}
#header .headerIn {
  width: 100%;
  margin: auto;
  padding: 15px 5vw;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-flow: row wrap;
}
@media screen and (max-width: 800px) {
  #header .headerIn {
    width: 100%;
    padding: 0;
    display: block;
  }
}
@media screen and (max-width: 800px) {
  #header .headerIn .hBlock {
    width: 94%;
    height: 60px;
    margin: 0 3%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-flow: row wrap;
  }
}
@media screen and (max-width: 800px) {
  #header .headerIn .hBlock .hLogo img {
    width: 60vw;
  }
}
#header .headerIn .hBlock .spNavBtn {
  display: none;
}
@media screen and (max-width: 800px) {
  #header .headerIn .hBlock .spNavBtn {
    display: block;
    cursor: pointer;
    width: 28px;
    height: 100%;
    padding: 24px 0 0;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    overflow: hidden;
    font-size: 14px;
  }
  #header .headerIn .hBlock .spNavBtn .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #1E1E1E;
    border-radius: 3px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
  }
  #header .headerIn .hBlock .spNavBtn .bar + .bar {
    margin-top: 8px;
  }
  #header .headerIn .hBlock .spNavBtn.active .bar:first-child {
    -webkit-transform: rotate(-23deg);
    transform: rotate(-23deg);
    margin-top: 4px;
  }
  #header .headerIn .hBlock .spNavBtn.active .bar:nth-child(2) {
    -webkit-transform: rotate(23deg);
    transform: rotate(23deg);
    margin-top: -3px;
  }
  #header .headerIn .hBlock .spNavBtn.active p {
    display: none;
  }
}
#header .headerIn #gNavi {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-flow: row wrap;
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi {
    display: none;
    width: 100%;
    height: 100%;
  }
}
#header .headerIn #gNavi #mainContentMenu {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-flow: row wrap;
  font-size: 15px;
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi #mainContentMenu {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi #mainContentMenu > li {
    font-weight: 500;
    border-bottom: 1px solid #1E1E1E;
  }
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi #mainContentMenu > li:last-child {
    border-bottom: none;
  }
}
#header .headerIn #gNavi #mainContentMenu li {
  text-align: center;
  padding: 0 25px;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi #mainContentMenu li {
    width: 90%;
    margin: auto;
    padding: 20px;
    text-align: left;
  }
}
#header .headerIn #gNavi #mainContentMenu li + li {
  border-left: 1px solid #1E1E1E;
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi #mainContentMenu li + li {
    border-left: none;
  }
}
#header .headerIn #gNavi #mainContentMenu li span {
  display: block;
  font-size: 0.75vw;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi #mainContentMenu li span {
    display: inline-block;
    padding-left: 10px;
    font-size: 3vw;
  }
}
#header .headerIn #gNavi #mainContentMenu li a:hover {
  border-bottom: 1px solid #1E1E1E;
  padding-bottom: 2px;
  display: inline;
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi #mainContentMenu li a:hover {
    border-bottom: none;
  }
}
#header .headerIn #gNavi #mainContentMenu li.snsInstagram {
  border-left: none;
}
#header .headerIn #gNavi #mainContentMenu li.snsInstagram a:hover {
  border-bottom: none;
  padding-bottom: 0;
}
#header .headerIn #gNavi #mainContentMenu li.snsInstagram img {
  width: 40px;
  height: auto;
}

/*-------------------------------------------------------------------
  footer
-------------------------------------------------------------------*/
#footer {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
#footer .footerInfo {
  padding: 4vw 2vw;
}
@media screen and (max-width: 800px) {
  #footer .footerInfo {
    font-size: 3.2vw;
  }
}
#footer .footerInfo .fLogo {
  width: 16.38vw;
}
@media screen and (max-width: 800px) {
  #footer .footerInfo .fLogo {
    width: 50vw;
  }
}
#footer .footerInfo .fTxtAdd {
  margin: 10px 0 0 10px;
}
@media screen and (max-width: 800px) {
  #footer .footerInfo .fTxtAdd {
    margin: 5px 0 0 5px;
  }
}
#footer .footerInfo .fTxtTel {
  margin-left: 10px;
}
@media screen and (max-width: 800px) {
  #footer .footerInfo .fTxtTel {
    margin-left: 5px;
  }
}
#footer .fCopy {
  height: 20px;
  text-align: right;
  font-size: 0.625vw;
}
@media screen and (max-width: 800px) {
  #footer .fCopy {
    height: auto;
    font-size: 8px;
    line-height: 1.4em;
    letter-spacing: -0.005em;
    padding: 3px 0 8px;
    margin: 0 5%;
  }
}

.pageTop {
  position: fixed;
  right: 30px;
  bottom: 25px;
}
@media screen and (max-width: 800px) {
  .pageTop {
    right: 10px;
    bottom: 15px;
  }
}
.pageTop a {
  display: inline-block;
}

/* ----------------------------------------------------------------------- 
	common layout
----------------------------------------------------------------------- */
.content {
  position: relative;
  padding-top: 80px;
}
.content:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 800px) {
  .content {
    padding-top: 60px;
  }
}

.contentIn {
  margin: 0 auto;
  max-width: 1920px;
}
.contentIn:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 800px) {
  .contentIn {
    padding: 0 4vw;
  }
}
