@charset "UTF-8";
/**************************************************
    sass
***************************************************/
/* -----------------------------------------------
  Variables
--------------------------------------------------*/
/* ---------- Font --------- */
/* ---------- container --------- */
/* -----------------------------------------------
  Mixins
--------------------------------------------------*/
/* ---------- Media Query --------- */
/* ---------- CSS Hack --------- */
/* ---------- Common --------- */
/* ---------- Arrow --------- */
/* ---------- Image --------- */
/* ---------- Animation --------- */
/* -----------------------------------------------
	Functions
-------------------------------------------------- */
/**************************************************
    button
***************************************************/
.button-group {
  display: flex;
  justify-content: space-between;
  margin: 0 -0.3125rem;
}
@media (max-width: 767px) {
  .button-group {
    flex-direction: column;
  }
}
.button-group > * {
  width: 100%;
  padding: 0 0.3125rem;
  box-sizing: border-box;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .button-group > * {
    margin: 0 0 0.5rem;
    white-space: normal;
  }
}
.button-group .button-a, .button-group .form-button, .button-group .button-action > * .link, .button-action > * .button-group .link {
  min-width: 0;
  width: 100%;
}

.button-action {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 2.5rem -1.09375rem 6.25rem;
}
.button-action > * {
  margin: 0 1.09375rem;
}
.button-action > * .button-a, .button-action > * .form-button, .button-action > * .link {
  min-width: 17.0625rem;
}
@media (max-width: 767px) {
  .button-action {
    flex-direction: column;
    margin: 1.25rem -1.09375rem 3.125rem;
  }
  .button-action > * {
    margin-bottom: 0.625rem;
  }
  .button-action > * .button-a, .button-action > * .form-button, .button-action > * .link {
    display: block;
  }
}

.button-a, .form-button, .button-action > * .link {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #000000;
  box-sizing: border-box;
  background: #000000;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  padding: 1.125rem;
  transition: all 0.15s;
  min-width: 20rem;
}
@media (max-width: 767px) {
  .button-a, .form-button, .button-action > * .link {
    min-width: 0;
    width: calc(100vw - 2.5rem);
    font-size: 1rem;
  }
}
@media all and (-ms-high-contrast: none) {
  .button-a, .form-button, .button-action > * .link {
    padding: 1.2em 1em 0.8em;
  }
}
.button-a:hover, .form-button:hover, .button-action > * .link:hover {
  background: #ffffff;
  color: #000000;
}
.button-a.icon-download::before, .icon-download.form-button::before, .button-action > * .icon-download.link::before {
  background-image: url(../images/icon/icon_download_white.svg);
}
.button-a.icon-download:hover::before, .icon-download.form-button:hover::before, .button-action > * .icon-download.link:hover::before {
  background-image: url(../images/icon/icon_download.svg);
}

.backnumber-link {
  margin-left: auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  margin-top: 0.3125rem;
}
.backnumber-link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.backnumber-link:after {
  display: inline-block;
  vertical-align: -0.25rem;
  margin-left: 0.5em;
  width: 1.8125rem;
  height: 1.0625rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.25' height='17.234' viewBox='0 0 29.25 17.234'%3E%3Cpath id='Path_298' data-name='Path 298' d='M831.005,3319.162a1.133,1.133,0,0,0-.3.838,1.174,1.174,0,0,0,1.219,1.219h23.842l-5.18,5.256a1.186,1.186,0,1,0,1.676,1.675l7.313-7.312a.739.739,0,0,0,.3-.381,1.412,1.412,0,0,0,0-.914.739.739,0,0,0-.3-.381l-7.313-7.312a1.186,1.186,0,1,0-1.676,1.675l5.18,5.256H831.919A1.247,1.247,0,0,0,831.005,3319.162Z' transform='translate(-830.7 -3311.383)'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

/**************************************************
    Form
***************************************************/
.form-content {
  margin: 2.5rem auto;
}
@media (max-width: 767px) {
  .form-content {
    margin: 0 0 1.25rem;
  }
}

.form-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 1px solid #E6E6E6;
  box-sizing: border-box;
  margin: 0;
}
.form-row:not(:first-child) {
  border-top: none;
}
.form-row > .form-col:first-child {
  position: relative;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 0.875em;
  background-color: #EDEEEF;
}
.form-row > .form-col:last-child {
  box-sizing: border-box;
  text-align: left;
}
@media (min-width: 769px) {
  .form-row > .form-col:first-child {
    width: 30%;
    padding: 1.25em;
  }
  .form-row > .form-col:last-child {
    width: 70%;
    padding: 0.8em 1em;
  }
}
@media (max-width: 767px) {
  .form-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row > .form-col:first-child {
    margin-bottom: 0;
    width: 100%;
    padding: 0.8em 1em;
  }
  .form-row > .form-col:last-child {
    width: 100%;
    padding: 1em;
  }
}

