/*****************************************
dgreen common css
header & footer only!
*****************************************/
/*=======================================
header
=======================================*/
* {
  font-family: "Noto Serif JP", serif;
}

p {
  line-height: 1.8;
}

/* ===== ヘッダー基本設定 ===== */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: top 0.6s ease, background 0.3s;
  top: 0;
  background: white;
}

header.transparent {
  background: transparent;
}

header.fixed {
  top: -100px;
}

/* ===== ヘッダー内レイアウト ===== */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  height: 78px;
}

.logo {
  z-index: 9999;
}

.logo img {
  height: 40px;
}

/* ===== ハンバーガーメニュー ===== */
.hamburger {
  position: relative;
  z-index: 1100;
  /* メニューより前面に */
  cursor: pointer;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 10px;
}

.hamburger span {
  height: 1px;
  width: 100%;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.home .hamburger span {
  background: #fff;
}

.page .hamburger span,
.single .hamburger span,
.archive .hamburger span {
  background: #3E4F7E;
}

header.fixed .hamburger span {
  background: #3E4F7E;
}

header.fixed .header-inner {
  background-color: #FFFFFF;
  height: 78px;
}

header.fixed .logo-a {
  display: none;
}

header.fixed .logo-b {
  display: block;
}

/* クリック後（×マークに変化） */
.hamburger.open span:nth-child(1) {
  transform: rotate(25deg) translate(2px, 5px);
  background: #3E4F7E;
}

.hamburger.open span:nth-child(2) {
  transform: rotate(-25deg) translate(2px, -5px);
  background: #3E4F7E;
}

/* ===== メニュー全体 ===== */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background: #D1DEE5;
  display: none;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}

.menu.open {
  display: flex;
}

/* ===== メニュー項目（PCで左右2列） ===== */
.menu-columns-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 980px;
  width: 100%;
}

.menu-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.menu-columns {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-columns li {
  margin: 0 0 50px;
}

.menu-columns li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #000;
}

.menu-item {
  display: flex;
  align-items: center;
}

.jp-menu {}

/* ===== メニューボタン（3つ下に並べる） ===== */
.menu-buttons {
  display: flex;
  justify-content: space-between;
}

.menu-buttons .btn {
  padding: 0.5rem 1rem;
  background: #233057;
  color: white;
  border-radius: 4px;
  text-decoration: none;
}

/* 初期状態：ロゴAを表示、ロゴBを非表示 */
.logo-a {
  display: inline;
}

.logo-b {
  display: none;
}

/* 下層ページはロゴBのみ表示 */
body:not(.home) .logo-a {
  display: none;
}

body:not(.home) .logo-b {
  display: inline;
}

/* メニューが開いたら常にロゴB表示（トップページでも） */
header.menu-open .logo-a {
  display: none !important;
}

header.menu-open .logo-b {
  display: inline !important;
}


/*pc*/
@media all and (min-width:861px) {
  .sp {
    display: none;
  }

  .header-inner {
    padding: 0 60px;
  }

  .menu {
    justify-content: center;
  }

  .menu-item img {
    max-height: 60px;
  }

  .menu-item .slide-arrow {
    max-width: 92px;
  }

  .menu-buttons {
    margin: 60px 0 0;
  }
}

/*sp*/
@media all and (max-width:860px) {
  .pc {
    display: none;
  }

  .menu {
    overflow: scroll;
  }

  .menu-columns {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
  }

  .menu-buttons {
    margin: 15px 0 0;
    flex-direction: column;
    align-items: center;
  }

  .header-inner {
    padding: 18px 26px 18px 20px;
  }

  .menu-inner {
    padding: 80px 20px 54px;
  }

  .menu-item {
    justify-content: space-between;
  }

  .menu-item img {
    max-height: 42px;
  }

  .menu-item .slide-arrow {
    max-width: 72px;
    top: 30px;
  }

  .menu-item .slide-arrow::before {
    max-width: 72px;
  }

  .menu-buttons .button01,
  .menu-buttons .button02 {
    margin: 0 0 10px;
  }

  body {
    padding-bottom: 60px;
  }
}

/*=======================================
メインビジュアル
=======================================*/
/* 全画面背景 + 左寄せテキスト */
.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 5%;
}

/* テキスト全体 */
.main-visual__text {
  color: #3E4F7E;
  font-weight: bold;
}

.main-visual__text p {
  display: table;
  background-color: rgba(255, 255, 255, 0.86);
  padding: 0.1em 0.6em 0.1em 0.1em;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  font-size: clamp(23px, 2vw, 25px);
  font-weight: normal;
  letter-spacing: 0.3rem;
}

/*pc*/
@media all and (min-width:861px) {
  .main-visual {
    background: url('https://umikaze-resort.com/assets25/img/mainVisual-pc.jpg') no-repeat center center/cover;
  }
}

