@charset "UTF-8";
/* color */
/* 全体 */
html, body {
  color: #143A60;
  font-family: "游ゴシック", "メイリオ", "ヒラギノ角ゴ", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1025px) {
  html, body {
    font-size: 16px;
  }
}

main {
  position: relative;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  font-weight: bold;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  transition: all 0.5s;
}

@media screen and (min-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: #333;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: text-bottom;
}
@media screen and (min-width: 1025px) {
  img {
    vertical-align: middle;
  }
}

input, button, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

input, button {
  border: none;
}

input {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input:focus-visible {
  outline: none;
}

input[type=checkbox] {
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
input[type=checkbox]::before {
  content: "";
  height: 12px;
  width: 12px;
  display: block;
  border: 1px solid #143A60;
  border-radius: 2px;
}
input[type=checkbox]:checked::before {
  background-color: #143A60;
  background-image: url(../img/check-icon.svg);
  background-position: center;
}

button {
  border-radius: 100px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.5s;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

figure {
  margin: 0;
}

address,
em {
  font-style: normal;
}

iframe {
  width: 100%;
  height: 100%;
}

.container {
  padding: 40px 20px;
}
@media screen and (min-width: 1025px) {
  .container {
    padding: 80px 20px;
  }
}

.inner {
  max-width: 1120px;
  margin: 0 auto;
}

.bg-gray {
  background-color: #F5F4F0;
}

.title {
  font-size: 22px;
}
@media screen and (min-width: 1025px) {
  .title {
    font-size: 34px;
  }
}

.orange-btn {
  background-color: #F0821E;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .orange-btn:hover {
    background-color: rgba(240, 130, 30, 0.7);
  }
}

.orange-outline-btn {
  background-color: transparent;
  color: #F0821E;
  border: 1px solid #F0821E;
  font-weight: bold;
}

.primary-btn {
  background-color: #143A60;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .primary-btn:hover {
    background-color: rgba(20, 58, 96, 0.7);
  }
}

.primary-outline-btn {
  background-color: transparent;
  color: #143A60;
  border: 1px solid #143A60;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .primary-outline-btn:hover {
    background-color: #143A60;
    color: #fff;
  }
}

.outline-btn {
  background-color: #fff;
  border-radius: 3px;
  font-weight: bold;
  font-size: 12px;
  padding: 6px 0;
  width: 100%;
}

.square-btn {
  border-radius: 10px;
}

