/*other_01.css*/

/*----------------
common
------------------*/

main,
footer,
.inner,
.menu-container {
  width: 100%;
  min-width: 1000px;
}

.common-column-heading {
  position: relative;
  font-size: 22px;
  padding-left: 20px;
  font-weight: bold;
}

/* column */

.common-column-heading::before {
  position: absolute;
  content: "";
  background: url(/img/column/line.svg) no-repeat center center / contain;
  width: 42px;
  height: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  left: -19px;
}

.u-mobile {
  display: none;
}

.main-visual {
  position: relative;
}

.main-visual__title {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}

.main-visual__text {
  margin-top: 30px;
}

.column {
  background-color: #fafafa;
  padding-left: 60px;
  border-bottom: 1px solid #e5e5e5;
}

.column__wrap {
    display: flex;
}

.column__main {
  border-right: 1px solid #e2e2e2;
  padding-top: 60px;
  padding-right: 33.5px;
  padding-bottom: 90px;
  width: 85%;
}

.column__item-link--new {
  position: relative;
  display: block;
}

.column__item-link--new::before {
  position: absolute;
  content: "NEW";
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #eb3b71;
  padding: 5px 10px;
  top: -4px;
  left: -4px;
  z-index: 1;
}

.column__item-link--new::after {
  content: "";
  position: absolute;
  top: 24px;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-top: 3.3px solid #a1274e;
  z-index: 1;
}

.column__item {
  margin-top: 60px;
}

.column__item-wrap {
  display: flex;
  gap: 30px;
}

.column__item-content {
  max-width: 595px;
  width: 100%;
}

.column__item-img {
  max-width: 300px;
  width: 100%;
}

.column__item-img img {
  aspect-ratio: 300 / 206;
  width: 100%;
  object-fit: cover;
}

.column__item--first {
    margin-top: 0;
}

.column__item--first .column__item-content {
  max-width: 375px;
  width: 100%;
}

.column__item--first .column__item-img {
  max-width: 520px;
  width: 100%;
}

.column__item--first .column__item-img img {
  aspect-ratio: 520 / 357;
  width: 100%;
  object-fit: cover;
}

.column__item-head {
  display: flex;
  align-items: center;
}

.column__item-cat {
  border-radius: 12px;
  border: 1px solid #827763;
  padding: 2px 19px;
  color: #827763;
  font-size: 12px;
  background-color: #fff;
}

.column__item-time {
  font-size: 14px;
  line-height: 1.6;
  color: #707070;
  margin-left: 15px;
}

.column__item-title {
  font-size: 22px;
  font-weight: bold;
  margin-top: 14px;
  line-height: 1.6;
}

.column__item:nth-child(n + 2) .column__item-title {
  font-size: 18px;
}

.column__item-text {
  margin-top: 10px;
  line-height: 1.6;
}

/* pagination */

.column__pagination {
  margin-top: 60px;
}

.pagination__list {
  display: flex;
  justify-content: center;
}

.pagination__list li:not(:first-child) {
  margin-left: 5px;
}

.pagination__link,
.pagination__link--prev,
.pagination__link--next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: solid 1px #d6d6d6;
  background-color: #fff;
}

.pagination__link.is-active {
  color: #fff;
  background-color: #005bac;
}

.pagination__link--prev,
.pagination__link--next {
  position: relative;
}

.pagination__link--prev::before,
.pagination__link--next::before {
  position: absolute;
  content: "";
  width: 11.3px;
  height: 11.3px;
  top: 50%;
}

.pagination__link--prev:before {
  background: url(/img/column/arrow.svg) no-repeat center center / cover;
  transform: translateY(-50%);
}

.pagination__link--next::before {
  background: url(/img/column/arrow.svg) no-repeat center center / cover;
  transform: rotate(180deg) translateY(40%);
}

/* search */

.column__search {
  margin-top: 66px;
}

.search__tag-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 38px;
}

.search__tag-item {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.search__tag-link {
  padding: 7px 21px;
  border-radius: 5px;
  border: solid 1px #f06400;
  background-color: #fff;
  color: #f06400;
}

/* sidebar */

.sidebar {
  width: 28%;
  padding: 60px 140px 90px 28.5px;
}

.sidebar__wrap {
  position: relative;
  border-top: 1px solid #e2e2e2;
  padding: 19px 0 51px;
}

.sidebar__wrap::before {
  position: absolute;
  content: "";
  background: url(/img/column/line.svg) no-repeat center center / cover;
  width: 42px;
  height: 4px;
  top: -2px;
  left: 0;
}

.sidebar__title {
  font-size: 18px;
  font-weight: bold;
}

.sidebar__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 15px;
}

.sidebar__list li {
  margin-right: 6px;
  margin-bottom: 10px;
}

.sidebar__list li a {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  padding: 2px 9px;
  border-radius: 2px;
  border: solid 1px #005bac;
  background-color: #fff;
  color: #005bac;
}

.sidebar__card {
  position: relative;
}

.sidebar__card:not(:first-child) {
  margin-top: 15px;
}

