@charset "UTF-8";
/*-------------
vars
-------------*/
:root{
    --font-eng: 'Poppins', sans-serif;
    --font-serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --main-color: #00b253;
    --main-color--deep:#33ab5f;
    --main-color--deep2:#0d8c37;
    --main-color--light:#e5f7ee;
    --back-color: #faf8f5;
    --sub-color: #009a53;
    --font-color:#00994d;
    --font-color2:#0fa36a;
    --main-yellow: #ffd000;
    --main-black: #333333;
    --main-blue: #004da0;
    --main-darkblue: #00154b;
    --main-blue_grad: linear-gradient(35deg,#00154b,#004da0 77%);
    --main-gray: #f3f9f5;
    --main-gray_border: #e6e2db;
    --icon-link: url(../images/icon_link.svg) no-repeat center / contain;
    --icon-tel: url(../images/tel-icon.svg)no-repeat center/auto;
    --icon-search: url(../images/icon_search.svg) no-repeat center / contain;
    --icon-money: url(../images/icon_money.svg)no-repeat center/auto;
    --link-icon: url(../images/icon_link2.svg);
    --file-icon: url(../images/icon_file.svg);
    --bg-logomark: url(../images/logomark.svg) no-repeat center / contain;
    --title-news: url(../images/icon_news.svg) no-repeat center / contain;
    --title-search: url(../images/icon_search2.svg) no-repeat center / contain;
    --box-shadow: 0 2px 4px rgb(3 109 18 / 10%);
    --box-shadow2: 0px 8px 8px rgba(0, 178, 83, 0.35);
    --inner-width--sp: 90.625%;
    --inner-width--sp_vw: 90.625vw;
    --inner-sidespace--sp: 4.6875%;
    --inner-sidespace--sp_vw: 4.6875vw;
}

/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-width: 1200px;
    max-width: 2000px;
    background: #fff;
    color: var(--main-black);
    font-family: 'Noto Sans JP', 'メイリオ', Meiryo, Verdana,  "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-feature-settings: "palt" 1;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    line-height: normal;
    text-align: left;
    word-wrap: break-word;
    margin: 0 auto;
}
.sp{
    display: none;
}
.clearfix::after,
.cf::after{
    content: "";
    display: block;
    clear: both;
}
@media screen and (min-width:768px){
    body > header,
    body > footer,
    body > section,
    body > article,
    body > div{
        font-size: 1.4rem;
    }
}
.preload *{
    transition: none!important;
}
a:hover{
    text-decoration: none;
}
a[href^="tel:"]{
    pointer-events: none;
}
.txt_ind {
    text-indent: -1em;
    padding-left: 1em;
}
/* sp */
@media screen and (max-width:767px){
    html{
        font-size: 62.5%;
    }
    body{
        min-width: 320px;
        font-size: 1.3rem;
    }
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    a[href^="tel:"]{
        pointer-events: auto;
    }
    img{
        width: 100%;
        height: auto;
    }
}

/*-------------
data-effect
-------------*/
*[data-effect^="fade"]{
    opacity: 0;
    transition: transform .8s ease,opacity .8s ease;
}
*[data-effect^="fade-left"]{
    transform: translateX(-50px);
}
*[data-effect^="fade-right"]{
    transform: translateX(50px);
}
*[data-effect^="fade-up"]{
    transform: translateY(50px);
}
*[data-effect^="fade"].effected{
    opacity: 1;
    transform: none;
}
@media screen and (max-width:767px){
    *[data-effect^="fade"]{
        transition: transform .4s ease,opacity .4s ease;
    }
}

