/* setting */
/* ============================================ */
html.active body {
  touch-action: none;
  overflow-y: hidden;
}
body{
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.02em;
  color: #4e4e4e;
  font-size: 16px;
  line-height: 1.7;
  background-color: #fff;
}
img{
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
::-webkit-full-page-media, :future, :root img{
  image-rendering: unset;
}
a{
  color: #1a7ec3; 
  transition: 0.3s;
}
a:hover{
  opacity: 0.8;
}
a:hover { 
  color: #1a7ec3;
}
@media (max-width: 430px){
  body{
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .spNone {
    display: none;
  }
}

.CL { clear: both; }
.CF:after { clear: both; display: block; content: ""; }

@media screen and (min-width: 768px) {
  .BrSmp,.SmpBr,.PcNone { display: none; }
}
@media screen and (max-width: 767px) {
  .BrPc,.PcBr { display: none; }
  .SmpNone { display: none; }
}

/* header */
/* ============================================ */
/* pc nav */
#bg-outer-body{
  background: linear-gradient(145deg, rgba(154,201,183,1) 50%, rgba(99,173,144,1) 100%);
}
#hd{
  font-family: 'Jost', sans-serif;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 18px;
}
#pc-nav{
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
}
#pc-nav-inner{
  width: 95%;
  max-width: 1500px;
  padding: 40px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#pc-nav-logo a{
  display: block;
  line-height: 1;
  font-size: 0;
}
#pc-nav-logo #logo-black{
  display: none;
}
#pc-nav-list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
#pc-nav-list li{
  margin: 0 15px;
}
#pc-nav-list li:last-child{
  margin-right: 0;
}
#pc-nav-list li a{
  color: inherit;
}

#pc-nav.fixed{
  background: #fff;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}
#pc-nav.fixed #pc-nav-inner{
  padding: 20px 0;
  transition: 0.3s;
}
#pc-nav.fixed #pc-nav-logo #logo-white{
  display: none;
}
#pc-nav.fixed #pc-nav-logo #logo-black{
  display: block;
}
#pc-nav.fixed #pc-nav-list{
  color: #63ad90;
  transition: 0.3s;
}
@media (max-width: 900px){
  #top #bg-outer-body{
    height: auto;
  }
  #pc-nav{
    position: absolute;
  }
  #pc-nav-inner{
    padding: 25px 0;
  }
  #pc-nav-list{
    display: none;
  }
  #pc-nav-logo img{
    width: 220px;
  }
}


/* mobile nav */
#sp-nav{
  display: none;
}
#sp-nav-wrap{
  position: fixed;
  z-index: 999; 
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(145deg, rgba(154,201,183,1) 50%, rgba(99,173,144,1) 100%);
  overflow: scroll;
  transition: all 0.6s;
}
#sp-nav-wrap.open{
  top: 0;
}
#sp-nav-wrap.open #sp-nav-wrap-list{
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 1000vh;
  -webkit-overflow-scrolling: touch;
}
#sp-nav-logo{
  padding: 3%;
  margin-bottom: 5%;
}
#sp-nav-logo img{
  width: 220px;
}
#sp-nav-list > li > a{
  position: relative;
  padding: 10px 20px;
  display: block;
  font-size: 16px;
  border-bottom: 1px solid #fff;
}
#sp-nav-list > li > a{
  color: inherit;
}
#sp-nav-list > li > a::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  width: 10px;
  height: 10px;
  transform: rotate(45deg) translateY(-50%);
}
#hb-btn{
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #9ac9b7;
}
#hb-btn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  background-color: #9ac9b7;
  width: 45%;
}
#hb-btn span:nth-of-type(1) {
  top:15px; 
}
#hb-btn span:nth-of-type(2) {
  top:23px;
}
#hb-btn span:nth-of-type(3) {
  top:31px;
}
#hb-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
#hb-btn.active span:nth-of-type(2) {
  opacity: 0;
}
#hb-btn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media (max-width: 900px){
  #sp-nav{
    display: block;
  }
}