/*sp*/
@media all and (max-width:860px) {
  .main-visual {
    background: url('https://umikaze-resort.com/assets25/img/mainVisual-sp.jpg') no-repeat center center/cover;
    height: 80vh;
  }
}

/*=======================================
concept
=======================================*/
#concept {
  background-color: #D1DEE5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
}

.concept-inner {
  display: flex;
  width: 100%;
  max-width: 1400px;
  align-items: center;
}

.concept-left {
  flex: 1;
  color: #3E4F7E;
}

.concept-subtitle {
  font-size: clamp(24px, 1.9vw, 30px);
  display: inline-block;
  color: #202020;
  line-height: 2;
  margin: 0 0 20px;
  letter-spacing: 0.1rem;
}

.concept-text {
  font-size: 17px;
  margin-bottom: 1.5rem;
  color: #202020;
  line-height: 2;
}

.concept-button {
  display: inline-block;
  font-size: 16px;
  color: #202020 !important;
  border: 1px solid #202020;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
  max-width: 472px;
  width: 100%;
  margin: 22px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.concept-button::after {
  background-color: #3E4F7E;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.concept-button:hover::after {
  transform: scale(1, 1);
}

.concept-button:hover {
  color: #fff !important;

}

.concept-right {
  flex-basis: 632px;
  max-width: 632px;
  position: relative;
}

.concept-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex !important;
  gap: 8px;
}

.slick-dots li button {
  width: 30px;
  height: 6px;
  background-color: #3E4F7E;
  opacity: 0.4;
  border: none;
  border-radius: 3px;
  font-size: 0;
}

/* Slickのドット全体の位置調整 */
.concept-slider .slick-dots {
  position: absolute;
  bottom: -26px;
  left: 0;
  display: flex !important;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}

/* 通常のドット */
.concept-slider .slick-dots li,
.umikaze-slider .slick-dots li {
  width: 48px;
  height: 4px;
  margin: 0 0 0 4px;
}

.concept-slider .slick-dots li button,
.umikaze-slider .slick-dots li button {
  width: 48px;
  height: 4px;
  border: none;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s ease;
  opacity: 1;
}

.concept-slider .slick-dots li button {
  background: #fff;
}

.umikaze-slider .slick-dots li button {
  background: #D1D7E5;
}

/* アクティブ時のドット */
.concept-slider .slick-dots li.slick-active button,
.umikaze-slider .slick-dots li.slick-active button {
  background: #3E4F7E;
}

/* 1400px未満のときは幅を50%に */
@media screen and (max-width: 1399px) {
  .concept-right {
    max-width: 50%;
  }
}

/*pc*/
@media all and (min-width:861px) {
  .concept-inner {
    padding: 60px 0 78px;
    justify-content: center;
  }

  .concept-left {
    margin-bottom: 109px;
    max-width: 526px;
    margin-right: 6%;
    padding-left: 20px;
  }

  .concept-button {
    padding: 2.1em 1.5em;
    height: 92px;
  }
}

/*sp*/
@media all and (max-width:860px) {
  .concept-inner {
    flex-wrap: wrap;
  }

  .concept-left {
    padding: 30px 40px 40px;
  }

  .concept-right {
    max-width: 100%;
  }

  .concept-right .slick-dotted.slick-slider {
    margin-bottom: 0;
  }

  .concept-slider .slick-dots {
    display: none !important;
  }

  .concept-title img {
    max-height: 82px;
  }

  .concept-button {
    padding: 1.3em 1.5em;
  }
}

/*=======================================
umikaze-day
=======================================*/
#umikaze-day {
  background: #fff;
  width: 100%;
  overflow: hidden;
}

.umikaze-title {
  text-align: center;
  margin-bottom: 30px;
}

.umikaze-slider {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.umikaze-slider .slide-item {
  position: relative;
  box-sizing: border-box;
}

.umikaze-slider img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.slide-item a {
  text-decoration: none;
  color: #202020;
}

.slide-item a:visited {
  text-decoration: none;
  color: #202020;
}

.slide-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
}

.slide-text {
  font-size: clamp(19px, 2vw, 28px);
  color: #202020;
  margin: 0;
  flex: 1;
}


.slide-arrow {
  position: relative;
}

.slide-arrow::before,
.slide-arrow::after {
  content: '';
  position: absolute;
  background: #3E4F7E;
}

.slide-arrow::before {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
}

.slide-arrow::after {
  width: 1px;
  height: 100%;
  transform: rotate(-45deg);
}