.sidebar__img {
  max-width: 290px;
  width: 100%;
}
.sidebar__img img {
  border-radius: 10px;
  aspect-ratio: 289 / 198;
  width: 100%;
  object-fit: cover;
}

.sidebar__text {
  font-size: 15px;
  margin-top: 15px;
}

/* column-page */

.column__main.column-page {
/*  padding-left: 91px;*/
    padding-bottom: 60px;
  /* width: 65%; */
}

.column__sidebar.sidebar {
  /* width: 35%; */
}

.column-page__item-head {
  display: flex;
  align-items: center;
}

.column-page__item-head span img {
  margin-left: 15px;
}

.column-page__item-renew {
  margin-left: 7px;
}

.column-page__title {
  font-size: 30px;
  margin-top: 20px;
}

.column-page__tag-list {
  display: flex;
  margin-top: 22px;
}

.column-page__tag a {
  color: #008ae0;
}

.column-page__tag:not(:first-child) {
  margin-left: 21px;
}

.column-page__thumbnail {
  margin-top: 30px;
  width: 100%;
}

/*
.column-page__thumbnail img {
  aspect-ratio: 743 / 510;
  width: 100%;
  object-fit: cover;
}
*/

/*
.column-page__text {
  line-height: 1.6;
  margin-top: 30px;
}
*/

.column-page__recommend {
  max-width: 607px;
  margin: 32px auto 0;
}

.column-page__recommend a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 25px 10px 10px;
  border-radius: 6px;
  border: solid 1px #005bac;
  background-color: #fff;
}

.column-page__recommend a::after {
  position: absolute;
  content: "";
  background: url(/img/column/arrow-blue.svg) no-repeat center center /
    contain;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
}

.column-page__recommend-img {
  max-width: 16.5rem;
  width: 100%;
}

.column-page__recommend-img img {
  aspect-ratio: 165 / 110;
  width: 100%;
  object-fit: cover;
}

.column-page__recommend-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 2rem;
}

.column-page__table {
  position: relative;
  padding: 24px 30px 60px;
  border-radius: 10px;
  background-color: #ededed;
  border: solid 1px #d9d9d9;
  margin: 40px 0 60px;
}

.column-page__table::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 60px;
  background-image: linear-gradient(to bottom, rgba(237, 237, 237, 0), #ededed);
  left: 50%;
  transform: translateX(-50%);
  bottom: 23%;
}

.column-page__table.is-open::after {
  display: none;
}

.column-page__table.is-open {
  grid-template-rows: 1fr;
  padding: 24px 30px 31px;
}

.column-page__table-wrap {
  overflow: hidden;
  transition: max-height 0.7s ease;
}
.column-page__table-wrap.is-open {
  overflow: initial;
}

.column-page__table-title {
  font-weight: bold;
  margin-top: 0;
}

.column-page__list {
  padding-left: 30px;
  margin-top: 15px;
}

.column-page__list li {
    line-height: 1.6;
    margin-bottom: 2px;
}

.column-page__item {
  list-style: decimal;
}

.toggle-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7.5%;
  width: 100px;
  border: solid 1px #d9d9d9;
  background-color: #fff;
  border-radius: 5em;
  color: #707070;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  min-width: 6em;
  padding: 7px 12px 6px 0;
  transition: box-shadow 0.25s;
  z-index: 2;
  cursor: pointer;
}

.toggle-btn:hover {
  opacity: 0.8;
}

.toggle-btn::after {
  position: absolute;
  content: "";
  background: url(/img/column/arrow.svg) no-repeat center center / contain;
  width: 8.5px;
  height: 8.5px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: 28px;
}

.column-page__table.is-open .toggle-btn {
  bottom: -4.5%;
}
.column-page__table.is-open .toggle-btn::after {
  right: 18px;
  transform: rotate(90deg);
}

.column-page__heading {
  margin-top: 60px;
}

.column-page__info {
  padding: 3rem 4rem;
  background-color: #ededed;
  margin-top: 41px;
}

.column-page__info-item:not(:first-child) {
  border-top: 1px solid #dedede;
  padding-top: 15px;
}

.column-page__info-item:not(:last-child) {
  padding-bottom: 15px;
}

.column-page__info-item-head {
  font-weight: bold;
  color: #827763;
}

.column-page__info-item-body {
}

.column-page__share {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 61px;
}

.column-page__share-text {
  font-size: 12px;
  line-height: 1.87;
  padding: 8px 12px;
  border: solid 1px #e1ebeb;
  background-color: #fff;
}

.column-page__share-sns {
  width: 25px;
}

.column-page__share-sns:first-child {
  margin-left: 30px;
}
.column-page__share-sns:not(:first-child) {
  margin-left: 13px;
}

.column-page__editor {
  padding: 25px 30px 30px;
  background-color: #fff;
  margin-top: 40px;
}

.column-page__editor-title {
  font-weight: bold;
  color: #827763;
}

.column-page__editor-head {
  display: flex;
  align-items: center;
  margin-top: 22.4px;
}

