@charset "utf-8";

/* base.css 
-------------------------------------*/
body {
  font-size: 16px;
  line-height: 1.8;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #000;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  body {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  a {
    word-break: break-all;
  }
}



.train {
  font-family: "Train One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}



.wrap1120 {
  width: 80%;
  max-width: 1120px;
  margin: 0 auto;
}

.wrap1080 {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}



img {
  width: 100%;
  object-fit: cover;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media only screen and (max-width: 768px) {

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

h1 {
  font-size: 32px;
}

h1 span {
  font-size: 14px;


}

h2 {
  font-size: 24px;
  margin-bottom: 1.5em;
  font-weight: bold;

}

h3 {
  font-size: 20px;
  margin-bottom: 1.5em;
  font-weight: bold;

}


@media only screen and (max-width: 768px) {
  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }
}

.en-ttl {
  font-size: min(6.8vw, 40px);
  font-family: "Train One", system-ui;
  font-weight: 400;
  color: #009A3B;
}

.ja-ttl {
  font-size: min(3.8vw, 20px);
  font-weight: bold;
}

.ttl-style {
  position: relative;
  padding-left: 1em;
  line-height: 1.4;
}

.ttl-style::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 79px;
  background: #009A3B;
  border-radius: 5px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}

.ttl-style.-mb {
  margin-bottom: 1em;
}

.border-style {
  position: relative;
}

.border-style.-top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: #009A3B;
  border-radius: 5px;
  top: -.5em;
  left: 0;
}

.border-style.-bottom::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: #009A3B;
  border-radius: 5px;
  bottom: -.5em;
  left: 0;
}


/* hover 
---------------------------------- */

a:hover {
  opacity: 0.7;
  cursor: pointer;
  transition: all .7s;
}

/* セクション余白
------------------------------------ */

.sec-p {
  margin-top: 80px;
  margin-bottom: 80px;
}

.sec-p.-first {
  margin-top: 0;
}

.sec-p.-last {
  margin-bottom: 0;
}


.sec-p64 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.sec-p40 {
  margin-top: 40px;
  margin-bottom: 40px;
}


/* 下から
------------------------------- */

.effect-fade {
  opacity: 0;
  transition: all 1.7s;
}

.effect-fade.effect-scroll {
  opacity: 1;
}


/* アコーディオン　
ーーーーーーーーーーーーーーーーーー */

.jsAccordionTitle:hover {
  cursor: pointer;
}

.accordion-content {
  display: none;

}

.accordion-content.is-open {
  display: block;
}



/* パンくずリスト　
---------------------- */

.breadcrumbs-m {
  margin: .5em 0 3.5em;
}

.breadcrumbs {
  font-weight: normal;
  color: #ACB3B8;
  font-size: 13px;
}

.breadcrumbs a {
  border-bottom: solid 1px #ACB3B8;
}


/* id位置調整 ------------ */
/* .idanchor{
  display: block;
  padding-top: 134px;
  margin-top: -134px;
}

@media(max-width: 768px) {
  .idanchor{
    display: block;
    padding-top: 58px;
    margin-top: -58px;
  }
} */



/* 404page 
------------------ */

.error-page-p {
  padding-top: 150px;
}

.error-page-m {
  margin-bottom: 10%;
}

.error-page {
  text-align: center;
}

.error-page h2 {
  margin-bottom: 20px;
}

.error-page .btnwrap {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {

  .error-page-p {
    padding-top: 90px;
  }

}