/* sub mv */
/* ============================================ */
.sub_mv{
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.sub_mv_inner{
  position: relative;
  max-width: 1700px;
  margin: 0 0 auto 0;
}
.sub_mv figure{
  border-radius: 0 30px 0 0;
  overflow: hidden;
}
.sub_mv_txt{
  color: #fff;
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 430px){
  .sub_mv_txt{
    width: 95%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .sub_mv figure img{
    height: 200px;
    object-fit: cover;
  }
}

/* breadcrumb */
/* ============================================ */
.breadcrumb{
  display: flex;
  padding: 40px 0;
  color: #fff;
  font-size: 14px;
}
.breadcrumb li:not(:last-child)::after{
  content: "＞";
  margin: 0 10px;
}
.breadcrumb li a{
  color: inherit;
}
@media (max-width: 768px){
  .breadcrumb{
    padding: 5% 0;
  }
}

/* grid */
/* ============================================ */
.bg_grid{
  padding: 150px 0;
  padding: 100px 0;
}
@media (max-width: 768px){
  .bg_grid{
    padding: 15% 0;
  }
}

.bg_grid{
  position: relative;
  overflow-x: hidden;
}
.grid {
  width: 100%;
  max-width: 1777px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.grid span {
  position: relative;
  width: calc(100%/6);
}
.grid span::before{
  content: "";
  width: 1px;
  height: 100%;
  background-color:#dee3e6;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ///// CONTENT BODY ///////////////////////// */

@media screen and (min-width: 768px) {

.ContentBody {
  margin: 0px auto;
  width: 1100px;
  overflow: hidden;
  background-color: #fff;
}

/* wide */
section.ContentArea {
  clear: both;
  padding: 50px 0;
  width: 100%;
  overflow: hidden;
}

/* One Column */
.ContentBody#main_area {
  padding-bottom: 50px;
  width: 1000px;
}

/* Two Column */
.MainArea {
  float: left;
  padding-bottom: 50px;
  width:800px;
  min-height: 400px;
  background-color: #fff;
}

/* SIDE_AREA
--------------------------- */
.SideArea {
  float: right;
  padding-bottom: 50px;
  width: 250px;
  background-color: #fff;
}

dl.SideMenu {
  display: block;
  margin: 0 0 20px;
  padding: 0px;
  width: 100%;
}
dl.SideMenu dt {
  display: block;
  margin: 0px;
  border-bottom: 3px #63ad90 solid;
  padding: 21px 5px;
  width: auto;
  background-color: #4e4e4e;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}
dl.SideMenu dd {
  margin: 0;
  padding: 0;
}
dl.SideMenu dd.SList {
  display: block;
  border-bottom: 1px gray dotted ;
}
dl.SideMenu a {
  display: block;
  padding: 10px 10px 10px 30px;
  width: auto;
  background: url(../../../img/fm/acj01/frame/arrow-green.webp) 10px center / 12px no-repeat;
  color: #444;
}
dl.CategoryMenu {
  margin: 0;
  padding: 0;
}
dl.CategoryMenu dt {
  border-bottom: 1px gray dotted ;
  padding: 10px 5px;
  background-color: #fff;
  text-align: center;
  font-weight: normal;
  font-weight: bold;
  color: #60b020;
}
dl.CategoryMenu dd a {
  padding-left: 35px;
  background: url(../../../img/fm/addd02/hm-arrow-list.png) 15px center no-repeat;
}
a#sm_current {
  font-weight: bold;
}
dd.SmCurrent a {
  font-weight: bold;
}

ul.SideBanner {
  display: block;
  margin: 0px;
  padding: 0px;
  width: 100%;
  list-style-type: none;
}
ul.SideBanner li {
  display: block;
  margin: 0 0 10px 0;
  padding: 0px;
}
ul.SideBanner a {
  display: block;
  width: 100%;
}
ul.SideBanner img {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 250px;
}

}
@media screen and (max-width: 767px) {

/* Wide */
section.ContentArea {
  padding: 30px 0 10px;
  width: 100%;
  overflow: hidden;
}
.ContentBody {
  box-sizing: border-box;
  padding: 0 10px;
  width: 100%;
}
.ContentBody:after {
  clear: both;
  display: block;
  content: "";
}

/* One column */
.ContentBody#main_area {
  padding-top: 30px;
}

/* Two column */
.MainArea {
  width: 100%;
  height: auto;
  padding: 30px 0;
}

/* SIDE_AREA
--------------------------- */
.SideArea {
  padding-bottom: 10px;
  width: 100%;
  height: auto;
}

dl.SideMenu {
  display: block;
  margin: 0 0 20px;
  padding: 0px;
  width: 100%;
}
dl.SideMenu dt {
  display: block;
  margin: 0px;
  border-bottom: 3px #63ad90 solid;
  padding: 21px 5px;
  width: auto;
  background-color: #4e4e4e;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}

dl.SideMenu dl {
  margin: 0;
  padding: 0;
}
dl.SideMenu dd {
  margin: 0px;
  padding: 0px;
}
dl.SideMenu dd.SList {
  display: block;
  border-bottom: 1px gray dotted ;
}
dl.SideMenu a {
  display: block;
  padding: 10px 10px 10px 30px;
  width: auto;
  background: url(../../../img/fm/acj01/frame/arrow-green.webp) 10px center / 12px no-repeat;
  color: #444;
}
dl.CategoryMenu {
  margin: 0;
  padding: 0;
}
dl.CategoryMenu dt {
  border-bottom: 1px #ccc dotted ;
  padding: 10px 5px;
  background-color: #fff;
  text-align: center;
  font-weight: bold;
  color: #60b020;
}
dl.CategoryMenu dd a {
  padding-left: 40px;
  background: url(../../../img/fm/addd02/hm-arrow-list.png) 20px center no-repeat;
}
a#sm_current {
  font-weight: bold;
}
dd.SmCurrent a {
  font-weight: bold;
}

ul.SideBanner {
  display: block;
  margin: 0 auto;
  padding: 0px;
  width: 300px;
  list-style-type: none;
}
ul.SideBanner li {
  display: block;
  margin: 0 0 10px 0;
  padding: 0px;
  text-align:center;
}
ul.SideBanner a {
  display: block;
  width: 100%;
}
ul.SideBanner img {
  display: block;
  margin: 0 auto;
  padding: 0;
}
}

/* Lists (enumeration) */
/* ============================================ */

#main_area p{
  margin: 0 0 16px;
}
#main_area ul{
  margin: 0 16px 16px;
  padding: 0 0 0 30px;
  list-style: disc;
}
#main_area ol {
  margin: 0 16px 16px;
  padding: 0 0 0 30px;
  list-style: inital;
}
#main_area a:hover {
  text-decoration: underline;
}

