@charset "UTF-8";
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-navy: #284679;
  --color-yellow: #F8E505;
  --color-aqua: #D9F0F2;
  --color-purple: #B53BA7;
  --color-orange: #FF5800;
  --color-green: #55A502;
  --color-blue: #1E42BA;
  --color-purple-light: #FCF4FA;
  --color-orange-light: #FFF6F1;
  --color-green-light: #F5FAF1;
  --color-blue-light: #EFF2FB;
}

/*********** **********
 .imizu-and-around-main
 *********** **********/
.imizu-and-around-main {
  overflow: hidden; /* はみ出した要素を隠す */
  font-weight: 500; /* 基本のフォントウェイト */
}

/*********** **********
 既存要素の上書き
 *********** **********/
:where(.imizu-and-around-main) figure {
  margin: 0;
}

:where(.imizu-and-around-main) :is(h1, h2, h3, h4, h5, h6, p) {
  margin-block: 0;
}

:where(.imizu-and-around-main) ul {
  list-style: none;
  padding-left: 0;
}

/* パンくずリスト */
:where(.imizu-and-around-main) .single_date {
  --max-inner-width: 1152px;
  --gutter-x: 32px;
  max-width: calc(var(--max-inner-width) + var(--gutter-x) * 2);
  margin-inline: auto;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
}
@media screen and (max-width: 768px) {
  :where(.imizu-and-around-main) .single_date {
    --gutter-x: 16px;
    margin-bottom: 34px;
  }
}

/* 目次 */
:where(.imizu-and-around-main) .toc-toggle::before {
  --toc-icon-w: 24px;
  --toc-icon-h: 46px;
  mask: url(../img/imizu-unique/imizu-and-around/to.svg) no-repeat center/contain;
  background-color: #2491D9;
  background-image: none;
  top: calc(var(--toc-icon-h) * -0.75);
  right: 44px;
  rotate: -11deg;
}

/*********** **********
 コンテナパーツ
 *********** **********/
/* .unique-lower-container-1 */
.unique-lower-container-1 {
  --max-inner-width: 1180px;
  --gutter-x: 32px;
  max-width: calc(var(--max-inner-width) + var(--gutter-x) * 2);
  margin-inline: auto;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
}
@media screen and (max-width: 768px) {
  .unique-lower-container-1 {
    --gutter-x: 16px;
  }
}

/* .unique-lower-container-2 */
.unique-lower-container-2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}

/* .unique-lower-container-3 */
.unique-lower-container-3 {
  --max-inner-width: 1152px;
  --gutter-x: 32px;
  max-width: calc(var(--max-inner-width) + var(--gutter-x) * 2);
  margin-inline: auto;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
}
@media screen and (max-width: 768px) {
  .unique-lower-container-3 {
    --gutter-x: 16px;
  }
}

/* .section-header-container */
.section-header-container {
  --max-inner-width: 1030px;
  --gutter-x: 32px;
  max-width: calc(var(--max-inner-width) + var(--gutter-x) * 2);
  margin-inline: auto;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
}
@media screen and (max-width: 768px) {
  .section-header-container {
    --gutter-x: 16px;
  }
}

/*********** **********
 共通パーツ
 *********** **********/
/* 波線区切り */
.imizu-to__wave-top {
  display: block;
  width: 100%;
  height: 36px;
  margin-block: -1px;
  border: 0;
  mask: url(../img/imizu-unique/imizu-and-around/wave-top.svg) repeat-x center top/5.375rem;
}
.imizu-to__wave-top--purple-light {
  background-color: var(--color-purple-light);
}
.imizu-to__wave-top--purple {
  background-color: var(--color-purple);
}
.imizu-to__wave-top--orange {
  background-color: var(--color-orange);
}
.imizu-to__wave-top--green {
  background-color: var(--color-green);
}
.imizu-to__wave-top--blue {
  background-color: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .imizu-to__wave-top {
    height: 1.4375rem;
    mask-size: 2.9375rem;
  }
}

.imizu-to__wave-bottom {
  display: block;
  width: 100%;
  height: 36px;
  margin-block: -1px;
  border: 0;
  mask: url(../img/imizu-unique/imizu-and-around/wave-bottom.svg) repeat-x center bottom/5.375rem;
}
.imizu-to__wave-bottom--purple {
  background-color: var(--color-purple);
}
.imizu-to__wave-bottom--orange {
  background-color: var(--color-orange);
}
.imizu-to__wave-bottom--green {
  background-color: var(--color-green);
}
.imizu-to__wave-bottom--blue {
  background-color: var(--color-blue);
}
.imizu-to__wave-bottom--navy {
  background-color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .imizu-to__wave-bottom {
    height: 1.4375rem;
    mask-size: 2.9375rem;
  }
}