.field-row {
  display: flex;
}
.field-row .field-col .text-field.-inline, .field-row .field-col .text-area.-inline, .field-row .field-col .select-box.-inline {
  width: auto;
}
.field-row .field-col .text {
  display: inline-block;
  min-width: 2em;
}
@media (max-width: 767px) {
  .field-row {
    flex-direction: column;
  }
  .field-row .field-col:not(:last-child) {
    margin-bottom: 0.5em;
  }
}

.form-inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.form-inline:not(:last-child) {
  margin-bottom: 0.5em;
}
.form-inline > .form-col {
  margin-right: 0.5em;
}

.form-table {
  width: 100%;
  margin-bottom: 1.25rem;
}
.form-table th, .form-table td {
  zoom: 1;
  border-bottom: 1px solid #dddddd;
}
.form-table th:after, .form-table td:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
.form-table th table th, .form-table th table td, .form-table td table th, .form-table td table td {
  border-bottom: none;
}
.form-table th {
  font-size: 0.94em;
  vertical-align: top;
  padding: 1em;
  width: 27%;
}
.form-table td {
  padding: 1em;
}
.form-table tr:last-child th, .form-table tr:last-child td {
  border-bottom: 0;
}

.text-field, .text-area, .select-box {
  width: 100%;
  max-width: 100%;
  font-size: 0.875rem;
  background: #fff !important;
  padding: 0.7em !important;
  box-shadow: none !important;
  background: #FFF;
  border: 1px solid #DDD;
  border-radius: 5px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .text-field, .text-area, .select-box {
    font-size: 1rem;
  }
}
.text-field.-error, .text-area.-error, .select-box.-error {
  background: #fff0f0;
  border-color: #f4c2c2;
}
.text-field.-inline, .text-area.-inline, .select-box.-inline {
  width: 20%;
  margin-right: 1em;
}
.text + .text-field.-inline, .text + .text-area.-inline, .text + .select-box.-inline {
  margin-left: 1em;
}
@media (max-width: 767px) {
  .text-field.-inline, .text-area.-inline, .select-box.-inline {
    margin-right: 0.3em;
  }
  .text + .text-field.-inline, .text + .text-area.-inline, .text + .select-box.-inline {
    margin-left: 0.3em;
  }
}
.text-field[type=text], .text-area[type=text], .select-box[type=text] {
  -webkit-appearance: none;
}
.text-field.select-box, .text-area.select-box, .select-box.select-box {
  width: auto;
  -webkit-appearance: menulist;
}
.text-field[disabled], .text-field[readonly], .text-area[disabled], .text-area[readonly], .select-box[disabled], .select-box[readonly] {
  color: #999;
  background: #DDD;
  border: 1px solid #CCC;
}
.text-field[name=postalcode1], .text-field[name=postalcode2], .text-area[name=postalcode1], .text-area[name=postalcode2], .select-box[name=postalcode1], .select-box[name=postalcode2] {
  min-width: 6em;
}
.text-field[name=telephone1], .text-field[name=telephone2], .text-field[name=telephone3], .text-field[name=fax1], .text-field[name=fax2], .text-field[name=fax3], .text-area[name=telephone1], .text-area[name=telephone2], .text-area[name=telephone3], .text-area[name=fax1], .text-area[name=fax2], .text-area[name=fax3], .select-box[name=telephone1], .select-box[name=telephone2], .select-box[name=telephone3], .select-box[name=fax1], .select-box[name=fax2], .select-box[name=fax3] {
  min-width: 5.1em;
}
.text-field[name=telephone1][name=telephone3], .text-field[name=telephone1][name=fax3], .text-field[name=telephone2][name=telephone3], .text-field[name=telephone2][name=fax3], .text-field[name=telephone3][name=telephone3], .text-field[name=telephone3][name=fax3], .text-field[name=fax1][name=telephone3], .text-field[name=fax1][name=fax3], .text-field[name=fax2][name=telephone3], .text-field[name=fax2][name=fax3], .text-field[name=fax3][name=telephone3], .text-field[name=fax3][name=fax3], .text-area[name=telephone1][name=telephone3], .text-area[name=telephone1][name=fax3], .text-area[name=telephone2][name=telephone3], .text-area[name=telephone2][name=fax3], .text-area[name=telephone3][name=telephone3], .text-area[name=telephone3][name=fax3], .text-area[name=fax1][name=telephone3], .text-area[name=fax1][name=fax3], .text-area[name=fax2][name=telephone3], .text-area[name=fax2][name=fax3], .text-area[name=fax3][name=telephone3], .text-area[name=fax3][name=fax3], .select-box[name=telephone1][name=telephone3], .select-box[name=telephone1][name=fax3], .select-box[name=telephone2][name=telephone3], .select-box[name=telephone2][name=fax3], .select-box[name=telephone3][name=telephone3], .select-box[name=telephone3][name=fax3], .select-box[name=fax1][name=telephone3], .select-box[name=fax1][name=fax3], .select-box[name=fax2][name=telephone3], .select-box[name=fax2][name=fax3], .select-box[name=fax3][name=telephone3], .select-box[name=fax3][name=fax3] {
  margin-right: 0;
}
.text-field[name=address], .text-area[name=address], .select-box[name=address] {
  margin-top: 0.5em;
}
.text-field[name=inquiry], .text-area[name=inquiry], .select-box[name=inquiry] {
  height: 8em;
  margin-top: 0.5em;
}