/*-------------
アコーディオン
-------------*/
.js-accordion.is--ready{
    cursor: pointer;
}
.js-accordion:not(.accordion--open):not([data-target-class]) + *:not(.accordion-content),
.accordion-target{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.accordion-content{
    overflow: hidden;
    transition: height .3s ease;
}
.accordion-content:not(.is--open){
    height: 0!important;
}

/*-------------
header
-------------*/
.header{
    position: relative;
    z-index: 1;
    background: #fff;
    border-bottom: solid 1px var(--main-gray_border);
}
.header-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  box-sizing: border-box;
}
.header-logo{
  flex: 0 1 auto;
}
.header-menu-btn{
    display: none;
}
.header-menu{
    width: auto;
}
.header-nav{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.header-nav-list{
    display: flex;
}
@media screen and (min-width:768px){
    .header-nav-list-item:nth-of-type(4){
        margin-right: auto;
    }
}
.header-nav-list-item__link{
  color: var(--main-color);
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: calc(1em + 5px);
  border-bottom: solid 1px var(--main-yellow);
  padding-bottom: 2px;
  margin: 0 15px;
}
.header-nav-list-item__link:after{
  content: "";
  width: 100%;
  height: 1px;
  background: var(--main-yellow);
  position: absolute;
  bottom: -3px;
  left: 0;
}
/* header-nav--pulldown */
@media screen and (min-width:768px){
    .header-nav--pulldown{
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        transform: translateY(100%);
        width: 100%;
        background: #dff0f4;
        transition: opacity .3s ease;
    }
    .header-nav--pulldown:not(.is--active){
        display: none;
    }
    .header.is--on_recruit .header-nav--pulldown{
        display: block;
    }
    .header-nav--pulldown:not(.is--show){
        opacity: 0;
    }
    .header.is--on_recruit .header-nav--pulldown{
        opacity: 1;
    }
    .header-nav--pulldown-list{
        display: flex;
        justify-content: flex-end;
        width: 100%;
        height: 55px;
        max-width: 1280px;
        margin: 0 auto;
    }
    .header-nav--pulldown-list-item{
        height: 100%;
    }
    .header-nav--pulldown-list-item__link{
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 20px;
        font-size: 1.6rem;
        line-height: calc(1em + 5px);
    }
}
/* sp */
@media screen and (max-width:767px){
  .header{
      min-height: 0;
      background: none;
  }
  .header-wrapper{
      padding: 0;
  }
  .header-inner{
      position: relative;
      width: 100%;
      height: 50px;
      background: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .header-logo{
      width: 200px;
      padding-left: 3.125%;
  }
  .header-menu-btn{
    box-sizing: border-box;
    display: block;
    height: 50px;
    padding: 16px 13px;
    width: 50px;
    background: var(--main-color);
    cursor: pointer;
  }
  .header-menu-btn__line {
    background: #fff;
    display: block;
    height: 3px;
    transition: all .4s;
    width: 100%;
    border-radius: 3px;
  }
  .header-menu-btn__line:not(:last-child) {
    margin-bottom: 4px;
  }
  .header-menu-btn.is--active span:first-of-type {
    transform: translateY(7px) rotate(-45deg);
  }
  .header-menu-btn.is--active span:nth-of-type(2) {
    opacity: 0;
  }
  .header-menu-btn.is--active span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
  .header-menu{
    width: 100%;
    position: absolute;
    top: 51px;
    left: 0;
    z-index: -1;
    padding: 10px 35px;
    background: var(--main-color);
    overflow-x: hidden;
    overflow-y: auto;
    transition: opacity .3s ease;
  }
  .header-menu:not(.is--active){
      display: none;
  }
  .header-menu:not(.is--show){
      opacity: 0;
  }
  .header-nav{
      max-width: 100%;
  }
  .header-nav-list{
      display: block;
  }
  .header-nav-list-item__link{
      font-size: 1.6rem;
      color: #fff;
      padding: 20px 0;
      box-sizing: border-box;
      border-bottom: solid 1px #62bc80;
      display: flex;
      align-items: center;
  }
  .header-nav-list-item__link:after{
    content: none;
  }
  .header-nav-list-item__link:before{
    content: '';
    width: 18px;
    height: 18px;
    vertical-align: middle;
    background: var(--icon-link);
    margin-right: 10px;
  }
  .header-nav-list-item:last-of-type .header-nav-list-item__link{
    border-bottom: none;
  }
  /* header-nav--pulldown */
  .header-nav--pulldown{
      padding-left: 1em;
  }
  .header-nav--pulldown-list-item__link{
      display: inline-block;
      position: relative;
      padding: 6px 0 7px;
      font-size: 1.4rem;
      line-height: calc(1em + 5px);
  }
  .header-nav--pulldown-list-item__link::before{
      display: inline-block;
      margin-right: .2em;
      content: "・";
  }
}

/***------------
footer
------------***/
footer{
  padding-top: 57px;
  background: var(--sub-color);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  width: 1200px;
  padding-bottom: 45px;
  margin: 0 auto;
}
.footer-contact{
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: -4px 4px 4px rgba(0,0,0,.15);
  background: #ffd000;
}
.footer-conatct-text{
  margin-bottom: 5px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -.8px;
}
.footer-conatct-tel{
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}
.footer-conatct-tel:before{
  content: "";
  display: block;
  width: 29px;
  height: 19px;
  margin-right: 4px;
  background: var(--icon-tel);
}
.footer-contact-info-list{
  padding-left: 15px;
}
.footer-contact-info{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 105px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  font-size: 1.1rem;
}
.footer-contact-info:not(:last-of-type){
  margin-bottom: 7px;
}
.footer-address-title{
  margin-bottom: 5px;
}
.footer-address-title img{
  height: 18px;
}
.footer-address-text{
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}
.footer-nav{
  width: 470px;
  padding-top: 10px;
  display: flex;
  flex-flow: row wrap;
}
.style--pc .footer-nav-item:not(:last-of-type){
  margin-bottom: 15px;
}
.footer-nav-items{
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  flex: 0 1 100%;
}
.footer-nav-item{
  flex: 0 1 230px;
  margin-bottom: 10px;
}
.footer-nav-item a{
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}
.footer-nav-item a:before{
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--icon-link);
}
.footer .copy{
  font-family: var(--font-eng);
  color: #fff;
  font-size: 1.2rem;
  display: block;
  align-self: flex-end;
}
/* sp */
@media screen and (max-width:767px){
  footer{
    padding-top: 35px;
  }
  .footer-inner{
    display: block;
    width: 87.5%;
    padding-bottom: 30px;
  }
  .footer-contact{
    display: block;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  .footer-conatct-text{
    font-size: 13px;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: -.5px;
    white-space: nowrap
  }
  .footer-conatct-tel{
    justify-content: center;
    font-size: 29px;
    font-size: 2.9rem;
    white-space: nowrap;
  }
  .footer-conatct-tel:before{
    width: 34px;
    height: 22px;
    margin-right: 4px;
    background-size: contain;
  }
  .footer-contact-info-list{
    display: flex;
    padding: 10px 0 0;
  }
  .footer-contact-info{
    flex: 1 1 auto;
    height: 20px;
  }
  .footer-contact-info:not(:last-of-type){
    margin: 0 5px 0 0;
  }
  .footer-address-title{
    margin-bottom: 8px;
  }
  .footer-address-title img{
    width: auto;
    height: 18px;
  }

  /* footer-nav */
  .footer-nav{
    display: block;
    width: 100%;
    padding-top: 25px;
  }
  .footer-nav-items{
    width: 100%;
    display: block;
  }
  .footer-nav-item{
    border-top: solid 1px #4cb887;
  }
  .footer-nav-item:last-of-type{
    border-bottom: solid 1px #4cb887;
  }
  .footer-nav-item a{
    padding: 15px 0 15px 10px;
    font-size: 1.5rem;
  }
  .footer-nav-item a:before{
    width: 18px;
    height: 18px;
  }
  .footer .copy{
    text-align: center;
    padding: 20px 0 0;
    box-sizing: border-box;
  }
}

/*-------------
contents
-------------*/
.contents{
}

/*-------------
top
-------------*/
@keyframes card-float{
  0%{
    transform: translateY(0);
  }
  25%{
    transform: translateY(-10px);
  }
  75%{
    transform: translateY(0);
  }
  100%{
    transform: translateY(0);
  }
}
.top-main{
  width: 100%;
  height: 533px;
  background: url(../images/topimg_bg.png) repeat;
  margin-bottom: 60px;
}
.top-main-wrapper{
  height: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
}
.top-main-img{
  flex: 0 1 50%;
}
.top-main-img img{
  width: 100%;
  height: auto;
}
.top-main-text{
  flex: 0 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-main-text-wrapper{
  text-align: center;
}
.top-main-text_img{
  display: block;
  animation: card-float 4s ease 1s infinite backwards;
  margin-left: -14px;
}
.top-main-text_title{
  font-size: 4.5rem;
  font-weight: bold;
  animation: card-float 4s ease 1.5s infinite backwards;
}
.top-main-text_title span{
  display: block;
  color: var(--font-color);
  letter-spacing: 0.4rem;
  position: relative;
}
.top-main-text_title span:before{
  content: "";
  position: absolute;
  background: url('../images/top-line.svg') repeat-x;
  background-size: 38px 9px;
  width: 100%;
  height: 9px;
  bottom: -5px;
}
.top-qr{
  margin-top: 15px;
}
.qr-text{
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 20px;
}
/*top-main-img-pc*/
.top-main-img-pc{
  flex: 0 1 50%;
  background: url(../images/topimg_bg1.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}
.top-main-img-pc-img{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 12%;
}
.top-main-img-pc-img img{
  width: 100%;
  height: auto;
}
.top-main-img-pc-logo{
  width: 367px;
  position: absolute;
  top: 21.875%;
  right: 0;
  left: 0;
  margin: auto;
}
.top-main-img-pc-logo img{
  width: 100%;
  height: auto;
}
/* sp */
@media screen and (max-width:767px){
  .top-main-img-pc{
    display: none;
  }
  .top-main{
    width: 100%;
    height: auto;
    max-height: inherit;
    aspect-ratio: 1;
  }
  .top-main-wrapper{
    display: block;
    max-width: inherit;
    height: auto;
  }
  .top-main-text{
    padding: 20px 0 40px;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .top-main-text_img{
    width: 65.625%;
    margin: 0 auto 15px;
  }
  .top-main-text_title{
    width: 100%;
    font-size: 3.0rem;
    text-align: center;
  }
  .top-main-text_title{
    width: 87.5%;
    margin: 0 auto;
  }
  .top-main-text_title span{
    display: table;
    margin: 0 auto;
  }
  .top-main-text_title span:before{
    content: "";
    position: absolute;
    background: url('../images/top-line.svg') repeat-x;
    background-size: 35px 9px;
    width: 100%;
    height: 9px;
    bottom: -5px;
  }
}
/*-----------------
btn
------------------*/
.btn1{
  width: 100%;
}
.btn1 a{
  background: var(--main-color--light);
  border-radius: 10px;
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: bold;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: solid 1px var(--main-color);
}
.btn1 a:after {
    position: absolute;
    top: calc(50% - 4px);
    right: 15px;
    transform: rotate(45deg);
    width: 9px;
    height: 9px;
    border-top: solid 2px var(--main-color);
    border-right: solid 2px var(--main-color);
    content: "";
    transition: all ease .3s;
}
/* sp */
@media screen and (max-width:767px){
  .btn1 a{
    background: var(--main-color--light);
    border-radius: 10px;
    font-size: 1.5rem;
    color: var(--main-color);
    font-weight: bold;
    width: 100%;
    height: 50px;
  }
  .btn1 a:after {
    position: absolute;
    top: calc(50% - 4px);
    right: 10px;
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
  }
}
/*-------------
top-news
-------------*/
.top-news{
  width: 100%;
  position: relative;
  min-height: 450px;
  margin-bottom: 100px;
}
.top-news-img{
  width:41.667%;
  max-width: 700px;
  aspect-ratio: 6 / 4;
  position: absolute;
  top:0;
  right: 0;
  z-index: -1;
}
.top-news-img img{
  width: 100%;
  height: auto;
  border-radius: 30px 0 0 30px;
}
.top-news-title {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: calc(1em + 7px);
  letter-spacing: 0.2rem;
  position: relative;
  z-index: 1;
}
.top-news-title:before {
  display: block;
  margin-bottom: 16px;
  color: var(--font-color2);
  font-family: var(--font-eng);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  content: attr(data-title-en);
}
.top-news-wrapper{
  width: 1200px;
  margin: 0 auto;
  padding-top: 90px;
}
.top-news-main{
  width: 960px;
  background: var(--main-gray);
  border-radius: 0 60px 60px 0;
  padding: 60px 0;
  margin-top: -20px;
  margin-bottom: 40px;
  position: relative;
}
.top-news-main:before{
  content: "";
  background: var(--main-gray);
  width: calc(100vw - 1200px);
  height: 100%;
  position: absolute;
  top:0;
  left: calc(-100vw + 1200px);
}
.top-news-main--items{
  margin-bottom: 20px;
}
.top-news-main--item{
  width: 840px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  background: #fff;
}
.top-news-main--item:not(:last-child) {
    margin-bottom: 10px;
}
.top-news-main--item__title{
  display: flex;
  align-items: center;
  position: relative;
  min-height: 60px;
  padding: 20px;
  font-size: 1.6rem;
  line-height: calc(1em + 4px);
}
.top-news-main--item__title.js-accordion{
  padding-right: 65px;
}
.top-news-main--item__title.js-accordion:before {
    position: absolute;
    top: calc(50% - 25px);
    right: 5px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--main-color--deep);
    content: "";
    transition: background .3s ease;
}
.top-news-main--item__title.js-accordion:after{
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  transform: rotate(135deg);
  width: 9px;
  height: 9px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
  transition: all ease .3s;
}
.top-news-main--item__title.js-accordion.accordion--open:after{
  position: absolute;
  top: calc(50% - 3px);
  right: 25px;
  transform: rotate(-45deg);
}
.top-news-main--item__title time{
  width:90px;
  font-size: 1.4rem;
  color: #999999;
  margin-right: 10px;
}
.top-news-main--item__title--link:hover{
  color: #009637;
  transition: all ease .3s;
}
.top-news-main--item__title--link > span:hover{
  color: #009637;
  transition: all ease .3s;
}
.top-news-main--item__title--link a{
  text-decoration: underline;
}
.top-news-main--item__title--link a:hover{
  text-decoration: none;
}
.top-news-main--item__text{
  padding: 15px 65px 30px 120px;
  box-sizing: border-box;
}
.top-news-main--item__text p{
  margin-bottom: 20px;
  line-height: 1.8;
}
.top-news-main--item__text ul li:not(:last-child){
  margin-bottom: 10px;
}
.top-news-main--item__text ul li a{
  color:var(--main-color);
  text-decoration: underline;
  padding-left: 20px;
  position: relative;
}
.top-news-main--item__text ul li a:before {
    position: absolute;
    top: calc(0.1em + 6px);
    left: 0;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.top-news-main--item__text ul li a.icon_link:before{
  background-image: var(--link-icon);
}
.top-news-main--item__text ul li a.icon_pdf:before{
  background-image: var(--file-icon);
}
.top-news-main--item__btn{
  width: 400px;
  margin: 0 auto;
}
.top-news-main--item__btn a{
  background: var(--main-black);
  border-radius: 10px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.top-news-main--item__btn a:after {
    position: absolute;
    top: calc(50% - 4px);
    right: 15px;
    transform: rotate(45deg);
    width: 9px;
    height: 9px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
    transition: all ease .3s;
}
/* sp */
@media screen and (max-width:767px){
  .top-news{
    width: 100%;
    position: relative;
    min-height: 450px;
  }
  .top-news-wrapper {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }
  .top-news-img{
    width:84.375%;
    max-width: inherit;
    position: relative;
    margin: 0 auto 20px;
    z-index: 2;
  }
  .top-news-img img{
    border-radius: 10px;
  }
  .top-news-title {
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1em;
    letter-spacing: 0.2rem;
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--main-gray);
    padding-top: 60px;
    margin-top: -60px;
  }
  .top-news-title:before {
    display: block;
    margin-bottom: 16px;
    font-size: 1.5rem;
  }
  .top-news-main {
    width: 100%;
    background: var(--main-gray);
    border-radius: 0;
    padding: 60px var(--inner-sidespace--sp);
    margin-top: -20px;
    position: relative;
    margin-bottom: 30px;
  }
  .top-news-main--item {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background: #fff;
  }
  .top-news-main--noitem{
    text-align: center;
  }
  .top-news-main--item__title {
    display: block;
    position: relative;
    min-height: 60px;
    padding: 20px 15px;
    font-size: 1.5rem;
    line-height: calc(1em + 4px);
  }
  .top-news-main--item__title.js-accordion{
    padding-right: 50px;
  }
  .top-news-main--item__title time{
    display: block;
    margin-bottom: 5px;
  }
  .top-news-main--item__btn{
    width: 100%;
  }
  .top-news-main--item__btn a{
    border-radius: 5px;
    font-size: 1.6rem;
    width: 100%;
    height: 50px;
  }
  .top-news-main--item__title.js-accordion:before {
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
  }
  .top-news-main--item__title.js-accordion:after {
    top: calc(50% + 7px);
    right: 21px;
    width: 7px;
    height: 7px;
  }
  .top-news-main--item__title.js-accordion.accordion--open:after {
    top: calc(50% + 9px);
    right: 21px;
    transform: rotate(-45deg);
  }
  .top-news-main--item__text {
    font-size: 1.4rem;
    padding: 0 15px 25px;
  }
  .top-news-main--item__btn a:after {
    position: absolute;
    top: calc(50% - 4px);
    right: 10px;
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
    transition: all ease .3s;
  }
}
/* top-news-list */
.top-news-list{
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  margin-bottom: 20px;
}
.top-news-list_btn{
  flex: 0 1 390px;
  margin-bottom: 15px;
}
.top-news-list_btn:not(:nth-of-type(3n)){
  margin-right: 15px;
}
.top-news-list_btn a{
  color: #fff;
  background: var(--main-color);
  font-size: 2.0rem;
  font-weight: bold;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  letter-spacing: 0.2rem;
  box-shadow: var(--box-shadow2);
}
.top-news-list_btn a:before{
  content: "";
  width: 34px;
  height: 34px;
  margin-right: 10px;
}
.top-news-list_btn a.icon_search:before{
  background: var(--icon-search);
}
.top-news-list_btn a.icon_money:before{
  width: 41px;
  height: 34px;
  background: var(--icon-money);
}
.top-news-list_btn span{
  color: var(--main-color--deep);
  font-size: 1.5rem;
  font-weight: bold;
  background: #ffd500;
  border-radius: 17px;
  border: solid 2px #fff;
  display: block;
  margin: 10px auto 0;
  text-align: center;
  padding: 5px 0;
  box-sizing: border-box;
}
.top-news .btn1{
  width: 480px;
  margin: 0 auto;
}
/* sp */
@media screen and (max-width:767px){
  .top-news-list {
    display: block;
    width: var(--inner-width--sp);
    margin: 0 auto 20px;
  }
  .top-news-list_btn {
    margin-bottom: 10px;
  }
  .top-news-list_btn:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .top-news-list_btn a {
    color: #fff;
    background: var(--main-color);
    font-size: 1.6rem;
    font-weight: bold;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    letter-spacing: 0.2rem;
    box-shadow: var(--box-shadow2);
  }
  .top-news-list_btn a:before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  .top-news-list_btn a.icon_money:before {
    width: 29px;
    height: 24px;
  }
  .top-news-list_btn span {
    color: var(--main-color--deep);
    font-size: 1.5rem;
    font-weight: bold;
    background: #ffd500;
    border-radius: 5px;
    border: solid 2px #fff;
    display: block;
    margin: 5px auto 0;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
  }
  .top-news .btn1{
    width: var(--inner-width--sp);
    margin: 0 auto;
  }
}
/*-------------------
top-app
-------------------*/
.top-app{
  background: var(--back-color);
  border-radius: 300px 0 0 0;
  padding: 100px 0 80px;
  box-sizing: border-box;
}
.top-app-wrapper{
  width: 1020px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
  align-items: center;
}
.top-app__text{
  flex: 0 1 440px;
}
.top-app__text-title{
  font-size: 4.0rem;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.top-app__text-text{
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 30px;
}
.top-app__text-link{
  display: flex;
  align-items: center;
}
.top-app__text-link--item:not(:last-child){
  margin-right: 10px;
}
.top-app__pho--items{
  display: none;
}
/* sp */
@media screen and (max-width:767px){
  .top-app{
    background: var(--back-color);
    border-radius: 50px 0 0 0;
    padding: 50px var(--inner-sidespace--sp) 60px;
    box-sizing: border-box;
  }
  .top-app-wrapper{
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .top-app__text-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .top-app__text-text {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
  }
  .top-app__text-link{
    display: none;
  }
  .top-app__pho--img{
    width: 82.068%;
    margin: 0 auto 20px;
  }
  .top-app__pho--items{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 84.827%;
    margin: 0 auto;
  }
  .top-app__pho--item{
    flex: 0 1 49.09%;
  }
}
/*-------------------
footer-link
-------------------*/
.footer-link{
  background: #e4f2ea;
  padding: 20px 0;
  box-sizing: border-box;
  border-top: solid 1px #e6e2db;
}
.footer-link--items{
  width: 1200px;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  margin: 0 auto;
}
.footer-link--item{
  flex: 0 1 232px;
}
.footer-link--item:not(:nth-of-type(5n)){
  margin-right: 10px;
}
.footer-link--item:not(:nth-of-type(-n+5)){
  margin-top: 10px;
}
/* sp */
@media screen and (max-width:767px){
  .footer-link--items{
    width: var(--inner-width--sp);
    display: flex;
    justify-content: space-between;
  }
  .footer-link--item{
    flex: 0 1 48.96%;
  }
  .footer-link--item:not(:nth-of-type(5n)){
    margin-right: 0;
  }
  .footer-link--item:not(:nth-of-type(-n+5)){
    margin-top: 0;
  }
  .footer-link--item:not(:nth-of-type(-n+2)){
    margin-top: 10px;
  }
}
/*-------------------
contents
-------------------*/
.contents:not(.top){
  background: var(--back-color);
  padding-bottom: 100px;
}
/***------------
page-header
------------***/
.page-header{
  width: 1000px;
  margin: 0 auto;
  padding: 90px 0 50px;
  box-sizing: border-box;
  position: relative;
}
.page-header__title{
  font-size: 4.0rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  letter-spacing: 0.4rem;
}
.page-header .page-header__title::after{
  content: attr(data-pagetitle-en);
  display: block;
  margin-top: 15px;
  color: var(--font-color2);
  font-family: var(--font-eng);
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.2rem;
}
.page-header--news:before{
  content: "";
  background: url(../images/bg_news.svg) no-repeat center;
  background-size: cover;
  width: 504px;
  height: 115px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.page-header--news .page-header__title::before{
  content: "";
  background: var(--title-news);
  background-size: cover;
  width: 31px;
  height: 34px;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: auto;
}
/*search*/
.page-header--search:before{
  content: "";
  background: url(../images/bg_search.svg) no-repeat center;
  background-size: cover;
  width: 709px;
  height: 115px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.page-header--search .page-header__title::before{
  content: "";
  background: var(--title-search);
  background-size: cover;
  width: 34px;
  height: 34px;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: auto;
}
/* sp */
@media screen and (max-width:767px){
  .page-header{
    width: var(--inner-width--sp);
    margin: 0 auto;
    padding: 60px 0 40px;
    box-sizing: border-box;
    position: relative;
  }
  .page-header__title{
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    letter-spacing: 0.4rem;
  }
  .page-header .page-header__title::after {
    margin-top: 8px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
  .page-header--news:before{
    content: "";
    background-size: auto;
    width: auto;
    height: 50px;
  }
  .page-header--news .page-header__title::before{
    width: 21px;
    height: 24px;
    top:-30px;
  }
  /*search*/
  .page-header--search:before{
    content: "";
    background-size: auto;
    width: auto;
    height: 50px;
  }
  .page-header--search .page-header__title::before{
    width: 24px;
    height: 24px;
    top: -30px;
  }
}
/***------------
pager
------------***/
#pager{
	width: 100%;
	position: relative;
	padding: 0 60px;
	box-sizing: border-box;
}
#pager .pager-list{
	display: flex;
	align-items: center;
	justify-content: center;
}
#pager .pager-list li{
  background: #e6e1d8;
	width: 50px;
	height: 50px;
	margin: 0 5px;
	border-radius: 50%;
	transition: all ease .3s;
}
#pager .pager-list li a{
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
#pager .pager-list li.current{
	background: var(--main-color);
}
#pager .pager-list li.current a{
	color: #fff;
	pointer-events: none;
}
#pager .pager-list li:not(.current):hover{
	background: var(--main-color);
	transition: all ease .3s;
}
#pager .pager-list li:not(.current):hover a{
	color: #fff;
	transition: all ease .3s;
}
#pager .prev,
#pager .next{
	background: none;
	width: 50px;
	height: 50px;
  background: #333333!important;
	border: solid 2px #333333;
	box-sizing: border-box;
}
#pager .prev{
  margin-right: 30px!important;
}
#pager .next{
  margin-left: 30px!important;
}
#pager .prev a,
#pager .next a{
  color: #fff;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
