/*other.css*/

/*----------------
common
------------------*/

main,
footer,
.menu-container {
    width: 100%;
    min-width: 1000px;
}

.sub-inner {
    width: 1000px;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.sub-entry {
    background-color: #fafafa;
    padding-top: 48px;
    padding-bottom: 50px;
}

.sub-entry__title {
    font-size: 3rem;
    font-weight: 600;
}

.sub-entry__text {
    margin-top: 30px;
}

dl.news_list {
    margin-bottom: 0;
}

/*----------------
pagination
------------------*/

.pagination_pc {
    margin-top: 55px;
}

.pagination_sp {
    display: none;
}

.pagination__list {
    display: flex;
    justify-content: center;
}

.pagination__list li:not(:first-child) {
    margin-left: 5px;
}

.pagination__link,
.pagination__link--prev,
.pagination__link--next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: solid 1px #d6d6d6;
    background-color: #fff;
}

.pagination__link.is-active {
    color: #fff;
    background-color: #005bac;
}

.pagination__link--prev,
.pagination__link--next {
    position: relative;
}

.pagination__link--prev::before,
.pagination__link--next::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 16px;
    top: 50%;
}

.pagination__link--prev:before {
    /* background: url(../img/common/arrow.png) no-repeat center center / cover; */
    background: url(/img/common/arrow.png) no-repeat center center / cover;
    transform: translateY(-50%);
}

.pagination__link--next::before {
    /* background: url(../img/common/arrow.png) no-repeat center center / cover; */
    background: url(/img/common/arrow.png) no-repeat center center / cover;
    transform: rotate(180deg) translateY(40%);
}


/*----------------
News Page
------------------*/

dl.news_list.more_info_list {
    margin-top: 0;
}

.select_boxes {
    display: flex;
    margin-bottom: 30px;
}

.cate_select {
    margin-left: 20px;
}

.news_select {
    overflow: hidden;
    width: 360px;
    height: 60px;
    background-color: #fff;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    position: relative;
}

.news_select select {
    width: 100%;
    height: 100%;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.news_select select::-ms-expand {
    display: none;
}

.news_select::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #D43238;
    border-right: solid 2px #D43238;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -3px;
}

/*--------------------------
other_01
----------------------------*/

.sub-heading {
  padding-left: 19px;
  font-size: 2.2rem;
  font-weight: 600;
  position: relative;
}

.sub-heading::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 4px;
  aspect-ratio: 4/42;
  content: "";
  background-image: url(/img/common/subtitle.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

@media screen and (min-width:768px) {
    .sub-heading:not(:first-child) {
        margin-top: 60px;
    }
}

.text-right {
  text-align: right;
}

.bold {
  font-weight: 600;
}

.arrow {
  position: relative;
}

.arrow::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  border: 4px solid transparent;
  border-left: 6px solid #005bac;
}

.title-border {
  position: relative;
}

.title-border::after {
  position: absolute;
  content: "";
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #005bac;
}

.pc-none {
  display: none;
}

.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}

.pagenation__prev,
.pagenation__number,
.pagenation__next {
  position: relative;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background-color: #fff;
}

.pagination__prev-arrow,
.pagination__next-arrow {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.pagination__prev-arrow {
  background-image: url(/img/common/prev-arrow.png);
}

.pagenation__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
}

.pagenation__number.current {
  background-color: #005bac;
  color: #fff;
  font-weight: 600;
}

.pagination__next-arrow {
  background-image: url(/img/common/next-arrow.png);
}

.faq-item {
  padding-bottom: 12px;
  border-bottom: 2px dotted #cccccc;
}

.faq-item:not(:last-child) {
  margin-bottom: 24px;
}

.faq-item__text dt,
.faq-item__text dd {
  position: relative;
  padding-left: 36px;
}

.faq-item__text dt {
  margin-bottom: 10px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.faq-item__text dt::before,
.faq-item__text dd::before {
  position: absolute;
  top: -8px;
  left: 0;
  width: 23px;
  height: 40px;
  font-size: 3rem;
  font-weight: 600;
}

.faq-item__text dt::before {
  content: "Q";
  color: #00b2df;
}

.faq-item__text dd::before {
  content: "A";
  color: #ed7274;
}

/*----------------
お知らせページひな型
------------------*/
.news-detail {
  background-color: #fafafa;
  padding-top: 40px;
  padding-bottom: 80px;
}

.news-detail__entry div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-detail__entry .category {
    font-size: 1.2rem;
    font-weight: 500;
    color: #827763;
    border: 1px solid #827763;
    border-radius: 14px;
    padding: 2px 20px;
    text-align: center;
    line-height: normal;
}

.news-detail__entry time {
  color: #707070;
  padding-top: 2px;
  font-size: 1.6rem;
}

.news-detail__entry h1 {
  margin-top: 17px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.6;
}

.news-detail__contents {
  margin-top: 27px;
  padding: 50px 5% 50px 5%;
  background-color: #fff;
  border-radius: 20px;
}

.news-detail__contents .small {
  font-size: 1.4rem;
}

.news-detail__contents .title {
  margin-top: 31px;
  font-weight: 600;
  font-size: 1.8rem;
    margin-bottom: 20px;
}

.news-detail__contents > a {
  color: #008ae0;
  display: block;
}

.news-detail__contents p a {
  color: #008ae0;
  display: inline;
}

.news-detail__contents .reference {
  margin-top: 43px;
  position: relative;
}

.news-detail__contents .reference::before {
  content: "▼";
}

.news-detail__contents figure {
  margin-top: 38px;
}

.news-detail__contents img {
  width: 100%;
  aspect-ratio: 858/482;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-detail__contents h2 {
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  margin-top: 65px;
}

.news-detail__contents h2::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #005bac;
}

.news-detail__contents h3 {
  margin-top: 30px;
  padding-left: 20px;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
}

.news-detail__contents h3::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  content: "";
  background-color: #005bac;
  width: 16px;
  height: 16px;
  border-radius: 1px;
}

.news-detail__contents p,
.news-detail__contents span,
.news-detail__contents a,
.news-detail__contents ul li,
.news-detail__contents ol li,
.news-detail__contents dl dt,
.news-detail__contents dl dd {
    line-height: 1.6;
}

.news-detail__contents p {
    margin-top: 12px;
}

.news-detail__contents table {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.news-detail__contents table thead {
    background-color: #e1ebeb;
}

.news-detail__contents table th,
.news-detail__contents table td {
    font-size: 1.4rem;
    color: #212121;
    padding: 8px 21px 9px;
    border: 1px solid #d6d6d6;
    width: 252px;
}

.news-detail__contents .wide_table_box table {
    table-layout: fixed;
}


/* スクロールバー全体を対象にする */
.wide_table_box::-webkit-scrollbar {
    width: 10px; /* スクロールバーの幅 */
    height: 10px; /* スクロールバーの高さ */
}

/* スクロールバーの背景部分をカスタマイズ */
.wide_table_box::-webkit-scrollbar-track {
    background: #f1f1f1; /* スクロールバーの背景色 */
    border-radius: 5px; /* 角丸にする */
}

/* スクロールバーの操作部分をカスタマイズ */
.wide_table_box::-webkit-scrollbar-thumb {
    background: #888; /* スクロールバーの操作部分の背景色 */
    border-radius: 5px; /* 角丸にする */
}

/* スクロールバーの操作部分にホバーした時のスタイル */
.wide_table_box::-webkit-scrollbar-thumb:hover {
    background: #555; /* ホバー時のスクロールバーの操作部分の背景色 */
}

.news-detail__contents small {
    margin-top: 20px;
    display: block;
}

.news-detail__contents small a {
    color: #008ae0;
    border-bottom: 1px solid #008ae0;
}

.news-detail__contents ul {
    margin-top: 28px;
}

.news-detail__contents li {
    position: relative;
}

.news-detail__contents li:not(:first-child) {
    margin-top: 5px;
}

.news-detail__contents li::before {
    content: "・";
}

.news-detail__contents .band {
    margin-top: 25px;
    background-color: #f4f4f4;
    padding: 17px 20px;
}

.news-detail__contents .band h4 {
    font-size: 1.8rem;
    font-weight: 600;
}

.news-detail__contents .band p {
  margin-top: 9px;
}

a.news-detail__link {
    width: 360px;
    height: 60px;
    padding: 0;
    background-color: #fff;
    margin: 50px auto 0;
    position: relative;
    border-radius: 6px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.news-detail__link span {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
}

a.news-detail__link::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1.5px #d43238;
  border-right: solid 1.5px #d43238;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  top: 0;
  left: 16px;
  bottom: 0;
  margin: auto;
}

.news-detail__contents dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}

.news-detail__contents dt {
    font-weight: 600;
    margin-right: 10px;
}