/* 背景 */
.bg-aqua {
  background-color: var(--color-aqua);
}
.bg-purple-light {
  background-color: var(--color-purple-light);
}
.bg-purple {
  background-color: var(--color-purple);
}
.bg-orange-light {
  background-color: var(--color-orange-light);
}
.bg-orange {
  background-color: var(--color-orange);
}
.bg-green-light {
  background-color: var(--color-green-light);
}
.bg-green {
  background-color: var(--color-green);
}
.bg-blue-light {
  background-color: var(--color-blue-light);
}
.bg-blue {
  background-color: var(--color-blue);
}

/* タイトル */
.imizu-to-ttl-1 {
  display: flex;
  justify-content: center;
  align-items: start;
  column-gap: 1.55em;
  position: relative;
  margin-bottom: 5.125rem;
  padding-right: 3.75rem;
}

.imizu-to-ttl-1__img {
  position: absolute;
  z-index: 1;
  left: 0;
}

.imizu-to-ttl-1__jp {
  margin-top: 0.1em;
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--color-navy);
}

@media screen and (max-width: 768px) {
  .imizu-to-ttl-1 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.3125rem;
    padding-right: 0;
  }
  .imizu-to-ttl-1__icon {
    margin-bottom: 1.125rem;
  }
  .imizu-and-around-main .imizu-to-ttl-1__img {
    position: static;
    width: 15.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background-color: var(--color-white);
  }
  .imizu-to-ttl-1__jp {
    min-width: 10.7692307692em;
    margin-top: 0.5769230769em;
    margin-bottom: 0.3846153846em;
    padding: 0.1538461538em 0.8846153846em 0.3461538462em;
    border-radius: 100em;
    text-align: center;
    font-size: 1.625rem;
    font-weight: bold;
    line-height: 1.4230769231;
    color: var(--color-white);
  }
}
@media screen and (max-width: 768px) {
  .imizu-to-ttl-1--sec02 .imizu-to-ttl-1__jp {
    background-color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .imizu-to-ttl-1--sec03 .imizu-to-ttl-1__jp {
    background-color: var(--color-green);
  }
}
@media screen and (max-width: 768px) {
  .imizu-to-ttl-1--sec04 .imizu-to-ttl-1__jp {
    background-color: var(--color-blue);
  }
}
.imizu-to-ttl-2 {
  display: flex;
  justify-content: center;
  align-items: start;
  margin-bottom: 1.375rem;
  font-size: 1.25rem;
}

.imizu-to-ttl-2::before {
  content: "";
  display: block;
  z-index: 1;
  position: relative;
  width: 1.75em;
  height: 1.8em;
  margin-right: -0.75em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.imizu-to-ttl-2__txt {
  min-width: 8em;
  padding: 0.25em 0.9em 0.4em;
  border-radius: 100em;
  text-align: center;
  font-weight: bold;
  background-color: var(--color-yellow);
}

.imizu-to-ttl-2--purple .imizu-to-ttl-2__txt {
  color: var(--color-purple);
}

.imizu-to-ttl-2--purple::before {
  background-image: url(../img/imizu-unique/imizu-and-around/icon-to-purple.svg);
}

.imizu-to-ttl-2--orange .imizu-to-ttl-2__txt {
  color: var(--color-orange);
}

.imizu-to-ttl-2--orange::before {
  background-image: url(../img/imizu-unique/imizu-and-around/icon-to-orange.svg);
}

.imizu-to-ttl-2--green .imizu-to-ttl-2__txt {
  color: var(--color-green);
}

.imizu-to-ttl-2--green::before {
  background-image: url(../img/imizu-unique/imizu-and-around/icon-to-green.svg);
}

.imizu-to-ttl-2--blue .imizu-to-ttl-2__txt {
  color: var(--color-blue);
}

.imizu-to-ttl-2--blue::before {
  background-image: url(../img/imizu-unique/imizu-and-around/icon-to-blue.svg);
}

.imizu-to-ttl-3 {
  padding-top: 1.75rem;
  text-align: center;
  font-size: 1.375rem;
  font-weight: bold;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .imizu-to-ttl-3 {
    font-size: 1.25rem;
  }
}

.imizu-to-ttl-4 {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--color-navy);
}
/* .mask-ph */
.mask-ph {
  object-fit: cover;
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.mask-ph__img, .mask-ph__img img {
  display: block;
  object-fit: cover;
  aspect-ratio: inherit;
  width: 100%;
  margin-inline: auto;
}

/* .imizu-to-deco-wrap */
.imizu-to-deco-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

/* .imizu-to-sv */
.imizu-to-sv {
  position: relative;
  text-align: center;
}

.imizu-to-sv__img {
  display: block;
  margin-inline: auto;
}

.imizu-to-sv__caption {
  margin-top: 1.2285714286em;
  font-size: 0.875rem;
}

.imizu-to-sv__deco-wrap {
  position: absolute;
  width: 100%;
  max-width: 1000px;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
}

.imizu-to-sv__to {
  position: absolute;
  width: 3.25rem;
  height: 6.125rem;
  mask: url(../img/imizu-unique/imizu-and-around/to.svg) no-repeat center/contain;
}

.imizu-to-sv__to--sec02 {
  top: -6.5625rem;
  right: 2.5rem;
  background-color: var(--color-orange);
  rotate: -25deg;
}

@media screen and (max-width: 768px) {
  .imizu-to-sv {
    max-width: 358px;
    margin-top: 0.75rem;
    margin-inline: auto;
  }
  .imizu-to-sv__img {
    position: relative;
    z-index: 1;
  }
  .imizu-to-sv__caption {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
  .imizu-to-sv__to {
    display: none;
  }
}
/* .btn */
.btn-pattern-1 {
  position: relative;
  border: 0;
  font-size: 1.0625rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  color: var(--color-navy);
  background: none;
}

.btn-pattern-1::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--color-white);
}

.btn-pattern-1::after {
  content: "";
  display: block;
  margin-top: 0.5rem;
  margin-inline: auto;
  width: 1.84375rem;
  height: 1.84375rem;
  border-radius: 100%;
}

.btn-pattern-1.btn-pattern-1--open::before {
  bottom: 0.625rem;
  width: 0.8rem;
  height: 0.4875rem;
  mask-image: url(../img/imizu-unique/imizu-and-around/arrow-down.svg);
}

.btn-pattern-1.btn-pattern-1--close::before {
  bottom: 0.3125rem;
  width: 1.26875rem;
  height: 1.26875rem;
  mask-image: url(../img/imizu-unique/imizu-and-around/close.svg);
}

.btn-pattern-1.btn-pattern-1--close::after {
  background-color: var(--color-navy);
}

.btn-pattern-1.btn-pattern-1--purple::after {
  background-color: var(--color-purple);
}

.btn-pattern-1.btn-pattern-1--orange::after {
  background-color: var(--color-orange);
}

.btn-pattern-1.btn-pattern-1--green::after {
  background-color: var(--color-green);
}

.btn-pattern-1.btn-pattern-1--blue::after {
  background-color: var(--color-blue);
}

/* .btn-pattern-2 */
.btn-pattern-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  position: relative;
  width: 396px;
  max-width: 100%;
  min-height: 74px;
  margin-inline: auto;
  padding: 0.3636363636em 2.1363636364em;
  border-radius: 100em;
  text-decoration: none;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-white);
  background-color: var(--color-navy);
  transition: 0.3s;
}