.radio-button, .check-box {
  margin-right: 1em;
}

.required, .any {
  float: right;
  font-size: 0.875em;
  margin: 0 1em;
}
.required.required, .any.required {
  color: #F00;
}
.required.any, .any.any {
  background: #ccc;
}

.check-agree {
  display: inline-block;
  margin: 1.5em 0 0;
  padding: 1em 2em;
  background: #EEE;
}

.form-action {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.form-action > li {
  margin: 0 10px 20px;
}

.form-button.-back {
  border: transparent;
  background: #AAA;
}
.form-button.-back:hover {
  background: #CCC;
}
.form-button.-disabled {
  pointer-events: none;
  cursor: not-allowed;
  border-color: transparent;
  background: #AAA !important;
}

.error {
  display: block;
  color: #ff0000;
  font-size: 0.88em;
  padding-top: 0.5em;
}

.form-info {
  background-color: #EDEEEF;
  padding: 35px 20px 30px;
  text-align: center;
  margin-bottom: 40px;
}
.form-info > .list {
  padding: 0;
  width: 20em;
  margin: 0 auto;
}
.form-info > .list > li {
  display: inline-block;
  font-weight: 600;
  padding-left: 1em;
  position: relative;
  line-height: 2;
}
.form-info > .list > li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .form-info > .list {
    width: auto;
    font-size: 0.875em;
  }
}

.form-notes {
  font-size: 0.75em;
  line-height: 2;
  margin-top: 6.25rem;
}
@media (max-width: 767px) {
  .form-notes {
    margin-top: 3.125rem;
  }
}

.form-tel {
  margin-top: 3.75rem;
  border: 1px solid #E6E6E6;
  padding: 35px;
  text-align: center;
}
.form-tel .heading {
  font-weight: 600;
  margin: 0;
  font-size: 1.125em;
}
.form-tel .sub {
  display: block;
  margin: 0;
  font-size: 0.875em;
}
.form-tel .tel {
  display: block;
  font-weight: 600;
  font-size: 1.75em;
  position: relative;
  display: inline-block;
  line-height: 1;
  padding-left: 50px;
  margin: 20px 0 0;
}
.form-tel .tel::before {
  content: "";
  display: block;
  width: 40px;
  height: 24px;
  background: url("/themes/adastria/images/icon/icon_freecall.png") no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.45em;
}
.form-tel .notes {
  display: block;
  font-size: 0.75em;
  margin: 15px 0 0;
}
@media (max-width: 767px) {
  .form-tel {
    margin-top: 30px;
  }
}

/**************************************************
    icon
***************************************************/
/* -----------------------------------------------
  Image
-------------------------------------------------- */
/* -----------------------------------------------

-------------------------------------------------- */
.icon-external::before, .icon-target[target=_blank]::before {
  display: inline-block;
  content: "";
  width: 14px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.324' height='14.324' viewBox='0 0 14.324 14.324'%3E%3Cpath id='checkbox_multiple_blank_line' data-name='checkbox multiple blank line' d='M3.255,3.255V.651A.629.629,0,0,1,3.444.189.629.629,0,0,1,3.906,0H12.37a.629.629,0,0,1,.462.189.629.629,0,0,1,.189.462V9.115a.645.645,0,0,1-.651.651h-2.6v2.6a.645.645,0,0,1-.651.651H.651a.629.629,0,0,1-.462-.189A.629.629,0,0,1,0,12.37V3.906a.618.618,0,0,1,.2-.462.635.635,0,0,1,.456-.189Zm1.3,0H9.115a.645.645,0,0,1,.651.651V8.464h1.953V1.3H4.558ZM1.3,4.558v7.162H8.464V4.558Zm13.022,9.766'/%3E%3C/svg%3E%0A") no-repeat 0 0;
  background-size: 14px 18px;
  margin-right: 0.5em;
  vertical-align: middle;
}
.icon-external-after::after, .anchor-list li a[target=_blank]::after, .index-card > .body > .links a[target=_blank]::after, .category-list-a .link[target=_blank]::after, .search-list .link[target=_blank]:not(.icon-pdf-after)::after, .news-list-a .link[target=_blank]:not(.icon-pdf-after)::after, .icon-target-after[target=_blank]::after {
  display: inline-block;
  content: "";
  width: 14px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.324' height='14.324' viewBox='0 0 14.324 14.324'%3E%3Cpath id='checkbox_multiple_blank_line' data-name='checkbox multiple blank line' d='M3.255,3.255V.651A.629.629,0,0,1,3.444.189.629.629,0,0,1,3.906,0H12.37a.629.629,0,0,1,.462.189.629.629,0,0,1,.189.462V9.115a.645.645,0,0,1-.651.651h-2.6v2.6a.645.645,0,0,1-.651.651H.651a.629.629,0,0,1-.462-.189A.629.629,0,0,1,0,12.37V3.906a.618.618,0,0,1,.2-.462.635.635,0,0,1,.456-.189Zm1.3,0H9.115a.645.645,0,0,1,.651.651V8.464h1.953V1.3H4.558ZM1.3,4.558v7.162H8.464V4.558Zm13.022,9.766'/%3E%3C/svg%3E%0A") no-repeat 0 0;
  background-size: 14px 18px;
  margin-left: 0.5em;
  vertical-align: middle;
}

