@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", serif;
  --font-family-title-en: "Roboto", serif;  

  letter-spacing: 0.12em;
}

/*!
global > color
------------------------------
*/
:root {
  --color-primary: #1C2A52;
  --color-secondary: #F95738;
  --color-font: #242424;
  --color-white: #fff;
  --color-yellow: #E7CC6C;  
  --color-light-blue: #96D3E5;
  --color-purple: #C47CE7;
  --color-label-navy: #364BB3;
  --color-bg: rgba(242, 242, 235, 0.47);
  --color-bg-blue: #e5f6fc;
  --color-bg-brown: #f0ecdf;
  --color-border-gray: #999999;
  --color-border-gray-light: #e5e5e5;
}

/*!
global > base
------------------------------
*/
html {
  scroll-behavior: smooth;
}

/*!
components
------------------------------
*/
/* journal-heading */
.journal-heading {
  width: 100%;
}
.heading-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: clamp(32px, 5.2vw, 56px);
  padding-bottom: clamp(32px, 5.2vw, 56px);
  transition: all 0.3s ease-in-out;
}
.heading-title:hover {
  opacity: 0.7;
  text-decoration: none;
}
.heading-title h2 {
  position: relative;
  font-family: var(--font-family-title-en);
  font-size: clamp(32px, 5.2vw, 58px);
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.06em;
}
.heading-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 76px;
  height: 2px;
  background-color: var(--color-border-gray);
  letter-spacing: 0.02em;
  transform: translateX(-50%);
}
.heading-title span {
  display: block;
  margin-top: clamp(8px, 2.6vw, 16px);
  font-family: var(--font-family-base);
  font-size: clamp(16px, 2.6vw, 20px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.12em;
}

/* section-title */
.section-title {
  position: relative;
  margin-bottom: 24px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 562px;
  width: 100%;
  height: 1px;
  background-color: var(--color-border-gray);
}
.section-title h2 {
  padding-bottom: 14px;
  font-size: clamp(24px, 1.67vw, 32px);
  line-height: 1.5;
  font-weight: 700;
}
.section-title h2 span {
  display: block;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.section-title h2 span.section-title__sub {
  display: inline;
  padding-top: 4px;
  /* font-size: 20px; */
  font-size: clamp(16px, 2.6vw, 20px);
  line-height: 1.5;
  font-weight: 700;
}

/* sm */
@media (max-width: 767px) {
  .section-title h2 span.section-title__sub {
    display: block;
  }
}

/* card */
.card {
  display: flex;
  flex-direction: column;
  /* flex-grow: 1; */
  width: calc((100% - 24px * 3) / 4);
  min-width: 280px;
  height: 100%;
  border-bottom: 1px dashed var(--color-border-gray);
}
.card:last-child {
  margin-right: auto;  /* 最後のカードを左寄せ */
}

/* 3カラム */
@media screen and (max-width: 1200px) {
  .card {
    width: calc((100% - 24px * 2) / 3);  /* 3カラムの固定幅 */
  }
}

/* 2カラム */
@media screen and (max-width: 900px) {
  .card {
    width: calc((100% - 24px) / 2);  /* 2カラムの固定幅 */
  }
}

/* 1カラム */
@media screen and (max-width: 600px) {
  .card {
    width: 100%;
  }
}

.card a {
  transition: all 0.3s ease-in-out;
}
.card a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
  filter: contrast(1.1);
  text-decoration: none;
}
.card__image {
  margin-bottom: 6px;
}
.card__image img {
  border-radius: 8px;
}
.card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 6px;
}
.card__category {
  position: relative;
}
.card__category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(50%);
}
.card__category.cruise-story::before {
  background-color: var(--color-yellow);
}
.card__category.cruise-guide::before {
  background-color: var(--color-light-blue);
}
.card__category.cruise-planning::before {
  background-color: var(--color-purple);
}
.card__category.cruise-premium::before {
  background-color: var(--color-label-navy);
}
.card__category span {
  display: inline-block;
  padding-left: 16px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  transform: translateY(-1px);
}
.card__title {
  margin-bottom: 6px;
}
.card__title h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;  /* 3行で制限 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.5em;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}
.card__tag {
  display: flex;
  align-items: flex-start;  /* 上揃えに変更 */
  justify-content: flex-start;
  column-gap: 8px;
  row-gap: 0;  /* 追加: 縦方向のギャップ */
  flex-wrap: wrap;  /* 追加: 折り返しを有効に */
  min-height: 48px; 
}
.card__tag span {
  display: inline-block;
  font-size: 12px;
}
.card__date {
  display: block;
  text-align: right;
}