/* ドット（ページャー） */
.umikaze-slider .slick-dots {
  position: relative;
  bottom: -40px;
  display: flex !important;
  justify-content: center;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.umikaze-slider .slick-dots li button {
  width: 48px;
  height: 4px;
}

/*pc*/
@media all and (min-width:861px) {
  #umikaze-day {
    padding: 80px 0 60px;
  }

  .umikaze-slider .slide-item {
    margin: 0 30px;
  }

  .slide-arrow {
    width: 172px;
    height: 20px;
    margin-left: 12px;
  }

  .slide-arrow::before {
    max-width: 172px;
  }

  .slide-arrow::after {
    bottom: -2px;
    right: 8px;
  }

  .umikaze-slider.slick-dotted.slick-slider {
    margin-bottom: 57px;
  }
}

/*sp*/
@media all and (max-width:860px) {
  #umikaze-day {
    padding: 50px 0 60px;
  }

  .umikaze-title img {
    max-height: 148px;
  }

  .umikaze-slider .slide-item {
    margin: 0 20px;
  }

  .slide-arrow {
    width: 93px;
    height: 8px;
    margin-left: 12px;
  }

  .slide-arrow::before {
    width: 93px;
  }

  .slide-arrow::after {
    bottom: 0px;
    right: 4px;
  }

  .umikaze-slider .slick-dots {
    left: 0;
  }
}

/*=======================================
header
=======================================*/
#plans {
  background-color: #D1DEE5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.plans-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.plans-description {
  text-align: left;
  font-size: 17px;
  color: #333;
  max-width: 702px;
  width: 100%;
  line-height: 1.8;
  margin: 10px 0 0;
}

.plans-table {
  border-collapse: collapse;
  background-color: #fff;
  width: 980px;
  margin: 0 auto 20px;
}

.plans-table th,
.plans-table td {
  border: 1px solid #ccc;
  padding: 24px 15px;
  text-align: center;
  font-weight: normal;
}

.note {
  font-size: 14px;
  margin: 0 0 0 5px;
}

.note-text {
  font-size: 16px;
  color: #666;
  margin: 0 auto;
  max-width: 980px;
}

.item-header {
  background-color: #3E4F7E;
}

.item-header th {
  color: #fff;
}

.options {
  max-width: 1200px;
  background: #fff;
  position: relative;
}

.options h3 {
  position: absolute;
  top: -64px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.options-grid,
.rentals-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1008px;
}

.options-grid {
  margin: 25px auto 0;
}

.rentals-grid {
  margin: 39px auto 0;
}

.option-item h4,
.rental-item h6 {
  color: #000000;
  font-size: 26px;
  text-align: center;
  font-weight: normal;
  margin: 0 0 19px;
}

.option-item .txt01 {
  font-size: 17px;
  margin: 10px 0 0;
}

.option-item .txt02 {
  margin: 36px 0 12px;
}

.rental-item .txt03 {}

.option-item .price,
.rental-item .price {
  font-weight: bold;
  margin: 10px 0;
  color: #3E4F7E;
  font-size: 36px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.option-item .price span.en,
.rental-item .price span.en {
  font-size: 24px;
}

.option-item .price span,
.rental-item .price span {
  font-size: 36px;
}

.option-item .price span.price-label,
.rental-item .price span.price-label {
  font-size: 15px;
}

.option-item .btn {
  display: inline-block;
  background: #fff;
  border: 1px solid #707070;
  padding: 13px 10px;
  color: #202020;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  width: 100%;
}

.rentals {
  max-width: 1008px;
  margin: 86px auto 0;
  padding: 0;
}

.rentals h5 {
  font-size: clamp(26px, 2.5vw, 28px);
  position: relative;
  display: inline-block;
  color: #3E4F7E;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.rentals h5 span {
  background-color: #fff;
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 28px 0 0;
}

.rentals h5::after {
  content: "";
  position: absolute;
  top: 50%;
  left: revert;
  right: 0;
  height: 1px;
  background-color: #3E4F7E;
  margin-left: 1em;
  width: 100%;
  z-index: 0;
  width: calc(100% - 40px);
}



/*pc*/
@media all and (min-width:861px) {
  #plans {
    padding: 60px 0 120px;
  }

  .options {
    padding: 60px 0 40px;
    margin: 165px auto 0;
  }

  .options-grid .slick-prev,
  .options-grid .slick-next,
  .rentals-grid .slick-prev,
  .rentals-grid .slick-next {
    display: none !important;
  }

  .scroll-indicator {
    display: none;
  }

  .option-item,
  .rental-item {
    padding: 20px;
    max-width: 336px;
    width: 33%;
  }

  .rentals h5 {
    padding: 0 20px;
  }
}