.icon-download::before {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background: url(../images/icon/icon_download.svg) no-repeat 0 0;
  background-size: 1em 1em;
  vertical-align: middle;
  margin-right: 0.5em;
}

.icon-download-after::after {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background: url(../images/icon/icon_download.svg) no-repeat 0 0;
  background-size: 1em 1em;
  margin-right: 0;
  margin-left: 0.5em;
}

/**************************************************
  list
***************************************************/
/* -----------------------------------------------
  News List
-------------------------------------------------- */
.news-list-a .item {
  border-bottom: 1px solid #E6E6E6;
}
.news-list-a .item:first-child {
  border-top: 1px solid #E6E6E6;
}
.news-list-a .link {
  display: flex;
  text-decoration: none;
  padding: 0.625em 0;
  align-items: center;
  position: relative;
  min-height: 92px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .news-list-a .link {
    min-height: 0;
  }
}
.news-list-a .link::after {
  display: block;
  content: "";
  width: 14px;
  margin-left: 1em;
}
.news-list-a .link:hover {
  background: #f6f6f6;
}
.news-list-a .link:hover .thumbnail img {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.news-list-a .thumbnail {
  flex-shrink: 0;
  width: 4.5em;
  margin-right: 1.5em;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.news-list-a .thumbnail::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.news-list-a .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.4s ease-out;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}
@media (max-width: 767px) {
  .news-list-a .thumbnail {
    margin-right: 0.9375em;
  }
}
.news-list-a .body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-list-a .meta {
  order: -1;
  margin-bottom: 0.3125em;
  display: flex;
  align-items: center;
}
.news-list-a .meta .date {
  display: inline-block;
  font-size: 0.75em;
  color: #666666;
  margin-right: 1em;
}
.news-list-a .meta .category {
  display: inline-block;
  width: 8em;
  text-align: center;
  font-size: 0.625em;
  padding: 0.1em 1em;
  border: 1px solid #000000;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media all and (-ms-high-contrast: none) {
  .news-list-a .meta .category {
    line-height: 1;
    padding: 0.5em 1em 0.2em;
    margin-bottom: 0.5em;
  }
}
.news-list-a .title {
  font-size: 0.875em;
}
.news-list-a.-without-thumb .link {
  min-height: auto;
  padding: 1em;
}
@media (max-width: 767px) {
  .news-list-a.-without-thumb .link {
    padding: 1em 0;
  }
}
.news-list-a.-without-thumb .link:after {
  display: none;
}
.news-list-a.-without-thumb .thumbnail {
  display: none;
}
.news-list-a.-without-thumb .body {
  margin: 0;
}
@media (min-width: 769px) {
  .news-list-a.-without-thumb .body {
    flex-direction: row;
  }
  .news-list-a.-without-thumb .body .date {
    margin-right: 2em;
  }
  .news-list-a.-without-thumb .body .title {
    margin-left: 1em;
  }
}

/* -----------------------------------------------
  Search List
-------------------------------------------------- */
.search-list .item {
  border-bottom: 1px solid #E6E6E6;
}
.search-list .item:first-child {
  border-top: 1px solid #E6E6E6;
}
.search-list .link {
  display: flex;
  text-decoration: none;
  padding: 1.25em 0;
  align-items: flex-start;
  position: relative;
  min-height: 92px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .search-list .link {
    min-height: 0;
  }
}
.search-list .link::after {
  display: block;
  content: "";
  width: 14px;
  margin-left: 1em;
}
.search-list .link:hover {
  background: #f6f6f6;
}
.search-list .link:hover .thumbnail img {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.search-list .thumbnail {
  flex-shrink: 0;
  width: 4.5em;
  margin-right: 1.5em;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.search-list .thumbnail::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.search-list .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.4s ease-out;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}
@media (max-width: 767px) {
  .search-list .thumbnail {
    margin-right: 0.9375em;
  }
}
.search-list .body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.search-list .meta {
  order: -1;
  margin-bottom: 0.3125em;
  display: flex;
  align-items: center;
}
.search-list .meta .date {
  display: inline-block;
  font-size: 0.75em;
  color: #666666;
  margin-right: 1em;
}
.search-list .meta .category {
  display: inline-block;
  width: 8em;
  text-align: center;
  font-size: 0.625em;
  padding: 0.1em 1em;
  border: 1px solid #000000;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.search-list .title {
  font-weight: bold;
}
.search-list .url {
  color: #009933;
  font-size: 0.75em;
}
.search-list .summary {
  font-size: 0.75em;
}

/* -----------------------------------------------
  Category List
-------------------------------------------------- */
@media (max-width: 767px) {
  .scroll {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    display: flex;
    padding-left: 1.25rem;
  }
  .scroll::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 769px) {
  .scroll .category-list-a {
    flex-wrap: wrap;
  }
}

.category-list-a {
  margin: 0 auto 3.75rem;
  display: flex;
  justify-content: center;
}
.category-list-a .list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.category-list-a .item {
  margin: 0 0.9375em;
}
.category-list-a .link {
  position: relative;
  display: block;
  font-weight: bold;
  border-bottom: 1px solid #E2E2E6;
  padding: 0.7142857143em 0;
  text-decoration: none;
  white-space: nowrap;
}
.category-list-a .link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: 0.15s all;
  width: 0;
  height: 2px;
  background: #000;
}
.category-list-a .link:hover::before, .category-list-a .link.-active::before {
  width: 100%;
}
@media (max-width: 767px) {
  .category-list-a {
    margin-bottom: 1.875em;
  }
  .category-list-a .item {
    margin: 0 0.5em;
  }
  .category-list-a .link {
    font-size: 0.875em;
  }
}
@media all and (-ms-high-contrast: none) {
  .category-list-a {
    margin: 0 -500% 3.75rem;
  }
}

.category-list-c {
  display: flex;
  flex-wrap: wrap;
  margin: 3.125rem -0.375rem 2.5rem;
}
.category-list-c li {
  width: 25%;
  padding: 0 6px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .category-list-c li {
    width: 50%;
  }
}
.category-list-c .link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 5rem;
  border: 1px solid #E9E9EC;
  box-sizing: border-box;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.15s;
}
@media (max-width: 767px) {
  .category-list-c .link {
    width: 100%;
    font-size: 0.75rem;
  }
}
@media all and (-ms-high-contrast: none) {
  .category-list-c .link {
    min-height: 0;
    height: 80px;
  }
}
@media (min-width: 769px) {
  .category-list-c .link:hover {
    background: #E9E9EC;
  }
}
@media (max-width: 767px) {
  .category-list-c {
    margin: 1.25rem -0.375rem 0;
  }
}

