@charset "UTF-8";

html{
  letter-spacing: normal;
}
*{
  box-sizing: border-box;
}
body {
  background-color: #f7f7f7;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 100%;
  min-width: 100%;
  overflow-wrap: break-word;
  overflow-x: clip;
  position: relative;
  box-sizing: border-box;
}
p, h1, h2, h3, h4, h5, h6, a, li, caption, td, th, dt, dd, input, textarea, select, address {
  font-family: sans-serif;
  line-height: calc(1rem * 1.8);
}
h2{
  font-size: 2.24em;
  letter-spacing: .2px;
  line-height: 1.4;
}
img,
figure{
  width: 100%;
  height: auto;
}
a.sg_linkColor{
  color: #1176d4;
}
a.sg_moreBtn{
  background: #fff;
  box-shadow: 0 0 0 1px #dcdcdc;
  color: #666;
  display: inline-block;
  font-size: 0.9em;
  max-width: 64%;
  padding: .75rem 3em;
  position: relative;
  text-decoration: none;
  transition: box-shadow .25s, background-color .25s;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  box-sizing: border-box;
}
a.sg_moreBtn::after{
  content: "";
  background-image: url(../images/btn_arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 14px;

  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: -webkit-transform .25s;
  transition: transform .25s;
  transition: transform .25s, -webkit-transform .25s;
}
a.sg_moreBtn:hover{
  background-color: #000;
  box-shadow: none;
  color: #fff;
}
a.sg_moreBtn:hover::after{
  -webkit-transform: translateX(4px) translateY(-50%);
  transform: translateX(4px) translateY(-50%);
  background-image: url(../images/btn_arrow_white.png);
}

.sg_bannerFixed_Container{
  position: relative;
}
.sg_bannerFixed{
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 1000;
  width: 100%;
  transform: translateX(-50%);
  max-width: 900px;
}
/*
.sg_bannerFixed{
  position: relative;
  bottom: 0;
  z-index: 1000;
  opacity: 0;
  transition: .8s all;
  width: 100%;
}
.sg_bannerFixed.fixed{
  position: sticky;
  opacity: 1;
}
*/
.sg_bannerFixed.sp{
  display: none;
}

.sg_section-wrapper{
  padding: 4em 4em;
}
.sg_lp-width{
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding-top:1%;
  padding-bottom:1%;
}

.sg_bgBox{
  background: #fff;
  padding: 2em;
}
.sg_bgBox:not(:last-of-type){
  margin-bottom: 2em;
}
.sg_bgBox > p{
  font-size: .9em;
  margin-top:10px;
}

.sg_postListWrap{
  margin-top: 1em;
}
.sg_postListWrap .sg_postList{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap:0 15px;
}
.sg_postListWrap .sg_postList .sg_postList__item{
  width: calc(33.33333% - 10px);
  margin-bottom: 2.5em;
}
.sg_postListWrap .sg_postList .sg_postList__item .sg_postList__thumb{
  overflow: hidden;
  position: relative;
}
.sg_postListWrap .sg_postList .sg_postList__item .sg_postList__thumb::before{
  background: linear-gradient(45deg, #d8ffff, #87e7ff);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .25s;
  width: 100%;
  z-index: 1;
}
.sg_postListWrap .sg_postList .sg_postList__item:hover .sg_postList__thumb::before{
  opacity: .2;
}
.sg_postListWrap .sg_postList .sg_postList__item .sg_postList__thumb img{
  transition: -webkit-transform .25s;
  transition: transform .25s;
  transition: transform .25s, -webkit-transform .25s;
}
.sg_postListWrap .sg_postList .sg_postList__item:hover .sg_postList__thumb img{
  transform: scale(1.06);
}
.sg_postListWrap .sg_postList .sg_postList__item .sg_postList__content{
  padding-top: 1em;
  transition: opacity .25s;
}
.sg_postListWrap .sg_postList .sg_postList__item:hover .sg_postList__content{
  opacity: .75;
}
.sg_postListWrap .sg_postList .sg_postList__item .sg_postList__content .sg_postList__title{
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 1019px){
  .sg_section-wrapper {
    padding: 1em 4em;
  }
  .sg_postListWrap .sg_postList{
    gap:0 24px;
  }
  .sg_postListWrap .sg_postList .sg_postList__item{
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 959px){
  .sg_section-wrapper{
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media screen and (max-width: 767px){
  .sg_bannerFixed.sp{
    display: inherit;
    /*
    width: calc(100% + 8vw);
    transform: translateX(-4vw);
    */
  }
  .sg_bannerFixed.pc{
    display: none;
  }
}
@media screen and (max-width: 599px){
  body {
    font-size: 4vw;
  }
  p, h1, h2, h3, h4, h5, h6, a, li, caption, td, th, dt, dd, input, textarea, select, address {
    line-height: calc(4vw * 1.8);
  }
  h2 {
    font-size: 1.92em;
    margin-bottom: 0.25em;
  }
  a.sg_moreBtn{
    max-width: 80%;
  }
  .sg_postListWrap .sg_postList .sg_postList__item{
    width: 100%;
  }
  .sg_bgBox{
    padding: 1.5em;
  }
  .sg_postListWrap .sg_postList .sg_postList__item .sg_postList__content .sg_postList__title{
    font-size: 3.8vw;
  }
}


/* プルダウン */
.sg_pulldownWrap{
  position: relative;
}
.sg_pulldownContents{
  width: 100%;
  position: sticky;
  top: 0;
  background: #f7f7f7;
  z-index: 999;
  padding: 20px 0;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  transition: .5s all;
}
.sg_pulldownContents::after{
  display: none;
}
.sg_pulldown{
  display: flex;
  align-items: stretch;
  border: 2px solid #000;
  background-color: #fff;
  width: 48%;
  overflow: hidden;
  margin-bottom:0;
}
.sg_pulldown .sg_pulldown-title{
  padding: .5em 1.0em;
  border-right: 0.5px solid;
  font-weight: 700;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  font-family: sans-serif;
}
.sg_pulldown select{
  -webkit-appearance: none;
  appearance: none;
  padding: .5em .75em;
  box-sizing: border-box;
  color: #333;
  border: 1px solid #fff;
  outline: 0;
  border-radius: 0;
  flex-grow: 1;
  font-size: 1em;
  background-color: #fff;
}
@media screen and (max-width: 599px){
  .sg_pulldownContents{
    flex-wrap: wrap;
    gap: 5px 0;
    padding: 10px 0;
  }
  .sg_pulldown .sg_pulldown-title{
    font-size: 13px;
    width: 4.2em;
    padding: 0em .5em;
    white-space: nowrap;
  }

  /* SP時に縦並びにする場合 */
  /*
  .sg_pulldown{
    width: 100%;
  }
  .sg_pulldown select{
    font-size: 14px;
    padding: .75em .5em;
  }
  */

  /* SP時に横並びにする場合 */
  .sg_pulldown{
    width: 49%;
  }
  .sg_pulldown select{
    font-size: 13px;
    padding: .5em .1em;
  }
}

/* パンクズリスト */
.sg_Breadcrumb {
  padding: 0 0 0px 5.57143%;
}

.sg_Breadcrumb-ListGroup{
 font-size: 12px!important;
 padding-left: 0;
}
.sg_Breadcrumb-ListGroup {
  display: flex;
}

.sg_Breadcrumb-ListGroup li{
  list-style: none;
}

.sg_Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
.sg_Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.sg_Breadcrumb-ListGroup > * + *::before {
  content: ">";
  margin-left: 0.75em;
  margin-right: 0.75em;
}

.sg_Breadcrumb-ListGroup > * + *::before{margin:0!important;}


/* savas本体パーツ調整用 */
.global_header_nav_secondary_heading .ttl .site_logo{
  width: auto;
}
.global_footer_navList_heading a img{
  width: auto;
}
.global_footer_navList_item{
  line-height: 1;
}
.global_footer_navList_item a{
  line-height: normal;
}
.global_header_nav_sp_item .icon img,
.global_footer_container img{
  vertical-align: top;
}
.global_header_nav_primary > li > a .site_logo{
  width: auto;
}