.btn-pattern-2::after {
  content: "";
  position: absolute;
  width: 1.5227272727em;
  height: 1.5227272727em;
  right: 0.6136363636em;
  background: url(../img/common/btn-white.svg) no-repeat center/contain;
}

@media (hover: hover) {
  .btn-pattern-2:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 768px) {
  .btn-pattern-2 {
    width: 345px;
  }
}
/* .badge-pickup */
.badge-pickup {
  --size: 3.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  padding-inline: 0.8em;
  text-align: center;
  font-size: 0.75rem;
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1666666667;
  color: var(--color-yellow);
  mask: url(../img/imizu-unique/seaside-area/badge-pickup-bg.svg) no-repeat center/contain;
}
.badge-pickup--purple {
  background-color: var(--color-purple);
}
.badge-pickup--orange {
  background-color: var(--color-orange);
}
.badge-pickup--green {
  background-color: var(--color-green);
}
.badge-pickup--blue {
  background-color: var(--color-blue);
}

/* .white-edged-ph 白縁取り写真 */
.white-edged-ph {
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.white-edged-ph::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 6px var(--color-white);
}
.white-edged-ph img {
  display: block;
  aspect-ratio: 336/223;
  object-fit: cover;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  padding: 1px;
}

/* .card-1 */
.card-1 {
  text-decoration: none;
}

.card-1__tag {
  display: flex;
  justify-content: start;
  align-items: start;
  column-gap: 0.3529411765em;
  margin-bottom: -0.5882352941em;
  padding-left: 0.2941176471em;
}