/* -----------------------------------------------
  Index List
-------------------------------------------------- */
.index-list {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.75rem;
  padding-right: 1px;
}
.index-list > .item,
.index-list > .index-card {
  width: calc(33.33% - 1px);
  margin-bottom: 0.625rem;
}
@media (max-width: 767px) {
  .index-list > .item,
.index-list > .index-card {
    width: calc(50% - 1px);
  }
}

.index-card > .image {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.index-card > .image::before {
  content: "";
  display: block;
  padding-bottom: 66.6%;
}
.index-card > .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.4s ease-out;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  width: auto;
  max-width: none;
  height: 100%;
}
.index-card > .image a:hover img {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.index-card > .image a:after {
  display: none !important;
}
.index-card > .body {
  padding: 1.25em;
}
@media (max-width: 767px) {
  .index-card > .body {
    padding: 0.3125em 0.625em;
  }
}
.index-card > .body > .title {
  margin: 0 0 0.3125em;
}
.index-card > .body > .title > a {
  font-size: 1.125em;
  text-decoration: none;
}
.index-card > .body > .title > a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .index-card > .body > .title > a {
    font-size: 0.875rem;
  }
}
.index-card > .body > .links a {
  font-size: 0.875em;
}
@media (max-width: 767px) {
  .acms-grid > .index-list {
    margin: 2.5rem -1.25rem 0;
  }
}
@media (max-width: 767px) {
  .acms-grid > .column-module .index-list {
    margin: 2.5rem -1.25rem 0;
  }
}
.acms-grid > .column-module:first-child .index-list {
  margin-top: 0;
}

/* -----------------------------------------------
  Document List
-------------------------------------------------- */
.document-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1.875rem;
}
.document-list.-separate {
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #E2E2E6;
}
.document-list.-column1 > .item {
  width: 100%;
}
.document-list.-column2 > .item {
  width: calc(100% / 2);
}
.document-list.-column3 > .item {
  width: calc(100% / 3);
}
.document-list > .item {
  width: calc(100% / 3);
  margin-bottom: 0.625em;
  box-sizing: border-box;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .document-list > .item {
    width: 100% !important;
  }
}
.document-list > .item.-full {
  width: 100%;
}

/* -----------------------------------------------
  Text List
-------------------------------------------------- */
.acms-grid .plain {
  margin-left: 1.7em;
}

