@charset "UTF-8";
/*================================================
 *  ベース
 ================================================*/
/* font-size
ベース：62.5%
1rem=10px
*/
/* サイズ表
-s-small < -small < -middle < -large < -x-large
*/
/*================================================
 *  ベース定義
 ================================================*/
/* font-family */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/*================================================
 *  関数の定義
 ================================================*/
/*
マップ型で定義されていない値が呼び出された時はエラーを返す
@include responsive(pc) {}
*/
/*
桁数（デフォルト0)
round-decimal(0.333)    => 0
round-decimal(0.333, 1) => 0.3
round-decimal(0.333, 2) => 0.33
round-decimal(0.666)    => 1
round-decimal(0.666, 1) => 0.7
round-decimal(0.666, 2) => 0.67
*/
/*
第1引数に指定したいピクセル値を指定
font-size: px(16);
*/
/*
第1引数に指定したいピクセル値を指定、第2引数に基準となるルートのfont-size値（デフォルトでは10px）を指定
font-size: rem(36);
font-size: rem(36, 12);
*/
/*
第1引数に指定したいピクセル値を指定、第2引数に基準となる画面幅（デザインカンプの横幅）を指定
width: vw(40);
width: vw(40, 375);
*/
/*
第1引数に最小文字サイズ、第2引数に最大文字サイズ、第3引数に最小文字の画面幅
round-decimal（小数点以下の桁数と丸め）で桁数と丸め処理
font-size: clampRem(14, 18, 1024);
font-size: clampPx(14, 18, 1024);
*/
/*
引数に何行で省略するかを指定
@include line-clamp(1);
*/
/*
第1引数に「wrap」「column」を指定、空なら初期値
@include flexbox(wrap);
*/
/*
第1引数に「disc」「square」「number」「asterisk」を指定、空なら初期値
@include liststyle(disc);
*/
/*================================================
 *  カスタムプロパティ
 ================================================*/
@media (min-width: 768px) {
  :root {
    --max-width: 1160px;
    --max-width-small: 1024px;
    --max-width-x-small: 768px;
    --padding: 0 32px;
    --padding-value: 32px;
    --margin: 0 auto;
  }
}
@media (max-width: 767px) {
  :root {
    --max-width: 100%;
    --max-width-small: 100%;
    --max-width-x-small: 100%;
    --padding: 0 16px;
    --padding-value: 16px;
    --margin: 0 auto;
  }
}

/*================================================
 *  ヘッダー Prefix：
 ================================================*/
