@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

html {
  color: #25425A;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
  margin-top: 83px;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  background: #132D42;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
}
.c-header .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-header .logo {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
}
.c-header .logo img {
  max-width: 160px;
}
.c-header .logo .txt {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}
.c-header .search-btn {
  background: #EC8B39;
  padding: 14px 10px;
  max-width: 82px;
  width: 100%;
}
.c-header .search-btn .inn {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  padding-top: 35px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .search-btn .inn::before {
  background: #fff;
  -webkit-mask-image: url(../img/common/ico-search.svg);
          mask-image: url(../img/common/ico-search.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  content: "";
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .c-search-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(730px);
          transform: translateY(730px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  max-height: calc(100% - 150px);
}
.c-header .c-search-wrap.is-open {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  visibility: visible;
}
.c-header .c-search-wrap .close-btn {
  background: #EAF0F4;
  border: 1px solid #CECECE;
  border-radius: 100px;
  cursor: pointer;
  height: 50px;
  width: 50px;
  position: absolute;
  top: -55px;
  right: -50px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .c-search-wrap .close-btn::before, .c-header .c-search-wrap .close-btn::after {
  background: #132D42;
  content: "";
  height: 20px;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.c-header .c-search-wrap .close-btn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-header .c-search-wrap .close-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-header .c-search-wrap .inn {
  background: #fff;
  border-radius: 40px 40px 0 0;
  position: relative;
  padding: 40px 0;
  margin: 150px auto 0;
  height: 100%;
}
.c-header .c-search-wrap .max-inn {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.c-header .c-search-wrap .inner-wrap {
  overflow-y: auto;
  position: relative;
  max-width: 1080px;
  padding: 0 40px;
  margin: 0 auto;
  max-height: 500px;
}
.c-header .c-search-wrap .select-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.c-header .c-search-wrap .select-list label {
  background: #EAF0F4;
  border-radius: 5px;
  display: block;
  padding: 4px 10px;
  width: 100%;
  height: 100%;
}
.c-header .c-search-wrap .select-list label.checked {
  background: #FFEAD9;
}
.c-header .c-search-wrap .select-list input[type=checkbox] {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.c-header .c-search-wrap .select-list .text {
  font-size: 12px;
  display: inline-block;
  position: relative;
  padding-left: 26px;
  line-height: 2.2;
}
.c-header .c-search-wrap .select-list .text::before {
  border-radius: 100px;
  position: absolute;
  top: 6px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #CECECE;
  background: #fff;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-header .c-search-wrap .select-list .text::after {
  background: #EEEEEE;
  border-radius: 100px;
  position: absolute;
  top: 9px;
  left: 3px;
  width: 9px;
  height: 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-header .c-search-wrap .select-list input:checked + span::after {
  background: #EC8B39;
}
.c-header .c-search-wrap .free-word input {
  position: relative;
  max-width: 345px;
  border: 1px solid #CECECE;
  border-radius: 10px;
  width: 100%;
}
.c-header .c-search-wrap .input-wrap {
  border: 1px solid #CECECE;
  border-radius: 10px;
  max-width: 138px;
}
.c-header .c-search-wrap .input-wrap.access {
  position: relative;
  max-width: 345px;
}
.c-header .c-search-wrap .input-wrap.access::before {
  background: url(../img/common/ico-distance.svg) no-repeat center center/contain;
  content: "";
  height: 20px;
  width: 14px;
  position: absolute;
  top: 0;
  left: 15px;
  bottom: 0;
  margin: auto;
}
.c-header .c-search-wrap .input-wrap.access input[type=text] {
  padding-left: 44px;
}
.c-header .c-search-wrap input[type=text] {
  padding: 17px 15px;
  width: 100%;
}
.c-header .c-search-wrap .l-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.c-header .c-search-wrap .l-flex .l-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.c-header .c-search-wrap .search-ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 15px;
}
.c-header .c-search-wrap .wrap + .wrap {
  margin-top: 20px;
}
.c-header .c-search-wrap .wrap.mt-40 {
  margin-top: 40px;
}
.c-header .c-search-wrap .wrap.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.c-header .c-search-wrap .aco-head {
  border-bottom: 1px solid #CECECE;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 20px;
  position: relative;
}
.c-header .c-search-wrap .aco-head::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .c-search-wrap .aco-head.is-open::before {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  top: 5px;
}
.c-header .c-search-wrap .aco-body {
  padding-top: 15px;
  display: none;
}

#overlay {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 998;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
#overlay.is-open {
  opacity: 1;
  pointer-events: visible;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-footer {
  background: #132D42;
}
.c-footer .inner-block {
  padding-top: 60px;
  padding-bottom: 20px;
}
.c-footer .logo {
  text-align: center;
  margin: auto;
}
.c-footer .logo .txt {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}
.c-footer .logo img {
  max-width: 194px;
  margin: 10px auto 0;
}
.c-footer .link-list {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}
.c-footer .link-list a {
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
}
.c-footer .link-list a.out-link {
  position: relative;
  padding-right: 15px;
}
.c-footer .link-list a.out-link::before {
  background: url(../img/common/ico-link.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 11px;
  width: 11px;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.c-footer .copyright {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-top: 60px;
}

.c-ttl-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.c-ttl01 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  padding: 10px 25px;
}
.c-ttl01::before {
  background: #132D42;
  content: "";
  height: 100%;
  width: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-ttl01.orange::before {
  background: #EC8B39;
}
.c-ttl01 .orange {
  color: #EC8B39;
}

.c-ttl02 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  padding-top: 43px;
  text-align: center;
}
.c-ttl02::before {
  background: url(../img/common/ico-distance.svg) no-repeat center center/contain;
  content: "";
  height: 28px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-ttl02 .orange {
  color: #EC8B39;
}

.c-news-area {
  background: #EAF0F4;
}
.c-news-area .inner-block {
  padding-top: 14px;
  padding-bottom: 14px;
}
.c-news-area .news-txt {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  padding-left: 30px;
}
.c-news-area .news-txt::before {
  background: url(../img/common/ico-campaign.svg) no-repeat center center/contain;
  content: "";
  height: 16px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.c-card-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
.c-card-wrap .c-card {
  width: calc((100% - 60px) / 3);
}
.c-card-wrap .c-card.recommend {
  background: #132D42;
}
.c-card-wrap .c-card.recommend .ttl, .c-card-wrap .c-card.recommend .txt, .c-card-wrap .c-card.recommend .info-list li {
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-card {
  background: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  display: block;
  padding: 20px;
  width: 100%;
}
.c-card.recommend .img {
  border-radius: 0 10px 10px 10px;
}
.c-card.recommend .img::before {
  background: #EC8B39;
  content: "おすすめ！";
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  padding: 12px 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-card.recommend .img::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 19px 0 19px 21px;
  border-color: transparent transparent transparent #EC8B39;
  position: absolute;
  left: 88px;
  top: 0;
  height: 21px;
  width: 38px;
}
.c-card .img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.c-card .img img {
  width: 100%;
  aspect-ratio: 440/330;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card .txt-wrap {
  margin-top: 30px;
}
.c-card .txt-wrap .area-txt {
  color: #EC8B39;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  padding-left: 23px;
}
.c-card .txt-wrap .area-txt::before {
  background: #fff;
  -webkit-mask-image: url(../img/common/ico-distance.svg);
          mask-image: url(../img/common/ico-distance.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  content: "";
  height: 8px;
  width: 5px;
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 4px;
  margin: auto;
  z-index: 2;
}
.c-card .txt-wrap .area-txt::after {
  background: #EC8B39;
  border-radius: 100px;
  content: "";
  height: 13px;
  width: 13px;
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-card .txt-wrap .area-txt.box {
  background: #EC8B39;
  border-radius: 20px;
  color: #fff;
  font-weight: 400;
  padding: 7px 10px 9px 33px;
}
.c-card .txt-wrap .area-txt.box::before {
  top: 0;
  height: 15px;
  width: 11px;
  left: 13px;
}
.c-card .txt-wrap .area-txt.box::after {
  content: none;
}
.c-card .txt-wrap .ttl {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-card .txt-wrap .txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-card .txt-wrap .info-list li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  padding-left: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-card .txt-wrap .info-list li::before {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-card .txt-wrap .info-list li.price::before {
  background: url(../img/common/ico-price.svg) no-repeat center center/contain;
}
.c-card .txt-wrap .info-list li.station::before {
  background: url(../img/common/ico-train.svg) no-repeat center center/contain;
}
.c-card .txt-wrap .info-list li.time::before {
  background: url(../img/common/ico-time.svg) no-repeat center center/contain;
}
.c-card .txt-wrap .info-list li + li {
  margin-top: 10px;
}
.c-card .tag-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}
.c-card .tag-wrap .tag {
  background: #fff;
  border: 1px solid #132D42;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 12px 4px;
}

.c-search-wrap .mt-16 {
  margin-bottom: 16px;
}
.c-search-wrap .mt-40 {
  margin-bottom: 40px;
}

.splide__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.splide__arrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.splide__arrow.splide__arrow--prev {
  left: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.splide__arrow.splide__arrow--next {
  right: 0;
}

.splide__pagination .splide__pagination__page {
  background: #D9D9D9;
  border-radius: 100px;
  height: 10px;
  width: 10px;
  margin: 0 5px;
}
.splide__pagination .splide__pagination__page.is-active {
  background: #FFEAD9;
}

/*------------------------------------------------------------------------------
  paging-area
------------------------------------------------------------------------------*/
.paging-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 80px auto 0;
  position: relative;
  text-align: center;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.paging-area .page-numbers {
  border: 1px solid #132D42;
  border-radius: 2px;
  color: #132D42;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 1;
}
.paging-area .page-numbers.prev, .paging-area .page-numbers.next {
  position: relative;
}
.paging-area .page-numbers.prev::before, .paging-area .page-numbers.next::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #132D42;
  border-right: 2px solid #132D42;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: -5px;
  right: 0;
  bottom: 0;
  margin: auto;
}
.paging-area .page-numbers.next {
  margin-left: 10px;
}
.paging-area .page-numbers.prev {
  margin-right: 10px;
}
.paging-area .page-numbers.prev::before {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  left: 5px;
}
.paging-area .page-numbers.current {
  background: #132D42;
  color: #fff;
}

.form__sub-element {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  display: flex;
  gap: 5px;
}
.form__sub-element:not(.form__sub-element_center) {
  height: 0;
}
.form__sub-element:not(.form__sub-element_center).is-secoundShow {
  padding-bottom: 10px;
}
.form__sub-element:not(.form__sub-element_center)::-webkit-scrollbar {
  height: 4px;
}
.form__sub-element:not(.form__sub-element_center)::-webkit-scrollbar-track {
  background-color: #D9D9D9;
  border-radius: 5px;
}
.form__sub-element:not(.form__sub-element_center)::-webkit-scrollbar-thumb {
  background-color: #9D9D9D;
  border-radius: 5px;
}
.form__sub-element.form__sub-element_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
}
.form__sub-element.form__sub-element_center::-webkit-scrollbar {
  display: none;
}
.form__sub-element + .area__small-cat {
  position: relative;
  padding-top: 20px;
}
.form__sub-element + .area__small-cat::before {
  background: #EEEEEE;
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.area.is-areaCheck.is-firstShow .area__small-cat {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
  height: auto;
}

.area.is-choice.is-firstShow .area__small-cat {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
  height: auto;
}

.is-firstShow.is-content-show .js-area-target1 {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
  height: auto;
}

.area__small-cat .area__item .input-content {
  background: #EAF0F4;
  border-color: #CECECE;
}

.area__item {
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.area__item .input-content {
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 9px 8px 7px;
}
.area__item .input-content.checked {
  border-color: #EC8B39;
}
.area__item span {
  display: block;
}
.area__item input {
  display: none;
}

.is-content-show .js-area-target2.is-secoundShow {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
  height: auto;
}

.c-search-section .c-search-wrap:first-of-type {
  border-bottom: 1px solid #EEEEEE;
}
.c-search-section .c-search-wrap:last-of-type {
  border-top: 1px solid #EEEEEE;
}
.c-search-section .c-search-wrap .inner-block {
  padding-top: 22px;
  padding-bottom: 20px;
}
.c-search-section > .inner-block {
  padding-top: 60px;
  padding-bottom: 60px;
}
.c-search-section .c-card-wrap {
  margin-top: 20px;
}
.c-search-section .c-ttl02 {
  margin-bottom: 40px;
}
.c-search-section .mt-40 {
  margin-bottom: 40px;
}
.c-search-section .mt-16 {
  margin-bottom: 16px;
}

.c-banner-section {
  background: #EAF0F4;
}
.c-banner-section .inner-block {
  padding-top: 40px;
  padding-bottom: 40px;
}
.c-banner-section .banner-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.c-banner-section a {
  background: #fff;
  display: block;
  width: 100%;
  height: 100%;
}
.c-banner-section img {
  aspect-ratio: 292/73;
  -o-object-fit: cover;
     object-fit: cover;
  width: inherit;
}

.not-found .main-block {
  padding: 60px 0;
}
.not-found p {
  text-align: center;
  margin-top: 60px;
  font-size: 18px;
  line-height: 1.6;
}
.not-found .c-btn01 {
  display: block;
  margin: 30px auto 0;
}

.c-btn01 {
  background: #EAF0F4;
  border: 1px solid #CECECE;
  border-radius: 26px;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  padding: 12px 10px 13px;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 150px;
}
.c-btn01::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #132D42;
  border-right: 1px solid #132D42;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn01.large {
  font-size: 14px;
  max-width: 200px;
  padding: 16px 10px;
  margin: auto;
}
.c-btn01.large::before {
  right: 56px;
}
.c-btn01.bottom::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: -3px;
}
.c-btn01.bottom.is-open {
  background: #132D42;
  border-color: #132D42;
  color: #fff;
}
.c-btn01.bottom.is-open::before {
  border-color: #fff;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  top: 2px;
}

.c-btn02 {
  background: #EC8B39;
  border: 1px solid #EC8B39;
  border-radius: 100px;
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  padding: 16px 15px;
  max-width: 200px;
  width: 100%;
  margin: auto;
  text-align: center;
}

.c-breadcrumb-block {
  padding: 15px 0;
  background: #132D42;
}
.c-breadcrumb-block .c-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.c-breadcrumb-block .c-breadcrumb li {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.6;
}
.c-breadcrumb-block .c-breadcrumb li a {
  font-weight: normal;
  position: relative;
  padding-right: 15px;
  margin-right: 11px;
}
.c-breadcrumb-block .c-breadcrumb li a::after {
  content: "";
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .recommend-section .inner-block {
  padding-top: 60px;
}
.home .recommend-section .slider-area {
  background: #EC8B39;
  margin-top: 20px;
  padding-bottom: 40px;
}
.home .recommend-section .slider-area .splide-wrapper {
  margin: auto;
  max-width: 1280px;
  position: relative;
  padding: 40px 40px 25px;
}
.home .recommend-section .slider-area .c-card {
  border: #fff 1px solid;
  height: 100%;
}
.home .recommend-section .slider-area .c-card:hover {
  background: #f2f2f2;
}
.home .recommend-section .slider-area .c-card .txt-wrap {
  position: relative;
}
.home .recommend-section .slider-area .c-card .txt-wrap .area-txt {
  position: absolute;
  top: -51px;
}
.home .search-section .c-search-wrap:first-of-type {
  border-bottom: 1px solid #EEEEEE;
}
.home .search-section .c-search-wrap:last-of-type {
  border-top: 1px solid #EEEEEE;
}
.home .search-section .c-search-wrap .inner-block {
  padding-top: 22px;
  padding-bottom: 20px;
}
.home .search-section > .inner-block {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home .search-section .c-card-wrap {
  margin-top: 20px;
}
.home .search-section .c-ttl02 {
  margin-bottom: 40px;
}

.detail .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 20px;
}
.detail .tag-list li {
  margin-left: 0 !important;
}
.detail .tag-list .input-content {
  background: #EAF0F4;
  border-color: #CECECE;
}
.detail .splide-wrapper {
  position: relative;
}
.detail .splide__track {
  overflow: visible;
}
.detail .mv-slide-block {
  overflow: hidden;
  padding: 40px 0 38px;
  background: #132D42;
}
.detail .mv-slide-block .inner-block {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
}
.detail .mv-slide-block .single-slide {
  max-width: 620px;
  margin: auto;
}
.detail .mv-slide-block .single-slide img {
  width: 100%;
}
.detail .mv-slide-block .mv-splide {
  z-index: 0;
}
.detail .mv-slide-block .mv-splide img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  max-height: 413px;
  border-radius: 10px;
}
.detail .mv-slide-block .splide__pagination__page.is-active {
  background: #EC8B39;
}
.detail .mv-slide-block .txt {
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  margin: 30px 0 0;
}
.detail .detail-block {
  padding: 58px 0;
}
.detail .detail-block .inner-block {
  max-width: 1080px;
}
.detail .detail-block .ttl {
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  border-bottom: 1px solid #CECECE;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.detail .detail-block .location-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.detail .detail-block .pin {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  padding-left: 20px;
}
.detail .detail-block .pin::after {
  content: "";
  background: url(../img/common/ico-pin.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 11px;
  height: 15px;
}
.detail .detail-block .station {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  padding-left: 16px;
}
.detail .detail-block .station::after {
  content: "";
  background: url(../img/common/ico-train.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 12px;
  height: 14px;
}
.detail .detail-block .bold-txt {
  font-weight: bold;
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.4;
}
.detail .detail-block .desc {
  line-height: 1.4;
  margin: 20px 0;
}
.detail .detail-block .area__item + .area__item {
  margin-left: 5px;
}
.detail .detail-block .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.detail .detail-block .info-tb {
  width: clamp(400px, 520px, min(520px, 27.0833333333vw));
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.detail .detail-block .info-tb .tr {
  border-bottom: 1px solid #EEEEEE;
  padding: 14px 0;
}
.detail .detail-block .info-tb .tr:last-child {
  border-bottom: none;
}
.detail .detail-block .info-tb .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail .detail-block .info-tb .th {
  font-size: 14px;
  width: 96px;
  text-align: left;
  font-weight: 600;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.detail .detail-block .info-tb .td {
  padding: 0px 9px;
  line-height: 1.4;
  word-break: break-all;
}
.detail .detail-block .info-tb .link {
  text-decoration: underline;
  position: relative;
  padding-right: 24px;
}
.detail .detail-block .info-tb .link::after {
  content: "";
  -webkit-mask: url(../img/common/ico-link.svg) no-repeat center/contain;
          mask: url(../img/common/ico-link.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  background: #132D42;
  position: absolute;
  bottom: 2px;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.detail .detail-block .info-tb .btn {
  border: 1px solid #132D42;
  font-weight: bold;
  color: #fff;
  background: #132D42;
  width: 300px;
  border-radius: 30px;
  display: block;
  text-align: center;
  padding: 15px 0;
}
.detail .detail-block .info-tb .btn .txt {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
}
.detail .detail-block .info-tb .btn .txt::before {
  content: "";
  -webkit-mask: url(../img/common/ico-tel.svg) no-repeat center/contain;
          mask: url(../img/common/ico-tel.svg) no-repeat center/contain;
  width: 17px;
  height: 17px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.detail .detail-block .map {
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 50%;
  max-width: 440px;
}
.detail .detail-block .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.detail .studio-block {
  overflow: hidden;
  background: #EAF0F4;
  padding: 65px 0 60px;
}
.detail .studio-block .inner-block {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
}
.detail .studio-block .studio-splide {
  z-index: 0;
  margin-top: 40px;
}
.detail .studio-block .splide__pagination {
  margin-top: 22px;
}
.detail .studio-block .splide__pagination__page.is-active {
  background: #EC8B39;
}
.detail .studio-block .splide__track {
  left: 10.55vw;
}
.detail .studio-block .c-card {
  padding-bottom: 40px;
  height: 100%;
}
.detail .studio-block .c-card.recommend {
  background: #132D42;
  color: #fff;
}
.detail .studio-block .c-card .txt-wrap {
  position: relative;
}
.detail .studio-block .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.detail .studio-block .btn {
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #25425A;
  position: relative;
  width: 280px;
  display: block;
  border-radius: 60px;
  padding: 17px 0;
  border: 1px solid #25425A;
}
.detail .studio-block .btn::after {
  content: "";
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.detail .breadcrumb-block {
  padding: 15px 0;
  background: #132D42;
}
.detail .breadcrumb-block .breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.detail .breadcrumb-block .breadcrumb li {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.6;
  /* &:not(:has(a)) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  } */
}
.detail .breadcrumb-block .breadcrumb li a {
  font-weight: normal;
  position: relative;
  padding-right: 15px;
  margin-right: 11px;
}
.detail .breadcrumb-block .breadcrumb li a::after {
  content: "";
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* -----------------------------------------------
* search Module
* searchページ用
-------------------------------------------------- */
.search .search-result-section .inner-block {
  padding-top: 80px;
  padding-bottom: 80px;
}
.search .search-result-section .c-ttl-wrap .wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}
.search .search-result-section .result {
  color: #EC8B39;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin-top: -10px;
}
.search .search-result-section .result .small {
  color: #25425A;
  font-size: 20px;
  display: inline-block;
  margin-left: 10px;
}
.search .search-result-section .c-btn01 {
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  min-width: 150px;
}
.search .search-result-section .c-btn01.search-detail-aco-btn::before {
  right: 25px;
}
.search .search-result-section .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.search .filter-area .c-btn01 {
  max-width: 300px;
  padding: 0;
  font-weight: bold;
  min-width: 200px;
}
.search .filter-area .c-btn01:before {
  right: 20px;
}
.search .filter-area .c-btn01 select {
  font-weight: bold;
  text-align: center;
  width: 100%;
  font-size: 12px !important;
}
.search .search-select-wrap {
  background: #EEEEEE;
  border-radius: 20px;
  padding: 15px 15px 13px;
  max-width: 500px;
  margin: 20px auto 0;
}
.search .search-select-wrap .ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}
.search .search-select-wrap .value {
  text-align: center;
}
.search .search-select-wrap .result-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.search .search-select-wrap .result-list li {
  font-size: 16px;
  position: relative;
}
.search .search-select-wrap .result-list li + li {
  margin-left: 15px;
  padding-left: 25px;
}
.search .search-select-wrap .result-list li + li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #132D42;
  border-right: 1px solid #132D42;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.search .search-select-wrap .result-tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 10px auto 0;
  gap: 5px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 5px;
}
.search .search-select-wrap .result-tag-list::-webkit-scrollbar {
  height: 4px;
}
.search .search-select-wrap .result-tag-list::-webkit-scrollbar-track {
  background-color: #D9D9D9;
  border-radius: 5px;
}
.search .search-select-wrap .result-tag-list::-webkit-scrollbar-thumb {
  background-color: #9D9D9D;
  border-radius: 5px;
}
.search .search-select-wrap .result-tag-list li {
  background: #fff;
  border: 1px solid #132D42;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 12px 4px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.search .search-aco-body {
  display: none;
}
.search .search-aco-body .inner-block {
  padding-top: 40px;
  padding-bottom: 30px;
}
.search .result-section .inner-block {
  padding-bottom: 120px;
}
.search .result-section .no-search {
  font-size: 18px;
}
.search .c-btn02 {
  margin-top: 50px;
}

/* -----------------------------------------------
* terms Module
* termsページ用
-------------------------------------------------- */
.terms .terms-section .inner-block {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 1080px;
}
.terms .terms-section .ttl01 {
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  border-bottom: 1px solid #CECECE;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.terms .terms-section .txt-wrap {
  margin-top: 20px;
}
.terms .terms-section .txt-wrap .order-list {
  margin-left: 20px;
  list-style: decimal;
}
.terms .terms-section .txt-wrap .order-list > li {
  margin-top: 10px;
}
.terms .terms-section .txt-wrap .ttl02 {
  margin-top: 40px;
  font-size: 18px;
  font-weight: bold;
}
.terms .terms-section .txt-wrap p {
  margin-top: 10px;
}
.terms .terms-section .txt-wrap .sub-list {
  margin-left: 35px;
}
.terms .terms-section .txt-wrap .sub-list li {
  margin-top: 5px;
}
.terms .terms-section .txt-wrap .sub-list.disc {
  list-style: disc;
}
.terms .terms-section .txt-wrap .sub-list.circle {
  list-style: circle;
}
.terms .terms-section .txt-wrap .sub-list.num {
  margin-left: 0;
}
.terms .terms-section .txt-wrap .sub-list.num li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.terms .terms-section .txt-wrap .update-date {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  main {
    margin-top: 65px;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-header .inner-block {
    padding-right: 0;
    width: 100%;
  }
  .c-header .logo {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 6px;
  }
  .c-header .logo img {
    max-width: 110px;
  }
  .c-header .logo .txt {
    font-size: 8px;
  }
  .c-header .search-btn {
    padding: 10px;
    max-width: 65px;
  }
  .c-header .search-btn .inn::before {
    height: 26px;
    width: 26px;
  }
  .c-header .search-btn .inn {
    font-size: 10px;
    padding-top: 30px;
  }
  .c-header .c-search-wrap {
    border-radius: 20px 20px 0 0;
    max-height: calc(100% - 50px);
    background: transparent;
    margin-bottom: 50px;
    height: 100%;
  }
  .c-header .c-search-wrap .close-btn::before, .c-header .c-search-wrap .close-btn::after {
    height: 14px;
  }
  .c-header .c-search-wrap .close-btn {
    height: 30px;
    width: 30px;
    right: 16px;
  }
  .c-header .c-search-wrap .inn {
    border-radius: 20px 20px 0 0;
    bottom: inherit;
    margin: 50px auto 0;
    height: 100%;
    padding: 40px 0;
  }
  .c-header .c-search-wrap .inner-wrap {
    padding: 0 15px 30px;
    max-height: 562px;
  }
  .c-header .c-search-wrap input[type=text] {
    padding: 15px 15px;
  }
  .c-header .c-search-wrap .wrap.grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .c-header .c-search-wrap .aco-head::before {
    width: 8px;
    height: 8px;
    top: 5px;
  }
  .c-header .c-search-wrap .aco-head.is-open::before {
    top: 10px;
  }
  .c-footer .inner-block {
    padding-top: 40px;
  }
  .c-footer .link-list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 30px;
    gap: 20px 40px;
  }
  .c-footer .copyright {
    font-size: 8px;
    margin-top: 40px;
  }
  .c-ttl01 {
    font-size: 18px;
    padding: 10px 7px 10px 15px;
  }
  .c-ttl02 {
    font-size: 18px;
  }
  .c-news-area .inner-block {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .c-news-area .news-txt::before {
    height: 13px;
    width: 17px;
  }
  .c-news-area .news-txt {
    font-size: 12px;
    padding-left: 27px;
  }
  .c-card-wrap {
    gap: 15px;
  }
  .c-card {
    padding: 10px;
  }
  .c-card.recommend .img::before {
    font-size: 12px;
    padding: 15px 5px 15px 15px;
  }
  .c-card.recommend .img::after {
    left: 80px;
    border-width: 21px 0 21px 21px;
    height: 42px;
    width: 23px;
  }
  .c-card .img.sp-none {
    display: none;
  }
  .c-card .img.sp-none + .txt-wrap {
    margin-top: 0;
  }
  .c-card .txt-wrap {
    margin-top: 20px;
  }
  .c-card .txt-wrap .area-txt {
    margin-bottom: 10px;
  }
  .c-card .txt-wrap .area-txt.box {
    padding: 5px 10px 5px 33px;
  }
  .c-card .txt-wrap .ttl {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .c-card .txt-wrap .txt {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .c-card .txt-wrap .info-list li {
    font-size: 12px;
    padding-left: 20px;
  }
  .c-card .txt-wrap .info-list li::before {
    height: 15px;
    width: 15px;
  }
  .c-card .txt-wrap .info-list li + li {
    margin-top: 0;
  }
  .c-search-wrap .mt-16 {
    margin-bottom: 30px;
  }
  .splide__pagination .splide__pagination__page {
    height: 5px;
    width: 5px;
    margin: 0 2px;
  }
  .paging-area {
    margin: 40px auto 0;
  }
  .paging-area .page-numbers {
    font-size: 12px;
    height: 35px;
    width: 35px;
  }
  .paging-area .page-numbers.prev::before, .paging-area .page-numbers.next::before {
    width: 7px;
    height: 7px;
    top: 1px;
    left: -3px;
  }
  .paging-area .page-numbers.next {
    margin-left: 5px;
  }
  .paging-area .page-numbers.prev {
    margin-right: 5px;
  }
  .paging-area .page-numbers.prev::before {
    left: 3px;
  }
  .form__sub-element.form__sub-element_center {
    overflow-x: visible;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .form__sub-element {
    gap: 5px;
  }
  .form__sub-element + .area__small-cat::before {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .area__item .input-content {
    padding: 7px 9px 9px 7px;
  }
  .c-search-section .c-search-wrap .inner-block {
    padding-top: 32px;
    padding-bottom: 39px;
  }
  .c-search-section > .inner-block {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .c-search-section .c-btn01.sp {
    margin-top: 20px;
  }
  .c-banner-section .inner-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .c-banner-section .banner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .not-found .main-block {
    padding: 30px 0;
  }
  .not-found p {
    font-size: 14px;
    margin-top: 30px;
  }
  .c-btn01 {
    padding: 9px 10px;
    max-width: 106px;
  }
  .c-btn01::before {
    right: 15px;
  }
  .c-btn01.bottom::before {
    top: -2px;
  }
  .c-breadcrumb-block {
    padding: 10px 0;
  }
  .c-breadcrumb-block .c-breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
  }
  .c-breadcrumb-block .c-breadcrumb li {
    font-size: 10px;
  }
  .home .recommend-section .inner-block {
    padding-top: 20px;
  }
  .home .recommend-section .slider-area {
    margin-top: 10px;
    padding-bottom: 20px;
  }
  .home .recommend-section .slider-area .splide-wrapper {
    padding: 20px 0 10px;
  }
  .home .recommend-section .slider-area .c-card .txt-wrap .area-txt {
    top: -35px;
  }
  .home .search-section .c-search-wrap .inner-block {
    padding-top: 32px;
    padding-bottom: 39px;
  }
  .home .search-section > .inner-block {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .home .search-section .c-btn01.sp {
    margin-top: 20px;
  }
  .detail .mv-slide-block {
    padding: 20px 0;
  }
  .detail .mv-slide-block .single-slide {
    width: 100%;
    max-width: 300px;
  }
  .detail .mv-slide-block .mv-splide img {
    max-height: 200px;
  }
  .detail .mv-slide-block .txt {
    margin: 10px 0 0;
    font-weight: normal;
    font-size: 12px;
  }
  .detail .detail-block {
    padding: 20px 0;
  }
  .detail .detail-block .inner-block {
    padding-left: 15px;
    padding-right: 15px;
  }
  .detail .detail-block .ttl {
    font-size: 18px;
    line-height: 1.2;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .detail .detail-block .location-info {
    gap: 16px;
  }
  .detail .detail-block .pin {
    font-size: 12px;
  }
  .detail .detail-block .station {
    font-size: 12px;
  }
  .detail .detail-block .bold-txt {
    margin-top: 20px;
    font-size: 16px;
  }
  .detail .detail-block .desc {
    margin: 10px 0 20px;
  }
  .detail .detail-block .area__small-cat {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 5px;
  }
  .detail .detail-block .area__item + .area__item {
    margin-left: 0;
  }
  .detail .detail-block .content {
    margin-top: 2px;
  }
  .detail .detail-block .info-tb {
    width: 100%;
  }
  .detail .detail-block .info-tb .tr {
    padding: 10px 0;
  }
  .detail .detail-block .info-tb .th {
    font-size: 12px;
  }
  .detail .detail-block .info-tb .link::after {
    top: initial;
  }
  .detail .detail-block .info-tb .btn {
    width: 240px;
    padding: 13px 0;
  }
  .detail .detail-block .map {
    padding-top: 45%;
    margin-top: 10px;
    max-width: none;
  }
  .detail .studio-block {
    padding: 16px 0 18px;
  }
  .detail .studio-block .studio-splide {
    margin-top: 17px;
  }
  .detail .studio-block .splide__pagination {
    margin-top: 2px;
  }
  .detail .studio-block .c-card {
    padding: 17px 17px 22px;
  }
  .detail .studio-block .c-card .area-txt {
    position: absolute;
    color: #fff;
    background: #EC8B39;
    top: -30px;
    left: 0;
    border-radius: 20px;
    font-size: 10px;
    font-weight: normal;
    padding: 5px 10px 5px 33px;
  }
  .detail .studio-block .c-card .area-txt::before {
    width: 11px;
    height: 15px;
    top: 0px;
    left: 12px;
  }
  .detail .studio-block .c-card .area-txt::after {
    display: none;
  }
  .detail .studio-block .c-card .ttl {
    margin-top: 23px;
    display: block;
  }
  .detail .studio-block .btn-wrap {
    margin-top: 20px;
  }
  .detail .studio-block .btn {
    width: 210px;
    padding: 13px 0;
  }
  .detail .studio-block .btn::after {
    right: 27px;
  }
  .detail .breadcrumb-block {
    padding: 10px 0px 0;
  }
  .detail .breadcrumb-block .breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }
  .detail .breadcrumb-block .breadcrumb::-webkit-scrollbar {
    display: none;
  }
  .detail .breadcrumb-block .breadcrumb li {
    font-size: 10px;
  }
  .search .search-result-section .inner-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .search .search-result-section .c-ttl-wrap .wrap {
    gap: 10px;
  }
  .search .search-result-section .result {
    font-size: 28px;
    margin-top: -5px;
  }
  .search .search-result-section .result .small {
    font-size: 14px;
    margin-left: 5px;
  }
  .search .search-result-section .btn-wrap {
    gap: 10px;
  }
  .search .search-result-section .btn-wrap.archive {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .search .filter-area .c-btn01 select {
    padding: 9px 10px;
  }
  .search .search-select-wrap {
    border-radius: 10px;
    padding: 12px 12px 14px;
  }
  .search .search-select-wrap .ttl {
    font-size: 18px;
  }
  .search .search-select-wrap .result-list li {
    font-size: 14px;
  }
  .search .search-select-wrap .result-list li + li {
    margin-left: 10px;
    padding-left: 18px;
  }
  .search .search-select-wrap .result-list li + li::before {
    top: 2px;
    width: 6px;
    height: 6px;
  }
  .search .search-select-wrap .result-tag-list li {
    font-size: 14px;
  }
  .search .search-select-wrap .result-tag-list li + li {
    margin-left: 10px;
  }
  .search .search-aco-body .inner-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .search .result-section .inner-block {
    padding-bottom: 50px;
  }
  .search .result-section .no-search {
    font-size: 14px;
  }
  .terms .terms-section .inner-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .terms .terms-section .ttl01 {
    font-size: 18px;
    line-height: 1.2;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .terms .terms-section .txt-wrap .order-list {
    margin-left: 18px;
  }
  .terms .terms-section .txt-wrap .ttl02 {
    margin-top: 25px;
    font-size: 16px;
  }
  .terms .terms-section .txt-wrap .sub-list {
    margin-left: 20px;
  }
  .terms .terms-section .txt-wrap .update-date {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .search-btn:hover {
    background: #fff;
  }
  .c-header .search-btn:hover .inn {
    color: #132D42;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .search-btn:hover .inn::before {
    background: #132D42;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .c-search-wrap .close-btn:hover {
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .c-search-wrap .aco-head:hover::before {
    top: 10px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-footer .link-list a:hover {
    color: #EC8B39;
  }
  .c-card:hover {
    background: #f2f2f2;
  }
  .c-card:hover .ttl, .c-card:hover .txt, .c-card:hover .info-list li {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-card.recommend {
    border-color: #132D42;
  }
  .c-card.recommend:hover {
    background-color: #0B1D2B;
  }
  .splide__arrow.splide__arrow--prev:hover {
    left: -10px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .splide__arrow.splide__arrow--next:hover {
    right: -10px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .paging-area .page-numbers:hover {
    background: #132D42;
    color: #fff;
    opacity: 1;
  }
  .paging-area .page-numbers:hover::before {
    border-color: #fff;
  }
  .c-btn01:hover {
    background: #132D42;
    border-color: #132D42;
    color: #fff;
  }
  .c-btn01:hover::before {
    border-color: #fff;
  }
  .c-btn02:hover {
    background: #fff;
    color: #EC8B39;
  }
  .c-breadcrumb-block .c-breadcrumb li a:hover {
    text-decoration: underline;
  }
  .detail .splide__pagination {
    margin-top: 25px;
  }
  .detail .detail-block .info-tb .link:hover {
    color: #EC8B39;
  }
  .detail .detail-block .info-tb .link:hover::after {
    background: #EC8B39;
  }
  .detail .detail-block .info-tb .btn:hover {
    background: #fff;
    color: #132D42;
  }
  .detail .detail-block .info-tb .btn:hover .txt::before {
    background: #132D42;
  }
  .detail .studio-block .c-card.recommend:hover {
    background-color: #0B1D2B;
  }
  .detail .studio-block .btn:hover {
    background: #fff;
    color: #25425A;
  }
  .detail .studio-block .btn:hover::after {
    border-color: #25425A;
  }
  .detail .breadcrumb-block .breadcrumb li a:hover {
    text-decoration: underline;
  }
  .search .search-result-section .c-btn01:hover {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .search .filter-area .c-btn01:hover {
    background: #EAF0F4;
    border-color: #CECECE;
    color: #132D42;
  }
  .search .filter-area .c-btn01:hover::before {
    border-color: #132D42;
  }
  .search .filter-area .c-btn01 select {
    padding: 12px 10px 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1360px) {
  .c-header .c-search-wrap .close-btn {
    right: 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .c-card-wrap .c-card {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) {
  .c-card-wrap .c-card {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1370px) {
  .splide__arrow.splide__arrow--prev {
    left: 35px;
  }
  .splide__arrow.splide__arrow--prev:hover {
    left: 25px;
  }
  .splide__arrow.splide__arrow--next {
    right: 35px;
  }
  .splide__arrow.splide__arrow--next:hover {
    right: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .detail .detail-block .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail .detail-block .info-tb {
    width: 100%;
  }
  .detail .detail-block .map {
    max-width: none;
  }
}
@media only screen and (max-width: 767px) and (max-width: 370px) {
  .detail .detail-block .info-tb .link {
    font-size: 12px;
  }
  .detail .detail-block .info-tb .btn {
    width: 100%;
    padding: 13px 20px;
  }
}
@media only screen and (max-width: 1025px) {
  .detail .studio-block .splide__track {
    left: 0;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */