@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@300;400;500;600&display=swap");
/* ----------------------------------------------------------------------- 

	common layout 共通レイアウト

----------------------------------------------------------------------- */
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------------------------------------------- 
	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: 15px;
  font-weight: 400;
  color: #3B4043;
  text-align: left;
  text-justify: inter-ideograph;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6em;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 14px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}
@media print, screen and (min-width: 1100px) {
  a {
    backface-visibility: hidden;
    transition: opacity 0.5s ease-in-out;
  }
  a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -khtml-opacity: 0.7;
    -ms-filter: "alpha(opacity=$opacity)";
  }
}

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

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

li {
  list-style: none;
}

/*-------------------------------------------------------------------
  header
-------------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 177px;
  z-index: 9999;
  background-color: #FFFFFF;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.16);
  opacity: 1;
}
@media screen and (min-width: 801px) and (max-width: 1099px) {
  #header {
    height: 90px;
  }
}
@media screen and (max-width: 800px) {
  #header {
    height: 70px;
  }
}
#header .headerIn {
  width: 1100px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -ms-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-flow: row wrap;
}
@media screen and (min-width: 801px) and (max-width: 1099px) {
  #header .headerIn {
    width: 96%;
    margin: 0 2%;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 800px) {
  #header .headerIn {
    width: 100%;
    margin: 0;
    display: block;
  }
}
#header .headerIn .hBlock {
  display: flex;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -ms-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-flow: row wrap;
}
@media screen and (max-width: 800px) {
  #header .headerIn .hBlock {
    height: 70px;
    margin: 0 7%;
    width: 86%;
    align-items: center;
  }
}
#header .headerIn .hLogo a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}
#header .headerIn .hLogo img {
  width: 94px;
}
@media screen and (min-width: 801px) and (max-width: 1099px) {
  #header .headerIn .hLogo img {
    width: 70px;
  }
}
@media screen and (max-width: 800px) {
  #header .headerIn .hLogo img {
    width: 43px;
  }
}
#header .headerIn .hLogo span {
  color: #3B4043;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 22px;
}
@media screen and (min-width: 801px) and (max-width: 1099px) {
  #header .headerIn .hLogo span {
    font-size: 0.98rem;
    padding-left: 8px;
  }
}
@media screen and (max-width: 800px) {
  #header .headerIn .hLogo span {
    font-size: 0.9rem;
    padding-left: 8px;
  }
}
#header .headerIn .hLogo .span02 {
  padding-left: 0;
}
@media screen and (min-width: 801px) and (max-width: 1099px) {
  #header .headerIn .hLogo .span02 {
    left: 25vw;
  }
}
@media screen and (max-width: 800px) {
  #header .headerIn .hLogo .span02 {
    font-size: 1rem;
    left: unset;
  }
}
#header .headerIn #gNavi {
  padding-top: 78px;
}
@media screen and (max-width: 1099px) {
  #header .headerIn #gNavi {
    display: none;
    width: 100%;
    height: 100%;
    padding-top: 0;
    position: absolute;
    top: 40px;
  }
}
#header .headerIn #gNavi #mainContentMenu {
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -ms-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-flow: row wrap;
  font-size: 15px;
  font-weight: 400;
}
@media screen and (max-width: 1099px) {
  #header .headerIn #gNavi #mainContentMenu {
    display: block;
    width: 100%;
  }
}
#header .headerIn #gNavi #mainContentMenu li {
  text-align: center;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 1099px) {
  #header .headerIn #gNavi #mainContentMenu li {
    width: 90%;
    margin: auto;
    padding: 1.8vh;
    text-align: left;
  }
}
#header .headerIn #gNavi #mainContentMenu li a {
  position: relative;
  color: #769182;
  font-weight: 400;
  font-size: 1rem;
}
@media screen and (max-width: 1099px) {
  #header .headerIn #gNavi #mainContentMenu li a {
    color: #FFFFFF;
    padding-left: 15px;
    font-size: 2.5vh;
  }
}
#header .headerIn #gNavi #mainContentMenu li a:hover {
  color: #044819;
  opacity: 1;
}
@media screen and (max-width: 1099px) {
  #header .headerIn #gNavi #mainContentMenu li a:hover {
    color: #FFFFFF;
  }
}
@media screen and (max-width: 1099px) {
  #header .headerIn #gNavi #mainContentMenu li a::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(50deg);
  }
}
#header .headerIn #gNavi #mainContentMenu li.hasChild {
  position: relative;
}
#header .headerIn #gNavi #mainContentMenu li.hasChild .parentMenu {
  padding-right: 10px;
}
@media print, screen and (min-width: 1100px) {
  #header .headerIn #gNavi #mainContentMenu li.hasChild .parentMenu::after {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    border-top: 2px solid #9DAD97;
    border-right: 2px solid #9DAD97;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(135deg);
  }
}
@media print, screen and (min-width: 1100px) {
  #header .headerIn #gNavi #mainContentMenu li.hasChild .childMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: -60px;
    background-image: url(../images/_common/bg_child_menu.png);
    background-repeat: no-repeat;
    background-position: left 0 top 0;
    width: 205px;
    z-index: 10;
    padding: 56px 29px 29px 29px;
    border-radius: 15px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
}
@media screen and (max-width: 1099px) {
  #header .headerIn #gNavi #mainContentMenu li.hasChild .childMenu {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    opacity: 1;
    margin-top: 1vh;
  }
}
#header .headerIn #gNavi #mainContentMenu li.hasChild .childMenu li {
  text-align: left;
  padding: 15px 0;
  white-space: nowrap;
}
@media screen and (max-width: 1099px) {
  #header .headerIn #gNavi #mainContentMenu li.hasChild .childMenu li {
    padding: 1.4vh 0;
  }
}
#header .headerIn #gNavi #mainContentMenu li.hasChild .childMenu li a {
  color: #FFFFFF;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 1100px) {
  #header .headerIn #gNavi #mainContentMenu li.hasChild:hover > .childMenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}
#header .headerIn #gNavi #mainContentMenu li.hasChild.open > .childMenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
#header .headerIn .spNavBtn {
  display: none;
}
@media screen and (max-width: 1099px) {
  #header .headerIn .spNavBtn {
    display: block;
    cursor: pointer;
    width: 34px;
    height: 100%;
    padding: 25px 0;
    position: absolute;
    bottom: 0;
    margin: auto 0;
    overflow: hidden;
    font-size: 14px;
  }
}
@media screen and (max-width: 1099px) and (min-width: 801px) and (max-width: 1099px) {
  #header .headerIn .spNavBtn {
    right: 30px;
    top: 14px;
  }
}
@media screen and (max-width: 1099px) and (max-width: 800px) {
  #header .headerIn .spNavBtn {
    right: 13px;
    top: 0;
  }
}
@media screen and (max-width: 1099px) {
  #header .headerIn .spNavBtn .bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #769182;
    border-radius: 3px;
    transition: all 0.25s ease-in-out;
  }
  #header .headerIn .spNavBtn .bar + .bar {
    margin-top: 7px;
  }
  #header .headerIn .spNavBtn.active .bar:first-child {
    transform: rotate(-45deg);
    margin-top: 8px;
  }
  #header .headerIn .spNavBtn.active .bar:nth-child(2) {
    opacity: 0;
    filter: alpha(opacity=0);
    -khtml-opacity: 0;
    -ms-filter: "alpha(opacity=$opacity)";
  }
  #header .headerIn .spNavBtn.active .bar:nth-child(3) {
    transform: rotate(45deg);
    margin-top: -12px;
  }
  #header .headerIn .spNavBtn.active p {
    display: none;
  }
}
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
#header.open {
  height: 100%;
  background-color: #044819;
}
#header.open .hLogo {
  display: none;
}
@media screen and (min-width: 801px) and (max-width: 1099px) {
  #header.open {
    background-image: url("../images/_common/headerHatSP.png");
    background-repeat: no-repeat;
    background-position: right bottom;
  }
}
@media screen and (max-width: 1099px) {
  #header.open .headerIn #gNavi {
    display: block;
  }
}

/*-------------------------------------------------------------------
  footer
-------------------------------------------------------------------*/
#footer {
  width: 100%;
  height: 455px;
  color: #FFFFFF;
  background-color: #044819;
  padding: 45px 0 0;
  position: relative;
}
#footer:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 800px) {
  #footer {
    padding: 30px 0 0;
    height: 380px;
  }
}
#footer .footerTopLGN {
  background-color: #9DAD97;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  height: 45px;
  position: relative;
  top: -45px;
}
@media screen and (max-width: 800px) {
  #footer .footerTopLGN {
    height: 30px;
    top: -30px;
  }
}
#footer .footerIn {
  max-width: 1090px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 801px) and (max-width: 1099px) {
  #footer .footerIn {
    width: 96%;
    margin: 0 2%;
  }
}
@media screen and (max-width: 800px) {
  #footer .footerIn {
    width: 100%;
  }
}
#footer .footerIn .fMenu {
  position: relative;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-flow: row wrap;
}
#footer .footerIn .fMenu .fDivR {
  margin-left: 12%;
}
@media screen and (max-width: 800px) {
  #footer .footerIn .fMenu .fDivR {
    margin-left: 40px;
  }
}
#footer .footerIn .fMenu li {
  margin: 0 1.56vw 30px 0;
  padding-left: 20px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  /* 矢印とテキストを上下中央に配置 */
  position: relative;
}
@media screen and (max-width: 800px) {
  #footer .footerIn .fMenu li {
    margin: 0 0 20px 7vw;
  }
}
#footer .footerIn .fMenu li ::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  border-top: solid 2px #9DAD97;
  border-right: solid 2px #9DAD97;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}