#pager .prev:hover,
#pager .next:hover{
	border: solid 2px #fff;
  background: var(--main-color)!important;
}
#pager .prev a:before{
	content: "";
	border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  width: 8px;
  height: 8px;
  transform: rotate(-135deg);
}
#pager .next a:before{
	content: "";
	border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
}
/* sp */
@media screen and (max-width:767px){
  #pager{
    width: var(--inner-width--sp);
    position: relative;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
  }
  #pager .pager-list{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #pager .pager-list li{
    box-sizing: border-box;
  }
  #pager .pager-list li:not(.current):hover{
    background: #e6e1d8;
  }
  #pager .pager-list li:not(.current):hover a{
    color: #fff;
  }
  #pager .prev,
  #pager .next{
    position: absolute;
    margin: auto;
  }
  #pager .prev{
    left: 0;
  }
  #pager .next{
    right:0;
  }
  #pager .prev a,
  #pager .next a{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  #pager .prev,
  #pager .next,
  #pager .prev:hover,
  #pager .next:hover{
    background: #333333!important;
    border: solid 2px #333333;
  }
  #pager .prev a:before{
    content: "";
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    width: 6px;
    height: 6px;
    transform: rotate(-135deg);
  }
  #pager .next a:before{
    content: "";
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
  }
}
/*-------------------
news
-------------------*/
.news-main{
  width: 1000px;
  margin: 0 auto;
}
.news-main--items{
  margin-bottom: 40px;
}
.news-main--item{
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  background: #fff;
}
.news-main--noitem{
  text-align: center;
}
.news-main--item:not(:last-child) {
    margin-bottom: 10px;
}
.news-main--item__title{
  display: flex;
  align-items: center;
  position: relative;
  min-height: 60px;
  padding: 20px;
  font-size: 1.6rem;
  line-height: calc(1em + 4px);
}
.news-main--item__title.js-accordion{
  padding-right: 65px;
}
.news-main--item__title.js-accordion:before {
    position: absolute;
    top: calc(50% - 25px);
    right: 5px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--main-color--deep);
    content: "";
    transition: background .3s ease;
}
.news-main--item__title.js-accordion:after{
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  transform: rotate(135deg);
  width: 9px;
  height: 9px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
  transition: all ease .3s;
}
.news-main--item__title.js-accordion.accordion--open:after{
  position: absolute;
  top: calc(50% - 3px);
  right: 25px;
  transform: rotate(-45deg);
}
.news-main--item__title time{
  width:90px;
  font-size: 1.4rem;
  color: #999999;
  margin-right: 10px;
}
.news-main--item__title--link:hover{
  color: #009637;
  transition: all ease .3s;
}
.news-main--item__title--link > span:hover{
  color: #009637;
  transition: all ease .3s;
}
.news-main--item__title--link a{
  text-decoration: underline;
}
.news-main--item__title--link a:hover{
  text-decoration: none;
}
.news-main--item__text{
  padding: 15px 65px 30px 120px;
  box-sizing: border-box;
}
.news-main--item__text p{
  margin-bottom: 20px;
  line-height: 1.8;
}
.news-main--item__text ul li:not(:last-child){
  margin-bottom: 10px;
}
.news-main--item__text ul li a{
  color:var(--main-color);
  text-decoration: underline;
  padding-left: 20px;
  position: relative;
}
.news-main--item__text ul li a:before {
    position: absolute;
    top: calc(0.1em + 6px);
    left: 0;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.news-main--item__text ul li a.icon_link:before{
  background-image: var(--link-icon);
}
.news-main--item__text ul li a.icon_pdf:before{
  background-image: var(--file-icon);
}
.news-main--item__btn{
  width: 400px;
  margin: 0 auto;
}
.news-main--item__btn a{
  background: var(--main-black);
  border-radius: 10px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.news-main--item__btn a:after {
    position: absolute;
    top: calc(50% - 7px);
    right: 15px;
    transform: rotate(45deg);
    width: 9px;
    height: 9px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
    transition: all ease .3s;
}
/* sp */
@media screen and (max-width:767px){
  .news-main {
    width: 100%;
    background: var(--main-gray);
    border-radius: 0;
    padding: 0 var(--inner-sidespace--sp);
    margin-top: -20px;
    position: relative;
    margin-bottom: 30px;
  }
  .news-main--item {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background: #fff;
  }
  .news-main--noitem{
    text-align: center;
  }
  .news-main--item__title {
    display: block;
    position: relative;
    min-height: 60px;
    padding: 20px 15px;
    font-size: 1.5rem;
    line-height: calc(1em + 4px);
  }
  .news-main--item__title.js-accordion{
    padding-right: 50px;
  }
  .news-main--item__title time{
    display: block;
    margin-bottom: 5px;
  }
  .news-main--item__btn{
    width: 100%;
  }
  .news-main--item__btn a{
    border-radius: 5px;
    font-size: 1.6rem;
    width: 100%;
    height: 50px;
  }
  .news-main--item__title.js-accordion:before {
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
  }
  .news-main--item__title.js-accordion:after {
    top: calc(50% + 7px);
    right: 21px;
    width: 7px;
    height: 7px;
  }
  .news-main--item__title.js-accordion.accordion--open:after {
    top: calc(50% + 9px);
    right: 21px;
    transform: rotate(-45deg);
  }
  .news-main--item__text {
    font-size: 1.4rem;
    padding: 0 15px 25px;
  }
  .news-main--item__btn a:after {
    position: absolute;
    top: calc(50% - 4px);
    right: 10px;
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
    transition: all ease .3s;
  }
}
/*-------------------
search
-------------------*/
.search-main{
  width: 1200px;
  margin: 0 auto;
}
.search-form{
  background: #f5f1eb;
  border: solid 1px #e6e2db;
  border-radius: 15px;
  padding: 30px 50px 40px;
  margin-bottom: 40px;
}
.search-form input[type=checkbox]{
  display: none;
}
.search-form input[type=checkbox]+label {
    background: #ffffff;
    height: 50px;
    padding: 4px 9px 4px 11px;
    border: 1px solid #fff;
    border-radius: 5px;
    box-sizing: border-box;
    line-height: 1.2;
    display: flex;
    align-items: center;
    transition: all .1s ease 0s;
    cursor: pointer;
}
.search-form input[type=checkbox]+label span{
  background: #fff;
  width: 14px;
  height: 14px;
  border: 1px solid #999;
  margin-right: 0.5em;
  box-sizing: border-box;
  display: block;
  position: relative;
  transition: all .1s ease 0s;
  flex: 0 0 auto;
  text-indent: -999px;
  overflow: hidden;
  border-radius: 3px;
}
.search-form input[type=checkbox]+label span:before,
.search-form input[type=checkbox]+label span:after {
    content: "";
    background: #fff;
    width: 14.2857142%;
}
.search-form input[type=checkbox]+label span:before{
  height: 35.7142857%;
  position: absolute;
  top: 35.7142857%;
  left: 25%;
  transition: transform .1s ease 0s;
  transform: rotate(-45deg) scaleY(0);
}
.search-form input[type=checkbox]+label span:after{
  content: "";
  height: 57.1428571%;
  position: absolute;
  top: 21.4285714%;
  left: 50%;
  transition: transform .1s ease .1s;
  transition: transform .1s ease .1s,-webkit-transform .1s ease .1s;
  transform: rotate(45deg) scaleY(0);
}
.search-form input[type=checkbox]:checked+label{
  border: solid 1px #00b253;
  background: #ebf9f1;
}
.search-form input[type=checkbox]:checked+label span {
    background: #32a632;
    border: none;
}
.search-form input[type=checkbox]:checked+label span:before{
  transform: rotate(-45deg) scale(1);
}
.search-form input[type=checkbox]:checked+label span:after{
  transform: rotate(45deg) scale(1);
}
.search-form-word{
  margin-bottom: 30px;
}
.search-form-word input{
  width: 100%;
  height: 56px;
  padding: 10px 15px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
}
input::placeholder{
  color: #b3b3b3;
}
.search-form--title{
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.search-form--title span{
  margin-right: 10px;
}
.search-form-condition--main{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.search-form-condition--main:after{
  content: none;
}
.search-form-condition--main__title{
  background: #bdab88;
  border-radius: 6px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.search-form-condition--main__area{
  flex: 0 1 540px;
}
.search-form-condition--main__genre{
  flex: 0 1 540px;
}
.search-form-condition--main__area--list li:not(:last-child){
  margin-bottom: 5px;
}
.search-form-condition--main__genre--list{
  display: flex;
  flex-flow: row wrap;
}
.search-form-condition--main__genre--list li{
  flex: 0 1 176px;
  margin-bottom: 6px;
}
.search-form-condition--main__genre--list li:not(:nth-of-type(3n)){
  margin-right: 6px;
}
.search-btn{
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  border-radius: 10px;
  border: none;
  background: var(--main-color);
}
.search-btn:before{
  content: "";
  background: var(--icon-search);
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
/* sp */
@media screen and (max-width:767px){
  .search-main {
    width: 100%;
    background: var(--main-gray);
    border-radius: 0;
    padding: 0 var(--inner-sidespace--sp);
    margin-top: -20px;
    position: relative;
    margin-bottom: 30px;
  }
  .search-form {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  .search-form--title {
    font-size: 1.6rem;
    line-height: 1;
  }
  .search-form--title span{
    margin-right: 5px;
  }
  .search-form--title span img{
    width: 16px;
    height: 16px;
  }
  .search-form-word input {
    width: 100%;
    height: 44px;
    padding: 10px;
    border-radius: 5px;
  }
  .search-form-condition--main{
    display: block;
  }
  .search-form-condition--main__area{
    margin-bottom: 15px;
  }
  .search-form input[type=checkbox]+label {
    height: auto;
    padding: 12px 9px 12px 11px;
  }
  .search-form-condition--main__genre--list{
    display: flex;
    justify-content: space-between;
  }
  .search-form-condition--main__genre--list li{
    flex: 0 1 48.71%;
  }
  .search-form-condition--main__genre--list li:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .search-form-condition--main{
    margin-bottom: 10px;
  }
  .search-btn {
    width: 100%;
    height: 50px;
    font-size: 1.8rem;
    color: #fff;
    border-radius: 10px;
    border: none;
    background: var(--main-color);
  }
  .search-btn:before {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
}
/*search-result*/
.search-result{
  margin-bottom: 40px;
}
.search-result__text{
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.search-result__text span{
  font-size: 2.2rem;
  font-weight: bold;
  color: #fc4128;
}
.search-result--items{
  display: flex;
  flex-flow: row wrap;
}
.search-result--noitem p{
  margin: 0 auto;
}
.search-result--item{
  flex: 0 1 285px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  border: solid 1px var(--main-gray_border);
  transition: all ease .3s;
}
.search-result--item:hover{
  box-shadow : 0px 4px 7px rgba(0, 0, 0, 0.12);
  transition: all ease .3s;
}
.search-result--item:hover .search-result--item__title{
  color: #009637;
  transition: all ease .3s;
}
.search-result--item:not(:nth-of-type(4n)){
  margin-right: 20px;
}
.search-result--item:not(:nth-of-type(-n+4)){
  margin-top: 20px;
}
.search-result--item__thumbnail img{
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.search-result--item__container{
  padding: 20px;
  box-sizing: border-box;
}
.search-result--item__title{
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.search-result--item__text{
  font-size: 1.4rem;
}
/* sp */
@media screen and (max-width:767px){
  .search-result--items{
    display: block;
  }
  .search-result--noitem{
    text-align: center;
  }
  .search-result--item{
    box-shadow : var(--box-shadow);
    transition: all ease .3s;
    border-radius: 10px;
  }
  .search-result--item:hover{
    box-shadow : var(--box-shadow);
    transition: all ease .3s;
  }
  .search-result--item:hover .search-result--item__title{
    color: #009637;
    transition: all ease .3s;
  }
  .search-result--item:not(:nth-of-type(4n)){
    margin-right: 0;
  }
  .search-result--item:not(:nth-of-type(-n+4)){
    margin-top: 0;
  }
  .search-result--item:not(:last-of-type){
    margin-bottom: 10px;
  }
  .search-result--item__thumbnail img{
    width: 100%;
    height: auto;
    aspect-ratio:290 / 183;
    object-fit: cover;
  }
  .search-result--item__container{
    padding: 15px;
  }
  .search-result--item__title{
    color: #009637;
    text-decoration: underline;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
/*-------------------
search-detail
-------------------*/
.search-detail{
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 100px;
}
.search-detail-title{
  width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  flex-flow: column-reverse;
  line-height: 1.3;
}
.search-detail-title__main{
  font-size: 3.8rem;
  font-weight: bold;
}
.search-detail-title__cate{
  display: flex;
  flex-flow: row wrap;
}
.search-detail-title__cate li{
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: var(--main-color--deep2);
  border-radius: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 2px 8px;
}
.search-detail-main{
  width: 1200px;
  margin: 0 auto 30px;
}
.search-detail-main__figure{
  display: flex;
  margin-bottom: 20px;
}
.search-detail-main__figure--item{
  flex: 0 1 390px;
  margin-bottom: 15px;
}
.search-detail-main__figure--item:not(:nth-of-type(3n)){
  margin-right: 15px;
}
.search-detail-main__figure--item img{
  width: 100%;
  border-radius: 15px;
}
.search-detail-main__figure-caption{
  text-align: center;
  margin-top: 10px;
}
.search-detail-main__figure.keen-slider{
  display: none!important;
}
.search-detail-main__box{
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}
.search-detail-main__box:after{
  content: none;
}
.search-detail-main__box-text{
  flex: 0 1 590px;
}
.search-detail-main__box-text__cate{
  display: flex;
  margin-bottom: 15px;
}
.search-detail-main__box-text__cate li:not(:last-child){
  margin-right: 10px;
}
.search-detail-main__box-text__table{
  width: 100%;
  border-radius: 15px;
  background: #fff;
  margin-bottom: 15px;
  font-size: 1.5rem;
  padding: 15px 30px;
  box-sizing: border-box;
  box-shadow: var(--box-shadow)
}
.search-detail-main__box-text__table table{
  width: 100%;
}
.search-detail-main__box-text__table th{
  color: #000000;
  vertical-align: middle;
  font-weight: normal;
  padding: 15px 0;
  width: 120px;
  border-bottom: solid 1px #cccccc;
}
.search-detail-main__box-text__table td{
  padding: 15px 0;
  border-bottom: solid 1px #cccccc;
  color: #666666;
  line-height: 1.8;
}
.search-detail-main__box-text__table td a{
  color: var(--main-color);
  text-decoration: underline;
}
.search-detail-main__box-text__table td a[href^="tel:"]{
  text-decoration: none;
  color: #666666;
}
.search-detail-main__box-text__table tr:last-child th,
.search-detail-main__box-text__table tr:last-child td{
  border-bottom:none;
}
.search-detail-main__box-text__message{
  background: #fff;
  padding: 20px 30px;
  box-sizing: border-box;
  box-shadow: var(--box-shadow);
  border-radius: 15px;
  margin-bottom: 15px;
  line-height: 1.8;
}
.search-detail-main__box-text__keyword{
  display: flex;
  align-items: center;
  background: #f5f1eb;
  border-radius: 15px;
  border: solid 1px #e6e2db;
  padding: 20px 30px;
  box-sizing: border-box;
}
.search-detail-main__box-text__keyword dt{
  min-width: 80px;
  margin-right: 20px;
  font-weight: 1.5rem;
  font-weight: bold;
}
.search-detail-main__box-text__keyword dd{
  display: flex;
  flex-flow: row wrap;
}
.search-detail-main__box-text__keyword dd p{
  line-height: 2;
}
.search-detail-main__box-text__keyword dd p:not(:last-child):after{
  content: ",";
  margin: 0 5px;
}
.search-detail-main__box-text__keyword dd p span{
  background: linear-gradient(transparent 50%, rgba(255, 255, 65, .69) 50%);
}
.search-detail-main__box-map{
  border: solid 1px #e6e2db;
  border-radius: 15px;
  overflow: hidden;
}
/*back-btn*/
.back-btn{
  border-top: solid 1px #e6e2db;
  padding-top: 30px;
  margin-top: 30px;
}
.back-btn-main{
  width: 340px;
  height: 50px;
  margin: 0 auto;
}
.back-btn-main a{
  color: var(--main-color);
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--main-color--light);
  border: solid 2px var(--main-color);
  position: relative;
}
.back-btn-main a:before {
    position: absolute;
    top: calc(50% - 4px);
    left: 15px;
    transform: rotate(-135deg);
    width: 8px;
    height: 8px;
    border-top: solid 2px var(--main-color);
    border-right: solid 2px var(--main-color);
    content: "";
    transition: all ease .3s;
}
.search-detail-main-slider-arrows,
.search-detail-main-slider-counter{
  display: none;
}
/* sp */
@media screen and (max-width:767px){
  .search-detail-main__box-text__table td a[href^="tel:"]{
    text-decoration: underline;
    color: var(--main-color);
  }
  .search-detail {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 60px!important;
  }
  .search-detail-title {
    width: var(--inner-width--sp);
    margin: 0 auto 15px;
    display: flex;
    flex-flow: column-reverse;
    line-height: 1.3;
  }
  .search-detail-title__main{
    font-size: 2.4rem;
  }
  .search-detail-title__cate li {
    font-size: 1.4rem;
  }
  .search-detail-main {
    width: 100%;
    margin: 0 auto 30px;
  }
  .search-detail-main__box {
    width: var(--inner-width--sp);
    margin: 0 auto;
    display: block;
  }
  .search-detail-main__box-text__cate{
    width: var(--inner-width--sp);
    margin: 0 auto 5px;
  }
  .search-detail-main__box-text__cate li img {
    width: 80px;
    height: 50px;
  }
  .search-detail-main__box-text__cate{
    margin-bottom: 5px;
  }
  .search-detail-main__box-text__cate li:not(:last-child) {
    margin-right: 5px;
  }
  .search-detail-main__box-text__table {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 15px;
    font-size: 1.4rem;
    padding: 5px 15px;
  }
  .search-detail-main__box-text__table th {
    color: #000000;
    vertical-align: middle;
    font-weight: normal;
    padding: 15px 0 5px;
    width: 100%;
    display: block;
    border-bottom: none;
    /* border-bottom: solid 1px #cccccc; */
  }
  .search-detail-main__box-text__table th:before{
    content: "["
  }
  .search-detail-main__box-text__table th:after{
    content: "]"
  }
  .search-detail-main__box-text__table td{
    display: block;
    width: 100%;
    padding: 5px 0 15px;
  }
  .search-detail-main__box-text__message {
    padding: 15px;
    border-radius: 10px;
    line-height: 1.8;
  }
  .search-detail-main__box-text__keyword {
    display: block;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
  }
  .search-detail-main__box-map{
    border-radius:10px;
    margin-top: 0;
  }
  .search-detail-main__box-map iframe{
    width: 100%;
    height: 240px;
  }
  .search-detail-main__figure{
    display: block;
  }
  .search-detail-main__figure--item{
    margin-bottom: 15px;
  }
  .search-detail-main__figure--item:not(:nth-of-type(3n)){
    margin-right: 0;
  }
  .search-detail-main__figure--item img{
    width: 100%;
    border-radius: 15px;
  }
  .search-detail-main__figure-caption{
    text-align: center;
    margin-top: 10px;
  }
  .search-detail-main__figure.keen-slider{
    display: flex!important;
  }
  #pc-search-figure-wrapper{
    display: none;
  }
  .back-btn {
    width: var(--inner-width--sp);
    margin: 0 auto;
    border-top: solid 1px #e6e2db;
    padding-top: 30px;
    margin-top: 30px;
  }
  .back-btn-main {
    width: 100%;
    height: 50px;
  }
  /*slider*/
  .search-detail-main-slider-wrapper {
    position: relative;
  }
  .search-detail-main-slider-track {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .search-detail-main__figure{
    width: 81.25vw;
    margin: 0 auto;
  }
  .search-detail-main__figure.keen-slider {
    width: calc((81.25vw + 10px) * 3)!important;
    left: 50%;
    transform: translateX(-50%);
  }
  .search-detail-main__figure--item {
    width: 81.25vw;
    padding: 0 5px;
    flex: 0 1 81.25vW;
  }
  .search-detail-main-slider-arrows,
  .search-detail-main-slider-counter{
    display: none;
  }
  .qr-text{
    display: none;
  }
}