.list-a li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 1em;
}
.list-a li:before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #000000;
  content: "";
}

.bracket-list {
  counter-reset: bracket-list;
  margin-bottom: 1.25rem;
}
.bracket-list li {
  text-indent: -1.7em;
  padding-left: 1.7em;
}
.bracket-list li:before {
  padding-right: 0.4166666667em;
  white-space: nowrap;
  counter-increment: bracket-list;
  content: "(" counter(bracket-list) ")";
}
.acms-grid .bracket-list {
  margin-left: 10px;
}

.annotate-list {
  counter-reset: annotate-list;
  margin-bottom: 1.25rem;
}
.annotate-list li {
  font-size: 0.75em;
}
.annotate-list li:before {
  padding-right: 0.4166666667em;
  white-space: nowrap;
  counter-increment: annotate-list;
  content: "※ " counter(annotate-list);
}
.acms-grid .annotate-list {
  margin-left: 10px;
}
.annotate-list.-unordered li::before {
  content: "※ ";
}

.anchor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 10px 3.75rem;
}
.anchor-list.-center {
  justify-content: center;
}
@media (max-width: 767px) {
  .anchor-list {
    display: block;
    overflow: hidden;
  }
}
.anchor-list li {
  position: relative;
  min-width: calc(100% / 6);
  margin-bottom: 0.625em;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .anchor-list li {
    float: left;
    min-width: calc(100% / 4);
    font-size: 0.875em;
  }
}
.anchor-list li::before, .anchor-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1em;
  background: #707070;
  transform: translateY(-50%);
}
.anchor-list li::after {
  left: auto;
  right: -1px;
}
.anchor-list li a {
  display: block;
  text-align: center;
  padding: 0 1em;
  white-space: nowrap;
}
.anchor-list li a.-active {
  font-weight: bold;
  text-decoration: none;
}

.faq-list {
  border-top: 1px solid #E2E2E6;
  margin-bottom: 3.75rem;
}
.faq-list dt, .faq-list dd {
  border-bottom: 1px solid #E2E2E6;
  position: relative;
  padding-left: 2.625em;
  padding-right: 3.125em;
}
.faq-list dt:before, .faq-list dd:before {
  font-size: 1.75em;
  position: absolute;
  top: 0.8214285714em;
  left: 0;
  font-family: "a-otf-midashi-go-mb31-pr6n", sans-serif;
  padding-right: 0.7142857143em;
  line-height: 1;
}
.faq-list dt {
  cursor: pointer;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  transition: all 0.15s;
}
.faq-list dt:hover {
  background: #E2E2E6;
}
.faq-list dt:before {
  content: "Q";
}
.faq-list dt:after {
  position: absolute;
  top: 2em;
  right: 1.25em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transition: all 0.15s;
  transform: rotate(135deg);
  content: "";
}
.faq-list dt.-active:after {
  top: 2.375em;
  transform: rotate(-45deg);
  transition: all 0.15s;
}
.faq-list dd {
  display: none;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.faq-list dd:before {
  content: "A";
}

.accordion-list {
  margin-bottom: 3.75rem;
}
.accordion-list dt, .accordion-list dd {
  border-bottom: 1px solid #E2E2E6;
  position: relative;
  padding: 1.5em 0;
}
.accordion-list dt {
  cursor: pointer;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  transition: all 0.15s;
  font-weight: bold;
}
.accordion-list dt:hover {
  background: #E2E2E6;
}
.accordion-list dt:after {
  position: absolute;
  top: 2em;
  right: 1.25em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transition: all 0.15s;
  transform: rotate(135deg);
  content: "";
}
.accordion-list dt.-active:after {
  top: 2.375em;
  transform: rotate(-45deg);
  transition: all 0.15s;
}
.accordion-list dd {
  display: none;
}

/**************************************************
    Table
***************************************************/
.table-a {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #E6E6E6;
  margin: 0 0 1.25rem;
}
.table-a th, .table-a td {
  font-size: 0.875em;
  border: 1px solid #E6E6E6;
  vertical-align: top;
  padding: 1em 1.5em;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .table-a th, .table-a td {
    padding: 0.5em 1em;
  }
}
.table-a th {
  text-align: center;
  font-weight: normal;
  background: #EDEEEF;
}
@media (min-width: 769px) {
  .table-a th {
    width: 25%;
  }
}

.table-b, .shop-detail .shop-information, .shop-list {
  border-collapse: collapse;
  border-top: 1px solid #E2E2E6;
  margin: 0 0 1.25rem;
}
.table-b th, .shop-detail .shop-information th, .shop-list th, .table-b td, .shop-detail .shop-information td, .shop-list td {
  padding: 1em;
  font-size: 0.875em;
  border-bottom: 1px solid #E2E2E6;
}
.table-b th, .shop-detail .shop-information th, .shop-list th {
  text-align: left;
  padding-left: 0;
}

.table-c th {
  text-align: left;
  width: 50%;
  font-size: 1em;
  font-weight: bold;
}
.table-c td {
  width: 50%;
  font-size: 0.875em;
  padding: 0.5em 0;
}
@media (max-width: 767px) {
  .table-c tr, .table-c th, .table-c td {
    display: block;
    width: auto;
  }
}

/**************************************************
  Shop
***************************************************/
/* -----------------------------------------------
  Search Index
-------------------------------------------------- */
#shop .intro-text {
  text-align: center;
  font-size: 0.875em;
  margin-bottom: 0;
}
@media (min-width: 769px) {
  #shop .intro-text br {
    display: none;
  }
}
#shop .category-list-a {
  margin: 1.875rem 0;
}
@media (max-width: 767px) {
  #shop .category-list-a {
    margin: 1.25rem 0 2.5rem;
  }
}