/*sp*/
@media all and (max-width:860px) {
  #plans {
    padding: 60px 0 70px;
  }

  .options {
    padding: 30px 0 40px;
    margin: 95px auto 0;
  }

  .options-grid .slick-prev,
  .options-grid .slick-next,
  .rentals-grid .slick-prev,
  .rentals-grid .slick-next {
    width: 40px;
    height: 40px;
    background-size: contain !important;
    background-repeat: no-repeat;
    z-index: 2;
  }

  .options-grid .slick-prev,
  .rentals-grid .slick-prev {
    background-image: url('https://umikaze-resort.com/assets25/img/arrow-pre.png') !important;
    left: -10px;
  }

  .options-grid .slick-next,
  .rentals-grid .slick-next {
    background-image: url('https://umikaze-resort.com/assets25/img/arrow-next.png') !important;
    right: -10px;
  }

  .plans-header {
    flex-wrap: wrap;
    margin: 0 auto 20px;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 68px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.6s ease;
    max-width: 104px;
  }

  .scroll-indicator.hide {
    opacity: 0;
  }

  .plans-wrap {
    overflow: scroll;
    position: relative;
    width: calc(100% + 20px);
  }

  .plans-title {
    margin: 0;
  }

  .plans-title img {
    max-height: 82px;
  }

  .options-grid,
  .rentals-grid {
    width: 70vw !important;
  }

  .options,
  .rentals {
    width: calc(100% - 40px);
  }

  .options-grid .slick-prev,
  .options-grid .slick-next {
    top: 29%;
  }

  .rentals-grid .slick-prev,
  .rentals-grid .slick-next {
    top: 35%;
  }

  .options-grid .slick-prev,
  .rentals-grid .slick-prev {
    left: -26px;
  }

  .rentals-grid .slick-next,
  .options-grid .slick-next {
    right: -26px;
  }


  .options-grid .slick-prev:before,
  .options-grid .slick-next:before,
  .rentals-grid .slick-prev:before,
  .rentals-grid .slick-next:before {
    font-size: 0;
  }

  .option-item .btn {
    width: calc(100% - 1px);
  }

  .options .slick-slide img,
  .rentals .slick-slide img {
    width: 100%;
  }

  .options h3 {
    top: -42px;
  }

  .options h3 img {
    max-height: 82px;
  }

  .rentals {
    margin: 10px auto 0;
  }

  .rentals h5 {
    margin: 0 0 10px;
  }
}




/*=======================================
header
=======================================*/
/*=======================================
facilities
=======================================*/
#facilities {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.facilities-inner {
  max-width: 1400px;
  width: 100%;
}

.facilities-left {
  flex: 1;
  color: #3E4F7E;
}

#facilities h3 {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  color: #3E4F7E;
  font-weight: normal;
}

#facilities h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #3E4F7E;
  transform: translateY(-50%);
}

.check-in-out {
  font-size: 18px;
  color: #202020;
}

.facilities-text {
  font-size: 17px;
  margin-bottom: 1.5rem;
  color: #202020;
}

.facilities-note {
  font-size: 16px;
  color: #202020;
}

.facilities-button {
  display: inline-block;
  font-size: 16px;
  color: #3E4F7E;
  border: 1px solid #3E4F7E;
  background-color: #fff;
  text-align: center;
  padding: 0.5em 1.5em;
  text-decoration: none;
  border-radius: 4px;
}

.facilities-right {
  max-width: 632px;
  position: relative;
}

.facilities-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*pc*/
@media all and (min-width:861px) {
  #facilities {
    padding: 70px 0 82px;
  }

  .facilities-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .facilities-left {
    max-width: 526px;
    margin-right: 6%;
    margin-bottom: 109px;
    padding-left: 20px;
  }

  .facilities-right {
    margin-top: 134px;
    width: 50%;
  }
}

/*sp*/
@media all and (max-width:860px) {
  #facilities {
    padding: 20px 0 0;
  }

  .facilities-inner {
    flex-wrap: wrap;
  }

  .facilities-left {
    padding: 10px 40px 30px;
  }

  .facilities-title {}

  .facilities-title img {
    max-height: 82px;
  }

  .facilities-right {
    margin-top: 4px;
    width: 100%;
  }
}

/*=======================================
header
=======================================*/
/* カレンダー全体セクション */
.calendar-section {
  background-color: #D1DEE5;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.calendar-inner {
  max-width: 980px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

/* タイトル画像 */
.calendar-title {
  margin: 13px 0 10px;
}

.calendar-title img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* テキスト */
.calendar-text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: #202020;
  margin-top: 0;
  margin-bottom: 44px;
  line-height: 1.8;
}

/* Googleカレンダー枠 */
.calendar-frame {
  background: #fff;
}

.calendar-placeholder {
  color: #999;
  font-size: 16px;
}