.card-1__tag-item {
  --br: 0.6em;
  display: flex;
  justify-content: center;
  align-items: start;
  min-width: 5.0666666667em;
  height: 2.4em;
  padding-top: 0.0666666667em;
  padding-inline: 1em;
  border-top-left-radius: var(--br);
  border-top-right-radius: var(--br);
  font-size: 0.8823529412em;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-navy);
}

.card-1__img {
  --color-cream: #FFFCCC;
  overflow: hidden;
  display: block;
  z-index: 1;
  position: relative;
  border-radius: 0.625rem;
}

.card-1__img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 8px var(--color-cream);
  border-radius: 0.625rem;
}

.card-1__img img {
  display: block;
  aspect-ratio: 336/223;
  object-fit: cover;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  padding: 1px;
}

.card-1__img-to {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -0.5em;
  right: -0.4375em;
  width: 3.875em;
  height: 3.875em;
  padding-top: 0.4em;
  padding-right: 0.4em;
  border-radius: 100%;
  background-color: var(--color-cream);
}

.card-1__img-to::after {
  content: "";
  display: block;
  width: 1.0625em;
  height: 2.025em;
  mask: url(../img/imizu-unique/imizu-and-around/to.svg) no-repeat center/contain;
  background-color: var(--color-navy);
}

.card-1__ttl {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  margin-top: 0.875rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-white);
}

.card-1__ttl::after {
  --size: 1.38em;
  content: "";
  flex-shrink: 0;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  background: var(--color-white) url(../img/imizu-unique/imizu-and-around/arrow-right.svg) no-repeat center/51.4492753623%;
}

.card-1__ttl--noicon::after {
  content: none;
}

.card-1__txt {
  margin-top: 0.6875rem;
  line-height: 1.4705882353;
}

.card-1__link-new-tab {
  display: flex;
  align-items: center;
  column-gap: 0.1176470588em;
  font-weight: bold;
  color: var(--color-white);
}

.card-1__link-new-tab::after {
  content: "";
  display: block;
  width: 0.8235294118em;
  height: 0.8235294118em;
  background: url(../img/common/site-link.svg) no-repeat center/contain;
}

@media (hover: hover) {
  a.card-1:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .card-1::after {
    content: "";
    display: block;
    clear: both;
  }
  .card-1__top {
    float: left;
    min-width: 150px;
    width: 44.6927374302%;
    margin-right: 1.125rem;
    margin-bottom: 1.125rem;
  }
  .card-1__tag {
    margin-bottom: -0.7875rem;
    padding-left: 0.3823529412em;
  }
  .card-1__tag-item {
    min-width: 4.5333333333em;
  }
  .card-1__tag-item--sp-narrow {
    padding-inline: 0.2em;
  }
  .card-1__img-to {
    font-size: 0.65625rem;
  }
  .card-1__ttl {
    column-gap: 0.2777777778em;
    margin-top: 1.125rem;
    font-size: 1.125rem;
  }
  .card-1__ttl::after {
    --size: 1.2222222222em;
  }
  .card-1__txt {
    margin-top: 0.1875rem;
    margin-bottom: 1.125rem;
  }
}
@media screen and (max-width: 375px) {
  .card-1__top {
    margin-right: 0.625rem;
  }
  .card-1__tag {
    padding-left: 0.1em;
  }
  .card-1__img::before {
    border-width: 6px;
  }
  .card-1__ttl {
    column-gap: 0.25rem;
  }
  .card-1__ttl::after {
    --size: 1rem;
  }
}
/*********** **********
 アコーディオン
 *********** **********/
@media screen and (max-width: 768px) {
  .js-accordion-parent.is-accordion-head--opened .btn-pattern-1--open {
    display: none;
  }
  .js-accordion-parent .btn-pattern-1--close {
    display: none;
  }
  .js-accordion-parent.is-accordion-head--opened .btn-pattern-1--close {
    display: inline-block;
  }
}
.imizu-accordion-content {
  display: block;
}
@media screen and (max-width: 768px) {
  .imizu-accordion-content {
    display: none;
  }
}

/*********** **********
 .imizu-to-fv
 *********** **********/
.imizu-to-fv {
  position: relative;
  padding-top: 7.45rem;
  background-color: #D9F0F2;
}

.imizu-to-fv::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.8125rem;
  mask: url(../img/imizu-unique/imizu-and-around/wave-bottom.svg) repeat-x center bottom/5.375rem;
  background-color: var(--color-navy);
}

.imizu-to-fv__ttl {
  text-align: center;
}

.imizu-to-fv__ttl-head {
  font-size: 1.5625rem;
  color: var(--color-navy);
  margin: 17px auto 32px;
}