/* ///// FOOTER /////////////////////////////// */

/* footer link */
/* ============================================ */
.footer_link{
  padding: 100px 0;
  color: #fff;
  background-image: url(../../../img/fm/acj01/style/bg-footer-link.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.footer_link .item_fixed{
  bottom: -10%;
  left: 0;
}
.footer_link .flex_three{
  border: 1px solid #fff;
  padding: 20px;
  color: inherit;
}
.footer_link .flex_three figure{
  margin-bottom: 30px;
}
.footer_link .link_arrow{
  text-align: right;
}
.footer_link .link_arrow .icon_arrow_white::before{
  width: 35px;
  height: 35px;
}
@media (max-width: 900px){
  .footer_link .item_fixed{
    top: 0;
    bottom: auto;
    left: 0;
  }
}
@media (max-width: 768px){
  .footer_link .flex_box{
    width: 50%;
  }
  .footer_link .flex_three{
    padding: 5%;
  }
  .footer_link .flex_three figure{
    margin-bottom: 7%;
    text-align: center;
  }
}
@media (max-width: 430px){
  .footer_link .flex_box{
    width: 100%;
  }
}

/* footer */
/* ============================================ */
#ft{
  clear: both;
  position: relative;
  width: 100%;
  background-color: #4e4e4e;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}
#footer-inner{
  position: relative;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 70px 0;
}
#footer-inner .item_rotating{
  top: 10%;
  left: 0;
  z-index: -1;
}
#footer-content{
  width: 95%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#footer-lt{
  margin-bottom: 50px;
}
#footer-logo{
  margin-bottom: 50px;
}
#footer-lt ul:not(:last-child){
  margin-bottom: 50px;
}
#footer-lt-link{
  display: flex;
}
#footer-lt-link li{
  margin-right: 30px;
}
#footer-lt-link li a{
  color: inherit;
}