/* ボタン */
.calendar-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #3E4F7E;
  color: #fff !important;
  text-decoration: none;
  padding: 0 40px;
  max-width: 568px;
  height: 124px;
  font-size: 18px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 矢印（白） */
.calendar-button .arrow-white {
  width: 109px;
  height: 16px;
  margin-left: 12px;
  position: relative;
}

.calendar-button .arrow-white::before,
.calendar-button .arrow-white::after {
  content: '';
  position: absolute;
  background: #fff;
}

.calendar-button .arrow-white::before {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  max-width: 172px;
}

.calendar-button .arrow-white::after {
  width: 1px;
  height: 100%;
  transform: rotate(-45deg);
  bottom: -2px;
  right: 6px;
}

/*pc*/
@media all and (min-width:861px) {
  .calendar-section {
    padding: 60px 20px 80px;
  }

  .calendar-frame {
    margin-bottom: 55px;
    padding: 60px 20px;
  }
}

/*sp*/
@media all and (max-width:860px) {
  .calendar-section {
    width: calc(100% - 40px);
    margin: 50px auto 0;
    padding: 30px 20px 60px;
  }

  .calendar-frame {
    margin-bottom: 30px;
  }

  .calendar-title img {
    max-height: 82px;
  }

  .calendar-button {
    display: block;
    text-align: center;
    padding: 26px 10px 0;
  }

  .calendar-button .arrow-white {
    display: block;
    margin: 17px auto 0;
    max-width: 109px;
  }

  .calendar-button .arrow-white::before {
    max-width: 109px;
  }

  .calendar-button .arrow-white::after {
    bottom: -2px;
    right: 6px;
  }
}

/*=======================================
common
=======================================*/
/* 初期位置 */
.arrow-blue,
.arrow-white {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* hover時に右に20px動く */
a:hover .arrow-blue,
a:hover .arrow-white {
  transform: translateX(15px);
}

.button03:hover .arrow-blue {
  transform: translateX(-15px);
}

/* Instagramセクション */
.instagram-section {
  padding: 60px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

/* タイトルとボタンの行 */
.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.instagram-title img {
  max-width: 100%;
  height: auto;
}

/* 白背景・濃色文字のボタン */
.instagram-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #202020 !important;
  text-decoration: none;
  padding: 0 40px;
  width: 472px;
  font-size: 18px;
  border: 1px solid #3E4F7E;
  box-sizing: border-box;
  height: 92px;
}

/* 矢印（濃色） */
.instagram-button .arrow-blue {
  height: 20px;
  margin-left: 12px;
  position: relative;
}

.instagram-button .arrow-blue::before,
.instagram-button .arrow-blue::after {
  content: '';
  position: absolute;
  background: #3E4F7E;
}

.instagram-button .arrow-blue::before {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
}

.instagram-button .arrow-blue::after {
  width: 1px;
  height: 100%;
  transform: rotate(-45deg);
  bottom: -2px;
  right: 8px;
}

/* Instagram画像ギャラリー */
.instagram-gallery {}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .instagram-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .instagram-button {
    width: 100%;
    height: auto;
    padding: 33px 30px 33px;
    font-size: 16px;
  }

  .instagram-gallery {
    gap: 16px;
    width: 100%;
  }

}

/*pc*/
@media all and (min-width:861px) {
  .instagram-button .arrow-blue {
    width: 92px;
  }
}

/*sp*/
@media all and (max-width:860px) {
  #instagram {}

  .instagram-title img {
    max-height: 85px;
  }

  .instagram-button .arrow-blue {
    width: 92px;
  }
}

/*=======================================
header
=======================================*/
/* Information Section */
#information {
  background-color: #D1DEE5;
  padding: 60px 20px 108px;
  text-align: center;
}

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

.information-title {
  margin-bottom: 50px;
}

.information-list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
}

.info-date {
  background-color: #3E4F7E;
  color: #fff;
  padding: 3px 21px;
  font-size: clamp(17px, 1.5vw, 20px);
  white-space: nowrap;
}

.info-title a {
  color: #202020 !important;
  font-weight: 500;
  font-size: 17px;
  text-decoration: underline;
}

.info-button-wrap {
  display: flex;
  justify-content: center;
}

/*pc*/
@media all and (min-width:861px) {
  .information-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 17px;
    gap: 1rem;
  }
}

/*sp*/
@media all and (max-width:860px) {
  #information {
    padding: 30px 20px 60px;
  }

  .information-title img {
    max-height: 82px;
  }

  .info-date {
    margin: 0 0 10px;
    display: inline-block;
  }

  .info-title {
    display: block;
  }

  .info-title a {
    text-decoration: underline;
  }

  .information-item {
    font-size: 17px;
    text-align: left;
    margin: 0 0 30px;
  }
}

/*=======================================
header
=======================================*/
#access {}

