@charset "UTF-8";
/*
ヒラギノの代替（基本フォントはこれ）
https://fonts.google.com/noto/specimen/Noto+Sans+JP?subset=japanese&query=noto+sans
Regular 400
Medium 500
Bold 700
 */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;900&family=Noto+Sans+JP:wght@400;500;700&family=Oswald:wght@400;600;700&display=swap");

/*------------------------------------------
サイト全体の共通設定
------------------------------------------*/
* {
  word-break: break-all;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

/*------------------------------------------
smart phone button ★何か考える
------------------------------------------*/
.sp_nav_btn {
  position: absolute;
  right: 0;
  top: 0;
}

.sp_nav_btn a {
  color: white;
}

.clearfix:after,
.contentIn:after,
#gNavi:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
 * ヘッダー
 */
#header {
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0px 0px 10px -3px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  top: 0;
  width: calc(100% + 40px);
  /*
  height: 60px;
   */
  height: 93px;
  z-index: 2;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}

#header .header-inner {
  width: 100%;
  max-width: 1155px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

#header .header-inner .siteTitle {
  width: 100%;
  max-width: 121px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.sticky #header {
  position: fixed;
}

#header #info-ennet {
  position: fixed;
  top: 0;
  right: 0;
  font-size: 1.6rem;
  font-weight: bold !important;
  line-height: 1;
}

#header #info-ennet span {
  font-size: 1.3rem;
  font-weight: bold !important;
}

#header #info-ennet a {
  text-decoration: none;
  font-weight: bold !important;
}

@media only screen and (max-width: 767px) {
  #header #info-ennet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    top: 5px;
    right: 60px;
  }
}

@media only screen and (min-width: 768px) {
  .sticky #header {
    height: 60px;
    width: 100%;
  }

  .sticky #header .siteTitle {
    max-width: 72px;
  }
}

@media only screen and (max-width: 1200px) {
  #header .siteTitle {
    max-width: 72px;
    left: 2vw;
    /*
    top: 30%;
     */
  }
}

@media only screen and (max-width: 767px) {
  #header {
    padding: 1em 0;
    height: 56px;
    width: 100vw;
  }

  #header .header-inner .siteTitle {
    width: 75px;
    max-width: none;
    height: 40px;
    left: 3vw;
  }
}

/*------------------------------------------
smart phone menu ★何か考える
------------------------------------------*/
.menuBtn {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .menuBtn {
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    width: 28px;
    height: 20px;
    background: url(../images/icon_menu.svg) no-repeat center center;
    background-size: contain;
    font-size: 0;
    z-index: 99999;
  }

  .menuBtn.open {
    padding-right: 4px;
    width: 24px;
    height: 20px;
    background: url(../images/icon_menu_close.svg) no-repeat left center;
    background-size: contain;
  }
}

/**
 * グローバルナビゲーション
 */
#gNavi {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: -1.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

#gNavi>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
}

#gNavi>ul li {
  /*
              float: left;
               */
  margin: 0;
  padding: 0;
  /*
  text-align: center;
   */
}

#gNavi>ul li+li {
  /*
  margin-left: 1.5em;
   */
}

#gNavi>ul li a:not(.box-service_card),
#gNavi>ul li span:not(.text-category) {
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
}

#gNavi>ul>li {
  padding-bottom: 1.5%;
}

#gNavi>ul>li:last-child {
  padding-bottom: 0;
}

#gNavi>ul>li>header>a,
#gNavi>ul>li>a {
  /*
  padding: 12px 10px 23px;
   */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0 1.7rem;
}

#gNavi>ul>li:hover>a,
#gNavi>ul>li:hover>span,
#gNavi>ul>li:hover>header a {
  color: #408B46;
}

@media only screen and (min-width: 768px) {
  .sticky #gNavi>ul>li {
    padding-bottom: 1%;
  }
}

#gNavi .btn-lang_nv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 !important;
}

#gNavi .btn-lang_nv>* {
  width: 50%;
}

#gNavi .btn-lang_nv>*+* {
  border-left: solid 1px #52575A;
}

@media only screen and (max-width: 1558px) {
  #gNavi {
    right: 160px;
  }
}

@media only screen and (max-width: 1200px) {

  #gNavi>ul li a:not(.box-service_card),
  #gNavi>ul li span {
    font-size: calc(10px + 4 * ((100vw - 768px) / 432));
    padding: 0 .8vw;
  }

  .btn-header_login {
    padding: 0 1em;
  }
}

@media only screen and (max-width: 860px) {
  #gNavi {
    right: 140px;
  }
}