#footer-rt{
  display: flex;
  margin-bottom: 50px;
}
#footer-rt ul{
  margin: 0 40px;
}
#footer-rt ul li{
  margin-bottom: 15px;
}
#footer-rt ul:last-child{
  margin-right: 0;
}

#footer-contact{
  display: flex;
  align-items: center;
}
#footer-contact-heading-wrap{
  margin-right: 40px;
}
#footer-contact-heading-en{
  font-family: 'Jost', sans-serif;
  font-size: 45px;
  letter-spacing: 0.1em;
}
#footer-contact-heading-ja{
  font-size: 10px;
  display:flex;
  align-items: center;
}
#footer-contact-heading-ja::before,
#footer-contact-heading-ja::after{
  content: "";
  flex-grow: 1;
  border-top: 1px solid #63ad90;
}
#footer-contact-heading-ja::before{
  margin-right: 1em;
}
#footer-contact-heading-ja::after{
  margin-left: 1em;
}
#footer-contact-btn a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  width: 330px;
  height: 80px;
  border-radius: 50vw;
  padding: 0 50px;
  background: #63ad90 url(../../../img/fm/acj01/frame/arrow-green.webp) 95% center / 45px no-repeat;
}
#footer-contact-btn a{
  color: inherit;
}
#copyright{
  max-width: 95%;
  margin: 0 auto;
  text-align: right;
  font-size: 14px;
}
#return-top{
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
@media (max-width: 1200px){
  #footer-content{
    font-size: 13px;
  }
  #footer-logo img{
    width: 240px;
  }
  #footer-rt ul{
    margin: 0 20px;
  }
}
@media (max-width: 768px){
  #footer-inner{
    padding: 10% 0 15%;
  }
  #footer-logo{
    margin-bottom: 10%;
  }
  #footer-content{
    display: block;
    text-align: center;
    margin-bottom: 20%;
  }
  #footer-lt{
    margin-bottom: 10%;
  }
  #footer-lt ul:not(:last-child){
    margin-bottom: 10%;
  }
  #footer-lt-link{
    display: block;
  }
  #footer-lt-link li{
    margin-right: 0;
    margin-bottom: 10px;
  }
  #footer-rt{
    margin-bottom: 10%;
  }
  #footer-contact{
    display: block;
    margin: 0 auto;
  }
  #footer-contact-heading-wrap{
    margin-right: 0;
    margin-bottom: 7%;
  }
  #footer-contact-heading-en{
    font-size: 35px;
  }
  #footer-contact-btn a{
    font-size: 16px;
    width: 270px;
    height: 60px;
    padding: 0 30px;
    background: #63ad90 url(../../../img/fm/acj01/frame/arrow-green.webp) 95% center / 45px no-repeat;
  }
  #copyright{
    text-align: center;
    font-size: 12px;
  }
}
@media (max-width: 430px){
  #footer-inner{
    padding: 15% 0;
  }
  #return-top img{
    width: 50px;
  }
}