@media (min-width: 768px) {
  #header {
    position: static;
  }
}
@media (min-width: 768px) {
  .add-header__option {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .add-header__option {
    display: none;
  }
}

@media (min-width: 768px) {
  .add-header__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
  .add-header__menu > li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .add-header__menu > li > .-icon {
    width: 12px;
    min-width: 12px;
  }
  .add-header__menu > li > .-icon::before {
    content: "\e168";
    display: inline-block;
    color: #E6E6E6;
    font-family: "eparkfont";
    font-size: 12px;
  }
  .add-header__menu > li > .-label {
    font-size: 1.6rem;
    font-weight: 400;
    color: #109EBB;
  }
  .add-header__menu > li > .-label a {
    font-size: 1.6rem;
    font-weight: 400;
    color: #109EBB;
  }
  .add-header__menu > li > .-label a:hover {
    opacity: 0.8;
  }
}
/*================================================
 *  ファーストビュー Prefix：
 ================================================*/
@media (min-width: 768px) {
  .add-first-view {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    line-height: 0;
  }
  .add-first-view video {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 767px) {
  .add-first-view {
    width: 100%;
    line-height: 0;
  }
  .add-first-view video {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

/*================================================
 *  検索エリアコンテンツ Prefix：
 ================================================*/
@media (min-width: 768px) {
  .add-search-area__wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .add-search-area__wrapper {
    width: 100%;
    padding: 16px 10px 0;
  }
}

@media (min-width: 768px) {
  .add-search-area__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto 30px;
    padding: 24px 32px;
    border: 1px solid #109EBB;
  }
  .add-search-area__container > *:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .add-search-area__container > *:last-child {
    grid-column: 2/4;
    grid-row: 1/2;
  }
}
@media (max-width: 767px) {
  .add-search-area__container {
    width: 100%;
    padding: 16px;
    border: 1px solid #109EBB;
  }
}

@media (min-width: 768px) {
  .add-search-area__search {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .add-search-area__search {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .add-search-area__column {
    display: block !important;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .add-search-area__column {
    display: none;
    width: 100%;
  }
  .add-search-area__column.-active {
    display: block;
  }
}

@media (min-width: 768px) {
  .add-search-area__search-list {
    width: 100%;
  }
  .add-search-area__search-list > div {
    width: 100%;
    margin-bottom: 24px;
  }
  .add-search-area__search-list > div > dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-bottom: 4px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-label {
    flex: 1;
    font-size: 1.8rem;
    font-weight: 700;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-column-toggle {
    display: none;
  }
  .add-search-area__search-list > div > dt > .-column-toggle:empty {
    display: none;
  }
  .add-search-area__search-list > div > dd {
    width: 100%;
  }
  .add-search-area__search-list > div:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .add-search-area__search-list {
    width: 100%;
  }
  .add-search-area__search-list > div {
    width: 100%;
    margin-bottom: 16px;
  }
  .add-search-area__search-list > div > dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-bottom: 4px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-label {
    flex: 1;
    font-size: 1.6rem;
    font-weight: 700;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-column-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-column-toggle::after {
    display: block;
    content: "\e154";
    font-family: "eparkfont";
    font-size: 1.1rem;
    line-height: 1;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-column-toggle.-active::after {
    content: "\e152";
  }
  .add-search-area__search-list > div > dt > .-column-toggle:empty {
    display: none;
  }
  .add-search-area__search-list > div > dd {
    width: 100%;
  }
  .add-search-area__search-list > div:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .add-search-area__search-input {
    position: relative;
    width: 100%;
    border-radius: 2px;
    border: 1px solid #C2C6CE;
  }
  .add-search-area__search-input input {
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    border: none;
    background-color: #FFFFFF;
  }
  .add-search-area__search-input button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    outline: none;
    width: 38px;
    height: 100%;
  }
  .add-search-area__search-input button::before {
    display: block;
    content: "\e010";
    font-family: "eparkfont";
    font-size: 1.6rem;
    color: #DCDCDC;
  }
  .add-search-area__search-input button:hover::before {
    color: #109EBB;
  }
  .add-search-area__search-input button:focus {
    outline: none;
  }
}
@media (max-width: 767px) {
  .add-search-area__search-input {
    position: relative;
    width: 100%;
    border-radius: 2px;
    border: 1px solid #C2C6CE;
  }
  .add-search-area__search-input input {
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    border: none;
    background-color: #FFFFFF;
  }
  .add-search-area__search-input button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    outline: none;
    width: 38px;
    height: 100%;
  }
  .add-search-area__search-input button::before {
    display: block;
    content: "\e010";
    font-family: "eparkfont";
    font-size: 1.6rem;
    color: #DCDCDC;
  }
  .add-search-area__search-input button:hover::before {
    color: #109EBB;
  }
  .add-search-area__search-input button:focus {
    outline: none;
  }
}

@media (min-width: 768px) {
  .add-search-area__label {
    margin-bottom: 4px;
    font-weight: 700;
    color: #109EBB;
  }
  .add-search-area__label:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .add-search-area__label {
    display: none;
  }
}

@media (min-width: 768px) {
  .column-list-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 18px;
    width: 100%;
    margin-bottom: 0;
  }
  .column-list-area > li a {
    font-size: 1.4rem;
    color: #4d4d4d;
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .column-list-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 12px;
    width: 100%;
    margin-bottom: 0;
  }
  .column-list-area > li a {
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #109EBB;
    font-size: 1.4rem;
    color: #FFFFFF;
  }
}

/*================================================
 *  コンテンツ Prefix：
 ================================================*/
@media (min-width: 768px) {
  #content {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .add-prefectures__wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .add-prefectures__wrapper {
    width: 100%;
  }
  .add-prefectures__wrapper .footer-title {
    background-color: transparent;
    color: #00a9c8;
  }
  .add-prefectures__wrapper .footer-pref-list {
    border-top: 1px solid #E6E6E6;
    border-left: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6;
  }
  .add-prefectures__wrapper .footer-pref-list:has(+ .footer-pref-list):not(.open) .region-title {
    border-bottom: none;
  }
  .add-prefectures__wrapper .footer-pref-list:has(+ .footer-pref-list) .area-list .pref-item:last-child .pref-link {
    border-bottom: none;
  }
}

/*================================================
*  サイド Prefix：
================================================*/
@media (max-width: 767px) {
  .column-menu-list.-add-connect:not(:last-child) {
    padding-bottom: 0;
  }
}