.checkbox-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.3125rem;
}
.checkbox-list > .item {
  width: 20%;
  box-sizing: border-box;
  margin-bottom: 0.625rem;
  padding: 0 0.3125rem;
}
@media (max-width: 767px) {
  .checkbox-list > .item {
    width: 33.33%;
  }
}

.area-checkbox, .brand-checkbox {
  box-sizing: border-box;
  display: block;
  cursor: pointer;
  position: relative;
  height: 100%;
}
.area-checkbox:hover .name, .brand-checkbox:hover .name, .area-checkbox:hover .figure, .brand-checkbox:hover .figure {
  border-color: #999999;
}
.area-checkbox input, .brand-checkbox input {
  position: absolute;
  left: 0;
  outline: 0;
  opacity: 0;
}
.area-checkbox input:checked + .name, .brand-checkbox input:checked + .name, .area-checkbox input:checked + .figure, .brand-checkbox input:checked + .figure {
  border-color: #999999;
  background: #F0F0F0;
}

.brand-checkbox {
  text-decoration: none;
}
.brand-checkbox .figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 7em;
  padding: 0.875em;
  box-sizing: border-box;
  border: 1px solid #E9E9EC;
}
@media (max-width: 767px) {
  .brand-checkbox .figure {
    min-height: 4em;
  }
}
.brand-checkbox .figure .image {
  height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
}
@media (max-width: 767px) {
  .brand-checkbox .figure .image {
    height: 1.5em;
  }
}
@media all and (-ms-high-contrast: none) {
  .brand-checkbox .figure .image img {
    width: 100px;
  }
}
.brand-checkbox .figure .image img {
  max-height: 100%;
}
.brand-checkbox .figure .text {
  display: block;
  font-size: 0.75em;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .brand-checkbox .figure .text {
    font-size: 0.5em;
  }
}

.area-checkbox .name {
  display: block;
  text-align: center;
  border: 1px solid #E9E9EC;
  font-size: 0.75em;
  padding: 1em;
}

/* -----------------------------------------------
  Search Result
-------------------------------------------------- */
#shop .anchor-list {
  margin-bottom: 1.25rem;
}

/* ----------- list ---------- */
.shop-list {
  width: 100%;
}
.shop-list td {
  text-align: left;
  box-sizing: border-box;
  padding: 1em 0.5em;
}
.shop-list td:first-child {
  width: 35%;
  padding-left: 0;
}
.shop-list td:nth-child(2) {
  width: 36%;
}
@media (max-width: 767px) {
  .shop-list td:nth-child(2) {
    display: none;
  }
}
.shop-list td:nth-child(3) {
  width: 15%;
}
@media (max-width: 767px) {
  .shop-list td:nth-child(3) {
    display: none;
  }
}
.shop-list td:last-child {
  width: 14%;
  padding-right: 0;
}
@media (max-width: 767px) {
  .shop-list td:last-child {
    display: none;
  }
}

/* -----------------------------------------------
  Shop Detail
-------------------------------------------------- */
/* ----------- map ---------- */
.shop-map {
  width: 100%;
  height: 25em;
}
@media (max-width: 767px) {
  .shop-map {
    height: 14.6875em;
  }
}
.shop-map iframe {
  width: 100%;
  height: 100%;
}
.shop-map img {
  max-width: none;
}

/* ----------- detail ---------- */
.shop-detail {
  margin-top: 1.875rem;
}
.shop-detail .shop-logo {
  margin-bottom: 1.25rem;
}
.shop-detail .shop-logo img, .shop-detail .shop-logo svg {
  width: auto;
  max-width: 22%;
  min-height: 50px;
}
@media all and (-ms-high-contrast: none) {
  .shop-detail .shop-logo img, .shop-detail .shop-logo svg {
    max-width: none;
    height: 50px;
  }
}
.shop-detail .shop-information {
  width: 100%;
}
.shop-detail .shop-information th, .shop-detail .shop-information td {
  padding: 1.4285714286em 0;
}
@media (max-width: 767px) {
  .shop-detail .shop-information th, .shop-detail .shop-information td {
    display: block;
  }
}
.shop-detail .shop-information th {
  text-align: left;
}
@media (min-width: 769px) {
  .shop-detail .shop-information th {
    width: 33%;
  }
}
@media (max-width: 767px) {
  .shop-detail .shop-information th {
    width: auto;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .shop-detail .shop-information td {
    padding-top: 0;
  }
}

/* ----------- common ---------- */
.genre-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
}
.genre-list li {
  display: inline-block;
  font-size: 0.8571428571em;
  background: #E2E2E6;
  padding: 0.2em 0.5em;
  margin-right: 0.5em;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
}
.link-list > li {
  margin-right: 2em;
}