/* category-label */
.category-label a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 300px;
  height: clamp(52px, 3.33vw, 64px);
  padding-left: 16px;
  border-radius: 8px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-gray);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
  font-size: clamp(16px, 2.6vw, 22px);
  transition: transform 0.3s, contrast 0.3s;
}
.category-label a:hover {
  transform: translateY(-2px);
  filter: contrast(1.1);
  text-decoration: none;
}

.category-label a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border-radius: 50%;
}
.category-label.cruise-story a::before {
  background-color: var(--color-yellow);
}
.category-label.cruise-guide a::before {
  background-color: var(--color-light-blue);
}
.category-label.cruise-planning a::before {
  background-color: var(--color-purple);
}
.category-label.cruise-premium a::before {
  background-color: var(--color-label-navy);
}

/* btn-more */
.btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 54px;
  border-radius: 8px;
  background-color: var(--color-font);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.btn-more:hover {
  opacity: 0.7;
  color: var(--color-white);
  transform: translateY(-2px);
  filter: contrast(1.1);
  text-decoration: none;
}

/* journal-cta */
.journal-cta {
  background-color: var(--color-bg-brown);  
}
.journal-cta__inner {
  max-width: 1306px;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(48px, 5.2vw, 80px);
  padding-bottom: clamp(48px, 5.2vw, 80px);
}
.journal-cta__title {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 16px;
  font-family: var(--font-family-title-en);
  font-size: clamp(24px, 3.33vw, 48px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-primary);
  text-align: center;
}
.journal-cta__content {
  padding: 0 16px;
}
.journal-cta__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 2px;
  background-color: var(--color-border-gray);
  transform: translateX(-50%);
}
.journal-cta__text {
  margin-bottom: 40px;
  font-size: clamp(16px, 2.6vw, 20px);
  text-align: center;
}
.journal-cta__title +.journal-cta__text {
  margin-bottom: 16px;
}
.journal-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, #2C5EBE 0%, #1E3F80 100%);
  box-shadow: 0px 8px 16px -4px rgba(44, 94, 190, 0.25);
  font-size: clamp(18px, 1.875vw, 24px);
  line-height: 1.5;
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.journal-cta__btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0px 12px 20px -4px rgba(44, 94, 190, 0.35);
  background: linear-gradient(135deg, #3468CC 0%, #2C5EBE 100%);
  color: var(--color-white);
}

/*!
layout > section
------------------------------
*/
.cruise-journal {
  width: 100%;
  padding-top: 110px;
  font-family: var(--font-family-base);
  letter-spacing: 0.12em;
}

/* category-container */
.category-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 16px;
}
.category-container.flex-start {
  justify-content: flex-start;
}

/* tag-container */
.tag-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px;
  border-radius: 8px;
  background-color: var(--color-bg-blue);
}
.tag-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
}
.tag-label a {
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.tag-label a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* card-container */
.card-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 48px;
  justify-content: start;
  margin-bottom: 48px;
}
.card-container::before,
.card-container::after {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
}
.card-container::before {
  top: 0;
  width: calc(300px * 2 + 24px);
}
.card-container::after {
  bottom: 0;
  width: 100%;
}

/*!
top > 
------------------------------
*/
/* journal-hero */
.journal-hero {
  width: 100%;
  height: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: var(--color-bg-blue);
}
.journal-hero__inner {
  max-width: 1400px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.swiper {
  width: 100%;
  height: 100%;
}
.slide-link {
  position: relative;  /* 子要素の配置の基準点 */
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.slide-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

.slide-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));  /* 下部のグラデーション */
  color: #fff;
}

.slide-title {
  font-size: clamp(20px, 0.417vw + 20px, 28px);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-color: var(--color-border-gray); 
}