/* pc, sp */
.pc-layout {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .pc-layout {
    display: block !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-layout {
    display: none !important;
  }
}

.mt-0 {
  margin-top: 0 !important;
}

@media screen and (min-width: 1025px) {
  .pc-mt-80 {
    margin-top: 80px !important;
  }
}
/* header */
.header-wrapper {
  background-color: #fff;
  height: 86px;
  line-height: 86px;
  text-align: center;
}
.header-wrapper .logo {
  font-size: 12px;
  vertical-align: middle;
  display: inline-block;
  line-height: normal;
  font-weight: bold;
}
.header-wrapper .logo img {
  display: block;
  margin: 0 auto;
  width: 161px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .header-wrapper {
    height: 135px;
    line-height: 135px;
  }
  .header-wrapper .logo {
    font-size: 16px;
  }
  .header-wrapper .logo img {
    width: 283px;
  }
}

/* top */
.top-container {
  position: relative;
  overflow: hidden;
}
.top-container .cloud {
  display: flex;
  position: absolute;
  top: 10px;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 358px;
}
@media screen and (min-width: 600px) {
  .top-container .cloud {
    height: 320px;
  }
}
@media screen and (min-width: 1025px) {
  .top-container .cloud {
    top: 40px;
    height: auto;
  }
}
.top-container .cloud img {
  width: auto;
  height: 100%;
}
.top-container .cloud .cloud-img1 {
  -webkit-animation: loop 100s -50s linear infinite;
          animation: loop 100s -50s linear infinite;
}
.top-container .cloud .cloud-img2 {
  -webkit-animation: loop2 100s linear infinite;
          animation: loop2 100s linear infinite;
}
@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media screen and (min-width: 1025px) {
  .top-container .cloud {
    display: flex;
  }
}
.top-container .title {
  font-size: 20px;
}
.top-container .search-block {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .top-container {
    background-image: url(../img/search-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 128px 0;
  }
  .top-container .top-inner {
    position: relative;
    background-color: #fff;
    margin: 0 auto;
    max-width: 1000px;
    padding: 50px 57px;
    border-radius: 20px;
  }
  .top-container .top-inner .title {
    font-size: 24px;
  }
  .top-container .top-inner .search-block {
    margin-top: 30px;
  }
}

/* search */
.search {
  background-image: url(../img/search-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 56px 30px;
}
@media screen and (min-width: 1025px) {
  .search {
    background-image: none;
    padding: 0;
  }
}
.search-container {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 20px;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .search-container {
    padding: 0;
  }
}
.search-block {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.search-block input {
  background-color: #EEE;
  width: 50%;
  padding: 15px 10px;
  font-size: 11px;
}
.search-block input:first-of-type {
  border-radius: 5px 0 0 5px;
  border-right: 1px solid #ccc;
}
.search-block input:nth-of-type(2) {
  border-radius: 0 5px 5px 0;
}
.search-block button {
  display: block;
  padding: 10px 0;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  margin-top: 12px;
  font-size: 16px;
}
.search-block button img {
  margin-right: 10px;
  vertical-align: sub;
  height: 19px;
  padding: 0 0 3px;
}
.search-block .orange-outline-btn img {
  width: 10px;
  padding-bottom: 0;
}
@media screen and (min-width: 600px) {
  .search-block input {
    height: 46px;
    padding-left: 20px;
    width: calc(50% - 50px);
  }
  .search-block input:first-of-type {
    border-radius: 10px 0 0 10px;
  }
  .search-block .top-search {
    border-radius: 0 10px 10px 0;
  }
  .search-block .orange-btn {
    width: 100px;
    margin-top: 0;
  }
  .search-block .primary-btn {
    margin-top: 30px;
  }
  .search-block .sp-layout {
    max-width: 300px;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .search-block {
    max-width: 880px;
  }
  .search-block input {
    font-size: 16px;
    height: 64px;
    padding-left: 20px;
    max-width: 370px;
  }
  .search-block input:first-of-type {
    border-radius: 10px 0 0 10px;
  }
  .search-block input:nth-of-type(2) {
    border-radius: 0;
  }
  .search-block .orange-btn {
    width: 140px;
    border-radius: 0 10px 10px 0;
    font-size: 20px;
    margin-top: 0;
  }
  .search-block .primary-btn {
    margin-top: 30px;
    font-size: 18px;
  }
}

/* tag */
.tag {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 0;
}
@media screen and (min-width: 600px) {
  .tag {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .tag {
    padding-bottom: 0;
  }
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 6px;
  margin-top: 20px;
  overflow: hidden;
  max-height: 137px;
  padding: 0;
  font-size: 12px;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  .tag-list {
    margin-top: 30px;
    max-height: none;
    gap: 10px;
  }
}
.tag-item {
  border: 1px solid #143A60;
  border-radius: 100px;
  transition: all 0.5s;
}
@media screen and (min-width: 1025px) {
  .tag-item:hover {
    background-color: #143A60;
  }
}
.tag-item a {
  display: inline-block;
  padding: 8px 10px;
  color: #143A60;
  font-size: 11px;
}
@media screen and (min-width: 1025px) {
  .tag-item a {
    font-size: 14px;
    padding: 10px 18px;
  }
}
@media screen and (min-width: 1025px) {
  .tag-item a:hover {
    color: #fff;
  }
}

.orange-tag {
  justify-content: flex-start;
}
.orange-tag .tag-item {
  border: 1px solid #F0821E;
}
.orange-tag .tag-item a {
  color: #F0821E;
}
@media screen and (min-width: 1025px) {
  .orange-tag .tag-item:hover {
    background-color: #F0821E;
  }
  .orange-tag .tag-item:hover a {
    color: #fff;
  }
}

/* see more */
.see-more-block {
  position: relative;
}
.see-more-block.active .gradient {
  display: none;
}
.see-more-block.active button::after {
  transition: 0.3s ease;
  transform: rotate(180deg);
}
.see-more-block.active .tag-list {
  overflow: auto;
  max-height: none;
  margin-bottom: 50px;
}
.see-more-block .gradient {
  position: absolute;
  top: 87px;
  width: 100%;
  height: 50px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
@media screen and (min-width: 600px) {
  .see-more-block .gradient {
    display: none;
  }
}
.see-more-block .see-more-btn {
  padding: 11px 16px;
  position: relative;
  bottom: 30px;
}
.see-more-block .see-more-btn::after {
  content: "";
  display: inline-block;
  background-image: url(../img/chevron-down-icon.svg);
  width: 8px;
  height: 5px;
  vertical-align: middle;
  margin-left: 8px;
  transition: all 0.3s;
}
@media screen and (min-width: 600px) {
  .see-more-block .see-more-btn {
    display: none;
  }
}
.see-more-block .see-more-btn img {
  margin-left: 8px;
  vertical-align: inherit;
}

/* carousel */
.swiper-container {
  position: relative;
  padding: 15px 0;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .swiper-container {
    padding: 20 0;
  }
}
.swiper-container .swiper {
  width: 305px;
}
@media screen and (min-width: 1025px) {
  .swiper-container .swiper {
    width: 100%;
  }
}
.swiper-container .swiper a {
  transition: all 0.5s;
}
@media screen and (min-width: 1025px) {
  .swiper-container .swiper a:hover {
    opacity: 0.7;
  }
}
.swiper-container .swiper-pagination {
  bottom: -15px !important;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #F0821E !important;
}
@media screen and (min-width: 1025px) {
  .swiper-container .swiper-pagination:hover {
    opacity: 0.8;
  }
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  color: #F0821E;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  width: 30px;
  height: 30px;
  margin-top: 0;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.swiper-container .swiper-button-prev::after,
.swiper-container .swiper-button-next::after {
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .swiper-container .swiper-button-prev:hover,
.swiper-container .swiper-button-next:hover {
    opacity: 0.9;
  }
}
.swiper-container .swiper-button-prev {
  left: calc(50% - 168px);
}
.swiper-container .swiper-button-next {
  right: calc(50% - 168px);
}
@media screen and (min-width: 1025px) {
  .swiper-container {
    padding-top: 60px;
  }
  .swiper-container .swiper {
    width: 100%;
  }
  .swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
    width: 40px;
    height: 40px;
    top: calc(50% + 25px);
  }
  .swiper-container .swiper-button-prev {
    left: 30px;
  }
  .swiper-container .swiper-button-next {
    right: 30px;
  }
}

/* category */
.category {
  padding: 0 20px;
}
.category .title-wrapper {
  display: flex;
  justify-content: space-between;
}
.category .title-wrapper button {
  padding: 8px 22px;
}
.category .title-wrapper button img {
  margin-right: 6px;
  vertical-align: bottom;
}
@media screen and (min-width: 1025px) {
  .category .title-wrapper button {
    font-size: 14px;
  }
  .category .title-wrapper button img {
    vertical-align: text-bottom;
  }
}
.category-block {
  border-bottom: 4px solid #ddd;
  padding: 40px 0;
}
@media screen and (min-width: 1025px) {
  .category-block {
    padding: 80px 0;
  }
}
.category-block:last-child {
  border-bottom: none;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}
@media screen and (min-width: 600px) {
  .category-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(204px, 1fr));
    justify-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .category-list {
    gap: 40px 25px;
  }
}
.category-item {
  width: calc(50% - 10px);
  text-align: center;
  position: relative;
}
.category-item a {
  background-color: #fff;
  border: 2px solid #143A60;
  color: #143A60;
  font-weight: bold;
  border-radius: 20px;
  padding: 17px;
  display: block;
  box-shadow: 0 4px 0 #ddd;
  transition: all 0.6s;
}
.category-item a img {
  display: block;
  margin: 0 auto 13px;
}
@media screen and (min-width: 1025px) {
  .category-item a:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.category-item.medical a {
  background-image: linear-gradient(-45deg, #2CAEC6 17px, transparent 0);
}
.category-item.food a {
  background-image: linear-gradient(-45deg, #EA3F3F 17px, transparent 0);
}
.category-item.relaxation a {
  background-image: linear-gradient(-45deg, #2EB788 17px, transparent 0);
}
@media screen and (min-width: 600px) {
  .category-item {
    width: 204px;
  }
  .category-item a {
    border-width: 3px;
  }
}

/* news */
.news {
  padding: 40px 0;
}
.news-block {
  margin-top: 40px;
}
.news-block .title {
  margin-left: 20px;
}
.news-title {
  font-size: 34px;
  color: #F0821E;
  text-align: center;
}
.news-title span {
  color: #143A60;
  font-size: 12px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .news {
    padding: 100px 20px;
  }
  .news-block {
    margin-top: 60px;
  }
  .news-block .title {
    margin-left: 0;
  }
  .news-title {
    font-size: 60px;
  }
  .news-title span {
    font-size: 20px;
    margin-top: 15px;
  }
}

/* scroll */
.scroll-list {
  display: flex;
  width: 100%;
  overflow-y: hidden;
  margin-top: 25px;
}
@media screen and (min-width: 1025px) {
  .scroll-list {
    margin-top: 40px;
    gap: 30px;
  }
}

.scroll-item {
  width: 280px;
  flex-shrink: 0;
  padding-right: 20px;
  margin-bottom: 10px;
}
.scroll-item:first-of-type {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .scroll-item {
    max-width: 350px;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .scroll-item {
    padding-right: 0;
  }
  .scroll-item:first-of-type {
    margin-left: 0;
  }
}
.scroll-item a .scroll-img {
  overflow: hidden;
  border-radius: 20px;
}
.scroll-item a .scroll-img img {
  transition: all 0.6s;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 175px;
}
@media screen and (min-width: 600px) {
  .scroll-item a .scroll-img img {
    height: 222px;
  }
}
@media screen and (min-width: 1025px) {
  .scroll-item a .scroll-img img {
    height: 235px;
  }
}
.scroll-item a time {
  display: block;
  color: #F0821E;
  font-size: 14px;
  margin-top: 18px;
}
.scroll-item a h4 {
  color: #333333;
  font-size: 14px;
  margin-top: 16px;
  transition: all 0.4s;
}
@media screen and (min-width: 1025px) {
  .scroll-item a h4 {
    font-size: 20px;
  }
}
.scroll-item a p {
  color: #797979;
  margin: 20px 0 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 1025px) {
  .scroll-item a:hover .scroll-img img {
    transform: scale(1.1);
  }
  .scroll-item a:hover h4 {
    color: #F0821E;
  }
}

.recent-check {
  padding: 40px 0 30px;
}
@media screen and (min-width: 1025px) {
  .recent-check {
    padding: 80px 20px 70px;
  }
}
.recent-check .title {
  margin-bottom: 30px;
  margin-left: 20px;
}
@media screen and (min-width: 1025px) {
  .recent-check .title {
    margin-left: 0;
  }
}
.recent-check-item {
  width: 160px;
}
.recent-check .scroll-list figure {
  padding-bottom: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .recent-check .scroll-list figure {
    padding-bottom: 0;
  }
}
.recent-check .scroll-list figure .scroll-img {
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .recent-check .scroll-list figure .scroll-img {
    border-radius: 20px;
  }
}
.recent-check .scroll-list figure .scroll-img img {
  height: 94px;
}
@media screen and (min-width: 600px) {
  .recent-check .scroll-list figure .scroll-img img {
    height: 159px;
  }
}
@media screen and (min-width: 1025px) {
  .recent-check .scroll-list figure .scroll-img img {
    height: 173px;
  }
}
.recent-check .scroll-list figcaption {
  position: relative;
  padding: 10px 10px 0 0;
  color: #797979;
  font-weight: bold;
  transition: all 0.4s;
}
.recent-check .scroll-list figcaption::after {
  content: "";
  width: 6px;
  height: 10px;
  display: block;
  background-image: url(../img/chevron-right-icon-orange.svg);
  position: absolute;
  top: 15px;
  right: 0;
}
@media screen and (min-width: 1025px) {
  .recent-check .scroll-list figcaption::after {
    width: 7px;
    height: 12px;
    top: 17px;
  }
}
@media screen and (min-width: 1025px) {
  .recent-check .scroll-list a:hover img {
    transform: scale(1.1);
  }
  .recent-check .scroll-list a:hover figcaption {
    color: #F0821E;
  }
}
@media screen and (min-width: 600px) {
  .recent-check .scroll-item {
    max-width: 257px;
    width: 100%;
  }
}
.recent-check .tag-block {
  margin-left: 20px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .recent-check .tag-block {
    margin-left: 0;
  }
}
.recent-check .tag-block .tag-title {
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
}
.recent-check .tag-block .tag-title:first-of-type {
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  .recent-check .tag-block .tag-title {
    font-size: 18px;
    margin-top: 30px;
  }
  .recent-check .tag-block .tag-title:first-of-type {
    margin-top: 40px;
  }
}
.recent-check .tag-block .tag-title + .tag-list {
  margin-top: 10px;
}
.recent-check .tag-block .tag-list {
  max-height: none;
}

/* footer */
.footer {
  font-size: 12px;
  background-color: #F0821E;
  color: #fff;
}
.footer-title {
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  .footer-title {
    font-size: 30px;
    text-align: center;
  }
}
.footer-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  border-bottom: 4px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .footer-list {
    -moz-column-gap: 16px;
         column-gap: 16px;
    padding-bottom: 60px;
    margin-top: 30px;
    justify-content: center;
  }
}
.footer-item a {
  color: #fff;
  font-size: 12px;
}
.footer-item a::after {
  content: "|";
  margin-left: 12px;
}
@media screen and (min-width: 1025px) {
  .footer-item a {
    font-size: 14px;
  }
  .footer-item a::after {
    margin-left: 18px;
  }
}
@media screen and (min-width: 1025px) {
  .footer-item a:hover {
    text-decoration: underline;
  }
}
.footer-item:last-child a::after {
  content: "";
}
.footer a {
  display: inline-block;
  padding: 5px;
}

/* share */
.share {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .share {
    margin-top: 60px;
  }
}
.share h4 {
  font-weight: normal;
}
.share h4::before {
  content: "＼";
  margin-right: 10px;
}
.share h4::after {
  content: "／";
  margin-left: 10px;
}
@media screen and (min-width: 1025px) {
  .share h4 {
    font-size: 16px;
  }
}
.share .sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}
.share .sns-item a {
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  line-height: 30px;
  width: 30px;
  height: 30px;
  padding: 0;
}
.share .sns-item a img {
  width: 30px;
  height: 30px;
  padding: 7px;
  vertical-align: text-bottom;
}
@media screen and (min-width: 1025px) {
  .share .sns-item a {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .share .sns-item a img {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .share .sns-item a:hover {
    opacity: 0.7;
  }
}

.share-color {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .share-color {
    margin-top: 9px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .share-color a img {
    vertical-align: sub;
  }
}
.share-color .line a {
  background-color: #00b900;
}
.share-color .facebook a {
  background-color: #1877f2;
}
.share-color .twitter a {
  background-color: #1DA1F2;
}
.share-color .hatena-b a {
  background-color: #00A4DE;
}
.share-color .mail a {
  background-color: #F0821E;
}
.share-color cite {
  font-style: normal;
  font-size: 11px;
  margin-top: 15px;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .share-color cite {
    font-size: 12px;
  }
}

/* company */
.company {
  margin: 30px 0 0;
  text-align: center;
}
.company-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.company-nav a {
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .company-nav a:hover {
    opacity: 0.7;
  }
}
.company .footer-note-modal {
  padding: 5px;
  font-weight: bold;
  display: block;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .company .footer-note-modal:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1025px) {
  .company {
    font-size: 14px;
  }
}
.company .copyright {
  margin-top: 20px;
  color: #FCE6D1;
}

/* breadcrumb */
.breadcrumb {
  font-size: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .breadcrumb {
    font-size: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .breadcrumb {
    margin-bottom: 40px;
  }
}
.breadcrumb ol {
  display: flex;
  margin-top: 5px;
}
.breadcrumb ol li {
  color: #797979;
}
.breadcrumb ol li a {
  color: #797979;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .breadcrumb ol li a:hover {
    color: rgba(121, 121, 121, 0.7);
  }
}
.breadcrumb ol li:not(:last-of-type)::after {
  content: "";
  background-image: url(../img/chevron-right-icon-gray.svg);
  width: 5px;
  height: 8px;
  display: inline-block;
  margin: 0 8px;
}
@media screen and (min-width: 1025px) {
  .breadcrumb ol li:not(:last-of-type)::after {
    margin: 0 10px;
  }
}

/* 一覧画面 */
.list-container {
  padding: 20px 20px 50px;
}

.list-search .search-container {
  text-align: left;
  box-shadow: 0 6px 0 #ddd;
}
.list-search .title {
  font-size: 16px;
}
.list-search .search-block button {
  width: 100%;
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .list-search .search-block button {
    margin-top: 20px;
  }
}
.list-search .search-block button:disabled {
  background-color: #797979;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .list-search .search-block .primary-btn,
.list-search .search-block .orange-btn,
.list-search .search-block h2 {
    font-size: 20px;
  }
  .list-search .search-block .orange-outline-btn {
    text-align: left;
    padding: 12px 20px;
    position: relative;
    border-width: 2px;
  }
  .list-search .search-block .orange-outline-btn img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
  }
  .list-search .search-block .search-area {
    margin-top: 40px;
  }
  .list-search .search-block .search-category {
    margin-top: 30px;
    border-top: 2px solid #ddd;
    padding-top: 30px;
    width: 100%;
  }
}
.list-search .no-option {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .list-search .no-option {
    margin-top: 30px;
  }
}
.list-search .tag-block {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #ddd;
}
@media screen and (min-width: 1025px) {
  .list-search .tag-block {
    padding-top: 30px;
  }
}
.list-search .tag-list {
  margin-top: 15px;
  justify-content: flex-start;
}

.search-number {
  text-align: center;
  color: #797979;
  font-size: 14px;
  margin: 40px 0 10px;
}
.search-number .total-number {
  color: #F0821E;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .search-number {
    position: absolute;
    top: -35px;
    right: 0;
    margin: 0;
  }
}

.items {
  padding: 25px 20px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 0 #ddd;
}
@media screen and (min-width: 1025px) {
  .items {
    box-shadow: 0 6px 0 #ddd;
    padding: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .items > a:hover {
    opacity: 0.7;
  }
}
.items .title {
  font-size: 20px;
  text-decoration: underline;
  color: #143A60;
  display: inline-block;
  margin-bottom: 8px;
}
@media screen and (min-width: 1025px) {
  .items .title {
    font-size: 30px;
  }
}
.items .transportation-access,
.items address {
  text-indent: -2em;
  padding-left: 2em;
  margin-top: 7px;
  color: #797979;
  font-size: 10px;
}
.items .transportation-access img,
.items address img {
  margin-right: 8px;
}
@media screen and (min-width: 1025px) {
  .items .transportation-access,
.items address {
    font-size: 12px;
  }
}
.items .breadcrumb {
  display: flex;
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 10px;
}
@media screen and (min-width: 1025px) {
  .items .breadcrumb {
    font-size: 12px;
  }
}
.items .breadcrumb img {
  margin-right: 3px;
}
.items em {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-top: 15px;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .items em {
    font-size: 20px;
    margin-top: 20px;
  }
}
.items .item-img {
  margin-top: 15px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 600px) {
  .items .item-img {
    width: 100%;
    margin-top: 0;
  }
}
.items .item-img img {
  transition: all 0.4s;
  border-radius: 20px;
  width: 100%;
  max-width: 340px;
}
@media screen and (min-width: 1025px) {
  .items .item-img img:hover {
    opacity: 0.7;
  }
}
.items .reservation-block {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .items .reservation-block {
    display: block;
    margin-top: 0;
  }
}
.items .reservation-block button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
  width: 50%;
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .items .reservation-block button {
    width: 100%;
    margin: 0 auto 20px;
    max-width: 300px;
  }
  .items .reservation-block button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .items .reservation-block button img.tel-icon {
    margin-right: 6px;
  }
}
@media screen and (min-width: 1025px) {
  .items .reservation-block button {
    padding: 23px 0;
    font-size: 16px;
    white-space: nowrap;
  }
}
.items .reservation-block button .brackets {
  font-size: 10px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .items .reservation-block button .brackets {
    font-size: 13px;
    display: inline;
  }
}
.items .tel-note {
  position: relative;
  text-align: center;
  margin-top: 10px;
}
.items .tel-note span {
  color: #797979;
  font-size: 12px;
  text-decoration: underline;
}
@media screen and (min-width: 600px) {
  .items .tel-note span:hover + .note-dialog {
    display: block;
  }
}
.items .tel-note .note-dialog {
  display: none;
  color: #fff;
  background-color: rgba(51, 51, 51, 0.95);
  padding: 17px 15px;
  border-radius: 20px;
  width: 275px;
  font-size: 12px;
  text-align: left;
  position: absolute;
  top: -145px;
  left: 50%;
  transform: translateX(-50%);
}
.items .tel-note .note-dialog::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  border: 11px solid transparent;
  border-top: 10px solid rgba(51, 51, 51, 0.95);
}
.items .tel-note .note-dialog.is-show {
  display: block;
}
@media screen and (min-width: 600px) {
  .items .flex-block {
    display: flex;
    margin-top: 20px;
  }
}
.items .flex-block .right-block {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .items .flex-block .right-block {
    margin-left: 30px;
  }
}
.items .availability {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .items .availability {
    width: 100%;
    max-width: 944px;
  }
}
@media screen and (min-width: 1025px) {
  .items .availability {
    margin-top: 30px;
    width: 100%;
  }
}
.items .availability-title {
  display: flex;
  align-items: center;
}
.items .availability-title img {
  margin-right: 8px;
}
.items .availability-title h3 {
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .items .availability-title h3 {
    font-size: 20px;
  }
}
.items .availability-block {
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .items .availability-block {
    margin-top: 30px;
  }
}
.items .availability-block .sat .week {
  background-color: #B7D6E5;
}
.items .availability-block .sun .week {
  background-color: #F8CDCD;
}
.items .availability-block .week {
  background-color: #E8E4D5;
  border-radius: 2px;
  padding: 4px 0;
  text-align: center;
  font-size: 11px;
}
@media screen and (min-width: 1025px) {
  .items .availability-block .week {
    font-size: 16px;
  }
}
.items .availability .availability-list {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
}
.items .availability .availability-list li {
  width: 14.2857142857%;
  border-bottom: 1px solid #ddd;
}
.items .availability .availability-list li.event-invalid {
  pointer-events: none;
}
.items .availability .availability-list .reservation-link {
  padding: 3px 3px 5px;
  display: block;
  color: #333;
}
@media screen and (min-width: 1025px) {
  .items .availability .availability-list .reservation-link {
    padding: 5px 4px 8px;
  }
}
.items .availability .availability-list .reservation-link:last-child {
  border-right: 1px solid #ddd;
}
@media screen and (min-width: 1025px) {
  .items .availability .availability-list .reservation-link:hover {
    background-color: #f5f4f0;
  }
}
.items .availability .availability-list .reservation-link .date {
  font-size: 11px;
  padding: 5px 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .items .availability .availability-list .reservation-link .date {
    font-size: 12px;
  }
}
.items .availability .availability-list .reservation-link .ok::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #F0821E;
}
@media screen and (min-width: 1025px) {
  .items .availability .availability-list .reservation-link .ok::before {
    width: 20px;
    height: 20px;
  }
}
.items .availability .availability-list .reservation-link .ng::before,
.items .availability .availability-list .reservation-link .rest::before,
.items .availability .availability-list .reservation-link .question::before {
  display: block;
  text-align: center;
  color: #797979;
  font-size: 11px;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .items .availability .availability-list .reservation-link .ng::before,
.items .availability .availability-list .reservation-link .rest::before,
.items .availability .availability-list .reservation-link .question::before {
    font-size: 16px;
  }
}
.items .availability .availability-list .reservation-link .ng::before {
  content: "-";
}
.items .availability .availability-list .reservation-link .rest::before {
  content: "休";
}
.items .availability .availability-list .reservation-link .question::before {
  content: "問";
  color: #F0821E;
}
.items .availability-text {
  color: #797979;
  font-size: 12px;
  margin-top: 10px;
  text-indent: -1em;
  padding: 1em;
}
@media screen and (min-width: 1025px) {
  .items .availability-text {
    margin-top: 15px;
  }
}
.items table {
  color: #333;
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .items table {
    margin-top: 30px;
  }
}
.items table tr {
  border-bottom: 1px solid #E8E4D5;
}
.items table tr:first-of-type {
  border-top: 1px solid #E8E4D5;
}
.items table th,
.items table td {
  display: block;
  text-align: left;
  padding-bottom: 10px;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .items table th,
.items table td {
    display: table-cell;
    padding: 16px 0;
  }
}
.items table th {
  display: flex;
  align-items: center;
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .items table th {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 16px 50px 0 0;
  }
}
.items table th img {
  margin-right: 8px;
}

.list-items {
  margin-bottom: 20px;
}
.list-items a {
  display: inline-flex;
  align-items: flex-start;
}
.list-items:last-of-type {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .list-items {
    margin-bottom: 50px;
  }
  .list-items:last-of-type {
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1025px) {
  .list-items .availability-block .week {
    font-size: 12px;
  }
}

.list-crown {
  display: inline-block;
  position: relative;
  width: 36px;
  flex-shrink: 0;
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  z-index: 0;
  margin-right: 10px;
}
.list-crown::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 0;
  border: 18px solid transparent;
  border-bottom-width: 30px;
  z-index: -1;
}
.list-crown::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  display: inline;
  border: 18px solid transparent;
  border-top-width: 9px;
  z-index: -1;
}
.list-crown.list-crown1::before {
  border-bottom-color: #fcca41;
}
.list-crown.list-crown1::after {
  border-color: #fdbe10;
  border-top-color: transparent;
}
.list-crown.list-crown2::before {
  border-bottom-color: #b9b8b8;
}
.list-crown.list-crown2::after {
  border-color: #adadad;
  border-top-color: transparent;
}
.list-crown.list-crown3::before {
  border-bottom-color: #b6826b;
}
.list-crown.list-crown3::after {
  border-color: #b87251;
  border-top-color: transparent;
}
.list-crown.list-crown0 {
  width: auto;
  min-width: 34px;
  height: 28px;
  padding: 0 5px;
  background-color: #797979;
  border-radius: 15px;
}
.list-crown.list-crown0::before {
  content: none;
}
.list-crown.list-crown0::after {
  content: none;
}
@media screen and (min-width: 1025px) {
  .list-crown {
    width: 42px;
    margin-top: 8px;
    font-size: 24px;
  }
  .list-crown::before {
    bottom: 8px;
    border-width: 21px;
    border-bottom-width: 33px;
  }
  .list-crown::after {
    border-width: 21px;
    border-top-width: 12px;
  }
  .list-crown.list-crown0 {
    min-width: 42px;
    height: 34px;
  }
}

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
}
@media screen and (min-width: 1025px) {
  .pagination {
    margin-bottom: 100px;
  }
}
.pagination .page-item {
  text-align: center;
  width: 34px;
  height: 34px;
  background-color: #fff;
  font-size: 16px;
  border-radius: 5px;
}
.pagination .page-item a {
  border-radius: 5px;
  color: #F0821E;
  display: block;
  height: 34px;
  line-height: 34px;
}
@media screen and (min-width: 1025px) {
  .pagination .page-item a:hover {
    background-color: #F0821E;
    color: #fff;
  }
}
.pagination .page-item.active, .pagination .page-item.disabled {
  background-color: #F0821E;
}
.pagination .page-item.active a, .pagination .page-item.disabled a {
    color: #fff;;
}
.pagination .page-item.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* advertisement */
.sp-advertisement {
  margin: 40px 20px;
  text-align: center;
}
.sp-advertisement a {
  display: block;
  margin-top: 20px;
}
.sp-advertisement a:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 1025px) {
  .sp-advertisement a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 1025px) {
  .sp-advertisement {
    display: none;
  }
}

.pc-advertisement {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pc-advertisement {
    display: block;
    margin-top: 50px;
  }
  .pc-advertisement a {
    padding-bottom: 20px;
    display: block;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .pc-advertisement a:hover {
    opacity: 0.8;
  }
}

/* fixed */
.fixed-menu .footer {
  padding-bottom: 106px;
}
@media screen and (min-width: 600px) {
  .fixed-menu .footer {
    padding-bottom: 40px;
  }
}

.fixed-block {
  background-color: rgba(232, 228, 213, 0.9);
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  z-index: 1;
}
.fixed-block button {
  font-size: 13px;
  padding: 13px 0;
  width: 50%;
}
.fixed-block button:first-of-type {
  margin-right: 10px;
}
.fixed-block button img {
  margin-right: 8px;
}

.reservation-fixed-menu .footer {
  padding-bottom: 106px;
}
@media screen and (min-width: 1025px) {
  .reservation-fixed-menu .footer {
    padding-bottom: 120px;
  }
}

.reservation-fixed-block {
  justify-content: center;
}
.reservation-fixed-block button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding: 6.5px 0;
  max-width: 490px;
}
.reservation-fixed-block button .brackets {
  display: block;
  font-size: 10px;
}
.reservation-fixed-block .orange-outline-btn {
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .reservation-fixed-block button {
    font-size: 24px;
    padding: 11px 0;
  }
  .reservation-fixed-block button .brackets {
    font-size: 18px;
    display: inline;
  }
  .reservation-fixed-block button img {
    width: 20px;
    height: 20px;
  }
}

/* 一覧の横並び */
@media screen and (min-width: 1025px) {
  .pc-flex {
    position: relative;
    display: flex;
  }
  .pc-flex .list-search {
    width: 320px;
    min-width: 320px;
    margin-right: 50px;
  }
  .pc-flex .search-container {
    padding: 30px;
  }
  .pc-flex .search-container .orange-btn {
    border-radius: 100px;
    margin: 0;
  }
  .pc-flex main {
    flex: 1;
  }
  .pc-flex .square-btn:hover + .tooltip-container {
    display: block;
  }
}

/* tooltip */
.tooltip-container {
  display: none;
  position: absolute;
  left: 285px;
  z-index: 2;
  padding-left: 20px;
  transition: all 0.5s;
}
.tooltip-container:hover {
  display: block;
}
.tooltip-container .tooltip {
  background-color: #fff;
  border: 2px solid #F0821E;
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.2);
  border-radius: 30px;
  padding: 40px 40px 50px;
  width: clamp(680px, 100% - 320px, 800px);
  z-index: 2;
}
.tooltip-container .tooltip-head {
  background-color: #F5F4F0;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 12px 20px;
  font-size: 16px;
  color: #797979;
}
.tooltip-container .tooltip-head ol::before {
  content: "";
  background-image: url(../img/location-icon-orange.svg);
  width: 12px;
  height: 16px;
  display: block;
  margin-right: 10px;
  margin-top: 4px;
}
.tooltip-container .tooltip-head ol li {
  white-space: nowrap;
}
.tooltip-container .tooltip-head ol li:last-of-type {
  white-space: pre-line;
}
.tooltip-container .tooltip-head ol li a {
  color: #F0821E;
}
.tooltip-container .tooltip-head ol li a:hover {
  opacity: 0.7;
}
.tooltip-container .tooltip-head ol li::after {
  vertical-align: middle;
}
.tooltip-container .tooltip-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.tooltip-container .tooltip-body ul li {
  min-width: 33.3333333333%;
}
.tooltip-container .tooltip-body ul li a {
  color: #797979;
  margin-right: 20px;
  display: block;
}
.tooltip-container .tooltip-body ul li a::before {
  content: "";
  background-image: url(../img/chevron-right-icon-orange.svg);
  width: 6px;
  height: 10px;
  display: inline-block;
  margin-right: 10px;
}
.tooltip-container .tooltip-body ul li a:hover {
  text-decoration: underline;
}
.tooltip-container .tooltip::before {
  content: "";
  position: absolute;
  top: 47px;
  left: -8px;
  margin-top: 50px;
  border: 12px solid transparent;
  border-right: 18px solid #FFF;
  z-index: 2;
}
.tooltip-container .tooltip::after {
  content: "";
  position: absolute;
  top: 47px;
  left: -14px;
  margin-top: 48px;
  border: 14px solid transparent;
  border-right: 20px solid #F0821E;
  z-index: 1;
}
.tooltip-container.tooltip-area {
  top: 84px;
}

.tooltip-container.tooltip-category {
  top: 313px;
}

/* filter */
.filter .title {
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .filter .title {
    font-size: 20px;
  }
}
.filter .picky-list,
.filter .trouble-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  margin-top: 20px;
}
.filter .picky-list {
  gap: 9px 0;
}
.filter .picky-item,
.filter .trouble-item {
  width: 50%;
  flex-basis: 1;
}
.filter .picky-item label,
.filter .picky-item a,
.filter .trouble-item label,
.filter .trouble-item a {
  font-size: 14px;
  color: #143A60;
}
.filter .picky-item a::before,
.filter .trouble-item a::before {
  content: "";
  background-image: url(../img/chevron-right-icon-orange.svg);
  width: 6px;
  height: 10px;
  display: inline-block;
  margin-right: 8px;
}
@media screen and (min-width: 1025px) {
  .filter .picky-item a:hover,
.filter .trouble-item a:hover {
    text-decoration: underline;
  }
}
.filter .picky-item {
  width: 48%;
}

/* 詳細 */
.detail {
  color: #333;
}
@media screen and (min-width: 1025px) {
  .detail {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1025px) {
  .detail .breadcrumb {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .detail .items {
    padding: 50px 60px 60px;
  }
}
.detail .title {
  text-decoration: none;
  color: #143A60;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .detail .title {
    font-size: 40px;
  }
}
.detail .ruby {
  font-size: 12px;
  display: block;
  color: #797979;
  margin-top: 5px;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .detail .ruby {
    font-size: 16px;
    margin-top: 0;
  }
}
.detail .badge-block {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
}
.detail .badge-block .badge-content {
  display: flex;
  margin-top: 10px;
}
.detail .badge-block .badge {
  align-self: flex-start;
  border-radius: 100px;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 10px;
}
@media screen and (min-width: 1025px) {
  .detail .badge-block .badge {
    font-size: 11px;
  }
}
.detail .badge-block .badge-text {
  margin: 0 10px 0 5px;
  font-size: 11px;
  color: #797979;
  padding: 2px 0;
}
@media screen and (min-width: 1025px) {
  .detail .badge-block .badge-text {
    font-size: 12px;
  }
}
.detail-nav {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .detail-nav {
    margin-top: 40px;
  }
}
.detail-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.detail-nav ul li {
  width: calc(33.3333333333% - 5px);
  text-align: center;
  font-weight: bold;
}
.detail-nav ul li a {
  padding: 9px 0;
  color: #fff;
  border-radius: 6px;
  display: block;
}
.detail-nav ul li.active {
  padding: 9px 0;
  border-radius: 6px;
}
@media screen and (min-width: 1025px) {
  .detail-nav {
    border-radius: 20px;
    padding: 5px;
  }
  .detail-nav ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    justify-items: center;
    gap: 10px;
  }
  .detail-nav ul li {
    width: 100%;
  }
  .detail-nav ul li a {
    border-radius: 19px;
    padding: 19px 0;
    font-size: 20px;
  }
  .detail-nav ul li.active {
    border-radius: 19px;
    padding: 19px 0;
    font-size: 20px;
  }
}
.detail .float-block {
  margin-top: 20px;
}
.detail .float-block .text {
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .detail .float-block .swiper img:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 600px) {
  .detail .float-block .item-img {
    float: left;
    width: 50%;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .detail .float-block em {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .detail .float-block {
    margin-top: 50px;
  }
  .detail .float-block .item-img {
    margin-right: 40px;
  }
  .detail .float-block .text {
    margin-top: 25px;
  }
}
.detail .swiper-container {
  margin-bottom: 25px;
  padding-top: 0;
}
@media screen and (min-width: 1025px) {
  .detail .swiper-container {
    margin-bottom: 20px;
  }
}
.detail .swiper-container .swiper {
  width: 100%;
}
.detail .swiper-container .swiper img {
  aspect-ratio: 295/213;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #eee;
  max-width: none;
}
.detail .outline-btn {
  display: inline-block;
  text-align: center;
  position: relative;
}
.detail .outline-btn::after {
  content: "";
  width: 6px;
  height: 10px;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
}
@media screen and (min-width: 1025px) {
  .detail .outline-btn {
    border: none !important;
    text-decoration: underline;
    display: inline;
  }
  .detail .outline-btn:hover {
    opacity: 0.7;
  }
  .detail .outline-btn::after {
    display: none;
  }
}
.detail em {
  font-size: 16px;
  line-height: 1.625;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .detail em {
    font-size: 30px;
    margin-top: 0;
  }
}
.detail p {
  line-height: 1.75;
}
@media screen and (min-width: 1025px) {
  .detail .text {
    margin-top: 30px;
  }
}
.detail .reservation-block {
  justify-content: center;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .detail .reservation-block {
    display: flex;
    margin-top: 50px;
  }
  .detail .reservation-block button {
    font-size: 24px;
    max-width: 490px;
    padding: 16px 0;
  }
  .detail .reservation-block button .brackets {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  .detail .tel-note {
    text-align: right;
    margin-top: 0;
    margin-right: calc(25% - 101px);
  }
}
.detail .tel-note .note-dialog {
  top: -175px;
}
@media screen and (min-width: 1025px) {
  .detail .tel-note .note-dialog {
    left: auto;
    right: -35px;
    transform: translateX(0);
  }
}
.detail-block {
  margin-top: 40px;
  border-top: 2px solid #ddd;
}
@media screen and (min-width: 1025px) {
  .detail-block {
    margin-top: 60px;
    max-width: none !important;
  }
}
.detail-block h3 {
  margin-top: 40px;
  font-size: 16px;
}
.detail-block h3::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
  margin-right: 8px;
}
@media screen and (min-width: 1025px) {
  .detail-block h3 {
    margin-top: 60px;
    font-size: 24px;
  }
}
.detail-block .message-block figure {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.detail-block .message-block figure img {
  min-width: 170px;
  max-height: 331px;
  width: 58%;
  border-radius: 20px;
  aspect-ratio: 460/331;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #eee;
}
.detail-block .message-block figure figcaption {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .detail-block .message-block {
    display: flex;
    margin-top: 30px;
  }
  .detail-block .message-block figure {
    width: 40%;
    margin-top: 0;
    margin-right: 20px;
    display: block;
  }
  .detail-block .message-block figure img {
    width: 100%;
  }
  .detail-block .message-block figure figcaption {
    text-align: center;
    margin-left: 0;
    margin-top: 15px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .detail-block .message-block figure {
    margin-right: 40px;
  }
}
.detail-text {
  position: relative;
  text-align: center;
}
.detail-text .text-area {
  margin-top: 30px;
}
.detail-text .text-area p {
  text-align: left;
  margin-top: 0;
}
.detail-text .text-area p a {
  display: inline !important;
  font-size: 16px;
  font-weight: bold;
}
.detail-text a {
  margin-top: 12px;
}
@media screen and (min-width: 600px) {
  .detail-text {
    width: 60%;
  }
  .detail-text .text-area {
    margin-top: 0;
  }
}
.detail .availability {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .detail .availability {
    margin-top: 60px;
  }
}
@media screen and (min-width: 600px) {
  .detail .btn-block {
    display: flex;
    gap: 30px;
  }
}
.detail .btn-block .primary-outline-btn {
  display: block;
  width: 100%;
  margin-top: 18px;
  border: 2px solid #143A60;
  border-radius: 14px;
  box-shadow: 0 2px 0 #ddd;
  font-size: 13px;
  padding: 15px 0 15px 17px;
  text-align: left;
  position: relative;
  transition: all 0.6s;
}
.detail .btn-block .primary-outline-btn:first-of-type {
  margin-top: 15px;
}
.detail .btn-block .primary-outline-btn::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../img/link-icon.svg);
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1025px) {
  .detail .btn-block .primary-outline-btn {
    font-size: 16px;
    margin-top: 30px;
    box-shadow: 0 4px 0 #ddd;
  }
  .detail .btn-block .primary-outline-btn:first-of-type {
    margin-top: 30px;
  }
  .detail .btn-block .primary-outline-btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
  .detail .btn-block .primary-outline-btn:hover::before {
    background-image: url(../img/link-icon-white.svg);
  }
}
.detail .consultation-time {
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .detail .consultation-time {
    margin-top: 30px;
  }
}
.detail table {
  width: 100%;
}
.detail table tr:first-of-type {
  border-top: 1px solid #E8E4D5;
}
@media screen and (min-width: 600px) {
  .detail table th,
.detail table td {
    padding: 30px 0;
  }
  .detail table th {
    padding-right: 15px;
  }
  .detail table a {
    color: #333;
  }
}
.detail .map {
  width: 100%;
  height: 200px;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .detail .map {
    height: 500px;
    margin-top: 40px;
  }
}
.detail .map iframe {
  border-radius: 20px;
}
.detail .access {
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .detail .access {
    display: inline-block;
    margin-top: 9px;
    font-size: 14px;
    text-align: right;
  }
}

/* photo */
.photo-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 11px;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .photo-block {
    gap: 40px;
    margin-top: 50px;
  }
}
.photo-block figure {
  width: calc(50% - 5.5px);
}
@media screen and (min-width: 1025px) {
  .photo-block figure {
    width: calc(50% - 20px);
  }
}
.photo-block figure a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .photo-block figure a {
    border-radius: 20px;
    pointer-events: none;
  }
}
.photo-block figure img {
  aspect-ratio: 142/102;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #eee;
  width: 100%;
}
.photo-block figure figcaption {
  display: none;
}
@media screen and (min-width: 1025px) {
  .photo-block figure figcaption {
    display: block;
    margin-top: 15px;
    text-align: center;
  }
}

.modal-block {
  display: none;
}

.modal-window {
  text-align: center;
}
.modal-window img {
  aspect-ratio: 375/270;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 15px 0;
}
.modal-window figcaption {
  color: #fff;
  position: absolute;
  max-width: 460px;
  left: 15px;
  width: calc(100% - 30px);
  text-align: left;
}
@media screen and (min-width: 490px) {
  .modal-window figcaption {
    left: calc(50% - 230px);
  }
}

#cboxOverlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin: 20px;
  background-image: url(../img/close-icon.svg);
  color: #fff;
}

#cboxContent {
  background-color: transparent;
}

#cboxNext,
#cboxPrevious {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background-color: rgba(51, 51, 51, 0.6);
  border-radius: 0;
  margin: 0 6px;
  cursor: pointer;
}