/*----------------------------------------
  base
----------------------------------------*/
.acms-box-medium {
  display: none;
}

#global-header {
  border-bottom: 1px solid #C0C0C0;
  box-sizing: border-box;
}
#global-header a {
  text-decoration: none;
}

#global-footer a {
  text-decoration: none;
}

#contents-wrap {
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 520px;
}
#contents-wrap .left-area {
  width: 344px;
  float: left;
}
#contents-wrap .left-area h2 {
  color: #414042;
  font-size: 2.06rem;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}
#contents-wrap .left-area .text {
  font-size: 1.2rem;
  color: #C0C0C0;
  letter-spacing: 0.75px;
  line-height: 20px;
  margin-top: 20px;
}
#contents-wrap .right-area {
  width: 656px;
  float: left;
  margin-top: -5px;
  font-size: 1.4rem;
  line-height: 2;
}

.button-a, .button-action > * .link, .form-button {
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif;
}

/*----------------------------------------
  Shop
----------------------------------------*/
#elementrule-shop .heading-a {
  font-size: 2rem;
  letter-spacing: 1.25px;
  line-height: 30px;
  margin-bottom: 30px;
}
#elementrule-shop .heading-b {
  margin: 4rem 0 10px 0;
  font-size: 128.5714285714%;
}
#elementrule-shop .shop-action {
  display: none;
}
#elementrule-shop .shop-list td:nth-child(3) {
  white-space: nowrap;
}
#elementrule-shop .shop-list td:last-child {
  width: 11%;
}
#elementrule-shop .shop-information {
  border-top: 0;
}
#elementrule-shop .shop-information th {
  width: 25%;
}
#elementrule-shop .shop-information th, #elementrule-shop .shop-information td {
  font-size: 1.4rem;
  padding: 0.5em 0;
  border-bottom: 0;
}
#elementrule-shop .shop-index {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 1px;
}
#elementrule-shop .shop-index a {
  text-decoration: underline;
}

/*----------------------------------------
  contact
----------------------------------------*/
#elementrule-contact p {
  margin-bottom: 2rem;
}
#elementrule-contact .form-row {
  flex-direction: column;
  border: 0;
}
#elementrule-contact .form-row .form-col {
  width: auto;
  padding: 0;
  background: none;
}
#elementrule-contact .form-row .form-col:first-child {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
#elementrule-contact .form-row .form-col:first-child::before {
  color: #000;
  content: "●";
  margin-right: 5px;
}
#elementrule-contact .form-content {
  margin-top: 0;
}
#elementrule-contact .text-field, #elementrule-contact .text-area, #elementrule-contact .select-box {
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif;
  padding: 0.3em;
  border: 1px solid #888888;
  border-radius: 3px;
}
@media (max-width: 767px) {
  #elementrule-contact .text-field, #elementrule-contact .text-area, #elementrule-contact .select-box {
    font-size: 1.6rem;
  }
}
#elementrule-contact .text-field.-inline, #elementrule-contact .text-area.-inline, #elementrule-contact .select-box.-inline {
  margin-right: 0.5em;
}
#elementrule-contact .text + .text-field.-inline,
#elementrule-contact .text + .text-area.-inline,
#elementrule-contact .text + .select-box.-inline {
  margin-left: 0.5em;
}
#elementrule-contact .required, #elementrule-contact .any {
  float: none;
  margin: 0;
}
#elementrule-contact .form-button.-disabled {
  pointer-events: none;
  cursor: not-allowed;
  border-color: transparent;
  background: #AAA !important;
}
#elementrule-contact .customer-service {
  border: 1px solid #CCC;
  padding: 1em 1.5em 0.5em;
}
#elementrule-contact .customer-service .h4 {
  font-size: 1.4rem;
  font-weight: bold;
}
#elementrule-contact .customer-service p {
  margin: 0;
}
#elementrule-contact .customer-service p .tel {
  vertical-align: middle;
  font-size: 133.3333333333%;
  font-weight: bold;
  margin-left: 15px;
  margin-right: 10px;
  padding-left: 40px;
  background: url(../../adastria/images/icon/icon_freecall.png) no-repeat 0 50%;
}
#elementrule-contact .customer-service p ._fonts {
  font-size: 75%;
}