#access iframe {
  filter: grayscale(.5);
}

#access .contents {}

#access .contents p {
  text-align: center;
  margin: 0;
}

/*pc*/
@media all and (min-width:861px) {
  #access .contents p {
    padding: 75px 20px 78px;
  }
}

/*sp*/
@media all and (max-width:860px) {
  #access .contents p {
    padding: 40px 20px 40px;
  }
}

/*=======================================
header
=======================================*/
.site-footer {
  background-color: #D1DEE5;
  text-align: center;
  color: #3E4F7E;
}

.footer-logo img {
  max-width: 260px;
  height: auto;
  margin: 0 auto 13px;
}

.footer-address {
  font-size: 16px;
  margin-bottom: 52px;
  color: #202020;
}

.footer-address a {
  color: #202020 !important;
}

.footer-buttons {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

/* ボタン */
.footer-buttons .button01,
.footer-buttons .button02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 0 25px;
  width: 300px;
  height: 84px;
  font-size: 16px;
  box-sizing: border-box;
  margin: 0 10px 0;
}

.footer-buttons .button01 {
  color: #fff;
}

.footer-buttons .button02 {
  color: #3E4F7E;
}

.button01 {
  background-color: #3E4F7E;
  color: #fff;
}

/* 矢印（白） */
.button01 .arrow-white,
.button02 .arrow-blue,
.button05 .arrow-blue {
  width: 55px;
  height: 10px;
  margin-left: 0;
  position: relative;
}

.button03 .arrow-blue {
  width: 92px;
  height: 14px;
  margin-left: 0;
  position: relative;
}

.button01 .arrow-white::before,
.button01 .arrow-white::after,
.button02 .arrow-blue::before,
.button02 .arrow-blue::after,
.button03 .arrow-blue::before,
.button03 .arrow-blue::after,
.button05 .arrow-blue::before,
.button05 .arrow-blue::after {
  content: '';
  position: absolute;
}

.button01 .arrow-white::before,
.button01 .arrow-white::after {
  background: #fff;
}

.button01 .arrow-white::before,
.button02 .arrow-blue::before,
.button05 .arrow-blue::before {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  max-width: 84px;
}

.button01 .arrow-white::after,
.button02 .arrow-blue::after,
.button05 .arrow-blue::after {
  width: 1px;
  height: 100%;
  transform: rotate(-45deg);
  bottom: -1px;
  right: 4px;
}


.button03 .arrow-blue::before {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  max-width: 84px;
}

.button03 .arrow-blue::after {
  width: 1px;
  height: 100%;
  transform: rotate(45deg);
  bottom: -1px;
  left: 14px;
}



/* 白背景・濃色文字のボタン */
.button02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #3E4F7E;
  text-decoration: none;
  padding: 0 40px;
  width: 568px;
  height: 124px;
  font-size: 18px;
  border: 1px solid #3E4F7E;
  box-sizing: border-box;
}

/* 矢印（濃色） */

.button02 .arrow-blue::before,
.button02 .arrow-blue::after {
  background: #3E4F7E;
}

.menu-buttons .button01,
.menu-buttons .button02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 0 25px;
  height: 84px;
  font-size: 16px;
  box-sizing: border-box;
}

.menu-buttons .button01 {
  color: #fff;
}

.menu-buttons .button02 {
  color: #3E4F7E;
}

/* 白背景・濃色文字のボタン */
.button03 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #3E4F7E !important;
  text-decoration: none;
  padding: 0 40px;
  max-width: 472px;
  height: 92px;
  font-size: 18px;
  border: 1px solid #3E4F7E;
  box-sizing: border-box;
}


/* 矢印（濃色） */

.button03 .arrow-blue::before,
.button03 .arrow-blue::after {
  background: #3E4F7E;
}

/*pc*/
@media all and (min-width:861px) {
  .button03 {
    margin: 160px auto 120px;
  }

  .menu-buttons .button01,
  .menu-buttons .button02 {
    width: 310px;
  }

  .footer-buttons .button01,
  .footer-buttons .button02 {
    width: 300px;
  }

  .site-footer {
    padding: 70px 20px 60px;
  }
}

/*sp*/
@media all and (max-width:860px) {

  .footer-buttons .button01,
  .footer-buttons .button02 {
    margin: 0 0 10px;
    max-width: 350px;
    width: 100%;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .button03 {
    margin: 88px auto 80px;
  }

  .menu-buttons .button01,
  .menu-buttons .button02 {
    max-width: 350px;
    width: 100%;
  }

  .site-footer {
    padding: 70px 40px 60px;
  }
}

/*=======================================
main
=======================================*/
#primary {
  max-width: 1020px;
  padding: 0 20px;
}