@media only screen and (max-width: 767px) {
  #gNavi {
    background: #2D3133;
    display: none;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    padding-bottom: 5em;
    position: absolute;
    top: calc(56px - 1em);
    left: 0;
    bottom: inherit;
    transform: none;
    right: auto;
    z-index: 999;
    margin-top: 0;
    /*
                    header {
                        font-size: 1.9rem;
                        font-weight: bold;
                        border-bottom: solid 1px $color_primary;
                    }
            */
  }

  #gNavi.open {
    display: block;
  }

  #gNavi a {
    display: block;
  }

  #gNavi .side {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #gNavi .side>li {
    width: 50%;
  }

  #gNavi .side>li.wide {
    width: 100%;
  }

  #gNavi>ul li {
    width: 100%;
    float: none;
    text-align: left;
    line-height: 1.64;
    border-bottom: solid 1px #52575A;
  }

  #gNavi>ul li+li {
    margin: 0;
  }

  #gNavi>ul li a:not(.box-service_card),
  #gNavi>ul li span:not(.text-category) {
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    padding: 18px 10px 22px 15px !important;
    line-height: 1.2;
    position: relative;
    padding-left: 1em;
  }

  #gNavi>ul li a:not(.box-service_card):before,
  #gNavi>ul li span:not(.text-category):before {
    content: '';
    position: absolute;
    top: 40%;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: solid 1px #949DA2;
    border-right: solid 1px #949DA2;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #gNavi>ul li a:not(.box-service_card).btn-entry,
  #gNavi>ul li span:not(.text-category).btn-entry {
    text-shadow: none;
  }

  #gNavi>ul li a:not(.box-service_card).btn-entry:before,
  #gNavi>ul li span:not(.text-category).btn-entry:before {
    content: none;
  }

  #gNavi>ul li .btn:first-child {
    margin-top: 0 !important;
  }

  #gNavi>ul li:hover:before {
    content: none;
  }

  #gNavi>ul li:hover span {
    color: inherit;
  }

  #gNavi>ul li header a,
  #gNavi>ul li header span {
    display: block;
    font-size: 1.9rem;
    font-weight: bold;
    padding: 10px 0 !important;
  }

  #gNavi>ul li header a:before,
  #gNavi>ul li header span:before {
    content: none;
  }

  #gNavi>ul>li {
    padding-bottom: 0;
  }

  #gNavi .sp>div {
    margin-top: 1em;
  }

  #gNavi .header a {
    display: inline-block;
  }

  #gNavi .header .sub-header {
    margin-left: 10px;
  }

  #gNavi .entry {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  #gNavi .entry .btn-entry {
    color: #fff;
    font-size: 2.0rem;
    padding: .5em;
    background: #408B46;
    width: 100%;
    display: block;
    text-align: center;
  }

  #gNavi>ul {
    display: block;
  }
}

/**
 * 言語選択ナビゲーション
 */
#lNavi {
  position: absolute;
  top: 0;
  right: 1.7rem;
  display: flex;
}

#lNavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#lNavi ul li {
  margin-left: 6px;
}

#lNavi ul li a {
  font-size: 1.0rem;
  color: #2D3133;
  background: #EAEEF0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  display: block;
  line-height: 1;
  padding: 3px 15px;
}

#lNavi ul li a:hover {
  color: #408B46;
  border-color: #408B46;
  text-decoration: none;
}

.breadcrumb {
  background: #F5F7F8;
  padding: 3px 20px 6px;
  margin-left: -20px;
  margin-right: -20px;
}

.breadcrumb li {
  display: inline-block;
  font-size: 1.2rem;
}

.breadcrumb li a {
  color: #010101;
}

.breadcrumb li:after {
  content: '>';
  font-size: 120%;
  padding: 0 0 0 0.3em;
}

.breadcrumb li:last-child:after {
  content: none;
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding: 10px;
  }
}

.wrapper-main+.breadcrumb {
  margin-top: 50px;
}

#footer {
  /*
  	@include mq($break_sp) {
  		padding-top: 30px;
  	}
  
  	 */
}

#footer>.list-group {
  background: #2B5840;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  margin: 0;
}

#footer>.list-group li+li {
  margin-left: 3em;
}

#footer>.list-group a {
  color: #fff;
}

#footer>.list-group.utility {
  background: #fff;
}

#footer>.list-group.utility a {
  color: #2D3133;
}

@media only screen and (max-width: 767px) {
  #footer>.list-group {
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 10px;
  }

  #footer>.list-group li {
    width: 48%;
    padding: 5px 0;
  }

  #footer>.list-group li+li {
    margin-left: 0;
  }
}

#footer .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 30px 40px;
}

#footer .footer-logo .siteTitle {
  width: 100%;
  max-width: 122px;
}

#footer .footer-logo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
}

#footer .footer-logo dl dt {
  margin-right: 4em;
}

#footer .footer-logo dl img {
  height: 29px;
}

#footer .footer-logo dl a+a {
  margin-left: 30px;
}

@media only screen and (max-width: 767px) {
  #footer .footer-logo {
    padding: 15px;
  }

  #footer .footer-logo dl {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 20px;
  }

  #footer .footer-logo dl dt {
    margin-right: 0;
  }

  #footer .footer-logo dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }

  #footer .footer-logo dl img {
    height: auto;
  }
}

#footer .footer-info {
  background: #2D3133;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding: 15px;
}

#footer .footer-info a {
  color: #fff;
}

#footer #copyright {
  font-size: 1.1rem;
  text-align: center;
  padding: 15px;
}

#pagetop {
  display: none;
  position: absolute;
  top: -130px;
  right: 20px;
  z-index: 1;
  width: 60px;
  height: 60px;
}

a#pagetop img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 60px;
  height: 60px;
}

/*----------230720追記-----------*/
.mitsumori-top{
  margin-right: 2rem;
}
#lNavi ul.mitsumori-top  li a{
  color: #fff;
  background-color: #a37500;
  padding: 3px 15px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.anc-wrap{ position: relative;}
.anc{
	position: absolute;
	top: -60px;
	left: 0;
	display: block;
	height: 0;
}