.imizu-to-fv__link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-block: 0;
  padding-top: 4.875rem;
  padding-bottom: 6.875rem;
}

.imizu-to-fv__link-item {
  flex: 0 0 auto;
  width: 21.5254237288%;
}

.imizu-to-fv__link-anchor {
  text-decoration: none;
}

.imizu-to-fv__link-anchor::after {
  content: "";
  display: block;
  width: 1.076875rem;
  height: 0.649375rem;
  margin-inline: auto;
  mask: url(../img/imizu-unique/imizu-and-around/arrow-down.svg) no-repeat center/contain;
}

@media (hover: hover) {
  .imizu-to-fv__link-anchor:hover {
    opacity: 0.7;
  }
}
.imizu-to-fv__link-icon {
  display: block;
  margin-bottom: 1.125rem;
  padding-left: 1.6em;
  text-align: center;
}

.imizu-to-fv__link-img {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--color-white);
}

.imizu-to-fv__link-img--1 img {
  width: 88.188976378%;
  margin-top: 0.7em;
}

.imizu-to-fv__link-img--2 img {
  width: 74.8031496063%;
  margin-bottom: 0.6em;
  margin-right: 1em;
}

.imizu-to-fv__link-img--3 img {
  width: 90.5511811024%;
  margin-bottom: 0.6em;
}

.imizu-to-fv__link-img--4 img {
  width: 67.7165354331%;
  margin-bottom: 0.8em;
}

.imizu-to-fv__link-txt {
  margin-top: 1em;
  margin-bottom: 0.5em;
  border-radius: 100em;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2;
  color: var(--color-white);
}

.imizu-to-fv__link-anchor--purple::after,
.imizu-to-fv__link-anchor--purple .imizu-to-fv__link-txt {
  background-color: var(--color-purple);
}

.imizu-to-fv__link-anchor--orange::after,
.imizu-to-fv__link-anchor--orange .imizu-to-fv__link-txt {
  background-color: var(--color-orange);
}

.imizu-to-fv__link-anchor--green::after,
.imizu-to-fv__link-anchor--green .imizu-to-fv__link-txt {
  background-color: var(--color-green);
}

.imizu-to-fv__link-anchor--blue::after,
.imizu-to-fv__link-anchor--blue .imizu-to-fv__link-txt {
  background-color: var(--color-blue);
}