/* jornal-concept */
.jornal-concept {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
}
.jornal-concept__text {
  padding: 0 16px;
  font-size: clamp(16px, 2.6vw, 20px);
}

/* sm */
@media (max-width: 767px) {
  .jornal-concept__text {
    text-align: left;
  }
}

/* journal-category-tab */
.journal-category-tab {
  width: 100%;
  padding-bottom: clamp(48px, 5.2vw, 72px);
}

/* journal-tags */
.journal-tags {
  width: 100%;
  padding-bottom: clamp(48px, 5.2vw, 72px);
}
.journal-tags__inner {
  max-width: 1306px;
  width: 100%;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: clamp(32px, 5.2vw, 56px);
  padding-left: 16px;
  padding-right: 16px;
}

/* journal-pickup */
.journal-pickup {
  width: 100%;
  background-color: var(--color-bg);
}
.journal-pickup__inner {
  max-width: 1306px;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(48px, 5.2vw, 80px);
  padding-bottom: clamp(32px, 5.2vw, 56px);
  padding-left: 16px;
  padding-right: 16px;
}
/* journal-new-articles */
.journal-new-articles {
  width: 100%;
}
.journal-new-article__inner {
  max-width: 1306px;
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 56px;
  padding-left: 16px;
  padding-right: 16px;
}
.journal-new-articles__more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

/*!
archive > 
------------------------------
*/
/* journal-archive */
.journal-archive__inner {
  max-width: 1306px;
  width: 100%;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
}

/* journal-other-category */
.journal-other-category {
  background-color: var(--color-bg);
}
.journal-other-category__inner {
  max-width: 1306px;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(48px, 5.2vw, 80px);
  padding-bottom: clamp(32px, 5.2vw, 56px);
  padding-left: 16px;
  padding-right: 16px;
}

/* pager-container */
.pager-container {
  padding: 24px 16px clamp(48px, 5.2vw, 80px);
}
.pager-container .pager_list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
}
.pager-container .pager_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-gray);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}
.pager-container .pager_list li a:hover {
  opacity: 0.7;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
}
.pager-container .pager_list li.here a {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/*!
detail > 
------------------------------
*/
/* journal-detail */
.journal-detail {
  width: 100%;
}

.journal-detail__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1306px;
  width: 100%;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 56px;
  padding-left: 16px;
  padding-right: 16px;
}

/* md */
@media (max-width: 959px) {
  .journal-detail__inner {
    flex-direction: column;
  }
}

/* journal-content */
.journal-content {
  max-width: 940px;
  width: 100%;
  margin-right: 24px;
}
.journal-content__title {
  margin-bottom: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border-gray);
}
.journal-content__title h2 {
  font-size: clamp(24px, 1.67vw, 32px);
  line-height: 1.5;
  font-weight: 700;
}
.journal-content .card__date {
  text-align: left;
}
.journal-content__eye-catch {
  margin-bottom: clamp(24px, 0.83vw, 40px);
}
.journal-content__eye-catch img {
  border-radius: 8px;
}
.journal-content__text {
  margin-bottom: clamp(32px, 0.83vw, 48px);
}
.journal-content__text h2,
.journal-content__text h3 {
  margin-top: clamp(24px, 4.2vw, 54px);
  margin-bottom: 16px;
  font-size: clamp(24px, 1.67vw, 32px);
  line-height: 1.5;
  font-weight: 700;
}
.journal-content__text h4 {
  margin-top: clamp(16px, 3.33vw, 40px);
  margin-bottom: 8px;
  font-size: clamp(20px, 1.875vw, 24px);
  line-height: 1.5;
  font-weight: 700;
}
.journal-content__text h5 {
  margin-top: clamp(16px, 2.92vw, 32px);
  margin-bottom: 8px;
  font-size: clamp(18px, 1.875vw, 20px);
  line-height: 1.5;
  font-weight: 700;
}
.journal-content__text > h3:first-child,
.journal-content__text > h4:first-child {
  margin-top: 0;
}
.journal-content__text p {
  margin-bottom: 16px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 2;
  font-weight: 400;
}
.journal-content__text strong {
  font-weight: 700;
}
.journal-content__text a {
  color: var(--color-primary);
  text-decoration: underline;
}
.journal-content__text p:last-child {
  margin-bottom: 0;
}
.journal-content__text ul,
.journal-content__text ol {
  margin-bottom: clamp(24px, 2.5vw, 32px);
  background-color: var(--color-bg);
  padding: 24px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 2;
  /* font-weight: 700; */
}
.journal-content__text ul li {
  list-style: disc;
  margin-left: 1.5em;
}
.journal-content__text ol li{
  list-style: decimal;
  margin-left: 1.5em;
}
.journal-content__text .wp-block-image img {
  margin-top: clamp(24px, 2.5vw, 32px);
  margin-bottom: clamp(40px, 5vw, 64px);
  border-radius: 8px;
}

