@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.f-black {
  font-weight: 900;
}

.f-bold {
  font-weight: 700;
}

.f-medium {
  font-weight: 500;
}

.f-regular {
  font-weight: 400;
}

.g-map {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 330px;
}
.g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.d-b {
  display: block;
}

.d-in-b {
  display: inline-block;
}

.d-in {
  display: inline;
}

/********************************************/
/* Images Option */
/********************************************/
.full-width {
  display: block;
  width: 100%;
}

/********************************************/
/* ttl */
/********************************************/
.top_page .txt_center {
  text-align: center;
  margin-bottom: clamp(3em, 4.1vw, 6em);
}
.top_page .txt_center .common_ttl {
  position: relative;
  display: inline-block;
  line-height: 2.1;
  font-size: clamp(2rem, 2.3vw, 2.4rem);
  letter-spacing: 0.03em;
  font-family: "novecento-sans-wide", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.top_page .txt_center .common_ttl::before {
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #f97148;
}
.top_page .txt_center .common_ttl .acronym {
  display: inline-block;
  font-size: clamp(2.4rem, 3.5vw, 3rem);
}

/********************************************/
/*
/* 共通パーツ */
/*
/********************************************/
.common_block .the_title_container {
  position: relative;
  margin-bottom: 6em;
}
.common_block .the_title_container .ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(3.6rem, 3.8vw, 4.8rem);
  font-family: "novecento-sans-wide", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.common_block .txt_base {
  padding-bottom: 6em;
}
.common_block .txt_base .bold {
  line-height: 2;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  text-align: center;
  font-weight: bold;
}

/*=============================================*/
/*  アコーディオン設定                               */
/*=============================================*/
.js-accordion {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px auto;
}

.js-ac-parent {
  position: relative;
  height: 40px;
  background-color: #000;
  line-height: 40px;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.js-ac-parent::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}
.js-ac-parent::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s;
}

.js-ac-child .flex_container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.js-ac-child .flex_container .contents {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 3em;
}
.js-ac-child .flex_container .contents:nth-child(3n) {
  margin-right: 0;
}
.js-ac-child .flex_container .contents .ttl_cnt {
  max-height: 3em;
  text-align: center;
}
.js-ac-child .flex_container .contents .ttl_cnt .ttl {
  font-size: 1.7rem;
  text-align: center;
  font-weight: bold;
}
.js-ac-child .flex_container .contents .item {
  margin-top: 3em;
}
.js-ac-child .flex_container .contents p {
  padding-top: 2em;
  font-size: 1.5rem;
  line-height: 2;
}

.js-ac-parent.is-active::before {
  opacity: 0;
}

.js-ac-parent.is-active::after {
  transform: translateY(-50%) rotate(180deg);
}

.js-ac-child {
  display: none;
  padding-top: 4em;
}

/*=============================================*/
/*media query    Tablet ipad 5.7inch */
/*=============================================*/
@media screen and (max-width: 1100px) {
  /********************************************/
  /*
  /* 共通パーツ */
  /*
  /********************************************/
  .common_block .the_title_container .ttl {
    text-align: center;
  }
  .js-ac-child .flex_container .contents {
    width: 92%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 6em;
  }
  .js-ac-child .flex_container .contents:nth-child(3n) {
    margin-right: auto;
  }
  .js-ac-child .flex_container .contents .ttl_cnt {
    max-height: 100%;
  }
}/*# sourceMappingURL=component.css.map */