@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #333;
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 100%;
}

button {
  color: #333;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

.icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

.icon::before, .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #333;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

.icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/
:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 84px;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 675px;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
}

.l-header.is-fixed .p-header {
  padding-block: 15px;
  padding-block: .9375rem;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  background: #fff;
}

.l-header.is-fixed .p-header__navLink {
  color: #333;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 50vmax;
  background-color: #14a59f;
  background-image: none;
  padding: 9px;
  padding: .5625rem;
  padding: 12px;
  padding: .75rem;
  min-width: 192px;
  min-width: 12rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn--large {
  border-radius: .625rem;
  text-align: left;
}

.c-btn--gray {
  background-color: #ccc;
  color: #333;
}

.c-btn--icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  padding: 6px 16px;
  padding: .375rem 1rem;
}

.c-btn--icon::before {
  aspect-ratio: 1/1;
  -webkit-mask-image: url('../img/dpg_002.svg');
  mask-image: url('../img/dpg_002.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  background-color: #fff;
  width: 32px;
  width: 2rem;
  content: '';
}

.c-btn--icon.c-btn--nav {
  border-radius: .3125rem;
  padding: 5px 14px;
  padding: .3125rem .875rem;
}

.c-btn--icon.c-btn--vertical {
  -webkit-column-gap: .3125rem;
  -moz-column-gap: .3125rem;
  column-gap: .3125rem;
  border-radius: .3125rem 0 0 .3125rem;
  padding: 12px 8px;
  padding: .75rem .5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 50px;
  min-width: 3.125rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.c-card {
  position: relative;
  padding: 5px 0 0 25px;
  padding: .3125rem 0 0 1.5625rem;
}

.c-card__label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f2eb75;
  padding: 5px 0;
  padding: .3125rem 0;
  width: 39.603960396%;
  color: #14a59f;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-style: italic;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1;
  text-align: center;
}

.c-card__label::before {
  margin-right: .3em;
  color: #14a59f;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  content: attr(data-en);
}

.c-card__box {
  gap: 16px;
  gap: 1rem;
  display: grid;
  grid-template-columns: 1fr 35.4166666667%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #14a59f;
  padding: 10px 16px 26px;
  padding: .625rem 1rem 1.625rem;
  max-width: 480px;
  max-width: 30rem;
  height: 100%;
}

.c-card__conts {
  padding: 50px 0 0;
  padding: 3.125rem 0 0;
}

.c-card__title {
  color: #f2eb75;
  font-family: 'Montserrat', 'Zen Kaku Gothic New', sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
}

.c-card__title.c-card__title--sm {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .2em;
}

.c-card__text {
  margin-top: 8px;
  margin-top: .5rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.3333333333;
  text-align: center;
}

.c-card__img img {
  aspect-ratio: 170/164;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-card__img.c-card__img--cloud {
  padding-top: 8px;
  padding-top: .5rem;
}

.c-card__img.c-card__img--cloud img {
  margin-left: -10px;
  margin-left: -.625rem;
}

.c-section-title {
  aspect-ratio: 750/300;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 0;
  color: #fff;
  text-align: center;
}

.c-section-title::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(20, 165, 159, .2);
  width: 100%;
  height: 100%;
  content: '';
}

.c-section-title--lens {
  background: url(../img/dpg_401.webp) no-repeat center/cover;
}

.c-section-title--frame {
  background: url(../img/dpg_501.webp) no-repeat center/cover;
}

.c-section-title--features {
  background: url(../img/dpg_601.webp) no-repeat center/cover;
}

.c-section-title--lineup {
  background: url(../img/dpg_701.webp) no-repeat center/cover;
}

.c-section-title__en {
  display: block;
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.c-section-title__ja {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  background: #14a59f;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__bars {
  aspect-ratio: 100/79;
  display: inline-block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  vertical-align: bottom;
  padding: 10px;
  height: 54px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 7px;
  border-radius: 50vmax;
  background: #fff;
  width: 40px;
  height: 4px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #fff;
  padding-top: 100px;
  padding-bottom: 80px;
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #333;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .5em;
}

.p-drawer__navItem:last-child {
  margin-top: 1em;
}

.p-drawer__navLink {
  display: block;
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-features {
  padding-bottom: 75px;
  padding-bottom: 4.6875rem;
}

.p-features__list {
  gap: 20px;
  gap: 1.25rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 45px;
  margin-top: 2.8125rem;
  max-width: 557px;
}

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

.p-features__img {
  aspect-ratio: 1/1;
}

.p-features__img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-features__catch {
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.p-features__text {
  margin-top: 6px;
  margin-top: .375rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.2857142857;
}

.p-features__subtext {
  display: inline;
}

.p-fixed {
  display: none;
}

.p-footer {
  background-color: #333;
  padding-top: 78px;
  padding-top: 4.875rem;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  color: #fff;
  text-align: center;
}

.p-footer__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.p-footer__btn {
  -webkit-column-gap: .875rem;
  -moz-column-gap: .875rem;
  column-gap: .875rem;
  margin-top: 28px;
  margin-top: 1.75rem;
  padding: 9px 13px 9px 18px;
  padding: .5625rem .8125rem .5625rem 1.125rem;
}

.p-footer__btn::before {
  width: 61px;
  width: 3.8125rem;
}

.p-footer__btn-en {
  display: block;
  padding-left: 3px;
  padding-left: .1875rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.p-footer__btn-text {
  display: block;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.2;
}

.p-footer__company {
  margin-top: 60px;
  margin-top: 3.75rem;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: 700;
  letter-spacing: .3em;
}

.p-footer__company::before {
  display: block;
  margin-bottom: 15px;
  margin-bottom: .9375rem;
  text-transform: uppercase;
  content: attr(data-en);
}

.p-footer__info {
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  font-weight: 500;
  line-height: 1.7;
}

.p-footer__en {
  text-transform: uppercase;
}

.p-footer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: .9375rem;
  -moz-column-gap: .9375rem;
  column-gap: .9375rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-footer__item {
  aspect-ratio: 1/1;
  width: 60px;
  width: 3.75rem;
}

.p-footer__link {
  display: grid;
  place-items: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: solid 2px #fff;
  border: solid .125rem #fff;
  border-radius: 50%;
  background: #fff;
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 30px;
  font-size: 1.875rem;
}

.p-footer__copy {
  display: block;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  font-weight: bold;
}

.p-frame__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-frame__top-img {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-frame__top-img img {
  aspect-ratio: 564/412;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-frame__top-conts {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-frame__top-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
}

.p-frame__top-text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.7;
}

.p-frame__top-text:first-of-type {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-frame__list {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-frame__img img {
  aspect-ratio: 570/400;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-frame__catch {
  margin-top: 22px;
  margin-top: 1.375rem;
  color: #14a59f;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
}

.p-frame__text {
  margin-top: 12px;
  margin-top: .75rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.7;
}

.p-frame__pro {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-fv {
  position: relative;
  z-index: 1;
  border-top: solid 10px #14a59f;
  border-top: solid .625rem #14a59f;
  overflow: clip;
}

.p-fv::before {
  aspect-ratio: 4905/4234;
  position: absolute;
  top: -530px;
  top: -33.125rem;
  left: calc(50% + 15.3125rem);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  background: url(../img/dpg_101.webp) no-repeat center/contain;
  width: 1177px;
  width: 73.5625rem;
  content: '';
}

.p-fv__inner {
  padding-top: 105px;
  padding-top: 6.5625rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-fv__en span {
  display: block;
  color: #14a59f;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .5em;
  text-transform: uppercase;
}

.p-fv__en span + span {
  margin-top: 9px;
  margin-top: .5625rem;
}

.p-fv__title {
  margin-top: 12px;
  margin-top: .75rem;
  color: #14a59f;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .36em;
}

.p-fv__text {
  margin-top: 50px;
  margin-top: 3.125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.7;
}

.p-fv__list {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 270px;
  max-width: 16.875rem;
}

.p-fv__item {
  position: relative;
}

.p-fv__item::before {
  aspect-ratio: 1/1;
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 1;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: #fff;
  width: 33.3333333333%;
  content: '';
}

.p-fv__link {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.p-fv__img img {
  aspect-ratio: 270/320;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__label {
  position: absolute;
  bottom: -1px;
  left: -1px;
  z-index: 1;
  background: #fff;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  width: 95%;
  max-width: 190px;
  max-width: 11.875rem;
  text-align: center;
}

.p-fv__label span {
  padding-block: 8px;
  padding-block: .5rem;
  display: block;
  background: url(../img/dpg_304.svg) no-repeat left bottom/contain;
  padding-right: 10px;
  padding-right: .625rem;
  max-width: 178px;
  max-width: 11.125rem;
  color: #14a59f;
  font-size: 14px;
  font-size: .875rem;
  font-weight: bold;
}

.p-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 10px;
  padding-top: .625rem;
  width: 100%;
  height: 84px;
}

.p-header__container {
  padding-right: 0;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__logo {
  z-index: 41;
  width: 123px;
  width: 7.6875rem;
  height: 90%;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  aspect-ratio: 123/50;
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-header__navLink::after {
  display: block;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  margin: 5px auto 0;
  background: #14a59f;
  width: 62px;
  width: 3.875rem;
  height: 4px;
  height: .15rem;
  content: '';
}

.p-header__navBtn-en {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}

.p-header__navBtn-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.p-header__drawer {
  height: inherit;
}

.p-lens {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.p-lens__description {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.7;
  text-align: center;
}

.p-lens__cards {
  margin-inline: auto;
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-lens__list {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 60px;
  margin-top: 3.75rem;
}

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

.p-lens__catch {
  color: #14a59f;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
}

.p-lens__catch::before, .p-lens__catch::after {
  content: '/';
}

.p-lens__catch::before {
  margin-right: .5em;
}

.p-lens__catch::after {
  margin-left: .5em;
}

.p-lens__img {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-lens__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-lens__img .beer-slider img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.p-lens__img .beer-reveal > :first-child {
  display: block;
}

.p-lens__img .beer-handle {
  width: 55px;
  height: 55px;
}

.p-lens__note {
  display: block;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.2;
}

.p-lens__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .1em;
  line-height: 1.7;
  text-align: center;
}

.p-lens__text span {
  font-weight: 700;
}

.p-lineup {
  padding-bottom: 105px;
  padding-bottom: 6.5625rem;
}

.p-lineup__list {
  gap: 40px;
  gap: 2.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 30px;
  margin-top: 1.875rem;
  max-width: 557px;
}

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

.p-lineup__img img {
  aspect-ratio: 571/357;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-lineup__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.p-lineup__item-text {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.p-lineup__item-price {
  margin-top: 4px;
  margin-top: .25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.p-lineup__item-price span {
  font-weight: 500;
}

.p-lineup__item-btn {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-ocean {
  padding-bottom: 105px;
  padding-bottom: 6.5625rem;
  overflow: hidden;
}

.p-ocean__title {
  margin-inline: calc(50% - 50vw);
}

.p-ocean__title img {
  aspect-ratio: 750/249;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-ocean__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.75;
}

.p-ocean__btn {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

.p-pro {
  background-color: #b4cecd;
  padding-top: 65px;
  padding-top: 4.0625rem;
  padding-bottom: 65px;
  padding-bottom: 4.0625rem;
}

.p-pro__title {
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-align: center;
  text-transform: uppercase;
}

.p-pro__list {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-pro__img img {
  aspect-ratio: 570/359;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-pro__catch {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.p-pro__text {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.7;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.3675213675vw;
    font-size: calc(var(--vw-unitless) / 1170 * 100%);
  }

  :root {
    --header-height: 84px;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1230px;
  }

  .l-container.l-container--narrow {
    max-width: 996px;
  }

  .l-container.l-container--wide {
    max-width: 1464px;
  }

  .c-btn:hover {
    outline: none;
    border-color: currentColor;
    background-color: #fff;
    color: #14a59f;
  }

  .c-btn--large {
    border-radius: 1.25rem;
  }

  .c-btn--gray:hover {
    border-color: #333;
    background-color: #333;
    color: #fff;
  }

  .c-btn--icon {
    padding: 8px 18px;
    padding: .5rem 1.125rem;
  }

  .c-btn--icon:hover::before {
    background: #14a59f;
  }

  .c-btn--icon.c-btn--vertical:hover {
    border-right: solid 1px #fff;
  }

  .c-card__label {
    width: 200px;
    width: 12.5rem;
    font-size: 36px;
    font-size: 2.25rem;
  }

  .c-card__label::before {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .c-card__box {
    grid-template-columns: 1fr 10.625rem;
    padding: 10px 24px 20px;
    padding: .625rem 1.5rem 1.25rem;
    width: 480px;
    width: 30rem;
  }

  .c-card__title {
    min-height: 60px;
    min-height: 3.75rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .c-card__title.c-card__title--sm {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.1538461538;
  }

  .c-card__text {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .c-section-title {
    aspect-ratio: 1500/400;
    padding-top: 10px;
    padding-top: .625rem;
  }

  .c-section-title__en {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .c-section-title__ja {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-drawer__icon {
    margin-right: 0;
  }

  .p-features__list {
    gap: 30px;
    gap: 1.875rem;
    margin-inline: 0;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: none;
  }

  .p-features__catch {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-features__text {
    letter-spacing: .1em;
  }

  .p-features__subtext {
    display: block;
  }

  .p-fixed {
    display: block;
    position: fixed;
    right: 0;
    bottom: 10%;
    z-index: 100;
  }

  .p-fixed a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-footer {
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }

  .p-footer__title {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .p-footer__btn {
    -webkit-column-gap: 1.5625rem;
    -moz-column-gap: 1.5625rem;
    column-gap: 1.5625rem;
    padding: 16px 28px 16px 36px;
    padding: 1rem 1.75rem 1rem 2.25rem;
  }

  .p-footer__btn-en {
    padding-left: 7px;
    padding-left: .4375rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-footer__btn-text {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-footer__company {
    margin-top: 85px;
    margin-top: 5.3125rem;
  }

  .p-footer__company::before {
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
  }

  .p-footer__info {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
    letter-spacing: .3em;
  }

  .p-footer__list {
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    margin-top: 34px;
    margin-top: 2.125rem;
  }

  .p-footer__link:hover {
    background: #333;
    color: #fff;
  }

  .p-footer__copy {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-frame__top {
    gap: 42px;
    gap: 2.625rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 55px;
    margin-top: 3.4375rem;
  }

  .p-frame__top-img {
    margin-top: 5px;
    margin-top: .3125rem;
  }

  .p-frame__top-conts {
    margin-top: 0;
  }

  .p-frame__top-title {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-frame__top-text {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-frame__list {
    gap: 18px 30px;
    gap: 1.125rem 1.875rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 72px;
    margin-top: 4.5rem;
  }

  .p-frame__catch {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-frame__text {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-fv::before {
    top: -1060px;
    top: -66.25rem;
    left: calc(50% + 30.625rem);
    width: 2355px;
    width: 147.1875rem;
  }

  .p-fv::after {
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    bottom: -615px;
    bottom: -38.4375rem;
    left: calc(50% - 86.5625rem);
    -webkit-transform: rotate(45deg) translateX(-50%);
    transform: rotate(45deg) translateX(-50%);
    z-index: -1;
    background: rgba(20, 165, 159, .5);
    width: 1157px;
    width: 72.3125rem;
    content: '';
  }

  .p-fv__inner {
    padding-top: 168px;
    padding-top: 10.5rem;
    padding-bottom: 118px;
    padding-bottom: 7.375rem;
    padding-left: 100px;
    padding-left: 6.25rem;
  }

  .p-fv__en span {
    font-size: 40px;
    font-size: 2.5rem;
    letter-spacing: .1em;
  }

  .p-fv__title {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-fv__list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 110px;
    margin-top: 6.875rem;
    margin-right: 0;
    max-width: 870px;
    max-width: 54.375rem;
  }

  .p-fv__link:hover {
    opacity: .7;
  }

  .p-fv__label {
    padding: 18px 1px;
    padding: 1.125rem 1px;
    width: 70.3703703704%;
  }

  .p-fv__label span {
    width: 93.6842105263%;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-header {
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    padding-top: 30px;
    padding-top: 1.875rem;
    height: 84px;
  }

  .p-header__container {
    padding-right: 30px;
  }

  .p-header__logo {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-header__logo a:hover {
    opacity: .7;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
  }

  .p-header__nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header__nav li > a {
    display: block;
    padding: 15px;
    padding: .9375rem;
    color: #fff;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
  }

  .p-header__nav li:last-child {
    margin-left: 20px;
    margin-left: 1.25rem;
  }

  .p-header__navLink:hover::after {
    background: #f2eb75;
  }

  .p-header__drawer {
    display: none;
  }

  .p-lens {
    padding-bottom: 106px;
    padding-bottom: 6.625rem;
  }

  .p-lens__description {
    margin-top: 52px;
    margin-top: 3.25rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-lens__cards {
    gap: 80px;
    gap: 5rem;
    margin-inline: 0;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -webkit-flex-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    margin-top: 32px;
    margin-top: 2rem;
    width: initial;
  }

  .p-lens__list {
    gap: 46px 30px;
    gap: 2.875rem 1.875rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-lens__item:last-child {
    grid-column: span 2;
  }

  .p-lens__item:last-child .p-lens__text {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

  .p-lens__catch {
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: .2em;
  }

  .p-lens__img img {
    aspect-ratio: 570/760;
  }

  .p-lens__img.p-lens__img--last img {
    aspect-ratio: 1168/436;
  }

  .p-lens__note {
    display: none;
  }

  .p-lens__text {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-lineup {
    padding-bottom: 140px;
    padding-bottom: 8.75rem;
  }

  .p-lineup__list {
    gap: 40px 28px;
    gap: 2.5rem 1.75rem;
    margin-inline: 0;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: none;
  }

  .p-lineup__item-title {
    margin-top: -6px;
    margin-top: -.375rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-lineup__item-btn {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-ocean__title {
    margin-inline: 0;
  }

  .p-ocean__title img {
    aspect-ratio: 1169/249;
  }

  .p-ocean__text {
    margin-inline: auto;
    margin-top: 30px;
    margin-top: 1.875rem;
    width: 770px;
    width: 48.125rem;
  }

  .p-ocean__btn {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-pro__title {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .p-pro__list {
    gap: 18px 30px;
    gap: 1.125rem 1.875rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-pro__catch {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: .1em;
  }

  .p-pro__text {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 1170px) {

  html {
    font-size: 100%;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
    font-size: calc(var(--vw-unitless) / 375 * 100%);
  }
}