#page-mainVisual {
  background-size: cover;
  background-position: center;
}

#page-mainVisual h1 {
  background-color: rgba(255, 255, 255, 0.86);
  padding: 30px 20px 40px;
  margin: 0 auto;
  font-size: clamp(23px, 2vw, 25px);
  letter-spacing: 0.3rem;
  text-align: center;
}

#page-mainVisual h1 img {
  max-height: 88px;
}

#page-mainVisual h1 span {
  display: block;
  margin: -13px 0 0;
  line-height: 1;
  color: #3E4F7E;
  font-weight: normal;
  font-size: 24px;
}

.page-a-day-with-umikaze h1,
.page-information h1 {
  max-width: 740px;
}

.page h2.wp-block-heading {
  font-size: 36px;
  text-align: center;
  font-weight: normal;
  color: #202020;
  margin: 0 0 60px;
}

.page h3.wp-block-heading {
  font-size: 28px;
  font-weight: normal;
  padding: 0 0 0 45px;
  margin: 70px 0 30px;
  position: relative;
}

.page h3.wp-block-heading::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #3E4F7E;
  left: 0;
  top: 50%;
}

.page .wp-block-image {}

.page p {
  letter-spacing: 2px;
  line-height: 2;
  margin: 4rem 0 4rem;
  font-size: 15px;
}

.wp-block-image img {

  margin: 20px 0px;
}

/*pc*/
@media all and (min-width:861px) {
  #primary {
    margin: 121px auto 0;
  }

  #page-mainVisual {
    height: 372px;
    margin: 74px auto 0;
  }

  .page-a-day-with-umikaze {
    background-image: url('https://umikaze-resort.com/assets25/img/a-day-with-umikaze-mainVisual-pc.jpg');
  }

  .page-information {
    background-image: url('https://umikaze-resort.com/assets25/img/info-mainVisual-pc.jpg');
  }

  .page-a-day-with-umikaze,
  .page-information {
    padding: 100px 20px 0;
  }
}

/*sp*/
@media all and (max-width:860px) {
  #primary {
    margin: 68px auto 0;
  }

  #page-mainVisual {
    height: 260px;
    margin: 78px auto 0;
  }

  .page-a-day-with-umikaze {
    background-image: url('https://umikaze-resort.com/assets25/img/a-day-with-umikaze-mainVisual-sp.jpg');
  }

  .page-information {
    background-image: url('https://umikaze-resort.com/assets25/img/info-mainVisual-sp.jpg');
  }

  .page-a-day-with-umikaze,
  .page-information {
    padding: 40px 20px 0;
  }

  .page h2.wp-block-heading {
    font-size: 23px;
    letter-spacing: 3px;
    margin: 0 0 30px 0;
  }

  .page h3.wp-block-heading {
    font-size: 21px;
  }

  .page p {
    margin: 2rem 0 4rem;
  }
}

/*=======================================
single-information
=======================================*/
.single-information {}

.info-header {
  border-bottom: 1px solid #3E4F7E;
  margin: 0 0 40px;
}

.single-information .info-date {}

.single-information .info-title {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: normal;
}

/*pc*/
@media all and (min-width:861px) {
  .single-information .info-title {
    margin: 39px 0 30px;
  }
}

/*sp*/
@media all and (max-width:860px) {
  .single-information .info-title {
    margin: 29px 0 30px;
  }
}

/*=======================================
fixed-image-link
=======================================*/
.fixed-image-link {
  position: fixed;
  right: 0;
  bottom: 47px;
  z-index: 9999;
}

.fixed-image-link::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: #fff;
  min-height: 160px;
  position: absolute;
  top: 0;
  z-index: 9;
}

.fixed-image-link img {
  display: block;
  max-width: 100%;
  height: auto;
  z-index: 10;
  position: relative;
}

.fixed-image-link:hover img {
  opacity: 0.5;
}

/*pc*/
@media all and (min-width:861px) {}

/*sp*/
@media all and (max-width:860px) {
  .fixed-image-link {
    display: none;
  }
}