/* related-card */
.related-card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  column-gap: 16px;
  border: 1px solid var(--color-border-gray-light);
  padding: 24px 16px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
.related-card + .related-card {
  margin-top: 16px;
}
.related-card:hover {
  opacity: 0.7;
  text-decoration: none;
  transform: translateY(-2px);
  filter: contrast(1.1);
}
.related-card__content {
  text-decoration: none !important;
}
.related-card__label {
  display: inline-block;
  font-size: 20px;
  color: #1c2a52;
  margin-bottom: 8px;
  position: relative;
  padding-left: 4px;
  padding-bottom: 4px;
}
.related-card__label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #1c2a52 0%,
    #4a5d8f 50%,
    rgba(28, 42, 82, 0.3) 100%
  );
  transform: scaleX(0.7);  /* 下線を少し短めに */
  transform-origin: left;
  transition: transform 0.3s ease;
}
.related-card:hover .related-card__label::after {
  transform: scaleX(1);  /* ホバー時に下線が伸びる */
}
.journal-content__text h4.related-card__title {
  margin-top: 16px!important;
  color: #333;
  line-height: 1.6;
  margin: 0;
  position: relative;
  padding-bottom: 12px;
}
.related-card__image {
  flex-shrink: 0;
  width: 240px;
  height: auto;
}
.related-card__image img {
  border-radius: 8px;
}

/* xs */
@media (max-width: 567px) {
  .related-card {
    height: auto;
    flex-direction: column;
  }
  .related-card__image {
    width: 100%;
  }
}

/* jornal-side */
.jornal-side {
  width: 300px;
}
.jornal-side .card-container {
  row-gap: 24px;
  margin-bottom: clamp(48px, 5.2vw, 80px);
}

/* side-category */
.side-category {
  margin-bottom: clamp(48px, 5.2vw, 80px);
}

/* side-tag */
.side-tag {
  margin-bottom: clamp(48px, 5.2vw, 80px);
}

/* journal-related */
.journal-related {
  width: 100%;
  background-color: var(--color-bg);
}
.journal-related__inner {
  max-width: 1306px;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(48px, 5.2vw, 80px);
  padding-bottom: clamp(32px, 5.2vw, 56px);
  padding-left: 16px;
  padding-right: 16px;
}

/* md */
@media (max-width: 959px) {
  .jornal-side {
    width: 100%;
    margin-top: 48px;
  }
}

/*! 
utility > visible - hidden
------------------------------
*/
.visible-md {
  display: none !important;
}
.visible-sm {
  display: none !important;
}
.visible-xs {
  display: none !important;
}
.visible-xxs {
  display: none !important;
}

.hidden-md {
  display: block !important;
}
.hidden-sm {
  display: block !important;
}
.hidden-xs {
  display: block !important;
}
.hidden-xxs {
  display: block !important;
}


/* lg */
@media (max-width: 1279px) {
  
}

/* md */
@media (max-width: 959px) {
  .visible-md {
    display: block !important;
  }
  .hidden-md {
    display: none !important;
  }
}

/* sm */
@media (max-width: 767px) {
  .visible-sm {
    display: block !important;
  }
  .hidden-sm {
    display: none !important;
  }
}

/* xs */
@media (max-width: 567px) {
  .visible-xs {
    display: block !important;
  }
  .hidden-xs {
    display: none !important;
  }
}

/* xxs */
@media (max-width: 427px) {
  .visible-xxs {
    display: block !important;
  }
  .hidden-xxs {
    display: none !important;
  }
}