@media screen and (min-width: 1025px) {
  #cboxNext:hover,
#cboxPrevious:hover {
    opacity: 0.75;
  }
}
#cboxNext::before,
#cboxPrevious::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 10px;
  background-image: url(../img/chevron-right-icon.svg);
}

#cboxPrevious::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* staff */
.staff-img {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .staff-img {
    width: 50%;
    margin-right: 20px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .staff-img {
    margin-right: 40px;
  }
}
.staff-img img {
  border-radius: 20px;
  aspect-ratio: 460/331;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #eee;
  width: 100%;
}
.staff-img figcaption {
  margin-top: 15px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .staff-img figcaption {
    font-size: 14px;
  }
}

.profile {
  border: none;
}
@media screen and (min-width: 600px) {
  .profile {
    margin-top: 0;
  }
  .profile h3 {
    margin-top: 30px;
  }
}
.profile p {
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .profile p {
    margin-top: 30px;
  }
}

.message {
  border: none;
  background-image: linear-gradient(to right, #ddd, #ddd 6px, transparent 6px);
  background-size: 12px 1px;
  background-position: left top;
  background-repeat: repeat-x;
}
.message h3 {
  padding-top: 40px;
}
@media screen and (min-width: 1025px) {
  .message h3 {
    padding-top: 60px;
  }
}
.message .full-message {
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .message .full-message {
    margin-top: 30px;
  }
}

/* plan */
.plan-and-price {
  border: none;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .plan-and-price {
    padding-bottom: 20px;
  }
}
.plan-and-price .outline-text {
  margin-top: 15px;
}
.plan-and-price h2 {
  font-size: 20px;
}
@media screen and (min-width: 1025px) {
  .plan-and-price h2 {
    font-size: 30px;
  }
}
.plan-and-price .plan:not(:first-of-type) {
  margin-top: 40px;
  padding-top: 10px;
  background-image: linear-gradient(to right, #ddd, #ddd 6px, transparent 6px);
  background-size: 12px 1px;
  background-position: left top;
  background-repeat: repeat-x;
}
@media screen and (min-width: 1025px) {
  .plan-and-price .plan:not(:first-of-type) {
    margin-top: 60px;
  }
}
.plan-and-price h3 {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .plan-and-price h3 {
    margin-top: 50px;
  }
}
.plan-and-price .plan-detail {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .plan-and-price .plan-detail {
    margin-top: 53px;
  }
}
.plan-and-price .plan-detail:first-of-type {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .plan-and-price .plan-detail:first-of-type {
    margin-top: 28px;
  }
}
.plan-and-price h4 {
  font-size: 15px;
}
@media screen and (min-width: 1025px) {
  .plan-and-price h4 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .plan-and-price table {
    margin-top: 24px;
  }
}
.plan-and-price table tr {
  border: none !important;
}
.plan-and-price table th {
  display: none;
  background-color: #E8E4D5;
  padding: 8px 10px;
}
.plan-and-price table td {
  display: block;
  padding-bottom: 20px;
}
.plan-and-price table td::before {
  content: attr(data-label);
  display: block;
  background-color: #E8E4D5;
  margin-bottom: 10px;
  padding: 8px 10px;
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  .plan-and-price table th, .plan-and-price table td {
    display: table-cell;
    text-align: center;
    padding: 8px 10px;
  }
  .plan-and-price table td::before {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .plan-and-price table th, .plan-and-price table td {
    padding: 12px 10px;
  }
}
.plan-and-price table, .plan-and-price th, .plan-and-price td {
  border: none;
}
@media screen and (min-width: 600px) {
  .plan-and-price table, .plan-and-price th, .plan-and-price td {
    border: 1px solid #ccc;
  }
}
.plan-and-price .risk {
  background-color: #F5F5F5;
  border-radius: 20px;
  padding: 20px;
}
@media screen and (min-width: 600px) {
  .plan-and-price .risk {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .plan-and-price .risk {
    padding: 30px 30px 40px;
    margin-top: 30px;
  }
}
.plan-and-price h5 {
  margin-bottom: 15px;
  font-size: 13px;
}
@media screen and (min-width: 1025px) {
  .plan-and-price h5 {
    font-size: 16px;
  }
}

/* access */
.detail-access .map {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .detail-access .map {
    height: 500px;
  }
}
@media screen and (min-width: 1025px) {
  .detail-access .map {
    margin-top: 50px;
  }
}
.detail-access table {
  margin-top: 30px;
}
.detail-access table th {
  padding: 15px 0;
}
.detail-access table td {
  padding-bottom: 15px;
}
@media screen and (min-width: 600px) {
  .detail-access table th,
.detail-access table td {
    padding: 15px 0;
  }
}
@media screen and (min-width: 1025px) {
  .detail-access table {
    margin-top: 50px;
  }
  .detail-access table th,
.detail-access table td {
    padding: 30px 0;
  }
}
.detail-access .detail-block {
  border-top: none;
  margin-top: 0;
}
.detail-access .share-color {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .detail-access .share-color {
    margin-top: 50px;
  }
}

/* modal */
.modal,
.footer-modal {
  display: none;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto;
  z-index: 100;
}

.modal-bg {
  background: rgba(51, 51, 51, 0.85);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal-close-btn {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (min-width: 1025px) {
  .modal-close-btn {
    top: 30px;
    right: 30px;
  }
}

.modal-inner {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1000px;
  height: calc(100% - 70px);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.2);
}
@media screen and (min-width: 1025px) {
  .modal-inner {
    width: 90%;
    height: 600px;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.modal-inner .modal-content {
  position: relative;
  padding: 30px 30px 104px;
  height: 100%;
  overflow-y: scroll;
}
@media screen and (min-width: 1025px) {
  .modal-inner .modal-content {
    padding: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .modal-inner .modal-content .search-block input {
    width: calc(50% - 70px);
  }
}
.modal-inner .modal-content .search-block button:disabled {
  background-color: #797979;
  pointer-events: none;
}
.modal-inner .modal-content .fixed-search-btn {
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: calc(100% - 60px);
  padding-bottom: 30px;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .modal-inner .modal-content .fixed-search-btn {
    position: static;
    width: 100%;
    padding-bottom: 0;
  }
}
.modal-inner .modal-content input:disabled {
  opacity: 0.5;
}
.modal-inner .modal-content .primary-btn {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .modal-inner .modal-content .primary-btn {
    margin-left: 0;
    margin-top: 30px;
    font-size: 18px;
    padding: 14px 0;
  }
}
.modal-inner .modal-content .orange-btn {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .modal-inner .modal-content .orange-btn {
    margin-top: 0;
    width: 140px;
    border-radius: 0 10px 10px 0;
  }
}
.modal-inner .modal-content .title {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .modal-inner .modal-content .title {
    margin-top: 40px;
    font-size: 20px;
  }
}
.modal-inner .modal-content .tag-list,
.modal-inner .modal-content .picky-list,
.modal-inner .modal-content .trouble-list {
  border-top: 1px solid #ddd;
  margin-top: 10px;
  padding-top: 15px;
  justify-content: flex-start;
}
@media screen and (min-width: 1025px) {
  .modal-inner .modal-content .tag-list,
.modal-inner .modal-content .picky-list,
.modal-inner .modal-content .trouble-list {
    margin-top: 15px;
    padding-top: 20px;
  }
}
@media screen and (min-width: 600px) {
  .modal-inner .modal-content .picky-item,
.modal-inner .modal-content .trouble-item {
    width: auto;
    margin-right: 30px;
  }
}

@media screen and (min-width: 1025px) {
  .note-block {
    text-align: left;
  }
}
.note-block .note-modal {
  display: inline-block;
  color: #797979;
  font-size: 13px;
  text-decoration: underline;
  margin-top: 20px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .note-block .note-modal {
    font-size: 14px;
    margin-top: 40px;
  }
}
.note-block cite {
  display: block;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .note-block cite {
    margin-top: 12px;
  }
}

.note-modal-content {
  color: #143A60;
}
.modal-content_title {
  display: block;
  font-size: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .modal-content_title {
    text-align: left;
    font-size: 20px;
  }
}
.note-modal-content p {
  margin-top: 20px;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .note-modal-content p {
    margin-top: 30px;
    font-size: 14px;
  }
}

.sitemap-header {
  border-bottom: 1px solid #ddd;
}

.sitemap-container {
  padding: 20px 20px 0;
}
.sitemap-container .breadcrumb {
  margin-bottom: 0;
}

.sitemap {
  max-width: 1000px;
  padding: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .sitemap {
    padding: 40px;
  }
}
.sitemap h1 {
  font-size: 15px;
  color: #ef841b;
}
@media screen and (min-width: 1025px) {
  .sitemap h1 {
    font-size: 25px;
  }
}
.sitemap h2 {
  margin-top: 15px;
  padding: 5px;
  color: #494949;
  font-size: 10px;
  background: #fffaf4;
  border-left: solid 5px #ffaf58;
}
@media screen and (min-width: 1025px) {
  .sitemap h2 {
    margin-top: 30px;
    padding: 8px;
    font-size: 16px;
  }
}
.sitemap li {
  position: relative;
}
.sitemap li a {
  color: #000;
}
.sitemap li > h3 {
  margin-top: 15px;
  padding-left: 10px;
  border-bottom: double 5px #b0b0b0;
}
.sitemap li > h3 a {
  font-size: 10px;
  color: #ef841b;
}
@media screen and (min-width: 1025px) {
  .sitemap li > h3 a {
    font-size: 16px;
  }
}
.sitemap li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #ffaf58;
}
.sitemap li.genre-large::before {
  top: 8px;
}
@media screen and (min-width: 1025px) {
  .sitemap li.genre-large::before {
    top: 10px;
  }
}
.sitemap li h4 {
  padding-left: 10px;
  font-size: 10px;
  display: inline-block;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 1025px) {
  .sitemap li h4 {
    font-size: 15px;
  }
}
.sitemap li.genre-medium {
  margin-top: 10px;
  width: 100%;
}
.sitemap li.genre-medium::before {
  top: 5px;
}
@media screen and (min-width: 1025px) {
  .sitemap li.genre-medium::before {
    top: 7px;
  }
}
.sitemap li .prefectures {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 5px 10px;
}
@media screen and (min-width: 1025px) {
  .sitemap li .prefectures {
    margin: 0 0 5px 20px;
  }
}
.sitemap li.genre-small {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin: 15px 15px 0 0;
  padding-left: 10px;
  width: auto;
  font-size: 10px;
  border-bottom: dashed 1px #ccc;
}
@media screen and (min-width: 1025px) {
  .sitemap li.genre-small {
    margin: 5px 0 5px 5px;
    width: 158px;
    height: 40px;
    font-size: 13px;
  }
}
.sitemap li.genre-small::before {
  top: 2px;
}
@media screen and (min-width: 1025px) {
  .sitemap li.genre-small::before {
    top: 14px;
  }
}
.sitemap .area-all h3 {
  border-bottom: 1px solid #000;
}
.sitemap .area-all .genre-small {
  width: 20%;
}
@media screen and (min-width: 1025px) {
  .sitemap .area-all .genre-small {
    width: 158px;
  }
}

.terms-container {
  padding: 20px 20px 0;
}
.terms-container .breadcrumb {
  margin-bottom: 0;
}
.terms {
  max-width: 1000px;
  padding: 10px;
  margin: 0 auto;
}
.article-wrapperarticle{
  margin-top:20px;
}
.terms ol {
  margin-left: 1.3em;
}
.terms .article-eight ol {
  margin-left: 2.4em;
}
.terms ol li{
  list-style-type: decimal;
}
.article-eight ol li{
  list-style-type: none;
  counter-increment: cnt;
}
.article-eight ol li::before {
  content: "(" counter(cnt) ") ";
  display: inline-block;
  margin-left: -2.3em;
  width: 2.3em;
}
.list-child ol li {
  list-style-type: none;
  counter-increment: cnt;
}

.list-child .cnt1 li::before {
  content: "(" counter(cnt) ") ";
  display: inline-block;
  margin-left: -2.3em;
  width: 2.3em;
}
.terms h1 {
  font-size: 15px;
  color: #ef841b;
}
.terms h2 {
  margin-top: 15px;
  padding: 5px;
  color: #494949;
  font-size: 14px;
  background: #fffaf4;
  border-left: solid 5px #ffaf58;
}
.terms li>h3 {
  margin-top: 15px;
  padding-left: 10px;
  border-bottom: double 5px #b0b0b0;
}
.terms li>h3 a {
  font-size: 10px;
  color: #ef841b;
}
.terms .area-all h3 {
  border-bottom: 1px solid #000;
}
.terms .area-all .genre-small {
  width: 20%;
}

@media screen and (min-width: 1025px) {
  .terms {
    padding: 40px;
  }
  .terms h1 {
    font-size: 25px;
  }
  .terms h2 {
    margin-top: 30px;
    padding: 8px;
    font-size: 17px;
  }
  .terms li>h3 a {
    font-size: 16px;
  }
  .terms .area-all .genre-small {
    width: 158px;
  }
}

/* .terms ol li {
  list-style-type: none;
  counter-increment: cnt;
}
.terms .cnt1 li::before {
  content: "(" counter(cnt) ") ";
  display: inline-block;
  margin-left: -2.3em;
  width: 2.3em;
}

.terms .cnt2 li::before {
  content: counter(cnt)".";
  display: inline-block;
  margin-left: -2.3em;
  width: 2.3em;
} */


.no-search-result {
    margin-top: 10px;
    color: #333;
}
.accordion .accordion__item .accordion-a {
  font-size: 23px;
  font-weight: bold;
  color: #ff8d8d;
  margin-right: 10px;
  line-height: 1;
  vertical-align: baseline
}