#footer .fCopy {
  height: 24px;
  font-size: 1.1em;
  letter-spacing: -0.005em;
  right: 0;
  bottom: 0;
  position: absolute;
}
@media screen and (max-width: 800px) {
  #footer .fCopy {
    font-size: 1.1em;
    letter-spacing: -0.005em;
    left: 7%;
    bottom: -35px;
  }
}
#footer .bgHat {
  background-image: url(../images/_common/footerHat.png);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 337px;
  height: 368px;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  #footer .bgHat {
    width: 163px;
    height: 163px;
    background-image: url(../images/_common/footerHatSP.png);
  }
}

/* 
.pageTop {
	position: fixed;
	right: 30px;
	bottom: 25px;

	@include media-sp {
		right: 10px;
		bottom: 15px;
	}

	a {
		display: inline-block;
	}
}
	*/
/* ----------------------------------------------------------------------- 
	common layout
----------------------------------------------------------------------- */
.content {
  position: relative;
  padding-top: 177px;
}
.content:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1099px) {
  .content {
    padding-top: 70px;
  }
}

#content {
  position: relative;
}
#content .bgHat {
  background-image: url(../images/_common/bgHat.png);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 450px;
  height: 476px;
}
@media screen and (max-width: 800px) {
  #content .bgHat {
    background-image: url(../images/_common/bgHat_SP.png);
    width: 202px;
    height: 212px;
  }
}