@media screen and (max-width: 1000px) {
  .imizu-to-fv__link-txt {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .imizu-to-fv {
    padding-block: 1.125rem;
  }
  .imizu-to-fv::before {
    height: 1.5rem;
    mask-size: 2.9375rem;
  }
  .imizu-to-fv__ttl-img {
    width: 158px;
  }
  .imizu-to-fv__ttl-head {
    margin-top: 1em;
    margin-bottom: 1.25em;
    font-size: 1.25rem;
  }
  .imizu-to-fv__link {
    display: none;
  }
}
/*********** **********
 .pickups
 *********** **********/
.pickups {
  position: relative;
  z-index: 1;
  max-width: 776px;
  margin-top: 2rem;
  margin-inline: auto;
  padding-right: 19px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pickups__col {
  position: relative;
  width: 47.1134020619%;
  width: 45.2%;
  padding-top: 0.575rem;
}

.pickups__top {
  padding-left: 1.2875rem;
}

.pickups__badge {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}

.pickups__ph {
  display: block;
  z-index: 1;
  position: relative;
  margin-bottom: 1.125rem;
  rotate: 3deg;
}

.pickups__ph img {
  aspect-ratio: 320/212;
}

.pickups__txt {
  max-width: 19.6875rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .pickups {
    row-gap: 2.1875rem;
    max-width: 358px;
    margin-top: 1.875rem;
    margin-inline: auto;
    padding-right: 0;
  }
  .pickups__col {
    width: 100%;
  }
  .pickups__top {
    padding-left: 1.625rem;
  }
  .pickups__badge {
    left: 0.375rem;
  }
  .pickups__ph {
    width: 96.686746988%;
  }
}
/*********** **********
 .imizu-to-related
 *********** **********/
.imizu-to-related {
  --gutter-x: 1.5rem;
  --gutter-y: 4.85rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: var(--gutter-y);
  margin-inline: calc(var(--gutter-x) * -0.5);
  margin-top: 3.125rem;
  padding-bottom: 4rem;
}

.imizu-to-related__item {
  flex: 0 0 auto;
  width: 33.3333333333%;
  padding-inline: calc(var(--gutter-x) * 0.5);
}

.imizu-to-related__item p {
  color: var(--color-white);
}

.ph-credit {
	font-size: 15px;
	line-height: 1.2em;
	text-align: left;
	margin-top: 7px;
}

@media screen and (max-width: 768px) {
  .imizu-to-related {
    --gutter-x: 0;
    --gutter-y: 0.5rem;
    margin-top: 2.5rem;
    padding-bottom: 2.875rem;
  }
  .imizu-to-related__item {
    width: 100%;
  }
}
/*********** **********
 .sec01用スタイル
 *********** **********/
.sec01 .imizu-to-ttl-1__img {
  top: -42px;
  left: -55px;
}
@media screen and (max-width: 900px) {
  .sec01 .imizu-to-ttl-1__img {
    top: -2px;
    width: 248px;
  }
}

@media screen and (max-width: 768px) {
  .sec01 .imizu-to-ttl-1__img img {
    width: 88.188976378%;
    margin-top: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .imizu-to-ttl-1__jp {
    background-color: var(--color-purple);
  }
}
.sec01 .imizu-to-sv__img {
  max-width: 867px;
}

.sec01 .mask-ph {
  aspect-ratio: 867/384;
  mask-image: url(../img/imizu-unique/imizu-and-around/sec01-mask.svg);
}

.sec01 .imizu-to-sv__to {
  top: -6.5625rem;
  right: 2.5rem;
  background-color: var(--color-purple);
  rotate: 14deg;
}

/* .imizu-to-deco-sec01 */
.imizu-to-deco-sec01 {
  position: absolute;
  width: 44.5rem;
  height: 19.4375rem;
  background: url(../img/imizu-unique/imizu-and-around/sec01-deco@2x.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec01 {
    width: 16.375rem;
    height: 7.125rem;
    transform: scale(-1, -1);
  }
}

.imizu-to-deco-sec01--pos1 {
  top: 5.6875rem;
  left: -30.875rem;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec01--pos1 {
    top: -5.6875rem;
    left: auto;
    right: -9.125rem;
  }
}

.imizu-to-deco-sec01--pos2 {
  top: -342px;
  left: -792px;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec01--pos2 {
    left: -161px;
    top: -316px;
  }
}

.imizu-to-deco-sec01--pos3 {
  top: -430px;
  right: -766px;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec01--pos3 {
    display: none;
  }
}

/*********** **********
 .sec02用スタイル
 *********** **********/
:where(.sec02) .imizu-to-ttl-1__img {
  width: 238px;
  top: 316px;
  left: auto;
  right: -7px;
  rotate: 31deg;
}
@media screen and (max-width: 768px) {
  :where(.sec02) .imizu-to-ttl-1__img {
    width: inherit;
    rotate: 0deg;
  }
}

@media screen and (max-width: 768px) {
  .sec02 .imizu-to-ttl-1__img img {
    width: 74.8031496063%;
    margin-right: 5.905511811%;
  }
}
.sec02 .imizu-to-ttl-1 {
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .sec02 .imizu-to-ttl-1 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .sec02 .imizu-to-ttl-1__jp {
    background-color: var(--color-orange);
  }
}
.sec02 .imizu-to-sv__img {
  max-width: 697px;
}

.sec02 .mask-ph {
  aspect-ratio: 697/394;
  mask-image: url(../img/imizu-unique/imizu-and-around/sec02-mask.svg);
}

.sec02 .imizu-to-sv::before,
.sec02 .imizu-to-sv::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 664px;
  margin-inline: auto;
  aspect-ratio: 697/440;
  mask: url(../img/imizu-unique/imizu-and-around/sec02-mask.svg) no-repeat center/100% 100%;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .sec02 .imizu-to-sv::before,
  .sec02 .imizu-to-sv::after {
    content: none;
  }
}

.sec02 .imizu-to-sv::before {
  z-index: 1;
  translate: -734px;
}

.sec02 .imizu-to-sv::after {
  translate: 734px;
}

.sec02 .imizu-to-sv__to {
  z-index: 2;
  top: -59px;
  left: -28px;
  background-color: var(--color-orange);
  rotate: -25deg;
}

/* .imizu-to-deco-sec02 */
.imizu-to-deco-sec02 {
  position: absolute;
  width: 10.8125rem;
  height: 8.3125rem;
  background: url(../img/imizu-unique/imizu-and-around/sec02-deco@2x.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec02 {
    width: 115px;
    height: 92px;
  }
}

.imizu-to-deco-sec02--pos1 {
  z-index: 0;
  top: 240px;
  left: -56px;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec02--pos1 {
    z-index: 0;
    top: 108px;
    left: auto;
    right: -35px;
    transform: scale(-1, 1);
  }
}

.imizu-to-deco-sec02--pos2 {
  top: -186px;
  left: -202px;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec02--pos2 {
    left: -44px;
    top: -229px;
  }
}

.imizu-to-deco-sec02--pos3 {
  top: -476px;
  right: -158px;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec02--pos3 {
    display: none;
  }
}

/*********** **********
 .sec03用スタイル
 *********** **********/
:where(.sec03) .section-header-container {
  --max-inner-width: 1138px;
}

:where(.sec03) .imizu-to-ttl-1__img {
  left: -45px;
  top: 48px;
  rotate: -7deg;
  width: 268px;
}
@media screen and (max-width: 900px) {
  :where(.sec03) .imizu-to-ttl-1__img {
    width: 230px;
  }
}
@media screen and (max-width: 768px) {
  :where(.sec03) .imizu-to-ttl-1__img {
    width: inherit;
    rotate: 0deg;
  }
}

.sec03 .imizu-to-ttl-1__img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec03 .imizu-to-ttl-1__img img {
    width: 90.5511811024%;
    margin-left: -2.7559055118%;
  }
}

.sec03 .imizu-to-ttl-1 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .sec03 .imizu-to-ttl-1 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .sec03 .imizu-to-ttl-1__jp {
    background-color: var(--color-green);
  }
}
.sec03 .imizu-to-sv__img {
  max-width: 800px;
}

.sec03 .mask-ph {
  aspect-ratio: 799.91/347.54;
  mask-image: url(../img/imizu-unique/imizu-and-around/sec03-mask.svg);
}

.sec03 .mask-ph__img img {
  scale: 1.09;
}

.sec03 .imizu-to-sv__to {
  top: 5px;
  right: 9%;
  margin-inline: auto;
  background-color: var(--color-green);
  rotate: 14deg;
}

/* .imizu-to-deco-sec03 */
.imizu-to-deco-sec03 {
  position: absolute;
  width: 30.9375rem;
  height: 11.1625rem;
  background: url(../img/imizu-unique/imizu-and-around/sec03-deco@2x.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec03 {
    width: 115px;
    height: 92px;
  }
}

.imizu-to-deco-sec03--pos1 {
  z-index: 2;
  top: 275px;
  left: -85px;
  width: 18.25rem;
  height: 6.5625rem;
  scale: -1 1;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec03--pos1 {
    left: -16.7597765363%;
    top: 0;
    width: 44.6927374302%;
    height: 0;
    margin-top: 30.1675977654%;
    padding-top: 16.0710185965%;
  }
}

.imizu-to-deco-sec03--pos2 {
  top: -294px;
  left: -658px;
}
@media screen and (max-width: 768px) {
  .imizu-to-deco-sec03--pos2 {
    top: -190px;
    left: auto;
    right: -49px;
  }
}

/*********** **********
 .sec04用スタイル
 *********** **********/
:where(.sec04) .section-header-container {
  --max-inner-width: 1172px;
}

:where(.sec04) .imizu-to-ttl-1__img {
  left: auto;
  right: -28px;
  top: 77px;
  width: 173px;
  rotate: 11deg;
}
@media screen and (max-width: 768px) {
  :where(.sec04) .imizu-to-ttl-1__img {
    width: inherit;
    rotate: 0deg;
  }
}

.sec04 .imizu-to-ttl-1__img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec04 .imizu-to-ttl-1__img img {
    width: 68.1102362205%;
    margin-left: 3.1496062992%;
  }
}

.sec04 .imizu-to-ttl-1 {
  margin-bottom: 3.8125rem;
}
@media screen and (max-width: 768px) {
  .sec04 .imizu-to-ttl-1 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .sec04 .imizu-to-ttl-1__jp {
    background-color: var(--color-blue);
  }
}
.sec04 .imizu-to-sv__img {
  max-width: 796px;
}

.sec04 .mask-ph {
  aspect-ratio: 796/495;
  mask-image: url(../img/imizu-unique/imizu-and-around/sec04-mask.svg);
}

.sec04 .imizu-to-sv__deco-wrap {
  z-index: 1;
  max-width: 1026px;
}
@media screen and (max-width: 768px) {
  .sec04 .imizu-to-sv__deco-wrap {
    top: -2.3em;
    font-size: 0.5em;
  }
}

.sec04 .imizu-to-sv__to {
  top: 232px;
  left: -36px;
  margin-inline: auto;
  background-color: var(--color-blue);
  rotate: -25deg;
}

@media screen and (max-width: 768px) {
  .sec04 .imizu-to-deco-wrap {
    font-size: 0.6em;
  }
}

/* .imizu-to-deco-sec04 */
.imizu-to-deco-sec04 {
  position: absolute;
  width: 6em;
  height: 5.9411764706em;
  background: url(../img/imizu-unique/imizu-and-around/sec04-deco1@2x.png) no-repeat center/contain;
}
.imizu-to-deco-sec04--pos1 {
  z-index: 1;
  left: 3.5882352941em;
  top: 1.2941176471em;
}

.imizu-to-deco-sec04--pos2 {
  right: -4.7647058824em;
  top: -37.0625rem;
}

.imizu-to-deco-sec04--pos3 {
  width: 8.8823529412em;
  height: 8.8823529412em;
  left: -4.6470588235em;
  top: -15.8125rem;
}

.imizu-to-deco-sec04-2 {
  --size: 9em;
  position: absolute;
  left: -3.7058823529em;
  top: 1.8235294118em;
  width: var(--size);
  height: var(--size);
  background: url(../img/imizu-unique/imizu-and-around/sec04-deco2@2x.png) no-repeat center/contain;
}
/*********** **********
 .access-container
 *********** **********/
.access-container {
  padding: 7.375rem 1rem 8.875rem;
}
@media screen and (max-width: 768px) {
  .access-container {
    padding-top: 2.875rem;
    padding-bottom: 4.25rem;
  }
}

/*********** **********
 ユーティリティ
 *********** **********/
.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .d-sp-block {
    display: block;
  }
  .d-sp-inline-block {
    display: inline-block;
  }
}
.mx-auto {
  margin-inline: auto;
}

.my-0 {
  margin-block: 0;
}

@media screen and (max-width: 768px) {
  .my-sp-0 {
    margin-block: 0;
  }
}
.mt-0 {
  margin-top: 0;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-36 {
  margin-top: 36px;
}

.mt-46 {
  margin-top: 46px;
}

.mt-60 {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .mt-sp-0 {
    margin-top: 0;
  }
  .mt-sp-8 {
    margin-top: 8px;
  }
  .mt-sp-16 {
    margin-top: 16px;
  }
  .mt-sp-24 {
    margin-top: 24px;
  }
  .mt-sp-36 {
    margin-top: 36px;
  }
}
.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-36 {
  margin-bottom: 36px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-82 {
  margin-bottom: 82px;
}

.mb-100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .mb-sp-8 {
    margin-bottom: 8px;
  }
  .mb-sp-16 {
    margin-bottom: 16px;
  }
  .mb-sp-24 {
    margin-bottom: 24px;
  }
  .mb-sp-36 {
    margin-bottom: 36px;
  }
}
.ms-12 {
  margin-left: 12px;
}

@media screen and (max-width: 768px) {
  .ms-sp-12 {
    margin-left: 12px;
  }
}
@media screen and (max-width: 375px) {
  .ms-xs-0 {
    margin-left: 0;
  }
}
.me-10 {
  margin-right: 10px;
}

.me-12 {
  margin-right: 12px;
}

@media screen and (max-width: 768px) {
  .me-sp-12 {
    margin-right: 12px;
  }
}
@media screen and (max-width: 375px) {
  .me-xs-0 {
    margin-right: 0;
  }
}
.pt-130 {
  padding-top: 130px;
}

@media screen and (max-width: 768px) {
  .pt-sp-40 {
    padding-top: 40px;
  }
}
.pb-100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .pb-sp-0 {
    padding-bottom: 0;
  }
  .pb-sp-24 {
    padding-bottom: 24px;
  }
}
.py-118 {
  padding-block: 118px;
}

@media screen and (max-width: 768px) {
  .py-sp-46 {
    padding-block: 46px;
  }
}
.ps-26 {
  padding-left: 26px;
}

.pe-26 {
  padding-right: 26px;
}

.px-16 {
  padding-inline: 16px;
}

@media screen and (max-width: 768px) {
  .px-sp-0 {
    padding-inline: 0;
  }
}
.br-10 {
  border-radius: 10px;
}

.br-20 {
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .br-sp-10 {
    border-radius: 10px;
  }
}
.fs-20 {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .fs-sp-14 {
    font-size: 14px;
  }
}
.lh-15 {
  line-height: 1.5;
}

.text-start {
  text-align: left;
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .text-sp-start {
    text-align: left;
  }
  .text-sp-center {
    text-align: center;
  }
}
.text-with-icon {
  display: flex;
  align-items: center;
  column-gap: 5.6px;
}

.text-with-icon.text-center {
  justify-content: center;
}

.text-decoration-none {
  text-decoration: none;
}

@media (hover: hover) {
  a.text-decoration-none:hover {
    opacity: 0.7;
  }
}
.text-white {
  color: var(--color-white);
}