.news-detail__contents dt {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/*----------------
個人情報保護ポリシー
------------------*/

.privacy-main {
  padding-top: 60px;
  padding-bottom: 68px;
}

.privacy-main a {
  color: #008ae0;
}

.privacy-contents:not(:first-child) {
  margin-top: 60px;
}

.privacy-contents__description {
  margin-top: 20px;
}

.privacy-contents__description div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.privacy-contents figure {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
}

.privacy-contents figure img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.privacy-contents ol {
  margin-top: 35px;
}

.privacy-contents ol > li h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.privacy-contents ol > li p {
  margin-top: 10px;
  padding-left: 15px;
}

.privacy-contents ol > li:not(:first-child) {
  margin-top: 33px;
}

.privacy-contents ol > li > ul {
  margin-top: 50px;
}

.privacy-contents ol > li > ol {
  margin-top: 16px;
  padding-left: 20px;
}

.privacy-contents ol > li > ol > li:not(:first-child) {
  margin-top: 15px;
  margin-top: 0;
}

.privacy-contents ol > li > ol > li > ul {
  margin-top: 8px;
}

.dot li {
  position: relative;
}

.dot li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0px;
}

.privacy-contents .privacy-contents__text p {
  margin-top: 40px;
  padding-left: 0;
}

.privacy-contents .privacy-contents__text .dot {
  padding-left: 16px;
}

.privacy-contents .privacy-contents__text .dot li::before {
  left: 0;
}

.privacy-contents .text-right {
  margin-top: 25px;
}

.privacy-contents .list-ja li > ul {
  padding-left: 0;
}

.privacy-contents .list-ja li > ul > li {
  padding-left: 0;
}

.privacy-contents .list-ja li > ul > li > ul {
  margin-top: 5px;
  padding-left: 30px;
}

.privacy-contents .text-indent {
  text-indent: -1em;
  padding-left: 1em;
  padding-left: 35px;
}

.privacy-contents .dot li {
  padding-left: 20px;
}

.privacy-contact {
  margin-top: 30px;
}

.privacy-contact p {
  margin-top: 0;
}

.privacy-contact ol {
  margin-top: 13px;
}

.privacy-contact ol > li:not(:first-child) {
  margin-top: 0;
}

.privacy-contact ol > li span {
  margin-top: 16px;
  display: block;
  text-indent: 0;
}

/*----------------
旅行業登録票・約款
------------------*/
.yakkan-main {
  padding-top: 65px;
  padding-bottom: 85.5px;
}

.yakkan-contents__section + .yakkan-contents__section {
  margin-top: 60px;
}

.yakkan-contents__table {
  margin-top: 30px;
}

.yakkan-contents__table th,
td {
  border: solid 1px #cccccc;
}

.yakkan-contents__table th {
  background-color: #e1ebeb;
  width: 26.3048%;
  vertical-align: middle;
  text-align: center;
  padding: 14px 13px 9px;
  font-size: 1.6rem;
  font-weight: 400;
}

.yakkan-contents__table td {
  padding: 14px 20px 9px;
  font-size: 1.6rem;
  font-weight: 400;
}

.yakkan-contents__list {
  margin-top: 30px;
  padding-left: 18px;
}

.yakkan-contents__item {
  position: relative;
  line-height: 1.875;
}

.yakkan-contents__section a {
  color: #009ccd;
  line-height: 1.875;
}

.yakkan-contents__item::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -21px;
  border: 5px solid transparent;
  border-left: 8px solid #005bac;
}

.yakkan-contents__box {
  margin-top: 33px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.yakkan-contents__img01 {
  width: 158px;
}

.yakkan-contents__img01 img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 158/39;
  -o-object-fit: contain;
  object-fit: contain;
}

.yakkan-contents__img02 {
  width: 40px;
  margin-top: 23px;
}

.yakkan-contents__img02 img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 40/41;
  -o-object-fit: contain;
  object-fit: contain;
}

.yakkan-contents__img03 {
  width: 49px;
  margin-top: 23px;
}

.yakkan-contents__img03 img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 49/59;
  -o-object-fit: contain;
  object-fit: contain;
}

.yakkan-contents__text {
  margin-top: 30px;
}

/*--------------------------------
東武トップツアーズ旅行販売サイト利用規約
----------------------------------*/
.web_kiyaku-main {
  padding-top: 60px;
  padding-bottom: 89.5px;
}

.web_kiyaku-main__section + .web_kiyaku-main__section {
  margin-top: 50px;
}

.web_kiyaku-main__list {
  margin-top: 25px;
}

.web_kiyaku-main__list-num {
  margin-top: 10px;
  margin-bottom: 15px;
  counter-reset: item;
  text-indent: -35px;
  padding-left: 35px;
}

.web_kiyaku-main__item-num::before {
  counter-increment: item;
  content: "(" counter(item) ")";
  margin-right: 10px;
}

.web_kiyaku-main__date {
  margin-top: 38px;
}

/*----------------
サイトマップ
------------------*/
.map-main {
  padding-top: 60px;
  padding-bottom: 77.5px;
}

.map-main__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 37px;
}

.map-main__article + .map-main__article {
  margin-top: 51px;
}

.map-main__title {
  padding-left: 18px;
}

.map-main__title a {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
}

.map-main__sub-title {
  margin-top: 25.5px;
  padding-left: 18px;
}

.map-main__sub-title a {
  font-weight: 600;
}

.map-main__item {
  padding-left: 35px;
  margin-top: 5px;
}

.map-main__item.arrow::before {
  left: 18px;
  top: 7px;
  -webkit-transform: initial;
  transform: initial;
}

.map-main__item a {
  color: #008ae0;
  -webkit-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}

.map-main__title a,
.map-main__sub-title a {
  -webkit-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}

.map-main__title a:hover,
.map-main__sub-title a:hover {
  color: #005bac;
  opacity: 1;
}

.map-main__title + .map-main__items {
  margin-top: 25px;
}

.map-main__sub-title + .map-main__items {
  margin-top: 18px;
}

/*----------------
特集一覧ページ
------------------*/
.feature-fv {
  background-color: #fafafa;
  overflow: hidden;
}