.sec {
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
  padding: 60px 0 100px;
}
@media screen and (min-width: 801px) and (max-width: 1099px) {
  .sec {
    padding: 42px 0;
  }
}
@media screen and (max-width: 800px) {
  .sec {
    padding: 35px 0;
  }
}

.contentIn {
  margin: 0 auto;
  max-width: 1100px;
}
.contentIn:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 800px) {
  .contentIn {
    padding: 0 7%;
  }
}
.contentIn.pd0 {
  padding: 0;
}
.contentIn.pd1 {
  padding: 0 200px;
}
@media screen and (max-width: 800px) {
  .contentIn.pd1 {
    padding: 0 5%;
  }
}
.contentIn.pd2 {
  padding: 0 50px;
}
@media screen and (max-width: 800px) {
  .contentIn.pd2 {
    padding: 0 5%;
  }
}
.contentIn .block-ttl {
  margin: 50px auto 60px auto;
  text-align: center;
  height: 55px;
  background-image: url(../images/_common/ttl_bg_hat.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .contentIn .block-ttl {
    margin: 20px auto 40px auto;
    height: 40px;
  }
}
.contentIn .block-ttl h2 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #3B4043;
  text-align: center;
  line-height: 55px;
  text-indent: 0.3em;
}
@media screen and (max-width: 800px) {
  .contentIn .block-ttl h2 {
    font-size: 1rem;
    line-height: 40px;
  }
}
.contentIn .p_NormalText {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 30px;
  color: #044819;
}/*# sourceMappingURL=cmn_layout.css.map */