.column-page__editor-head span {
  margin-left: 23.1px;
}

.column-page__editor-text {
  margin-top: 20px;
}



/*----------------
addition
------------------*/

/*
*{
    outline: 2px red solid;
}
*/

.inner {
    width: 1320px;
    max-width: 100%;
    min-width: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.main-visual {
    width: 100%;
    height: 300px;
    background-image: url(/img/column/main_bk.jpg);
    background-size: contain;
    background-repeat: repeat;
    position: relative;
}

.main-visual__img {
    background-image: url(/img/column/column_fv.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    width: 100%;
    max-width: 1320px;
    height: 300px;
    background-position: right center;
    position: absolute;
    top: 0;
    right: 0;
}

.main-visual__content {
    width: 1320px;
    max-width: 100%;
    height: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column {
    padding-top: 60px;
    padding-left: 0;
}

.column__main {
    padding-top: 0;
}

.sidebar {
    padding: 0 0 90px 30px;
}

/*----------------
Search Box
------------------*/

.search_box_wrap {
    padding: 20px 0 20px 0;
    background-color: #f4f4f4;
}

.search_container{
    box-sizing: border-box;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}
.search_container input[type="text"]{
    box-sizing: border-box;
    width: 500px;
    background: #fff;
    border: 1px solid #ccc;
    color: #707070;
    border-radius: 4px;
    font-size: 1.6rem;
    line-height: 1.0;
    padding: 12px 12px 12px;
}
.search_container input[type="text"]:focus {
    outline: 0;
}
.search_container input[type="submit"]{
    box-sizing: border-box;
    cursor: pointer;
    border: 1px solid #005BAC;
    width: 100px;
    background: #005BAC;
    color: #fff;
    outline : none;
    border-radius: 4px;
    font-size: 1.6rem;
    line-height: 1.0;
    padding: 11px 12px 11px;
}
.search_container ::-webkit-input-placeholder {
    color: #707070;
}

input {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "游ゴシック Medium", "Yu Gothic Medium", "Noto Sans JP", sans-serif;
}

/*--------------------------------
Addtion_s
----------------------------------*/

.column.cruise_special {
    padding-top: 140px;
    background-color: #fff;
}

.sub-inner {
    width: 1200px;
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    margin: 0 auto;
}

.column__main {
    width: 71%;
    padding: 0 30px 0 0;
}

.sidebar {
    width: 29%;
    padding: 0 0 0 30px;
}

.column-page__heading {
    margin: 60px 0 30px 0;
}

.sidebar__img {
    max-width: 100%;
    width: 100%;
}

.column-page__thumbnail {
    margin: 30px auto 30px;
}

.column-page__thumbnail img {
    display: block;
    width: 740px;
    max-width: 100%;
    margin: 0 auto;
}

.column-page__content p:not([class]) {
    line-height: 1.5;
    margin-bottom: 10px;
}

.img_cap {
    font-size: 1.4rem;
    margin-top: 10px;
}

.top_conts_slide .tit {
    font-weight: bold;
    margin-bottom: 8px;
}

.column.layout-column-page {
    padding-top: 0;
}

.layout-column-page .column-page__content,
.layout-column-page .sidebar{
    padding-top: 60px;
}

/*Addtion_s 260304*/

.layout-column-page .column-page__content .content_info {
    padding: 3rem 4rem;
    background-color: #ededed;
    margin-top: 41px;
    margin-bottom: 20px;
}

.layout-column-page .column-page__content .content_info div.flex:not(:last-child)  {
    padding-bottom: 15px;
}

.layout-column-page .column-page__content .content_info div.flex:not(:first-child)  {
    border-top: 1px solid #dedede;
    padding-top: 15px;
}

.layout-column-page .column-page__content .content_info div.flex dt {
    font-weight: bold;
    color: #827763;
}

.layout-column-page .column-page__content .link_area {
    margin-bottom: 60px;
}

.layout-column-page .column-page__content .link_area a.btn01:link, .layout-column-page .column-page__content .link_area a.btn01:visited {
    color: #fff;
}

.layout-column-page .column-page__content .column-page__item {
    list-style: none;
}

.layout-column-page .column-page__content .column-page__list {
    padding-left: 0;
}

/*Addtion_s 260308*/

.layout-column-page section.content > h3 {
    position: relative;
    font-size: 22px;
    padding-left: 20px;
    font-weight: bold;
    margin: 60px 0 30px 0;
}

.layout-column-page section.content > h3::before {
    position: absolute;
    content: "";
    background: url(/img/column/line.svg) no-repeat center center / contain;
    width: 42px;
    height: 4px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    left: -19px;
}

.layout-column-page section.content_secondary > h4 {
    position: relative;
    padding: 4px 0 2px 20px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    line-height: 1.6;
}

.layout-column-page section.content_secondary > h4::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #005bac;
}

.column-page__sub-list li {
    margin-left: 1em;
}

.pagination__list {
    flex-wrap: wrap;
}

.pagination__list li {
    margin-top: 2px;
    margin-bottom: 2px;
}