.feature-fv__contents {
  display: grid;
  grid-template-columns: 1fr 61.9117647059%;
  gap: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.feature-fv__description {
    display: grid;
    gap: 20px;
    order: 1;
}

.feature-fv__title {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.6;
}

.feature-fv__text {
    line-height: 1.6;
}

.feature-fv__image {
    margin-right: calc(61.9117647059% - 50vw);
    aspect-ratio: 842/474;
    max-height: 474px;
    order: 2;
}

.feature-fv__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.feature-main {
    padding-block: 80px 60px;
}

.feature-main__items {
    margin-bottom: 60px;
}

.feature-main__item {
    padding: 40px 20px 40px 20px;
}

.feature-main__item:nth-child(2n) {
    background-color: #f4f4f4;
}

.feature-main__item-block {
    display: block;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

/*
.feature-main__item:not(:last-child) {
  margin-bottom: 60px;
}
*/

.feature-main__item-content {
  display: grid;
  grid-template-columns: 32.1503131524% 1fr;
  gap: 30px;
}

.feature-main__image {
  width: 100%;
  aspect-ratio: 308/169;
}

.feature-main__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.feature-main__title {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.8rem;
}

.feature-main__text {
  line-height: 1.6;
}

/*----------------
支店企画一覧ページ
------------------*/
.shop-fv__image {
  width: 100%;
  aspect-ratio: 1440/400;
}

.shop-fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.shop-description {
    padding-top: 55px;
    padding-bottom: 55px;
}

.shop-description__content {
  text-align: center;
}

.shop-description__main {
  margin-bottom: 22px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}

.shop-description__sub {
  font-size: 1.4rem;
  line-height: 1.6;
}

.shop-category {
  overflow: hidden;
  width: 100%;
  padding-block: 30px;
  background-color: #e1ebeb;
}

.shop-category__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.shop-category__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.shop-category__logo {
  position: relative;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fff;
}

.shop-category__logo::before {
  position: absolute;
  content: "";
  width: 26px;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.shop-category__logo.event::before,
.shop-main__title.event::before {
  background-image: url(/img/shop/shop-category-event.png);
}

.shop-category__logo.spectating::before,
.shop-main__title.spectating::before {
  background-image: url(/img/shop/shop-category-spectating.png);
}

.shop-category__logo.marathon::before,
.shop-main__title.marathon::before {
  background-image: url(/img/shop/shop-category-marathon.png);
}

.shop-category__logo.bicycle::before,
.shop-main__title.bicycle::before {
  background-image: url(/img/shop/shop-category-bicycle.png);
}

.shop-category__logo.wine::before,
.shop-main__title.wine::before {
  background-image: url(/img/shop/shop-category-wine.png);
}

.shop-category__logo.pilgrim::before,
.shop-main__title.pilgrim::before {
  background-image: url(/img/shop/shop-category-pilgrim.png);
}

.shop-main {
  background-color: #fafafa;
  padding-block: 60px 87px;
}

.shop-main__items:not(:last-child) {
  margin-bottom: 60px;
}

.shop-title {
    font-size: 3rem;
    line-height: 1.6;
}

.shop-main__title {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 40px;
    padding-left: 50px;
}

.shop-main__title::before {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 40px;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.shop-main__card:not(:last-child) {
    margin-bottom: 21px;
}

.shop-card__content {
    display: grid;
    grid-template-columns: 16.4835164835% 1fr;
    grid-template-rows: 1fr auto;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 27px 24px 30px;
    background-color: #fff;
}

.shop-card__image {
  grid-row: 1/3;
  width: 100%;
  aspect-ratio: 1;
}

.shop-card__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.shop-card__top {
    margin-bottom: 12px;
}

.shop-card__tag {
    display: inline-block;
    margin-bottom: 12px;
    border: 2px solid currentColor;
    padding: 5px 10px;
}

.shop-card__tag.on {
  color: #d43238;
}

.shop-card__tag.off {
  color: #b1b1b1;
}

.shop-card__tag.notice {
  color: #049b9b;
}

.shop-card__tag-text {
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

.shop-card__title a {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  color: #008ae0;
}

.shop-card__bottom {
  grid-column: 2/3;
}

.shop-card__info {
  margin-bottom: 28px;
}

.shop-card__info-block:not(:last-child) {
  margin-bottom: 27px;
}

.shop-card__info-title {
  margin-bottom: 8px;
  font-weight: 600;
}

.shop-card__info-text {
  display: grid;
  grid-template-columns: 10.1351351351% 1fr;
}

.shop-card__text {
  padding-top: 17px;
  font-size: 1.4rem;
}

.shop-card__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.shop-card__button {
  position: relative;
}

.shop-card__button a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
    border-radius: 4px;
    padding: 8px 30px 8px 15px;
    background-color: #005bac;
    color: #fff;
}

.shop-card__button span {
    display: inline-block;
    width: 10px;
    height: 10px;
    aspect-ratio: 1;
    background-image: url(/img/shop/button-next.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.shop-card__name {
    margin-left: auto;
    font-weight: 500;
    color: #827763;
}

.shop-faq {
    padding-block: 55px 60px;
}

.shop-faq__title {
    margin-bottom: 40px;
    text-align: center;
}

/*------------------------
支店企画の申し込みフォーム
--------------------------*/

[type="text"],
[type="tel"],
[type="email"],
[type="date"],
textarea {
    /*↓リセットCSS */
    outline: none;
    border: none;
    border-radius: 0;
    background-image: none;
    font-family: inherit;
    /*↓カスタム */
    padding: 12px 15px;
    width: 100%;
    background: #fff;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

[type="text"]:focus,
[type="tel"]:focus,
[type="email"]:focus,
[type="date"]:focus,
textarea:focus {
    border: 1px solid #00b2df;
}

textarea {
    height: 100px;
    overflow-y: scroll;
}

[type="submit"] {
  /*↓リセットCSS */
  margin: 0;
  background-image: none;
  width: auto;
  display: inline-block;
  text-decoration: none;
  border: none;
  border-radius: 0;
  /*↓カスタム */
  padding: 35px 72px;
  background: #005bac;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 6px;
  line-height: 1;
}

[type="radio"] {
  position: absolute;
  opacity: 0;
}
[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 24px;
  margin: 0 27px 0 0;
  line-height: 1;
  cursor: pointer;
}
[type="radio"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #707070;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: block;
}
[type="radio"] + span::after {
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
[type="radio"]:checked + span::before {
  border-color: #00b2df;
}
[type="radio"]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #00b2df;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: block;
  opacity: 1;
}
[type="radio"]:focus + span::before {
  border-color: #00b2df;
}

input::-webkit-input-placeholder {
  color: #cccccc;
}

input::-moz-placeholder {
  color: #cccccc;
}

input:-ms-input-placeholder {
  color: #cccccc;
}

input::-ms-input-placeholder {
  color: #cccccc;
}

input::placeholder {
  color: #cccccc;
}

input:user-invalid,
textarea:user-invalid {
  border-color: #fc001d;
  background: rgba(252, 0, 29, 0.2);
}

input:user-invalid::-webkit-input-placeholder {
    color: #fff;
}

input:user-invalid::-moz-placeholder {
    color: #fff;
}

input:user-invalid:-ms-input-placeholder {
    color: #fff;
}

input:user-invalid::-ms-input-placeholder {
    color: #fff;
}

input:user-invalid::placeholder {
    color: #fff;
}

[type="checkbox"]:user-invalid + span::before,
[type="radio"]:user-invalid + span::before {
    border-color: #fc001d;
    background: rgba(252, 0, 29, 0.2);
}

.form__required {
    display: inline-block;
    vertical-align: middle;
    padding: 3px 6px;
    border-radius: 2px;
    margin-left: 13px;
    background-color: #fc001d;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    margin-top: -4px;
}

.form__label,
.form__label label {
    font-weight: 600;
}

.form__field:not(:first-child) {
  margin-top: 38px;
}

.form__data {
  margin-top: 12px;
}

.form__data.post {
  position: relative;
  padding-left: 26px;
}

.form__data.post::before {
    position: absolute;
    content: "〒";
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    font-weight: 600;
}

.form__input.short {
    display: inline-block;
    width: 180px;
}

.form__2col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}

.form__submit {
    margin-top: 55px;
    position: relative;
}

.form__submit:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
}

.submit:hover {
    opacity: 0.6;
}

.submit__input {
    width: 100%;
    font-weight: 500;
}

.submit {
    position: relative;
}

.submit span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 25px;
    width: 14px;
    aspect-ratio: 1;
    height: 14px;
}

.submit span::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url(/img/shop/button-next.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.contact-page {
    padding-bottom: 80px;
    background-color: #fafafa;
}

.contact-page__wrapper {
    width: 100%;
    padding: 40px 7% 60px;
    border-radius: 20px;
    background-color: #fff;
}


[type="date"] {
    width: 250px;
    color: #212121;
    letter-spacing: 0.1em;
    padding: 8px 15px;
}

.select_area {
    display: inline-block;
    position: relative;
    border: 1px solid #ccc;
    vertical-align: middle;
    border-radius: 4px;
    width: 250px;
    height: 42px;
}

.select_area:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #005BAC;
    border-right: solid 2px #005BAC;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
}

select {
    appearance: none;
    width: 100%;
    padding: 12px 25px 12px 15px;
    border-radius: 4px;
    
    border: none;
    outline: 0;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    cursor: pointer;
    color: #212121;
}

/*
select::before {
    position: absolute;
    top: 18px;
    right: 16px;
    width: 0;
    height: 0;
    border-width: 10px 5px 0 5px;
    border-style: solid;
    border-color: #ccc transparent transparent transparent;
    content: "";
    pointer-events: none;
}
*/
 
select::-ms-expand {
    display: none;
}

.form_item_note {
    font-size: 1.4rem;
    margin-top: 5px;
}


.conditions_box_wrap {
    margin: 40px auto 40px;
}

.conditions_box_wrap > p {
    font-weight: 600;
    margin-bottom: 10px;
}

.conditions_box {
    border: 1px solid #707070;
    overflow-y:scroll;
    height: 280px;
}

.conditions_box_inner {
    padding: 20px 4% 20px 4%;
}

.conditions_box .shop-yakkan__custom-counter li {
    font-size: 1.4rem;
}

/*------------------------------
クルーズ　問い合わせ
--------------------------------*/

.code-edit input {
    width: 250px;
}

.select_category {
    display: inline-block;
    position: relative;
    border: 1px solid #ccc;
    vertical-align: middle;
    border-radius: 4px;
    width: 250px;
    height: 42px;
}

.select_category:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #005BAC;
    border-right: solid 2px #005BAC;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
}


/*------------------------------
支店企画の申し込みフォーム 確認画面
--------------------------------*/

dl.form_conf_list > div {
    display: flex;
    margin-bottom: 35px;
}

dl.form_conf_list > div dt {
    width: 180px;
    margin-right: 40px;
    font-weight: 600;
    text-align: right;
}

dl.form_conf_list > div dd {
    width: calc(100% - 210px);
}

.conf-page__wrapper {
    padding: 50px 5% 50px;
}


/*------------------------
支店企画ページ_編集パターン
--------------------------*/
.pattern-heading {
    padding-block: 30px 30px;
}

.pattern-heading__message {
    padding: 12px 24px;
    margin-bottom: 30px;
    background-color: #d43238;
}

.pattern-heading__message-text {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

.pattern-heading__title {
    margin-bottom: 5px;
    font-size: 3.2rem;
    line-height: 1.6;
    text-align: center;
}

.pattern-heading__date {
    margin-bottom: 27px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}

.pattern-heading__figure {
    margin-bottom: 60px;
}

.pattern-heading__image {
    margin-bottom: 15px;
}

.pattern-heading__image img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.pattern-heading__caption {
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: right;
}

.pattern-heading__info {
    margin-bottom: 40px;
    border: 1px solid #a2bcd1;
    border-radius: 10px;
    padding: 40px 40px 40px;
}

.pattern-heading__info-title {
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

.pattern-heading__text {
    margin-bottom: 28px;
}

.pattern-heading__text a {
  color: #008ae0;
}

.pattern-heading__button a {
    position: relative;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: 254px;
    max-width: 100%;
    padding: 13px 20px 13px;
    text-align: center;
    color: #fff;
    position: relative;
    background-color: #005bac;
    border-radius: 30px;
    margin: 0 auto;
}

.pattern-heading__button a:after {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 24px;
    width: 9px;
    height: 9px;
    background-image: url(/img/shop/button-next.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.pattern-heading__description {
    margin-bottom: 40px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 40px 40px 40px;
    background-color: #ededed;
}

.pattern-menu {
    margin-bottom: 40px;
}

.pattern-menu__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 10px;
    background-color: #c2e1f2;
}

.pattern-menu__item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.pattern-menu__item a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-block: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.pattern-menu__item a::after {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    width: 9px;
    height: 9px;
    background-image: url(/img/shop/pull-down.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    margin-top: -2px;
}

.pattern-menu__item:not(:first-child) a {
    padding-left: 30px;
}

.pattern-menu__item:not(:last-child) a {
    border-right: 1px solid #fff;
    padding-right: 50px;
}

.pattern-menu__item:first-child a {
    padding-left: 60px;
}

.pattern-menu__item:last-child a {
    padding-inline: 30px 60px;
}

.pattern-content h2 {
    padding: 8px 16px;
    margin-bottom: 30px;
    background-color: #3a6286;
    color: #fff;
    font-size: 2rem;
    line-height: 1.6;
    text-align: center;
}

.pattern-content h2:not(:first-child) {
    margin-top: 40px;
}

.pattern-content h3 {
    position: relative;
    padding: 4px 0 2px 20px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    line-height: 1.6;
}

.pattern-content h3::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #005bac;
}

.pattern-content h4 {
    margin-top: 20px;
    margin-bottom: 14px;
    font-size: 1.8rem;
    color: #005bac;
}

.pattern-content h3:not(:first-child) {
    margin-top: 35px;
}

.pattern-content p:not(:last-child),
/*.pattern-content table:not(:last-child),*/
.pattern-content ul:not(:last-child),
.pattern-content ol:not(:last-child),
.pattern-content figure:not(:last-child),
.pattern-content img:not(:last-child) {
    margin-bottom: 10px;
}

.pattern-content table p:not(:last-child),
.pattern-content dl p:not(:last-child) {
    margin-bottom: 5px;
}

.pattern-content img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.pattern-content figcaption {
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
}

.pattern-content figure:has(figcaption) > img,
.pattern-content figure:has(figcaption) > img:not(:last-child) {
    margin-bottom: 10px;
}

.pattern-content ul li {
    position: relative;
    padding-left: 17px;
    font-size: 1.4rem;
}

.pattern-content ul li::before {
    position: absolute;
    content: "※";
    top: 0;
    left: 0;
}

.pattern-content a {
    position: relative;
    display: inline-block;
    padding-left: 13px;
    color: #008ae0;
}

.pattern-content a::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 8px;
    top: 8px;
    left: 0;
    background-color: #005bac;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.pattern-content table {
    width: 100%;
    margin-bottom: 20px;
}

.pattern-content table,
.pattern-content th,
.pattern-content td,
.pattern-content td > dl {
    font-size: 1.4rem;
}

.pattern-content table,
.pattern-content td,
.pattern-content th {
    border: 1px solid #d6d6d6;
    border-collapse: collapse;
}

.pattern-content td,
.pattern-content th {
    padding: 3px;
}

.pattern-content th {
    vertical-align: middle;
    padding: 10px 10px;
    background: #e1ebeb;
    font-weight: 600;
}

.pattern-content td {
    padding: 10px 10px;
    vertical-align: middle;
}

.pattern-content > dl {
    display: grid;
    grid-template-columns: 234px 1fr;
    margin-block: 50px;
}

.pattern-content > dl dt {
    font-weight: 600;
}

.pattern-content > dl dd > * {
    margin-bottom: 13px;
}

.pattern-content > dl dd > *:last-child {
    margin-bottom: 0;
}

.pattern-content > dl dt,
.pattern-content > dl dd {
    padding-bottom: 20px;
}

.pattern-content > dl dt:not(:last-of-type),
.pattern-content > dl dd:not(:last-of-type) {
    margin-bottom: 20px;
    border-bottom: 1px solid #d6d6d6;
}

.pattern-content table dl {
    display: grid;
    grid-template-columns: 80px 1fr;
}

.pattern-content table dl > dt,
.pattern-content table dl > dd {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 18px
}

.pattern-content .columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    margin: 20px 0 20px;
}

.pattern-content .col2 > * {
    width: 50%;
}

.pattern-content .col3 > * {
    width: 33.3333333333%;
}

.pattern-content .fixed-width-narrow,
.pattern-content .fixed-width {
    width: 80px;
}

.pattern-content .fixed-width-wide {
    width: 639px;
}
.pattern-content .fw-medium {
    font-weight: 500;
}

.pattern-content .text-center {
  text-align: center;
}
.pattern-content .text-right {
  text-align: right;
}
.pattern-content .text-orange {
  background-color: #f8e6cd;
  color: #ff705e;
}
.pattern-content .text-blue {
  color: #005bac;
}
.pattern-content .text-pink {
  background-color: #f8cddf;
  color: #ed7274;
}
.pattern-content .text-red {
    color: #d43238;
    font-size: 1em;
}
.pattern-content .note {
    color: #d43238;
    font-size: 1em;
    font-weight: 600;
}

.pattern-content .fixed {
    table-layout: fixed;
}
.pattern-content .text-large {
  font-size: 1.6rem;
}
.pattern-content .text-small {
  font-size: 1.4rem;
}
.pattern-content .text-bold {
  font-weight: 600;
}
.pattern-content .pattern-content__box {
    padding: 40px;
    border: 1px solid #a2bcd1;
    border-radius: 10px;
    margin-top: 20px;
}
.pattern-content .pattern-content__box > *:not(:last-child) {
  margin-bottom: 18px;
}
.pattern-content .pattern-content__box img {
  width: 255px;
  -moz-text-align-last: left;
  text-align-last: left;
}

.pattern-content__links {
  margin-top: 25px;
  text-align: center;
}

.pattern-content__links a::before {
  content: none;
}

.pattern-content__links-text {
  margin-bottom: 32px;
  font-size: 1.8rem;
  font-weight: 600;
}

a.pattern-content__tour-link {
  display: inline-block;
  width: 680px;
  padding: 20px 25px;
  border: 2px solid #005bac;
  border-radius: 6px;
}

.pattern-content__tour-links {
  margin-bottom: 40px;
}

a.pattern-content__tour-link {
    position: relative;
    -moz-text-align-last: left;
    text-align-last: left;
    margin-top: 20px;
}

.pattern-content__tour-link:after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  width: 14px;
  height: 14px;
  aspect-ratio: 1;
  background-image: url(/img/shop/button-next-blue.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/*
a.pattern-content__tour-link:not(:last-child) {
  margin-bottom: 20px;
}
*/

.pattern-content__tour-date {
  display: block;
  margin-bottom: 4px;
}

.pattern-content__tour-title {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}

a.pattern-content__past-link {
  position: relative;
  display: inline-block;
  width: 680px;
  padding: 20px 60px;
  border-radius: 6px;
  background-color: #005bac;
  color: #fff;
  text-align: left;
}

.pattern-content__past-link:after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
  width: 9px;
  height: 9px;
  background-image: url(/img/shop/button-next.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

a.pattern-content__past-link:not(:last-child) {
  margin-bottom: 20px;
}

.pattern-content__apply {
  margin-top: 55px;
  margin-bottom: 60px;
  text-align: center;
}

.pattern-content__apply-button a,
.pattern-content__apply-end {
  display: inline-block;
  width: 680px;
  padding: 30px 30px;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
}

.pattern-content__apply-button a {
  position: relative;
  margin-bottom: 30px;
  border-radius: 6px;
  background-color: #d43238;
  color: #fff;
}

.pattern-content__apply-button a::before {
  content: none;
}

.pattern-content__apply-button a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
  width: 14px;
  height: 14px;
  background-image: url(/img/shop/button-next.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.pattern-content__apply-end {
    background-color: #d6d6d6;
    color: #707070;
    border-radius: 6px;
}

.pattern-content__faq ul li:before {
  content: none;
}

.pattern-contact {
  padding-block: 37px 115px;
}

.pattern-contact__title {
  position: relative;
  padding-left: 26px;
  margin-bottom: 22px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
}

.pattern-contact__title::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #005bac;
}

.pattern-contact__content {
  border: 1px solid #b2b2b2;
}

.pattern-contact__content-header {
  padding: 15px 40px 9px;
  background-color: #d0d7dd;
}

.pattern-contact__content-body {
  padding: 20px 40px;
}

.pattern-contact__text:not(:last-child) {
  margin-bottom: 13px;
}

.pattern-contact__text .text-red {
  color: #d43238;
}

.pattern-contact__link {
  color: #009ccd;
}

.pattern-contact__content:not(:last-child) {
  margin-bottom: 37px;
}

.pattern-content__slider {
    position: relative;
}

.content_slider {
/*    position: relative;*/
    width: 390px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.content_slider {
    max-width: 390px;
}

.content_slider .swiper-slide img {
    max-width: 100%;
    margin: 0 auto;
}

.pattern-content__slider .swiper-button-next,
.pattern-content__slider .swiper-button-prev {
    color: #005BAC;
}

.pattern-content__slider .swiper-button-next:after,
.pattern-content__slider .swiper-button-prev:after {
    font-size: 30px;
}

.pattern-content__slider .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #CCCCCC;
    opacity: 1;
}

.pattern-content__slider .swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: #005BAC;
}

.pattern-content__slider .swiper-pagination {
    top: auto;
    bottom: 0;
}

.pattern-content__slider .swiper-button-prev {
  left: 0;
}

.pattern-content__slider .swiper-button-next {
  right: 0;
}


/*--------------------------------------
14_6_支店企画ページ_申し込みフォーム_旅行条件
----------------------------------------*/
.shop-yakkan {
  padding-top: 58px;
  padding-bottom: 120px;
}

.shop-yakkan__read {
  width: 100%;
  border: 1px solid #CCCCCC;
  padding: 27px 30px;
}

.shop-yakkan__read-heading {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #D43238;
}

.shop-yakkan__read-text {
  margin-top: 15px
}

.shop-yakkan__heading {
  margin-top: 60px;
}

.shop-yakkan ul{
  margin-top: 30px;
}

.shop-yakkan__article {
  margin-top: 38px;
}

.shop-yakkan__sub-heading {
  padding: 10px 16px;
  background-color: #DEE2E8;
  font-size: rem(18);
  font-weight: 600;
  line-height: calc(28.8 / 18);
}

.shop-yakkan a{
  color: #009ccd;
}

.shop-yakkan__custom-counter02 {
  counter-reset: section02;
  margin-top: 20px;
}

.shop-yakkan__custom-counter02 li {
  counter-increment: section02;
  list-style: none;
  text-indent: -20px;
  padding-left: 20px;
}

.shop-yakkan__custom-counter02 li::before {
  content: counter(section02) ".";
  margin-right: 10px;
}

.shop-yakkan__custom-counter02 li + li{
  margin-top: 14px;
}

.shop-yakkan__custom-counter {
  counter-reset: section;
  margin-top: 20px;
}

.shop-yakkan__custom-counter li {
  counter-increment: section;
  list-style: none;
  text-indent: -32px;
  padding-left: 34px;
}

.shop-yakkan__custom-counter li::before {
  content: "(" counter(section) ") ";
  margin-right: 10px;
}

.shop-yakkan__custom-counter li span{
  display: inline-block;
  padding-left: 34px;
  text-decoration: underline;
  text-decoration-color: #707070;
}

.shop-yakkan__custom-counter li + li{
  margin-top: 14px;
}

.shop-yakkan__article p{
  margin-top: 20px;
}

.shop-yakkan__article div{
  margin-top: 20px;
}

.shop-yakkan__custom-counter.counter2 {
  margin-top: 14px;
}

.shop-yakkan__custom-counter.counter2 li{
  padding-left: 30px;
  text-indent: -20px;
}

.shop-yakkan__custom-counter.counter2 li::before{
  margin-right: 0;
}

.shop-yakkan__article-table-title{
  margin-top: 35px;
  font-weight: 600;
}

.shop-yakkan__article-table{
  margin-top: 18px;
  border-collapse: collapse;
  width: 100%;
}

.shop-yakkan__article-table thead{
  background-color: #E1EBEB;
  font-size: 1.4rem;
  font-weight: 600;
  color: #212121;
  padding: 9px;
}

.shop-yakkan__article-table th,
.shop-yakkan__article-table td {
  font-size: 1.4rem;
  color: #212121;
  padding: 16px 15px 11px;
  border: 1px solid #d6d6d6;
  width: 33.3333%;
}

.shop-yakkan__form{
  margin-top: 50px;
  text-align: center;
}

.shop-yakkan__form-submit{
  margin-top: 40px;
  max-width: 680px;
  margin-inline: auto;
}

.shop-yakkan__form-checkbox label{
    display: flex;
    justify-content: center;
    align-items: center;
}

input[type="checkbox"] {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}


.shop-yakkan__form-checkbox input[type="checkbox"] {
    position: relative;
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border: 1px solid #000;
    border-radius: 2px;
    cursor: pointer;
    margin: 0;
}

.shop-yakkan__form-checkbox input[type="checkbox"]:checked{
    background-color: #005BAC;
    border: 1px solid #005BAC;
    border-radius: 2px;
}

.shop-yakkan__form-checkbox input[type="checkbox"]:checked:before {
    position: absolute;
    top: 0px;
    left: 5px;
    transform: rotate(50deg);
    width: 5px;
    height: 11px;
    border-right: 3px solid #FFFFFF;
    border-bottom: 3px solid #FFFFFF;
    content: '';
}

.shop-yakkan__form-checkbox span{
  text-align: left;
  cursor: pointer;
  padding-left: 10px;
}

.shop-yakkan__form-submit input[type="submit"]{
  padding: 20px 25px;
  text-align: left;
  width: 450px;
  line-height: 1.5;
}

.shop-yakkan__form-submit{
  position: relative;
  display: inline-block;
}

.shop-yakkan__form-submit span{
  right: 40px;
}

.pc-none{
  display: none;
}

label.proc_btn {
    width: 680px;
    max-width: 100%;
    height: 90px;
    background-color: #005BAC;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    position: relative;
    margin: 30px auto 0;
}

label.proc_btn:hover {
    opacity: 0.7;
}

label.proc_btn:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 25px;
    bottom: 0;
    margin: auto;
}

label.proc_btn input {
    appearance: none;
    border-radius: 6px;
    border: none;
    outline: 0;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
}





/*-------------------------
国内・宿・ホテル・日帰り・海外ツアー
---------------------------*/

.sub-wide-inner {
    width: 1320px;
    max-width: 100%;
}

.sub-mv {
    position: relative;
    height: 600px;
    height: auto;
    padding-bottom: 20px;
}

.sub-mv__inner {
    min-width: 1000px;
}

.sub-mv__title-wrap {
    /* width: 600px;*/
    display: flex;
    position: absolute;
    top: 90px;
    /* left: 54%; */
    /* transform: translate(-50%, -50%); */
    align-items: center;
    width: 100%;
    justify-content: center;
    width: 100%;
}

.sub-mv__title {
    /* width: 37%; */
    font-size: 47px;
    font-weight: bold;
    line-height: 1.1914893617;
    color: #ffffff;
    position: relative;
    white-space: nowrap;
}

.sub-mv__title::after {
    content: "";
    position: absolute;
    right: -7%;
    top: 40%;
    transform: translateY(-50%);
    width: 1px;
    height: 69.5px;
    background-color: #ffffff;
}

.sub-mv__subtitle {
    /* width: 63%; */
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
    margin-left: 34px;
}

.sub-mv__img {
    position: relative;
    height: 360px;
    z-index: -1;
}

.sub-mv__img::before {
    content: "";
    background: rgba(33, 33, 33, 0.3);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.sub-mv__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sub-mv__search-box {
    margin-left: auto;
    margin-right: auto;
    margin-top: -130px;
    width: 100%;
    max-width: 958px;
    min-height: 330px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

.area_tag_cont {
    margin-top: 20px;
}

.tit.tit--subpage {
    min-width: 210px;
}

.tit--red {
    font-size: 16px;
    color: #d43238;
    font-weight: 600;
    margin-right: 0;
}

.tit--red::before {
    content: none;
}

.area_tag_cont.area_tag_cont--sub {
    margin-bottom: 0;
}

.location-search {
    background-color: #fef7f7;
    margin-top: 60px;
/*    min-width: 1000px;*/
    width: 100%;
}

.location-search__title-inner.inner {
    width: 1360px;
    display: grid;
    justify-content: center;
}

.location-search__title-wrap {
    background-color: #fff;
    padding-bottom: 45px;
}

.location-search__icon {
    margin: 0 auto;
}

.location-search__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.location-search__title {
    margin-top: 29px;
    font-size: 3.2rem;
    font-weight: 600;
}

.location-search__content-wrap {
    margin-top: 40px;
    padding-bottom: 40px;
}

.location-search__content-inner.inner {
/*
    display: flex;
    justify-content: center;
*/
}

.location-search__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 13px;
    column-gap: 13px;
    row-gap: 13px;
}

.location-search__item a {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #d43238;
    border-radius: 6px;
    color: #d43238;
    font-weight: bold;
    font-size: 2.2rem;
  position: relative;
  padding: 20px 29px;
}

.location-search__item a::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(/img/dom/tour_kokunai_bt.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.location-search.location-search--reverse {
    background-color: #ebf9fd;
}

.location-search__item.location-search__item--reverse a {
    border: 1px solid #0b94b7;
    color: #0b94b7;
}

.location-search__item.location-search__item--reverse a::before {
    background-image: url(/img/dom/tour_kokunai_bt--reverse.png);
}

.location-search.location-search--tour {
    background-color: #f2f5fa;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
}

.location-search__title-wrap.location-search__title-wrap--tour {
    background-color: #f2f5fa;
}

.location-list {
    width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.location-list__region {
    display: flex;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 4px;
}

.location-list__region-name {
    width: 13.6%;
    font-size: 1.6rem;
    font-weight: bold;
    background-color: #006cc5;
    color: #ffffff;
    padding: 18px 18px;
    text-align: center;
    border-radius: 4px 0 0 4px;
}

.location-list__region-name.location-list__region-name--int {
    width: 24%;
}

.location-list__cities {
    width: 86.5%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 4px;
}

.location-list__city {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #008ae0;
    padding: 0 18px;
    position: relative;
}

.location-list__city:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background-color: #cccccc;
}

.sub-section {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.sub-section.sub-section--reverce {
    background-color: #f4f4f4;
/*    min-width: 1000px;*/
}

.sub-section__title-wrap {
    padding-bottom: 40px;
/*    min-width: 1000px;*/
}

.sub-section__icon {
    width: 190px;
    margin: 0 auto;
}

.sub-section__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sub-section__title {
    margin-top: 30px;
    font-size: 3.2rem;
    font-weight: 600;
    text-align: center;
}
.sub-section.sub-section--blue {
    background-color: #005bac;
    min-width: 1000px;
}

.sub-section__icon.sub-section__icon--blue {
    width: 102px;
    margin: 0 auto 25px;
}

.sub-section__title.sub-section__title--bule {
    color: #ffffff;
}

.md-show {
    display: none;
}

/*
.sugotoku-list {
    margin-top: 64px;
}

.sugotoku-list.sugotoku-list--sp {
    display: none;
    position: absolute;
    z-index: 900;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scrollbar-width: none;
}

.sugotoku-list__regions {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.sugotoku-list__region {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.sugotoku-list__region-name {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #dae9eb;
    border-radius: 5px;
    width: 145px;
    text-align: center;
    padding: 10px;
}

.sugotoku-list__subregion {
    display: flex;
    flex-direction: column;
}

.sugotoku-list__subregion-name {
    display: block;
    padding: 9px 10px;
    font-size: 16px;
    font-weight: bold;
    min-width: 80px;
}

.sugotoku-list__cities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 815px;
    padding: 10px 0;
}

.sugotoku-list__city {
    display: inline-block;
    align-items: center;
    padding: 9px 22px;
    font-size: 16px;
    font-weight: 500;
    border: solid 1px #f06400;
    background-color: #ffffff;
    color: #f06400;
    border-radius: 5px;
}
*/

.btn01.btn01--reverse {
    background-color: #ffffff;
    margin-bottom: 30px;
}

.btn01.btn01--reverse span {
    color: #005bac;
}

.btn01.btn01--reverse::before {
    border-top: solid 2px #005bac;
    border-right: solid 2px #005bac;
}

.sugotoku-list__sptitle-wrap {
    display: flex;
    max-width: 600px;
    width: 100%;
    padding: 35px 15px 0;
    align-items: center;
    position: relative;
}

.sugotoku-list__return-btn span {
    color: #005bac;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
}

.sugotoku-list__return-btn {
    position: absolute;
    left: 20px;
    top: 74%;
    transform: translateY(-50%);
}

.sugotoku-list__return-btn::before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #005bac;
    border-right: solid 2px #005bac;
    transform: rotate(-130deg);
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 3px;
    margin: auto;
}

.sgotoku-list__sp-title {
    flex-grow: 1;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.location-search.location-search--int {
    background-color: #ffffff;
    margin-top: 0;
}

.location-search__title-wrap.location-search__title-wrap--int {
    background: linear-gradient(#ecf4f5 0%, #fff 100%);
    padding-top: 60px;
    padding-bottom: 30px;
}

.location-search__body {
    margin-top: 40px;
    margin-bottom: 60px;
}

.int-search__inner.inner {
    width: 1240px;
}

.int-search__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.int-search__item {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background-color: #ffffff;
    text-align: center;
}

.int-search__item a {
    display: block;
    border: solid 1px #d6d6d6;
    border-radius: 6px;
}

.int-search__item {
    width: 100%;
}

.int-search__item img {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 290/163;
    width: 100%;
}

.int-search__item-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    padding: 13px;
}

.int-tour__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.int-tour__image {
    width: 100%;
}

.int-tour__image img {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 308/169;
    width: 100%;
}

.int-tour__details {
    margin-top: 15px;
    padding: 0 10px;
}

.int-tour__text {
    font-weight: 500;
}

.sub-section__btn-wrap {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-section__btn {
    display: block;
    width: 360px;
    max-width: 100%;
    padding: 26px 60px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    border: solid 1px #cccccc;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
}

.sub-section__btn::before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1.5px #d43238;
    border-right: solid 1.5px #d43238;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
}

.sub-section__text {
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
}

.travel-info {
    padding-top: 60px;
    margin-bottom: 60px;
    border-top: solid 1px #cccccc;
}

.travel-info__inner.inner {
    width: 1000px;
}

.travel-info__title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    border-left: solid 5px #005bac;
    padding: 9px 15px;
}

.travel-info__list {
    margin-top: 20px;
    margin-left: -10px;
}

.travel-info__item + .travel-info__item {
    margin-top: 9px;
}

.travel-info__toggle {
    position: relative;
    padding-left: 25px;
    flex-shrink: 0;
    margin-top: 12px;
}

.travel-info__toggle::before {
    position: absolute;
    content: " ";
    top: 50%;
    left: 10px;
    margin-top: -5px;
    border-color: transparent transparent transparent #005bac;
    border-style: solid;
    border-width: 5px 0 5px 6px;
}

.travel-info__link {
    flex-grow: 1;
    color: #008ae0;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.tour-ranking__inner {
    padding: 30px;
}

.tour-ranking__title {
    font-size: 20px;
    line-height: 1.6;
}

.tour-ranking__list {
    margin-top: 20px;
    background-color: #f8f7f4;
    border: 1px solid #e3e0d9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
/*    grid-template-rows: repeat(2, 1fr);*/
    grid-column-gap: 38px;
    grid-row-gap: 0px;
    padding: 20px;
}

.tour-ranking__item1 {
    grid-area: 1/1/3/2;
}

.tour-ranking__item2 {
    grid-area: 1/2/2/3;
/*    padding-left: 17px;*/
/*
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
*/
}

.tour-ranking__item3 {
    grid-area: 2/2/3/3;
    margin-top: 15px;
}

.tour-ranking__link {
    display: flex;
}

.tour-ranking__image {
    width: 130px;
    flex-shrink: 0;
}

.tour-ranking__image.tour-ranking__image--half {
    width: 76px;
    flex-shrink: 0;
}

.tour-ranking__image.tour-ranking__image--half img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
}

.tour-ranking__item2 .tour-ranking__link {
    display: flex;
    align-items: flex-start;
}

.tour-ranking__item2 .tour-ranking__details {
    flex-grow: 1;
    margin-left: 15px;
}

.tour-ranking__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
}

.tour-ranking__details {
    margin-left: 15px;
}

.tour-ranking__rank {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}

.tour-ranking__rank.tour-ranking__rank--second,
.tour-ranking__rank.tour-ranking__rank--third {
    font-size: 18px;
    line-height: 1.6;
}

.tour-ranking__rank::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 26px;
    background-image: url(/img/tabiclub/ranking-icon01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 13px;
    margin-top: -10px;
}

.tour-ranking__rank.tour-ranking__rank--second::before {
    width: 17px;
    height: 14px;
    background-image: url(/img/tabiclub/ranking-icon02.png);
    margin-right: 9px;
    margin-top: -5px;
}

.tour-ranking__rank.tour-ranking__rank--third::before {
    width: 17px;
    height: 14px;
    background-image: url(/img/tabiclub/ranking-icon03.png);
    margin-right: 9px;
    margin-top: -5px;
}

.tour-ranking__description {
    margin-top: 9px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

.tour-ranking__description.tour-ranking__description--half {
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.6;
}

/*---------------------------
tour_lineup_wrap
-----------------------------*/

.tour-categories__item--nikko {
    width: 252px;
    height: 60px;
}

.tour-categories__list {
    display: grid;
    grid-template-columns: 252px 224px 224px 224px;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    justify-content: center;
}

.tour-categories__link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    border: 1px solid #005bad;
    border-radius: 6px;
    padding: 15px 35px 15px 15px;
    position: relative;
}

.tour-categories__link::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(/img/tabiclub/tabiclub-btnicon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
}

.tour-categories__icon {
    display: block;
    width: 20px;
    margin-right: 5px;
}

.tour-categories__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tour-categories__icon:nth-child(2) img {
    width: 90%;
}

.tour-categories__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tour-categories__item:nth-child(2) .tour-categories__icon img {
    width: 90%;
}

.tour-categories__item:nth-child(3) .tour-categories__icon img {
    width: 80%;
}

.tour-categories__icon.tour-categories__icon--nikko1 img {
    width: 14px;
    height: 11px;
}

.tour-categories__icon.tour-categories__icon--nikko2 img {
    width: 11px;
    height: 14px;
}

.tour-detail {
    background-color: #ffffff;
    margin-top: 60px;
    border-top: solid 4px #009ccd;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.tour-detail__inner.inner {
    width: 1280px;
    padding: 40px;
}

.tour-detail__section {
    margin-top: 34px;
}

.tour-detail__title-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.tour-detail__icon {
    display: block;
    width: 23px;
    margin-right: 10px;
}

.tour-detail__icon.ranking1 {
    width: 24px;
    height: 19px;
}

.tour-detail__title {
    font-size: 24px;
}



/*
.tour-detail__content + .tour-detail__content{
    margin-bottom: 10px;
}
*/

/*
.tour-detail__info-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
*/

.tour-detail__content {
    display: block;
    width: 48.5%;
/*
    display: flex;
    justify-content: space-between;
*/
    margin-bottom: 35px;
    position: relative;
    min-height: 168px;
}

.tour-detail__image {
    display: block;
    border-radius: 10px;
    width: 268px;
    max-width: 47%;
    position: absolute;
    top: 0;
    left: 0;
}

.tour-detail__image img {
    width: 100%;
    aspect-ratio: 268/184;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.tour-detail__info01,
.tour-detail__info02 {
/*
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
*/
    width: 292px;
    max-width: 50%;
    margin-left: auto;
}

.tour-detail__label {
    border: 1px solid #e26619;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: bold;
    color: #e26619;
    min-width: 58px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    flex-shrink: 1;
}

.tour-detail__label.tour-detail__label--green {
    color: #299f84;
    border-color: #299f84;
}

.tour-detail__label.tour-detail__label--gray {
    color: #6594b2;
    border-color: #6594b2;
}

.tour-detail__tour-title {
    font-size: 1.6rem;
    color: #008ae0;
    font-weight: 600;
}

.tour-detail__price {
    color: #d43238;
    font-weight: bold;
}

.tour-detail__specs {
    font-size: 1.4rem;
    font-weight: regular;
    line-height: 1.5857142857;
}

.tour-detail__specs-detail:last-child {
    margin-top: 10px;
}

.tour-detail__price,
.tour-detail__specs {
    margin-top: 5px;
}

.tour-detail__description-title {
    font-weight: bold;
    position: relative;
    display: flex;
}

.tour-detail__description-title::before {
    content: "";
    width: 12px;
    height: 6px;
    border-bottom: solid 2px #009ccd;
    border-left: solid 2px #009ccd;
    transform: rotate(-45deg);
    margin-top: 5px;
    margin-right: 5px;
}

.tour-detail__description-text {
    margin-top: 8px;
    line-height: 1.6;
}

.tour-detail__note {
    margin-top: -80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tour-detail__note-text {
    width: 48.35%;
    font-weight: regular;
    line-height: 1.6;
    text-align: left;
}

.tour-detail__more-link {
    display: block;
    width: 48.35%;
    color: #008ae0;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
}

.tour-detail__content-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.tour-detail__description {
    max-width: 580px;
    margin-top: 30px;
    background-color: #f4f4f4;
    padding: 20px;
    margin-top: auto;
}

dl.news_list.news_list--nikko > dt {
    width: 100px;
}

dl.news_list.news_list--nikko > dd {
    width: calc(100% - 100px);
}

.tour-info__inner.inner {
    max-width: 960px;
}

.tour-info__list {
    display: flex;
    gap: 30px;
}

.tour-info__image {
    max-width: 464px;
}

.tour-info__image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.nikko-kinugawa_tour-title {
    background-color: #009ccd;
    color: #ffffff;
    font-size: 2.0rem;
    font-weight: 500;
    padding: 12px 30px;
    text-align: center;
    margin-bottom: 20px;
}

.area-search {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.area-search__item {
    display: block;
}

.area-search__item img {
    width: 100%;
    aspect-ratio: 343/187;
    -o-object-fit: cover;
    object-fit: cover;
}

.area-search__info {
    margin-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
}

.area-search__description {
    font-size: 16px;
    font-weight: 500;
}

.more_bt.more_bt--tour {
    margin-top: 40px;
}

.nikko-kinugawa_tour-title.nikko-kinugawa_tour-title--second {
    margin-top: 50px;
}

.tour-categories__list.tour-categories__list--nikko {
    grid-template-columns: 252px 224px;
}

.tour-detail__sub-title {
    margin-top: 20px;
}

.tour-detail__content-wrap.tour-detail__content-wrap--nikko {
    margin-top: 40px;
    padding-bottom: 30px;
}

.tour-detail__area {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #827763;
}

.tour-detail__tour-detail {
    margin-top: 10px;
    font-size: 1.4rem;
    line-height: 1.6;
}

.tour-detail__section.tour-detail__section--nikko {
    margin-top: 0;
}

.location-search.location-search--nikko {
    background-color: #ffffff;
    margin-top: 30px;
}

.location-search__content-wrap.location-search__content-wrap--nikko {
    margin-top: 0;
    padding-bottom: 0;
}

.location-search__list.location-search__list--nikko {
    max-width: 960px;
    width: 100%;
    margin: 30px auto 0;
}

.location-search__item.location-search__item--nikko a {
    display: block;
    border-color: #005bad;
    font-size: 16px;
    color: #005bad;
    padding: 22px 15px;
}

.location-search__item.location-search__item--nikko a::before {
    background-image: url(/img/nikko-kinugawa/nikko-btn.png);
}

.nikko-area {
    border: 1px solid #005bac;
    border-radius: 20px;
    margin-top: 40px;
}

.nikko-area__inner.inner {
    width: 1200px;
    padding-left: 40px;
    padding-right: 25.5px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.nikko-area__title {
    color: #005bac;
    font-size: 20px;
    padding-left: 10px;
    padding-bottom: 10px;
    border-left: solid 5px #005bac;
    border-bottom: solid 1px #005bac;
}

.nikko-area__text {
  margin-top: 15px;
}

.nikko-area__subtitle {
    margin-top: 20px;
    width: 100%;
    background-color: #e1ebeb;
    color: #005bac;
    padding: 7px 15px;
    text-align: center;
}

.nikko-area__content-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

/*
.nikko-area__content {
    width: 50%;
    display: flex;
    flex-direction: column;
}
*/

/*
.nikko-area__info-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
}
*/

.nikko-area__content-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.nikko-area__image {
    display: block;
    width: 230px;
    max-width: 42%;
    position: absolute;
    top: 0;
    left: 0;
}

.nikko-area__image img {
    aspect-ratio: 230/158;
    width: 100%;
    border-radius: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.nikko-area__info01,
.nikko-area__info02 {
    width: 55%;
    margin-left: auto;
}

.nikko-area__tour-title {
    display: block;
    font-size: 1.6rem;
    color: #008ae0;
    font-weight: 600;
}

.nikko-area__category {
    display: inline-block;
    vertical-align: middle;
    background-color: #ccc;
    border-radius: 2px;
    padding: 3px 6px 2px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    min-width: 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    margin-left: 5px;
    margin-bottom: 5px;
}

.nikko-area__category.cate01 {
    background-color: #ef4091;;
}

.nikko-area__category.cate02 {
    background-color: #5679c6;
}

.nikko-area__category.cate03 {
    background-color: #a456c6;
}

.nikko-area__category.cate04 {
    background-color: #b79548;
}

.nikko-area__category.cate05 {
    background-color: #0BABDB;
}

.nikko-area__category.cate06 {
    background-color: #45AA4C;
}

.nikko-area__tour-title {
    color: #008ae0;
    margin-top: 8px;
}

.nikko-area__tour-detail {
    margin-top: 8px;
}

.more_bt.more_bt--nikko {
    margin-top: auto;
    min-width: 350px;
    padding: 13px 45px;
}

.inner .tour-detail__inner--nikko {
    width: 1380px;
    padding: 0 40px;
    margin-top: 35px;
}

.inner .tour-detail__inner--nikko2 {
    width: 1380px;
    padding: 0 40px 40px;
    padding: 0 4% 40px;
    margin-top: 35px;
}

.nikko-area__section + .nikko-area__section {
    margin-top: 60px;
}

.nikko-area__onsen-title {
    font-size: 1.8rem;
    margin-top: 20px;
}

.nikko-area__2column {
    display: flex;
    width: 100%;
    gap: 40px;
}

.nikko-area__onsen {
    width: 48.5%;
    display: flex;
    flex-direction: column;
}

.nikko-area__subtitle.nikko-area__subtitle--half {
    width: 100%;
}

.nikko-area__content-wrap.nikko-area__content-wrap--half {
    display: block;
    margin-top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nikko-area__content.nikko-area__content--half {
    width: 100%;
}

.nikko-area__text.nikko-area__text--half {
}

.nikko-area__content-wrap--half .tour-detail__content {
    width: 100%;
    min-height: 158px;
}




.optional {
    margin-top: 63px;
}


.optional__inner.inner {
    width: 1200px;
}

.optional__title {
    font-size: 24px;
    text-align: center;
}

.optional__content-wrap {
    margin-top: 36px;
    display: flex;
    gap: 44px;
}

.optional__content {
    width: 100%;
    padding: 25px 25px;
    background-color: #f4f4f4;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.optional__image {
    min-width: 100px;
}

.optional__image img {
    aspect-ratio: 100/80;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.optional__content-title {
    font-size: 18px;
    line-height: 1.2;
}

.optional__text {
    margin-top: 10px;
}

.optional__text-content {
    width: calc(100% - 120px);
    margin-left: 20px;
}

.optional__btn-wrap {
    width: 100%;
}

.optional__btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 260px;
    max-width: 100%;
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 8px 17px;
    color: #005bac;
    position: relative;
    background-color: #ffffff;
    border-radius: 30px;
    border: solid 1px #005bac;
    font-weight: 500;
    margin: 15px 0 0 auto;
}

.optional__btn::before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #005bac;
    border-right: solid 2px #005bac;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
}

.express {
    margin-top: 60px;
    background-color: #e1ebeb;
    padding: 50px 0;
}

.express__btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.express__btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 360px;
    padding: 20px 54px;
    position: relative;
    background-color: #ffffff;
    border: solid 1px #cccccc;
    font-size: 18px;
    text-align: center;
}

.express__btn::before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1.5px #d43238;
    border-right: solid 1.5px #d43238;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 16.5px;
    bottom: 0;
    margin: auto;
}

/*---------------------------
addtion - tour_lineup_wrap
-----------------------------*/

.tour_lineup_wrap {
    background-color: #fff;
    padding: 30px 40px 40px 40px;
    margin-top: 60px;
    border-top: 4px solid #009CCD;
    clear: both;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.tour_lineup_wrap_tit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.tour-detail__icon.w27 {
    width: 27px;
    height: 100%;
}

.tour-detail__icon.w30 {
    width: 30px;
    height: 100%;
    margin-top: 6px;
}

.tour-detail__icon.w24 {
    width: 24px;
    height: 100%;
    margin-top: 4px;
}

.tour_lineup_wrap_tit h3 {
    font-size: 2.4rem;
    font-weight: bold;
}

.tour_lineups {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tour_lineup_item {
    width: 48.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 50px;
}

.tour_lineup_item:last-child,
.tour_lineup_item:nth-last-child(2) {
  margin-bottom: 0;
}

.tour_lineup_item .tli_img {
    width: 268px;
    max-width: 46%;
    margin-right: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.tour_lineup_item .tli_img img{
  border-radius: 10px;
}

.tlt_cont_wrap {
    display: flex;
    flex-direction: column;
    position: relative;
}

.tour_lineup_item .tli_cont_01,
.tour_lineup_item .tli_cont_02 {
    width: 50%;
    margin-left: auto;
}

.tour_lineup_item .tli_cont_02 {
    display: flex;
    flex-direction: column;
}

.tour_lineup_item .tli_spot {
    width: 100%;
    min-width: 100%;
    background-color: #f4f4f4;
    margin-top: 15px;
    padding: 15px 20px 15px;
    
/*    height: 100%;*/
}

.tour_lineup_item .tli_spot .tli_spot_tit {
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    display: flex;
}

.tli_tag {
    display: inline-block;
    width: fit-content;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    padding: 1px 7px 1px 7px;
    border: 1px solid #e26619;
    color: #e26619;
    overflow: hidden;
    margin-bottom: 5px;
}

.tli_tag.tag_green{
  color: #299F84;
  border-color:#299F84;
}

.tli_tag.tag_gray{
  color: #6594b2;
  border-color:#6594b2;
}


.tli_tit {
    display: block;
    color: #008AE0;
    font-weight: 600;
    margin-bottom: 10px;
}

.tli_price {
    color: #D43238;
    font-weight: 600;
    margin-bottom: 10px;
}

.tli_text {
    font-size: 1.4rem;
}

.tli_code {
    font-size: 1.4rem;
    margin-top: 5px;
}

dl.tli_text {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

dl.tli_text dt,
dl.tli_text dd {
    font-size: 1.4rem;
}

dl.tli_text dt {
    width: fit-content;
}

dl.tli_text dd {
    width: calc(100% - 70px);
}

.clear:before,
.clear:after {
    content: "";
    clear: both;
    display: block;
}

.tour_lineup_link {
    justify-content: flex-end;
}

.tour_lineup_link p,
.tour_lineup_link a {
    font-size: 1.4rem;
}

.tour_lineup_link a {
    color: #008AE0;
    margin-top: 5px;
}

.tli_spot_tit::before{
    content: "";
    width: 12px;
    height: 6px;
    border-bottom: solid 2px #009ccd;
    border-left: solid 2px #009ccd;
    transform: rotate(-45deg);
    margin-top: 5px;
    margin-right: 5px;
}

/*---------------------------
sugotoku-list
-----------------------------*/

.sugotoku-list {
    margin-top: 64px;
}

.sugotoku-list.sugotoku-list--sp {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    transition: all 0.15s;
}

.sugotoku-list.sugotoku-list--sp.is-open {
    width: 100%;
}

.sugotoku-list__regions {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.sugotoku-list__region {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.sugotoku-list__region-name {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    background-color: #dae9eb;
    border-radius: 5px;
    min-width: 145px;
    width: 145px;
    text-align: center;
    padding: 10px 15px;
}

.sugotoku-list__subregion {
    display: flex;
    flex-direction: column;
    width: calc(100% - 165px);
}

.sugotoku-list__subregion-name {
    display: block;
    padding: 5px 10px;
    font-size: 1.6rem;
    font-weight: bold;
    min-width: 80px;
}

.sugotoku-list__cities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: calc(100% - 165px);
/*    padding: 10px 0;*/
}

.sugotoku-list__subregion .sugotoku-list__cities {
    width: 100%;
}

.sugotoku-list__cities + .sugotoku-list__cities {
    margin-top: 10px;
}

.sugotoku-list__city {
    display: inline-block;
    align-items: center;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    border: solid 1px #f06400;
    background-color: #ffffff;
    color: #f06400;
    border-radius: 5px;
    line-height: 1.3333333333;
}

.btn01.btn01--reverse {
    background-color: #ffffff;
    margin-bottom: 30px;
}

.btn01.btn01--reverse span {
    color: #005bac;
}

.btn01.btn01--reverse::before {
    border-top: solid 2px #005bac;
    border-right: solid 2px #005bac;
}

.sugotoku-list__sptitle-wrap {
    display: flex;
    max-width: 600px;
    width: 100%;
    padding: 35px 15px 0;
    align-items: center;
    position: relative;
}

.sugotoku-list__return-btn span {
    color: #005bac;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
}

.sugotoku-list__return-btn {
    position: absolute;
    left: 20px;
    top: 74%;
    transform: translateY(-50%);
}

.sgotoku-list__sp-title {
    flex-grow: 1;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}


@media screen and (min-width:768px) {
    .sugotoku-list.sugotoku-list--sp {
        width: 100%;
        max-width: 960px;
        margin: 50px auto 0;
        position: static;
        overflow: visible;
        height: auto;
    }
    .sugotoku-list__sptitle-wrap {
        display: none;
    }
    
    
}

/*--------------------------------
東武トップツアーズの旅 Special
----------------------------------*/

.sptabi_wrap {
    padding-top: 30px;
    padding-bottom: 30px;
}

.sptabi_close {
    font-size: 2.0rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
    padding: 10px 20px;
    background-color: #D43238;
}

.one_column_img {
    margin-top: 30px;
    padding: 10px 10px;
}

.one_column_img img {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

.dl_btn {
    display: block;
    background: #005BAC;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 25px 18px 15px;
    margin: 20px auto 20px;
    width: fit-content;
    min-width: 388px;
    border-radius: 6px;
    position: relative;
}

.dl_btn:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
}

.dl_btn span {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.2;
    display: inline-block;
}

.dl_btn span:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 18px;
    background-image: url(/img/common/dl_btn_ic.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -2px;
}

.apply_btn {
    border-radius: 6px;
    background-color: #d43238;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 680px;
    padding: 30px 30px;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 50px auto 50px;
    position: relative;
}

.apply_btn:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 23px;
    bottom: 0;
    margin: auto;
}

.apply_btn span {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    display: inline-block;
}

/*--------------------------------
よくある質問・お問い合わせ
----------------------------------*/

h2.sub_tit {
    padding-left: 20px;
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 20px;
    position: relative;
}

h2.sub_tit::before {
    position: absolute;
    top: -6px;
    left: 0;
    width: 4px;
    aspect-ratio: 4/42;
    content: "";
    background-image: url(/img/common/subtitle.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}

a.link_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-width: 360px;
    padding: 20px 20px;
    background-color: #fff;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    margin-top: 30px;
    position: relative;
}

a.link_btn:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #D43238;
    border-right: solid 2px #D43238;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
}

a.link_btn span {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

a.link_btn:hover {
    opacity: 0.7;
}

.two_btns {
    display: flex;
}

.two_btns a.link_btn:nth-child(2) {
    margin-left: 25px;
}

.center_image {
    margin: 20px auto 20px;
}

/*--------------------------------
未成年者のお申込みについて
----------------------------------*/

.par {
    margin-bottom: 50px;
}

.par .sub-heading {
    margin-bottom: 30px;
}

.sub_tlt {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.aster {
    font-size: 1.4rem;
    line-height: 1.6;
    padding-left: 1.5em;
    position: relative;
    margin-top: 5px;
}

.aster:before {
    content: '※';
    display: inline-block;
    font-size: 1em;
    position: absolute;
    top: 0;
    left: 0;
}

.close_btn {
    max-width: 100%;
    width: 360px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    margin: 80px auto 0;
}

.close_btn span {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

/* -----------------------------------
1127
-------------------------------------- */

.to_top_btn {
    width: 594px;
    max-width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: relative;
    margin: 110px auto 70px;
}

.to_top_btn span {
    font-size: 1.8rem;
    font-weight: bold;
}

.to_top_btn::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #D43238;
    border-right: solid 2px #D43238;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -3px;
}

/* -----------------------------------
202602
-------------------------------------- */

.sub-mv__search-box {
	overflow: hidden;
	padding-bottom: 20px;
}

.sub-mv__search-box.dom__search-box,
.sub-mv__search-box.yado__search-box,
.sub-mv__search-box.nikko-kinugawa__search-box,
.sub-mv__search-box.oneday__search-box {
    max-width: 770px;
}

.int__search-box {
	padding-bottom: 0;
	min-height: auto;
}

.int__search-box iframe {
	height: 300px!important;
}


/* -----------------------------------
202603
-------------------------------------- */

.dom__search-box iframe {
	height: 295px;
}

.yado__search-box iframe {
	height: 230px;
}

.sub-mv__search-box.yado__search-box {
    min-height: auto;
}

.oneday__search-box iframe {
	height: 230px;
}

.sub-mv__search-box.oneday__search-box {
    min-height: auto;
}

.nikko-kinugawa__search-box iframe {
	height: 390px;
}

.sub-mv__search-box.nikko-kinugawa__search-box {
	max-width: 768px;
	height: 360px;
}