/*=======================================
archive
=======================================*/
/* スマホのみ表示 */
@media screen and (max-width: 860px) {
  .sp-footer-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    z-index: 99;
  }

  .sp-footer-buttons a {
    display: flex;
    align-items: center;
    width: 50%;
    height: 60px;
    box-sizing: border-box;
    border-width: 2px;
    border-style: solid;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    padding: 0 20px;
  }

  /* button01 */
  .sp-footer-buttons .button04 {
    color: #fff;
    border-color: #3E4F7E;
    background-color: #3E4F7E;
    justify-content: center;
  }

  /* button02 */
  .sp-footer-buttons .button02 {
    color: #3E4F7E;
    border-color: #3E4F7E;
    background-color: #fff;
    justify-content: left;
  }

  /* 矢印共通スタイル調整（幅だけ微調整） */
  .sp-footer-buttons .arrow-blue {
    width: 54px;
    height: 10px;
    margin-left: 12px;
    position: relative;
  }

  /* 以下は既存arrowのスタイルを引き継ぐ場合の例です */
  .sp-footer-buttons .arrow-blue::before {
    content: '';
    position: absolute;
    background: currentColor;
    width: 100%;
    height: 1px;
    bottom: 0;
    right: 0;
    max-width: 54px;
  }

  .sp-footer-buttons .arrow-blue::after {
    content: '';
    position: absolute;
    background: currentColor;
    width: 1px;
    height: 100%;
    transform: rotate(-45deg);
    bottom: -1px;
    right: 3px;
  }
}

/* PC等は非表示 */
@media screen and (min-width: 861px) {
  .sp-footer-buttons {
    display: none;
  }
}

/*=======================================
fade-up
=======================================*/
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/*pc*/
@media all and (min-width: 861px) {}

/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
header-right
=======================================*/
.header-right {
  display: flex;
  align-items: center;
  max-width: 200px;
  justify-content: space-between;
  height: auto;
}

.gtranslate_wrapper {
  margin-right: 16px;
  position: relative;
}

a.glink {
  color: #fff !important;
  text-decoration: none;
  font-size: 18px;
}

/*pc*/
@media all and (min-width:861px) {
  .menu .gtranslate_wrapper {
    display: none;
  }

  a.glink {
    margin-right: 22px;
    padding-right: 24px;
  }

  a.glink:nth-child(1)::after {
    content: "";
    height: 16px;
    width: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 36%;
    right: 0;
    top: 6px;
  }

  .page .fixed a.glink:nth-child(1)::after,
  .single .fixed a.glink:nth-child(1)::after,
  .archive .fixed a.glink:nth-child(1)::after,
  .fixed a.glink:nth-child(1)::after {
    background-color: #202020;
  }

  .page .fixed a.glink,
  .single .fixed a.glink,
  .archive .fixed a.glink,
  .fixed a.glink {
    color: #202020 !important;
  }
}

/*sp*/
@media all and (max-width:860px) {
  .header-right .gtranslate_wrapper {
    display: none;
  }

  .gtranslate_wrapper {
    border: 1px solid #707070;
    text-align: center;
    padding: 12px 20px 12px;
    height: 56px;
    max-width: 350px;
    margin: 20px 0 0;
    display: flex;
    justify-content: space-around;
  }

  a.glink:nth-child(1)::after {
    background-color: #fff;
  }

  a.glink {
    color: #202020 !important;
  }

  .gtranslate_wrapper::after {
    content: "";
    height: 20px;
    width: 1px;
    background-color: #202020;
    display: block;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
}

/*=======================================
プライバシーポリシー
=======================================*/
.contents-privacypolicy h2.wp-block-heading {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: normal;
  margin: 40px 0 14px;
  text-align: left;
}

.contents-privacypolicy p a {
  word-break: break-all;
}

/*pc*/
@media all and (min-width:861px) {}

/*sp*/
@media all and (max-width:860px) {}



/*=======================================
固定ページ用
=======================================*/

p.mt0 {
  margin-top: 0;
}

.button05 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #3E4F7E !important;
  text-decoration: none;
  padding: 0 40px;
  width: 100%;
  height: 70px;
  font-size: 18px;
  border: 1px solid #3E4F7E;
  box-sizing: border-box;
  max-width: 420px;
  margin: 0 auto;
}

.button05 .arrow-blue::before,
.button05 .arrow-blue::after {
  background: #3E4F7E;
}

.margin0 {
  margin: 0 !important;
}

.margin0 img {
  margin: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

a.button05:visited {
  color: #3E4F7E !important;
}

h2.adaywith-h2 {
  margin-top: 160px !important;
}

p.continuus-discount {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  padding: 24px;
  text-align: center;
}

p.continuus-discount span {
  display: inline-block;
  font-size: 18px;
  border-bottom: 1px solid #3E4f7E;
  margin-bottom: 10px;
  margin-top: 10px;
  width: fit-content;
  color: #7e3e4a;
}

p.continuus-discount span.discount-flex {
  border: none;
  display: flex;
  justify-content: space-around;
  width: auto;
}

p.continuus-discount span.title {
  display: block;
  color: #3E4F7E;
  font-weight: 600;
  font-size: 20px;
  text-align: center !important;
  margin: 0 0 20px;
  border: none !important;
  width: auto;
}

@media all and (max-width:768px) {
  p.continuus-discount {
    text-align: justify;
  }

  p.continuus-discount span.discount-flex {
    flex-direction: column;
  }


}