@charset "UTF-8";
/* =========================================================
   Base / Reset
========================================================= */
/* html{font-size:62.5%;-webkit-text-size-adjust:100%}
body{
  font-family:"Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic","Meiryo",sans-serif;
  font-size:1.4rem;
  line-height:1.8;
  color:#2a2a2a;
  background:#fff;
  -webkit-font-smoothing:antialiased;
} */
html.is-ouen-menu-open {
  overflow: hidden;
}

:root {
  --c-primary:#013991; /* メインブルー */
  --c-primary-rgb:1, 57, 145; /* メインブルー */
  --c-primary-dark:#003893; /* メインダークブルー */
  --c-accent1:#009fe8; /* アクセントブルー */
  --c-sky:#a9d7f2;
  --c-bg:#eef6fb;
  --c-text:#000000;
  --c-muted:#808080;
  --max:1280px;
}

.ouen {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Noto Sans JP", "游ゴシック体", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  margin-top: 123px;
}
@media (max-width: 767.98px) {
  .ouen {
    margin-top: 61px;
  }
}
.ouen *, .ouen *::before, .ouen *::after {
  box-sizing: border-box;
}
.ouen button {
  font-family: inherit;
}

.ouen-img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.ouen__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================================================
   popup
========================================================= */
/*
 * object/component/_c-popup.scss
 */
/************************************************\
  Micromodal.js用のデフォルトスタイル
\************************************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/************************************************\
  Demo Animation Style
\************************************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/************************************************\
  以下、カスタムスタイル
\************************************************/
html.is-modal:not(.is-modal-nofix) {
  overflow: hidden;
}

body.is-modal:not(.is-modal-nofix) {
  overflow: hidden;
}

.c-popup1__overlay {
  overflow-y: auto;
  z-index: 1001;
  background: #1a4ea2;
}
.c-popup1__overlay--bg-none {
  background: none;
}

.c-popup1__container {
  position: relative;
  max-height: none;
  min-height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
  overflow: visible;
  container-type: inline-size;
}
@media (max-width: 767.98px) {
  .c-popup1__container {
    width: 86.6666666667%;
    max-width: 650px;
    padding: 25px 0;
  }
}
@media (min-width: 768px) {
  .c-popup1__container {
    width: 90%;
    max-width: 550px;
    padding: 38px 0;
  }
}
.c-popup1[aria-hidden=false] .c-popup1__container {
  animation: none;
}

.c-popup1__bg {
  position: relative;
  width: 100%;
  padding: 0;
  font-feature-settings: "palt";
  letter-spacing: 0;
  color: #013991;
}
@media (max-width: 767.98px) {
  .c-popup1__bg {
    font-size: 0.59375rem;
  }
}
@media (min-width: 768px) {
  .c-popup1__bg {
    font-size: 0.73615rem;
    font-size: 2.1415272727cqi;
  }
}
.c-popup1__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.c-popup1__inner {
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .c-popup1__inner {
    padding: 1.3684210526em 2.1052631579em 1.9473684211em;
  }
}
@media (min-width: 768px) {
  .c-popup1__inner {
    padding: 1.5282211506em 2.9715411261em;
  }
}

.c-popup1__content {
  margin: 0 auto;
  line-height: inherit;
  color: inherit;
}

.c-popup1__title {
  margin: 0;
  border-bottom: 1px solid;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  .c-popup1__title {
    margin-bottom: 0.8666666667em;
    padding-bottom: 0.7333333333em;
    font-size: 1.5789473684em;
    line-height: 1.2333333333;
  }
}
@media (min-width: 768px) {
  .c-popup1__title {
    padding-bottom: 0.6666666667em;
    font-size: 2.0376282008em;
    line-height: 1.25;
  }
}
.c-popup1__title-text {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.c-popup1__para1 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  .c-popup1__para1 {
    margin-top: 0.8421052632em;
    padding: 0 0.8421052632em;
    line-height: 1.3684210526;
  }
}
@media (min-width: 768px) {
  .c-popup1__para1 {
    margin-top: 1.4433199755em;
    padding: 0 3.3960470013em;
    line-height: 1.5;
  }
}

.c-popup1__pic1 {
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .c-popup1__pic1 {
    margin-top: 0.9473684211em;
  }
}
@media (min-width: 768px) {
  .c-popup1__pic1 {
    margin-top: 1.4433199755em;
  }
}

.c-popup1__close {
  position: absolute;
  z-index: 1;
  background: url("../img/ouen_btn_close_1.png?d=202606091736") no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .c-popup1__close {
    top: 0.8421052632em;
    right: 0.8421052632em;
    width: 2.6315789474em;
    height: 2.6315789474em;
  }
}
@media (min-width: 768px) {
  .c-popup1__close {
    top: 1.1886164505em;
    right: 1.1886164505em;
    width: 3.5658493514em;
    height: 3.5658493514em;
  }
}
.c-popup1__close--sp {
  z-index: 1002;
  display: none;
}
@media (max-width: 767.98px) {
  .c-popup1__close--sp {
    display: block;
  }
}
.c-popup1__close {
  transition: opacity 0.3s ease;
}
.c-popup1__close:hover {
  opacity: 0.6;
  text-decoration: none;
}

.c-popup2__overlay {
  z-index: 1002;
  padding: 60px 0;
  background: #1a4ea2;
}

.c-popup2__container {
  position: relative;
  width: calc(177.7777777778vh - 213.3333333333px);
  height: calc(56.25vw - 114.75px);
  max-width: calc(100% - 204px);
  max-height: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0);
  overflow: visible;
}
@media (orientation: portrait) {
  .c-popup2__container {
    width: calc(100% - 34px);
    height: calc(56.25vw - 19.125px);
    max-width: 100%;
  }
}

.c-popup2__bg {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow-y: auto;
  background: #000;
}

.c-popup2__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-popup2__content {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-popup2__container iframe,
.c-popup2__container video {
  width: 100%;
  height: 100%;
  vertical-align: top;
  border-radius: inherit;
}

.c-popup2__content {
  margin: 0;
  background: #fff;
}

.c-popup2__close {
  position: absolute;
  top: auto;
  bottom: 100%;
  left: calc(100% + 16px);
  width: 52px;
  height: 52px;
  background: url("../img/ouen_btn_close_1.png?d=202606091736") no-repeat center;
  background-size: contain;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (orientation: portrait) {
  .c-popup2__close {
    display: none;
    position: fixed;
    top: auto;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
  }
}
.c-popup2__close {
  transition: opacity 0.3s ease;
}
.c-popup2__close:hover {
  opacity: 0.6;
  text-decoration: none;
}
.c-popup2__close--sp {
  display: none;
}
@media (orientation: portrait) {
  .c-popup2__close--sp {
    display: block;
  }
}

/* =========================================================
   btn
========================================================= */
.ouen-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.2222222222em;
  text-align: center;
  margin: 4.6875% auto 0;
  font-size: 1.125rem;
}
@media (max-width: 767.98px) {
  .ouen-btn-wrap {
    font-size: 0.9375rem;
    font-size: min(4cqi, 15px);
    gap: 0.8333333333em;
    max-width: calc(100% - 2em);
    margin-top: 2em;
  }
}
@media (max-width: 639.98px) {
  .ouen-btn-wrap {
    max-width: 100%;
  }
}

.ouen-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 25.5555555556em;
  min-height: 4.4444444444em;
  padding: 0.9444444444em 2.2222222222em;
  font-size: inherit;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  line-height: 1.2777777778;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  border: none;
  border-radius: 100vh;
  background: #fff;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .ouen-btn {
    width: 86.6666666667%;
    max-width: 21.6666666667em;
    min-height: 4.3333333333em;
    padding: 0.9333333333em 2.1333333333em;
    line-height: 1.2333333333;
  }
}
.ouen-btn--column2 {
  max-width: 23.8888888889em;
}
@media (max-width: 767.98px) {
  .ouen-btn--column2 {
    max-width: 21.6666666667em;
  }
}
.ouen-btn:link, .ouen-btn:visited {
  color: var(--c-primary);
}
.ouen-btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow: 0 0 10px 0 rgba(var(--c-primary-rgb), 0.3);
  background: rgba(255, 255, 255, 0);
  mix-blend-mode: multiply;
}
.ouen-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.5555555556em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6666666667em;
  height: 100%;
  background: url("../img/ouen_arrow_1_right.svg?d=202606091736") no-repeat center;
  background-size: contain;
  transition: background 0.3s ease;
}
@media (max-width: 767.98px) {
  .ouen-btn::after {
    right: 1.1em;
    width: 0.5em;
  }
}
@media (min-width: 768px) {
  .ouen-btn--left-pc {
    justify-content: flex-start;
  }
}
.ouen-btn--color1:link, .ouen-btn--color1:visited {
  color: #fff;
  background: var(--c-primary-dark);
}
.ouen-btn--down::after {
  background-image: url("../img/ouen_arrow_1_w_down.svg?d=202606091736");
  width: 1.0555555556em;
}
@media (max-width: 767.98px) {
  .ouen-btn--down::after {
    width: 0.7333333333em;
  }
}
.ouen-btn:hover, .ouen-btn:active {
  text-decoration: none;
  color: #fff;
  background: var(--c-primary-dark);
}
.ouen-btn:hover::after, .ouen-btn:active::after {
  background-image: url("../img/ouen_arrow_1_w_right.svg?d=202606091736");
}
.ouen-btn--down:hover, .ouen-btn--down:active {
  color: var(--c-primary-dark);
  background: #fff;
}
.ouen-btn--down:hover::after, .ouen-btn--down:active::after {
  background-image: url("../img/ouen_arrow_1_down.svg?d=202606091736");
}

@media (max-width: 767.98px) {
  .ouen-btn__text--small-sp {
    font-size: 0.9666666667em;
    line-height: 1.275862069em;
    letter-spacing: 0.075em;
  }
}

.ouen-btn__space-zero {
  letter-spacing: 0em;
}

/* =========================================================
   text
========================================================= */
.ouen-text-reg {
  display: inline-block;
  line-height: 0.75;
  vertical-align: text-bottom;
}
.ouen-text-reg--style1 {
  font-size: 0.75em;
  vertical-align: middle;
}

.ouen-note {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  font-size: 0.875rem;
  font-feature-settings: "palt" 1;
  line-height: 1.5714285714;
}
@media (max-width: 767.98px) {
  .ouen-note {
    width: 86.6666666667%;
    font-size: 0.4375rem;
  }
}
.ouen-note__title {
  font-weight: 500;
  color: #009fe8;
}

.ouen-text1 {
  font-size: 1.4375rem;
  font-size: 1.796875cqi;
  font-feature-settings: "palt" 1;
  line-height: 1.6086956522;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767.98px) {
  .ouen-text1 {
    font-size: 0.78125rem;
    font-size: 3.3333333333cqi;
    line-height: 1.68;
  }
}

/* =========================================================
   bg
========================================================= */
.ouen-bg1 {
  position: relative;
}

.ouen-bg1__item {
  position: absolute;
  inset: 0;
  background: url("../img/ouen_hero_bg_1.jpg?d=202606091736") no-repeat center;
  background-position: center bottom;
  background-size: cover;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .ouen-bg1__item {
    background-image: url("../img/ouen_hero_bg_1_sp.jpg?d=202606091736");
  }
}

/* =========================================================
   Header
========================================================= */
.ouen-header {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  font-size: 1.0625rem;
  background: rgba(33, 89, 9, 0.6);
}
@media (max-width: 1279.98px) {
  .ouen-header {
    font-size: 1.328125cqi;
  }
}
@media (max-width: 767.98px) {
  .ouen-header {
    position: relative;
    bottom: auto;
    font-size: 0.9375rem;
    background: none;
  }
}

.ouen-header__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 4.7058823529em;
}
@media (max-width: 767.98px) {
  .ouen-header__inner {
    display: block;
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .ouen-header__nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: calc(100vh - 61px);
    padding: 57px 30px 12px;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
  }
}
html.is-ouen-menu-open .ouen-header__nav {
  pointer-events: auto;
}
@media (max-width: 767.98px) {
  html.is-ouen-menu-open .ouen-header__nav {
    opacity: 1;
  }
}

.ouen-header__bg {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 137, 217, 0.8) 0%, rgb(25, 55, 117) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
html.is-ouen-menu-open .ouen-header__bg {
  pointer-events: auto;
  opacity: 1;
}

.ouen-header__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767.98px) {
  .ouen-header__lists {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }
}
.ouen-header__lists a {
  position: relative;
  display: inline-block;
  padding: 0.2352941176em 1.5882352941em 0.2352941176em;
  color: #fff;
}
@media (max-width: 767.98px) {
  .ouen-header__lists a {
    display: block;
    min-height: 55px;
    padding: 13px 0;
    border-bottom: 1px solid #eef3f7;
  }
}
.ouen-header__lists a:hover {
  text-decoration: none;
}

.ouen-header__lists li + li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}
@media (max-width: 767.98px) {
  .ouen-header__lists li + li a::before {
    content: none;
  }
}

.ouen-header__lists a::after {
  content: "";
  position: absolute;
  left: 1.5882352941em;
  bottom: 0;
  width: calc(100% - 3.1764705882em);
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
@media (max-width: 767.98px) {
  .ouen-header__lists a::after {
    left: 0;
    width: 100%;
  }
}

.ouen-header__lists a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}
@media (min-width: 768px) and (any-hover: hover) {
  .ouen-header__lists a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.ouen-header__bottle {
  position: relative;
  display: none;
  height: 267px;
  margin-top: -10px;
}
@media (max-width: 767.98px) {
  .ouen-header__bottle {
    display: block;
  }
}
.ouen-header__bottle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/ouen_pic_header_2_sp.png?d=202606091736") no-repeat center;
  background-size: contain;
  mix-blend-mode: hard-light;
}
.ouen-header__bottle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 77.4859287054%;
  background: url("../img/ouen_pic_header_1_sp.png?d=202606091736") no-repeat center;
  background-size: contain;
}

.ouen-hamburger {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 46px;
  height: 46px;
  margin: 12px 12px 0 auto;
  padding: 0;
  background: url("../img/ouen_btn_header_open_sp.svg?d=202606091736") no-repeat center;
  background-position: center;
  background-size: contain;
}
@media (max-width: 767.98px) {
  .ouen-hamburger {
    display: block;
  }
}
@media (max-width: 767.98px) {
  html.is-ouen-menu-open .ouen-hamburger {
    background-image: url("../img/ouen_btn_header_close_sp.svg?d=202606091736");
  }
}

.ouen-hamburger span {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  background: var(--c-primary-dark);
  transition: 0.3s;
}
/* =========================================================
   Hero
========================================================= */
.ouen-hero {
  position: relative;
  text-align: center;
}

.ouen-hero__inner {
  position: relative;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 59px 0 434px;
}
@media (max-width: 1279.98px) {
  .ouen-hero__inner {
    padding: 4.609375% 0 33.90625%;
  }
}
@media (max-width: 767.98px) {
  .ouen-hero__inner {
    padding: 16.2666666667% 0 76%;
  }
}

.ouen-hero__logo {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-primary);
  font-weight: 800;
  padding: 8px 28px;
  border-radius: 999px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ouen-hero__title {
  width: 56.71875%;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .ouen-hero__title {
    width: 86.6666666667%;
  }
}

.ouen-hero__title-sub {
  display: block;
  margin-top: 14px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}

.ouen-hero__copy {
  margin-top: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  opacity: 0.95;
}

.ouen-hero__bottle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 9.84375%;
}
@media (max-width: 767.98px) {
  .ouen-hero__bottle {
    margin-bottom: 12%;
  }
}
.ouen-hero__bottle-img {
  width: 5.625%;
}
@media (max-width: 767.98px) {
  .ouen-hero__bottle-img {
    width: 16.2666666667%;
  }
}
.ouen-hero__bottle-shadow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 15.15625%;
  max-width: 194px;
  margin-bottom: 121px;
  padding-bottom: 52px;
  mix-blend-mode: multiply;
  background: url("../img/ouen_hero_pic_2.png?d=202606091736") no-repeat center;
  background-size: contain;
}
@media (max-width: 1279.98px) {
  .ouen-hero__bottle-shadow {
    margin-bottom: 9.453125%;
    padding-bottom: 4.0625%;
  }
}
@media (max-width: 767.98px) {
  .ouen-hero__bottle-shadow {
    width: 43.2%;
    margin-bottom: 10.6666666667%;
    padding-bottom: 11.3333333333%;
  }
}

.ouen-hero__brand {
  position: absolute;
  bottom: 0;
  right: 3.125%;
  width: 6.421875%;
  margin-bottom: 8.59375%;
}
@media (max-width: 767.98px) {
  .ouen-hero__brand {
    right: 4%;
    bottom: 0;
    width: 9.0666666667%;
    margin-bottom: 4%;
  }
}

/* =========================================================
   Section common
========================================================= */
.ouen-section {
  position: relative;
  overflow: hidden;
}

.ouen-section-bg1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  pointer-events: none;
}

.ouen-section__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  container-type: inline-size;
}

.ouen-section__label {
  position: absolute;
  left: 1.25%;
  top: 0;
  width: 10%;
  margin: 0;
}
@media (max-width: 767.98px) {
  .ouen-section__label {
    left: -2.9333333333%;
    width: 13.6%;
  }
}

.ouen-section__title {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--c-primary-dark);
  margin-bottom: 40px;
}

.ouen-section__title span {
  display: inline-block;
  padding: 8px 40px;
  border-top: 1px solid var(--c-primary);
  border-bottom: 1px solid var(--c-primary);
}

/* =========================================================
   Movie
========================================================= */
.ouen-movie-bg1 {
  background-image: url("../img/ouen_movie_bg_1.jpg?d=202606091736");
}
@media (max-width: 767.98px) {
  .ouen-movie-bg1 {
    background-image: url("../img/ouen_movie_bg_1_sp.jpg?d=202606091736");
  }
}
.ouen-movie__inner {
  padding: 68px 0 92px;
}
@media (max-width: 1279.98px) {
  .ouen-movie__inner {
    padding: 5.3125% 0 7.1875%;
  }
}
@media (max-width: 767.98px) {
  .ouen-movie__inner {
    padding: 9.3333333333% 0 8%;
  }
}

.ouen-movie__title {
  text-align: center;
  width: 39.21875%;
  margin: 0 auto 1.5625%;
}
@media (max-width: 767.98px) {
  .ouen-movie__title {
    width: 67.8666666667%;
    margin-bottom: 0.5333333333%;
  }
}
.ouen-movie__title-img {
  margin-left: -2.390438247%;
}
@media (max-width: 767.98px) {
  .ouen-movie__title-img {
    margin-left: 0;
  }
}

.ouen-movie__lead {
  color: #fff;
}
.ouen-movie__thumb {
  position: relative;
  width: 50%;
  margin: 4.296875% auto 0;
}
@media (max-width: 767.98px) {
  .ouen-movie__thumb {
    width: 85.3333333333%;
    margin-top: 5.3333333333%;
  }
}
.ouen-movie__thumb-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
}
.ouen-movie__thumb-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--c-primary);
  opacity: 0.4;
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
  pointer-events: none;
}
.ouen-movie__thumb-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 23.4375%;
  height: 100%;
  background: url("../img/ouen_icon_play_1.svg?d=202606091736") no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.ouen-movie__thumb-btn:hover::before {
  opacity: 0;
}

.ouen-movie__cmsn {
  position: relative;
  width: 15.625%;
  margin: 4.296875% auto 0;
  border: 1px solid #b8cede;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .ouen-movie__cmsn {
    width: 30.6666666667%;
  }
}
.ouen-movie__cmsn-sizer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 100%;
  backdrop-filter: blur(5px);
  border-radius: inherit;
}
.ouen-movie__cmsn-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38%;
}
@media (max-width: 767.98px) {
  .ouen-movie__cmsn-img {
    width: 37.8260869565%;
  }
}

.ouen-acd {
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  height: 500px;
  transition: height, opacity, mask-image 0.3s ease;
}
.acd-parent.is-active .ouen-acd {
  height: auto;
  -webkit-mask-image: none;
  mask-image: none;
}

.ouen-acd-btn-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: 0 auto 4.6875%;
  text-align: center;
}
@media (max-width: 767.98px) {
  .ouen-acd-btn-wrap {
    margin-bottom: 5.8666666667%;
  }
}

.ouen-acd-btn,
.ouen-acd-btn:link,
.ouen-acd-btn:visited {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 23.9130434783em;
  min-height: 2.8260869565em;
  padding: 0.7391304348em 1.7391304348em;
  font-size: 1.4375rem;
  font-size: min(1.796875cqi, 23px);
  font-weight: 500;
  font-feature-settings: "palt" 1;
  line-height: 1.2777777778;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  border: none;
  border-radius: 100vh;
  background: #fff;
  appearance: none;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .ouen-acd-btn,
  .ouen-acd-btn:link,
  .ouen-acd-btn:visited {
    width: 86.6666666667%;
    max-width: 18.3333333333em;
    min-height: 2.1666666667em;
    padding: 0.4666666667em 2.1333333333em 0.4666666667em 1.3333333333em;
    font-size: 0.9375rem;
    line-height: 1.2333333333;
  }
}
.ouen-acd-btn::before,
.ouen-acd-btn:link::before,
.ouen-acd-btn:visited::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow: 0 0 10px 0 rgba(var(--c-primary-rgb), 0.3);
  background: rgba(255, 255, 255, 0);
  mix-blend-mode: multiply;
}
.ouen-acd-btn::after,
.ouen-acd-btn:link::after,
.ouen-acd-btn:visited::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.2173913043em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8260869565em;
  height: 100%;
  background: url("../img/ouen_arrow_1_down.svg?d=202606091736") no-repeat center;
  background-size: contain;
  transition: background 0.3s ease;
}
@media (max-width: 767.98px) {
  .ouen-acd-btn::after,
  .ouen-acd-btn:link::after,
  .ouen-acd-btn:visited::after {
    right: 1.1em;
    width: 0.7666666667em;
  }
}
.ouen-acd-btn:hover::after, .ouen-acd-btn:active::after,
.ouen-acd-btn:link:hover::after,
.ouen-acd-btn:link:active::after,
.ouen-acd-btn:visited:hover::after,
.ouen-acd-btn:visited:active::after {
  background-image: url("../img/ouen_arrow_1_w_down.svg?d=202606091736");
}

/* =========================================================
   Message
========================================================= */
.ouen-message-bg1 {
  background-image: url("../img/ouen_message_bg_1.jpg?d=202606091736");
  background-position: left 50% top 0;
}
@media (max-width: 767.98px) {
  .ouen-message-bg1 {
    background-image: url("../img/ouen_message_bg_1_sp.jpg?d=202606091736");
    background-position: center top;
  }
}
.ouen-message-bg2 {
  position: absolute;
  right: -17px;
  top: 0;
  width: 66.09375%;
  padding-bottom: 129.140625%;
  margin-top: 67px;
  background: url("../img/ouen_message_bg_2.png?d=202606091736") no-repeat center;
  background-size: contain;
}
@media (max-width: 1279.98px) {
  .ouen-message-bg2 {
    right: -1.328125%;
    margin-top: 5.234375%;
  }
}
@media (max-width: 767.98px) {
  .ouen-message-bg2 {
    display: none;
  }
}
.ouen-message-bg3 {
  position: absolute;
  left: -1.328125%;
  top: 0;
  width: 23.59375%;
  margin-top: 762px;
  padding-bottom: 23.59375%;
  transform: translateY(-30%);
  background: url("../img/ouen_message_bg_3.png?d=202606091736") no-repeat center;
  background-size: contain;
}
@media (max-width: 1279.98px) {
  .ouen-message-bg3 {
    margin-top: 59.53125%;
    transform: translateY(0);
  }
}
@media (max-width: 767.98px) {
  .ouen-message-bg3 {
    display: none;
  }
}
.ouen-message__inner {
  position: relative;
}
.ouen-message__acd {
  padding: 70px 0 81px;
}
@media (max-width: 1279.98px) {
  .ouen-message__acd {
    height: 39.0625cqi;
    padding: 5.46875% 0 6.328125%;
  }
}
@media (max-width: 767.98px) {
  .ouen-message__acd {
    height: 96cqi;
    padding: 8.9333333333% 0 11.4666666667%;
  }
}

.ouen-message__title {
  text-align: center;
  width: 38.75%;
  margin: 0 auto 3.984375%;
}
@media (max-width: 767.98px) {
  .ouen-message__title {
    width: 80%;
    margin-bottom: 6.9333333333%;
  }
}

.ouen-message__desc {
  text-align: center;
}
.ouen-message__desc-text {
  display: block;
  height: 2.65625cqi;
  margin-top: 2.421875%;
}
@media (max-width: 767.98px) {
  .ouen-message__desc-text {
    height: 5.7333333333cqi;
    margin-top: 3.4666666667%;
  }
}
.ouen-message__desc-text--mgt1 {
  margin-top: 4.765625%;
}
.ouen-message__desc-text--mgt2 {
  margin-top: 1.953125%;
}
.ouen-message__desc-text--mgt1-sp {
  margin-top: 8%;
}
.ouen-message__desc-text-img {
  width: auto;
  height: 100%;
}
.ouen-message__desc-text--1 {
  height: 2.734375cqi;
}
.ouen-message__desc-text--3 {
  margin-left: -7.734375%;
}
.ouen-message__desc-text--5 {
  margin-left: -9.6875%;
}
.ouen-message__desc-text--9 {
  height: 3.125cqi;
  margin-left: 3.90625%;
}
.ouen-message__desc-text--11 {
  height: 2.578125cqi;
}
.ouen-message__desc-text--1-sp {
  height: 5.8666666667cqi;
}
.ouen-message__desc-text--2-sp {
  height: 5.8666666667cqi;
}
.ouen-message__desc-text--6-sp {
  height: 5.6cqi;
  margin-left: -20%;
}
.ouen-message__desc-text--7-sp {
  margin-left: -20.5333333333%;
}
.ouen-message__desc-text--8-sp {
  margin-left: -5.3333333333%;
}
.ouen-message__desc-text--9-sp {
  height: 5.6cqi;
  margin-left: -4.2666666667%;
}
.ouen-message__desc-text--10-sp {
  height: 5.6cqi;
  margin-left: -4.2666666667%;
}
.ouen-message__desc-text--11-sp {
  height: 5.6cqi;
}
.ouen-message__desc-text--14-sp {
  height: 7.4666666667cqi;
  margin-top: 2.9333333333%;
}
.ouen-message__desc-text--15-sp {
  height: 5.8666666667cqi;
  margin-top: 6.6666666667%;
}
.ouen-message__desc-text--16-sp {
  margin-top: 7.4666666667%;
}

/* =========================================================
   Research
========================================================= */
.ouen-research {
  color: #fff;
}
.ouen-research-bg1 {
  background-image: url("../img/ouen_research_bg_1.jpg?d=202606091736");
  background-position: top center;
}
@media (max-width: 767.98px) {
  .ouen-research-bg1 {
    background-image: url("../img/ouen_research_bg_1_sp.jpg?d=202606091736");
  }
}
.ouen-research__inner {
  padding: 64px 0 48px;
}
@media (max-width: 1279.98px) {
  .ouen-research__inner {
    padding: 5% 0 3.75%;
  }
}
@media (max-width: 767.98px) {
  .ouen-research__inner {
    padding: 9.3333333333% 0 8.2666666667%;
  }
}

.ouen-research__title {
  text-align: center;
  width: 36.5625%;
  margin: 0 auto 0.625%;
}
@media (max-width: 767.98px) {
  .ouen-research__title {
    width: 79.2%;
    margin-bottom: 0.5333333333%;
  }
}
.ouen-research__title-img {
  margin-left: 0.641025641%;
}
@media (max-width: 767.98px) {
  .ouen-research__title-img {
    margin-left: 0;
  }
}

.ouen-research__lead {
  padding: 0 1em;
}
.ouen-research__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(31.7776718522em, 1fr));
  gap: 1.4444396296em;
  max-width: 900px;
  width: 90%;
  margin: 2.7444352963em auto 0;
  font-size: 0.8653875rem;
  font-feature-settings: "palt" 1;
  line-height: 1.4999927778;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  .ouen-research__lists {
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(22em, 1fr));
    gap: 1em;
    width: 86.6666666667%;
    margin-top: 3.2em;
    font-size: 0.625rem;
    font-size: min(2.6666666667cqi, 10px);
    line-height: 1.5;
  }
}

.ouen-research__list {
  position: relative;
}
.ouen-research__list-bg {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(0, 44, 176) 0.13%, rgb(0, 39, 102) 100%);
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .ouen-research__list-bg {
    background: linear-gradient(180deg, rgb(0, 44, 176) 0.06%, rgb(0, 39, 102) 100%);
  }
}

.ouen-research__list-inner {
  display: flex;
  gap: 1.2999956667em;
  padding: 1.0111077408em 0.3611099074em 1.0111077408em 1.0111077408em;
}
@media (max-width: 767.98px) {
  .ouen-research__list-inner {
    gap: 1.8em;
    padding: 1em 0.5em 1em 1em;
  }
}

.ouen-research__list-pic {
  position: relative;
  flex: 0 0 9.9666334446em;
}
@media (max-width: 767.98px) {
  .ouen-research__list-pic {
    flex-basis: 10em;
    max-width: 32.2580645161%;
  }
}

.ouen-research__list-desc {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  padding-top: 0.2888879259em;
}

.ouen-research__list-text-large {
  margin-bottom: 0.1805556057em;
  font-size: 1.9999927778em;
  line-height: 1.0833336343;
  letter-spacing: 0.12em;
}
.ouen-research__list-text-large--mgt1 {
  margin-top: 0.1805556057em;
}
.ouen-research__list-text-large--mgl1 {
  margin-left: 0.1805556057em;
}

.ouen-research__list-text-medium {
  font-size: 1.2499963889em;
}

.ouen-research__list-text-space1 {
  letter-spacing: 0.075em;
}

.ouen-research__list-btn-wrap {
  width: 100%;
  margin: 0.9388857593em auto 0.2888879259em;
  padding-right: 0.2166659444em;
  text-align: center;
}
@media (max-width: 767.98px) {
  .ouen-research__list-btn-wrap {
    margin: 1em auto 0.6em;
    padding-right: 1.3em;
  }
}

.ouen-research__list-btn,
.ouen-research__list-btn:link,
.ouen-research__list-btn:visited {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 11.6875em;
  min-height: 2.1875em;
  padding: 0.5em 0.625em 0.375em;
  font-size: 1.1555517037em;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  line-height: 1.2777777778;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  border: none;
  border-radius: 100vh;
  background: #fff;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .ouen-research__list-btn,
  .ouen-research__list-btn:link,
  .ouen-research__list-btn:visited {
    max-width: 13.5em;
    min-height: 2em;
    padding: 0.4em 0.5em 0.3em;
    font-size: inherit;
  }
}
.ouen-research__list-btn:hover, .ouen-research__list-btn:active,
.ouen-research__list-btn:link:hover,
.ouen-research__list-btn:link:active,
.ouen-research__list-btn:visited:hover,
.ouen-research__list-btn:visited:active {
  text-decoration: none;
  color: #fff;
  background: var(--c-primary-dark);
}

.ouen-research-note {
  margin-top: 3.3571428571em;
}
@media (max-width: 767.98px) {
  .ouen-research-note {
    margin-top: 3em;
  }
}
.ouen-research-note__title {
  color: inherit;
}
.ouen-research-note__desc {
  color: #000;
}

/* =========================================================
   Comment
========================================================= */
.ouen-comment {
  color: #fff;
}
.ouen-comment-bg1 {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(0deg, rgb(0, 137, 217) 0%, rgb(0, 128, 209) 19.91%, rgb(0, 104, 187) 52.38%, rgb(1, 64, 152) 93.15%, rgb(1, 57, 145) 100%);
}
.ouen-comment-bg1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #a7a3a1 1px, transparent 1px), linear-gradient(to bottom, #a7a3a1 1px, transparent 1px);
  background-size: 29px 29px;
  mix-blend-mode: multiply;
  opacity: 0.4;
}
@media (max-width: 767.98px) {
  .ouen-comment-bg1::before {
    background-size: 14px 14px;
  }
}
@media (max-width: 639.98px) {
  .ouen-comment__acd {
    height: 360px;
  }
}
.ouen-comment__acd-inner {
  position: relative;
  padding: 62px 0 76px;
}
@media (max-width: 1279.98px) {
  .ouen-comment__acd-inner {
    padding: 4.84375% 0 5.9375%;
  }
}
@media (max-width: 767.98px) {
  .ouen-comment__acd-inner {
    padding: 9.6% 0 8%;
  }
}

.ouen-comment__title {
  text-align: center;
  width: 53.515625%;
  margin: 0 auto 1.015625%;
}
@media (max-width: 767.98px) {
  .ouen-comment__title {
    width: 80.8%;
    margin-bottom: 5.6%;
  }
}
@media (max-width: 767.98px) {
  .ouen-comment__title-img {
    margin-left: 0;
  }
}

.ouen-comment__experts {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.75rem;
}
@media (max-width: 767.98px) {
  .ouen-comment__experts {
    font-size: 0.625rem;
  }
}

.ouen-comment__expert + .ouen-comment__expert {
  margin-top: 2.5833333333em;
}
@media (max-width: 767.98px) {
  .ouen-comment__expert + .ouen-comment__expert {
    margin-top: 1.5em;
  }
}

.ouen-comment__expert-wrap {
  display: flex;
  gap: 3em;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .ouen-comment__expert-wrap {
    gap: 1em;
  }
}
.ouen-comment__expert--left .ouen-comment__expert-wrap {
  flex-direction: row-reverse;
}

.ouen-comment__expert-profile {
  display: flex;
  flex: 1 1 auto;
  padding: 2em 0 3em 2.1666666667em;
}
@media (max-width: 767.98px) {
  .ouen-comment__expert-profile {
    margin-left: 8%;
    padding: 0.3em 0 2.6em;
  }
}
@media (max-width: 767.98px) {
  .ouen-comment__expert--left .ouen-comment__expert-profile {
    flex-basis: auto;
    margin: 0;
    padding-inline: 0 2em;
  }
}
.ouen-comment__expert--1 .ouen-comment__expert-profile {
  padding-top: 0.4166666667em;
}
@media (max-width: 767.98px) {
  .ouen-comment__expert--1 .ouen-comment__expert-profile {
    padding-top: 0.3em;
  }
}

.ouen-comment__expert-name {
  font-size: 2.5em;
  font-feature-settings: "palt" 1;
}
@media (max-width: 767.98px) {
  .ouen-comment__expert-name {
    font-size: 1.936425em;
    letter-spacing: 0.035em;
  }
}
.ouen-comment__expert--right .ouen-comment__expert-name {
  text-align: right;
}
.ouen-comment__expert-name-small {
  font-size: 0.8333333333em;
}
@media (max-width: 767.98px) {
  .ouen-comment__expert-name-small {
    font-size: 0.8333346244em;
  }
}

.ouen-comment__expert-position {
  margin-top: 0.1155555042em;
  font-size: 1.4423083333em;
  font-feature-settings: "palt" 1;
  line-height: 1.1999976889;
}
@media (max-width: 767.98px) {
  .ouen-comment__expert-position {
    margin-top: 0;
    font-size: inherit;
    letter-spacing: 0.1em;
  }
}
.ouen-comment__expert--right .ouen-comment__expert-position {
  text-align: right;
}

.ouen-comment__expert-career {
  margin-top: 1.9em;
  font-size: 0.8333333333em;
  font-feature-settings: "palt" 1;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .ouen-comment__expert-career {
    margin-top: 1.3943220109em;
    font-size: 0.645475em;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
}

.ouen-comment__expert-pic {
  position: relative;
  flex: 0 0 19.1666666667em;
}
@media (max-width: 767.98px) {
  .ouen-comment__expert-pic {
    flex-basis: 40%;
    max-width: 15em;
  }
}
@media (max-width: 767.98px) {
  .ouen-comment__expert--left .ouen-comment__expert-pic {
    margin-left: 8%;
  }
}
@media (max-width: 767.98px) {
  .ouen-comment__expert--right .ouen-comment__expert-pic {
    margin-right: 5.8666666667%;
  }
}

.ouen-comment__expert-desc {
  position: relative;
  max-width: 60.0833333333em;
  margin-top: -2.6666666667em;
  padding: 1.6666666667em 1.6666666667em 1.4166666667em 2.1666666667em;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 10px rgba(1, 57, 145, 0.3);
}
@media (max-width: 767.98px) {
  .ouen-comment__expert-desc {
    width: 84%;
    line-height: 1.75;
    letter-spacing: 0;
    margin: -1.6em 0 0 8%;
    padding: 2em 2.2em 2.2em;
  }
}
.ouen-comment__expert--left .ouen-comment__expert-desc {
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .ouen-comment__expert--left .ouen-comment__expert-desc {
    margin-left: 10.1333333333%;
  }
}

/* =========================================================
   About
========================================================= */
.ouen-about-bg1 {
  background-image: url("../img/ouen_about_bg_1.jpg?d=202606091736");
}
@media (max-width: 767.98px) {
  .ouen-about-bg1 {
    background-image: url("../img/ouen_about_bg_1_sp.jpg?d=202606091736");
  }
}
.ouen-about__inner {
  padding: 29px 0 57px;
}
@media (max-width: 1279.98px) {
  .ouen-about__inner {
    padding: 2.265625% 0 4.453125%;
  }
}
@media (max-width: 767.98px) {
  .ouen-about__inner {
    padding: 4.5333333333% 0 7.2%;
  }
}

.ouen-about__title {
  text-align: center;
  width: 71.09375%;
  margin: 0 auto 2.8125%;
}
@media (max-width: 767.98px) {
  .ouen-about__title {
    width: 85.6%;
  }
}
.ouen-about__title-img {
  margin-left: -1.5384615385%;
}
@media (max-width: 767.98px) {
  .ouen-about__title-img {
    margin-left: 0;
  }
}

.ouen-about__products {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4.375cqi;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .ouen-about__products {
    gap: 4.1333333333cqi;
  }
}

.ouen-about__product {
  text-align: center;
}
@media (max-width: 767.98px) {
  .ouen-about__product {
    flex: 0 1 22.2666666667%;
  }
}
.ouen-about__product--bottle {
  margin-left: 10.9375%;
}
@media (max-width: 767.98px) {
  .ouen-about__product--bottle {
    flex-basis: 14.6666666667%;
  }
}
.ouen-about__product--logo {
  flex-basis: 83px;
}
@media (max-width: 767.98px) {
  .ouen-about__product--logo {
    flex-basis: 8.9333333333%;
  }
}
.ouen-about__product--logo img {
  margin: 0 0 19.2771084337% -60.2409638554%;
}

.ouen-about__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
  gap: 21px;
  max-width: 900px;
  width: 90%;
  margin: 4.84375% auto 0;
}
@media (max-width: 767.98px) {
  .ouen-about__points {
    grid-template-columns: 1fr;
    gap: 5.8666666667cqi;
    width: 86.6666666667%;
    margin-top: 10.6666666667%;
  }
}

.ouen-about-point {
  display: flex;
  flex-direction: column;
}

.ouen-about-point__label {
  height: 25px;
  margin-bottom: 4.1958041958%;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .ouen-about-point__label {
    height: 4.4cqi;
    margin-bottom: 1.3333333333%;
  }
}
.ouen-about-point__label-img {
  width: auto;
  height: 100%;
  max-width: none;
}

.ouen-about-point__card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  box-shadow: inset 0 0 0 1px var(--c-primary-dark);
}
.ouen-about-point__title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3.5em;
  padding: 0.5em;
  text-align: center;
  font-size: 1.25rem;
  font-weight: normal;
  font-feature-settings: "palt" 1;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--c-primary-dark);
}
@media (max-width: 767.98px) {
  .ouen-about-point__title {
    font-size: 0.875rem;
    font-size: 3.7333333333cqi;
    min-height: 2.8571428571em;
    padding: 0.7142857143em;
  }
}

.ouen-about-point__card-inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.4285714286em 1.4285714286em 1.6428571429em;
  font-size: 0.875rem;
}
@media (max-width: 767.98px) {
  .ouen-about-point__card-inner {
    flex-direction: row-reverse;
    padding: 1.0526315789em 0 1.3157894737em;
    font-size: 0.59375rem;
    font-size: 2.5333333333cqi;
    line-height: 1.5789473684;
  }
}

@media (max-width: 767.98px) {
  .ouen-about-point__desc {
    flex: 0 0 16.8421052632em;
    flex: 1 1 auto;
    padding: 0 0.9473684211em 0 0;
  }
}

.ouen-about-point__text {
  font-feature-settings: "palt" 1;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  color: var(--c-primary-dark);
}
@media (max-width: 767.98px) {
  .ouen-about-point__text {
    line-height: 1.5789473684;
  }
}
.ouen-about-point__text--space1 {
  letter-spacing: 0.055em;
}
@media (max-width: 767.98px) {
  .ouen-about-point__text--space2-sp {
    letter-spacing: 0.02em;
  }
}
@media (max-width: 767.98px) {
  .ouen-about-point__text--space3-sp {
    letter-spacing: 0.065em;
  }
}
.ouen-about-point__text + .ouen-about-point__text {
  margin-top: 0.7142857143em;
}
@media (max-width: 767.98px) {
  .ouen-about-point__text + .ouen-about-point__text {
    margin-top: 0.6315789474em;
  }
}

.ouen-about-point__pic {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex: 1 1 auto;
  text-align: center;
  margin: 1.7482517483% auto 0;
}
@media (max-width: 767.98px) {
  .ouen-about-point__pic {
    flex: 0 1 47.6923076923%;
    max-width: 17.3684210526em;
    flex: 0 0 50.7692307692%;
    max-width: 17.3684210526em;
    align-items: center;
    align-self: center;
    margin-top: 0;
    padding: 0 3.0769230769%;
  }
}
@media (max-width: 767.98px) {
  .ouen-about-point--1 .ouen-about-point__pic-img, .ouen-about-point--2 .ouen-about-point__pic-img {
    width: 93.1034482759%;
  }
}

.ouen-about-btn-wrap {
  width: 90%;
}
@media (max-width: 767.98px) {
  .ouen-about-btn-wrap {
    width: 100%;
  }
}

.ouen-about-btn-wrap__item {
  flex: 0 0 23.8888888889em;
}
@media (max-width: 767.98px) {
  .ouen-about-btn-wrap__item {
    flex-basis: 100%;
  }
}

.ouen-about-note {
  margin-top: 3.3571428571em;
}
@media (max-width: 767.98px) {
  .ouen-about-note {
    margin-top: 3.7142857143em;
  }
}

/* =========================================================
   Project
========================================================= */
.ouen-project {
  color: #fff;
}
.ouen-project-bg1 {
  background-image: url("../img/ouen_project_bg_1.jpg?d=202606091736");
}
@media (max-width: 767.98px) {
  .ouen-project-bg1 {
    background-image: url("../img/ouen_project_bg_1_sp.jpg?d=202606091736");
  }
}
.ouen-project__inner {
  padding: 0 0 58px;
}
@media (max-width: 1279.98px) {
  .ouen-project__inner {
    padding: 0 0 4.53125%;
  }
}
@media (max-width: 767.98px) {
  .ouen-project__inner {
    padding: 0 0 8.2666666667%;
  }
}

.ouen-project__label {
  z-index: 1;
  margin-top: 9.375%;
}
@media (max-width: 767.98px) {
  .ouen-project__label {
    margin-top: 27.7333333333%;
  }
}

.ouen-project__title1 {
  position: relative;
  text-align: center;
  margin: 0 auto 5%;
}
@media (max-width: 767.98px) {
  .ouen-project__title1 {
    margin-bottom: 9.6%;
  }
}
.ouen-project__title1::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 120px;
  background: var(--c-primary);
}
@media (max-width: 1279.98px) {
  .ouen-project__title1::before {
    height: 9.375cqi;
  }
}
@media (max-width: 767.98px) {
  .ouen-project__title1::before {
    height: 28cqi;
  }
}
.ouen-project__title1-img {
  position: relative;
  width: 48.515625%;
  margin: 0.234375% 0 0 1.25%;
}
@media (max-width: 767.98px) {
  .ouen-project__title1-img {
    width: 88.1333333333%;
    margin-left: 0;
  }
}

.ouen-project__title2 {
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.ouen-project__title2-img {
  position: relative;
  width: 56.5625%;
}
@media (max-width: 767.98px) {
  .ouen-project__title2-img {
    width: 67.7333333333%;
    margin-left: -2.6666666667%;
  }
}

.ouen-project__text {
  width: fit-content;
  margin: 0.6470588235em auto 0;
  padding: 0 2em;
  font-size: 1.0625rem;
  font-size: 1.328125cqi;
  font-feature-settings: "palt" 1;
  line-height: 2.1764705882;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767.98px) {
  .ouen-project__text {
    margin-top: 0.32em;
    font-size: 0.78125rem;
    font-size: 3.3333333333cqi;
    line-height: 1.68;
  }
}
.ouen-project__text--space1 {
  letter-spacing: 0.055em;
}
@media (max-width: 767.98px) {
  .ouen-project__text--space2-sp {
    letter-spacing: 0.025em;
  }
}
.ouen-project__text + .ouen-project__text {
  margin-top: 0.7142857143em;
}
@media (max-width: 767.98px) {
  .ouen-project__text + .ouen-project__text {
    margin-top: 0.6315789474em;
  }
}

.ouen-project__fig {
  width: 62.5%;
  margin: 2.265625% auto 0;
}
@media (max-width: 767.98px) {
  .ouen-project__fig {
    width: 86.6666666667%;
    margin-top: 5.3333333333%;
  }
}

.ouen-project__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .ouen-project-btn-wrap {
    margin-top: 2.0666666667em;
  }
}

@media (max-width: 767.98px) {
  .ouen-project-btn {
    padding: 0.9333333333em 1.6666666667em 0.9333333333em 1.3333333333em;
  }
}

/* =========================================================
   Voices
========================================================= */
.ouen-voices-bg1 {
  background-image: url("../img/ouen_voices_bg_1.jpg?d=202606091736");
}
@media (max-width: 767.98px) {
  .ouen-voices-bg1 {
    background-image: url("../img/ouen_voices_bg_1_sp.jpg?d=202606091736");
  }
}
.ouen-voices__inner {
  padding: 64px 0 80px;
}
@media (max-width: 1279.98px) {
  .ouen-voices__inner {
    padding: 5% 0 6.25%;
  }
}
@media (max-width: 767.98px) {
  .ouen-voices__inner {
    padding: 9.6% 0 10.1333333333%;
  }
}

.ouen-voices__title {
  text-align: center;
  width: 48.125%;
  margin: 0 auto 1.25%;
}
@media (max-width: 767.98px) {
  .ouen-voices__title {
    width: 82.1333333333%;
    margin-bottom: 2.9333333333%;
  }
}
.ouen-voices__title-img {
  margin-left: 1.1363636364%;
}
@media (max-width: 767.98px) {
  .ouen-voices__title-img {
    margin-left: 0;
  }
}

.ouen-voices__lead {
  max-width: calc(100% - 2em);
  margin: 0 auto;
  color: var(--c-primary);
}
@media (max-width: 767.98px) {
  .ouen-voices__lead {
    width: 86.6666666667%;
  }
}

.ouen-voices__slide-area {
  margin-top: 2.5%;
}
@media (max-width: 767.98px) {
  .ouen-voices__slide-area {
    margin-top: 5.3333333333%;
  }
}

.ouen-voices__slide {
  flex: 0 0 24.609375%;
  padding: 0 22.5px;
  padding: 0 1.7578125cqi;
}
@media (max-width: 767.98px) {
  .ouen-voices__slide {
    flex-basis: 66.6666666667cqi;
    padding: 0 12.5px;
    padding: 0 3.3333333333cqi;
  }
}

.swiper-button-next,
.swiper-button-prev {
  transform: translateY(-15%);
  width: 14%;
  height: 0;
  padding-bottom: 16.9333333333%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/ouen_arrow_2_left.png?d=202606091736") no-repeat center;
  background-size: contain;
}

.swiper-button-prev {
  left: 5.3333333333%;
}

.swiper-button-next {
  right: 5.3333333333%;
}
.swiper-button-next::after {
  background-image: url("../img/ouen_arrow_2_right.png?d=202606091736");
}

.swiper:not(.swiper-initialized) .swiper-wrapper {
  justify-content: center;
}
.swiper:not(.swiper-initialized) .swiper-button-next,
.swiper:not(.swiper-initialized) .swiper-button-prev {
  display: none;
}

.ouen-voices__thumb {
  position: relative;
}
.ouen-voices__thumb-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
}
.ouen-voices__thumb-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  border: 0;
  background: rgba(var(--c-primary-rgb), 0.4);
  mix-blend-mode: multiply;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ouen-voices__thumb-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34.9206349206%;
  height: 100%;
  background: url("../img/ouen_icon_play_1.svg?d=202606091736") no-repeat center;
  background-size: contain;
}
.ouen-voices__thumb-btn:hover::before {
  opacity: 0;
}
.swiper.swiper-initialized .ouen-voices__thumb::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(252, 252, 252) 0%, rgba(252, 252, 252, 0) 50%, rgb(252, 252, 252) 100%);
  opacity: 0.6;
  pointer-events: none;
  transition: all 0.3s ease;
}
.swiper.swiper-initialized .swiper-slide-active .ouen-voices__thumb::after {
  opacity: 0;
}

/* =========================================================
   Supporters
========================================================= */
.ouen-supporters {
  color: #fff;
}
.ouen-supporters-bg1 {
  background-image: url("../img/ouen_supporters_bg_1.jpg?d=202606091736");
  background-position: center;
}
@media (max-width: 767.98px) {
  .ouen-supporters-bg1 {
    background-image: url("../img/ouen_supporters_bg_1_sp.jpg?d=202606091736");
  }
}
.ouen-supporters__inner {
  min-height: 690px;
  padding: 62px 0 82px;
}
@media (max-width: 1279.98px) {
  .ouen-supporters__inner {
    min-height: 53.90625vw;
    padding: 4.84375% 0 6.40625%;
  }
}
@media (max-width: 767.98px) {
  .ouen-supporters__inner {
    padding: 9.3333333333% 0 7.7333333333%;
  }
}

.ouen-supporters__title {
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.ouen-supporters__title-img {
  position: relative;
  width: 54.21875%;
  margin-left: -0.78125%;
}
@media (max-width: 767.98px) {
  .ouen-supporters__title-img {
    width: 79.2%;
    margin-left: 4.5333333333%;
  }
}

.ouen-supporters__lists {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(11.0625em, 1fr));
  gap: 2.25em 0.5em;
  max-width: 920px;
  width: 90%;
  margin: 1.1875em auto 0;
  font-family: "Hiragino Mincho ProN", "Hiragino Serif", "ヒラギノ明朝 ProN", "Noto Serif JP", "游明朝体", "Yu Mincho", "MS PMincho", serif;
  font-size: 1rem;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  .ouen-supporters__lists {
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(10.7777777778em, 1fr));
    row-gap: 2.1666666667em;
    width: 80%;
    margin-top: 0.7777777778em;
    font-size: 0.5625rem;
  }
}

.ouen-supporters__list {
  position: relative;
  display: flex;
  min-height: 2.5em;
  padding: 0.3125em 0 0.3125em 1.125em;
}
@media (max-width: 767.98px) {
  .ouen-supporters__list {
    min-height: 2.2222222222em;
    padding-block: 0.2111111111em;
  }
}
.ouen-supporters__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  width: 0.25em;
  height: 100%;
}
@media (max-width: 767.98px) {
  .ouen-supporters__list::before {
    width: 0.2222222222em;
  }
}

/* =========================================================
   Purchase
========================================================= */
.ouen-purchase {
  font-family: "M PLUS 1p", sans-serif;
  background: #E8F7FF;
}
.ouen-purchase__inner {
  min-width: 1000px;
  padding: 95px 0 82px;
}
@media (max-width: 1279.98px) {
  .ouen-purchase__inner {
    padding: 7.421875% 0 6.40625%;
  }
}
@media (max-width: 767.98px) {
  .ouen-purchase__inner {
    min-width: auto;
    padding: 14.6666666667% 0 20.5128205128%;
  }
}

.ouen-purchase__title {
  position: relative;
  width: 529px;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .ouen-purchase__title {
    width: 58.9743589744%;
  }
}
.ouen-purchase__title-img {
  position: relative;
}
.ouen-purchase-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.2222222222em;
  text-align: center;
  margin: 59px auto 0;
  font-size: 0.875rem;
}
@media (max-width: 767.98px) {
  .ouen-purchase-btn-wrap {
    font-size: 0.9375rem;
    font-size: 3.8461538462cqi;
    gap: 0.8333333333em;
    max-width: calc(100% - 2em);
    margin-top: 5.3333333333em;
  }
}
@media (max-width: 639.98px) {
  .ouen-purchase-btn-wrap {
    max-width: 100%;
  }
}

.ouen-purchase-btn1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 28.5714285714em;
  min-height: 5em;
  padding: 1.0714285714em 2.6428571429em 1.0714285714em 2.1428571429em;
  text-align: left;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  border: none;
  background: #144D92;
  appearance: none;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .ouen-purchase-btn1 {
    width: 89.7435897436%;
    max-width: 23.3333333333em;
    min-height: 4.6666666667em;
    padding: 0.9333333333em 2.1333333333em;
    line-height: 1.6;
  }
}
.ouen-purchase-btn1:link, .ouen-purchase-btn1:visited {
  color: #fff;
}
.ouen-purchase-btn1::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px #144D92;
  pointer-events: none;
  transition: all 0.3s ease;
}
.ouen-purchase-btn1::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.0714285714em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1428571429em;
  height: 100%;
  background: url("../img/ouen_arrow_2_w_upright.svg?d=202606091736") no-repeat center;
  background-size: contain;
  transition: background 0.3s ease;
}
@media (max-width: 767.98px) {
  .ouen-purchase-btn1::after {
    right: 1.0666666667em;
    width: 0.9333333333em;
  }
}
.ouen-purchase-btn1:any-link:hover, .ouen-purchase-btn1:any-link:active {
  text-decoration: none;
  color: #144D92;
  background: #fff;
}
.ouen-purchase-btn1:any-link:hover::after, .ouen-purchase-btn1:any-link:active::after {
  background-image: url("../img/ouen_arrow_2_upright.svg?d=202606091736");
}

.ouen-purchase__lists {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 4.453125% auto 0;
  text-align: center;
}
@media (max-width: 767.98px) {
  .ouen-purchase__lists {
    flex-direction: column;
    gap: 7.6923076923cqi;
    margin-top: 9.0666666667%;
  }
}

.ouen-purchase__list {
  flex: 0 0 320px;
  padding: 3.4375% 0 2.34375%;
  background: #fff;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list {
    flex-basis: auto;
    width: 89.7435897436%;
    margin: 0 auto;
    padding: 10.9333333333% 0 7.4358974359%;
  }
}

.ouen-purchase__list-title {
  margin: 0 auto;
}
.ouen-purchase__list--1 .ouen-purchase__list-title {
  width: 40.3125%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list--1 .ouen-purchase__list-title {
    width: 44.2857142857%;
  }
}
.ouen-purchase__list--2 .ouen-purchase__list-title {
  width: 58.4375%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list--2 .ouen-purchase__list-title {
    width: 64%;
  }
}
.ouen-purchase__list--3 .ouen-purchase__list-title {
  width: 58.4375%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list--3 .ouen-purchase__list-title {
    width: 64%;
  }
}
.ouen-purchase__list-title-img {
  width: 100%;
  height: auto;
}

.ouen-purchase__list-pic {
  margin: 0 auto;
}
.ouen-purchase__list--1 .ouen-purchase__list-pic {
  width: 18.4375%;
  margin-top: 4.6875%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list--1 .ouen-purchase__list-pic {
    width: 17.7142857143%;
    margin-top: 6.24%;
  }
}
.ouen-purchase__list--2 .ouen-purchase__list-pic {
  width: 26.25%;
  margin-top: 8.4375%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list--2 .ouen-purchase__list-pic {
    width: 27.1428571429%;
    margin-top: 6.24%;
  }
}
.ouen-purchase__list--3 .ouen-purchase__list-pic {
  width: 26.25%;
  margin-top: 8.4375%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list--3 .ouen-purchase__list-pic {
    width: 27.1428571429%;
    margin-top: 6.24%;
  }
}
.ouen-purchase__list-pic-img {
  width: 100%;
  height: auto;
}

.ouen-purchase__list-text {
  margin: 0 auto;
}
.ouen-purchase__list--1 .ouen-purchase__list-text {
  width: 70.625%;
  margin-top: 4.0625%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list--1 .ouen-purchase__list-text {
    width: 64.5714285714%;
    margin-top: 3.8628571429%;
  }
}
.ouen-purchase__list--2 .ouen-purchase__list-text {
  width: 44.6875%;
  margin-top: 9.0625%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list--2 .ouen-purchase__list-text {
    width: 40.5714285714%;
    margin-top: 8.2857142857%;
  }
}
.ouen-purchase__list--3 .ouen-purchase__list-text {
  width: 44.6875%;
  margin-top: 9.0625%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list--3 .ouen-purchase__list-text {
    width: 40.5714285714%;
    margin-top: 8.2857142857%;
  }
}

.ouen-purchase__list-btns {
  display: flex;
  flex-direction: column;
  gap: 0.7142857143em;
  width: 81.25%;
  text-align: center;
  margin: 10% auto 0;
  font-size: 0.875rem;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list-btns {
    font-size: 0.9375rem;
    font-size: 3.8461538462cqi;
    gap: 0.6666666667em;
    max-width: calc(100% - 2em);
    width: 82.8571428571%;
    margin-top: 8.2857142857%;
  }
}
@media (max-width: 639.98px) {
  .ouen-purchase__list-btns {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .ouen-purchase__list--2 .ouen-purchase__list-btns, .ouen-purchase__list--3 .ouen-purchase__list-btns {
    margin-top: 9.0625%;
  }
}

.ouen-purchase__list-btn {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list-btn {
    font-size: inherit;
  }
}

.ouen-purchase__list-btn1 {
  padding: 1.0714285714em 2.1428571429em 1.0714285714em 1.0714285714em;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list-btn1 {
    padding: 0.8em 1.7333333333em 0.8em 0.9333333333em;
  }
}
.ouen-purchase__list-btn1::after {
  right: 0.5714285714em;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list-btn1::after {
    right: 0.6666666667em;
  }
}

.ouen-purchase__list-btn2 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 5em;
  font-size: inherit;
  color: #000;
  border: none;
  background: #fff;
  appearance: none;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list-btn2 {
    min-height: 4.6666666667em;
  }
}
.ouen-purchase__list-btn2:link, .ouen-purchase__list-btn2:visited {
  color: #000;
}
.ouen-purchase__list-btn2::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px #E0E0E0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.ouen-purchase__list-btn2::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0.5714285714em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1428571429em;
  height: 100%;
  background: url("../img/ouen_arrow_2_upright.svg?d=202606091736") no-repeat center;
  background-size: contain;
  transition: background 0.3s ease;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list-btn2::after {
    right: 0.6666666667em;
    width: 0.9333333333em;
  }
}
.ouen-purchase__list-btn2-img {
  margin-right: 3.8461538462%;
  transition: opacity 0.3s ease;
}
.ouen-purchase__list-btn2--amazon .ouen-purchase__list-btn2-img {
  width: 64.6153846154%;
  margin-top: 4.6153846154%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list-btn2--amazon .ouen-purchase__list-btn2-img {
    width: 57.9310344828%;
    margin-top: 4.1379310345%;
  }
}
.ouen-purchase__list-btn2--rakuten .ouen-purchase__list-btn2-img {
  width: 51.9230769231%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list-btn2--rakuten .ouen-purchase__list-btn2-img {
    width: 46.5517241379%;
  }
}
.ouen-purchase__list-btn2--lohaco .ouen-purchase__list-btn2-img {
  width: 50.7692307692%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list-btn2--lohaco .ouen-purchase__list-btn2-img {
    width: 45.5172413793%;
  }
}
.ouen-purchase__list-btn2--ajidirect .ouen-purchase__list-btn2-img {
  width: 57.6923076923%;
}
@media (max-width: 767.98px) {
  .ouen-purchase__list-btn2--ajidirect .ouen-purchase__list-btn2-img {
    width: 51.724137931%;
  }
}
.ouen-purchase__list-btn2:any-link:hover, .ouen-purchase__list-btn2:any-link:active {
  text-decoration: none;
  color: #000;
}
.ouen-purchase__list-btn2:any-link:hover::before, .ouen-purchase__list-btn2:any-link:active::before {
  box-shadow: inset 0 0 0 1px #144D92;
}
.ouen-purchase__list-btn2:any-link:hover .ouen-purchase__list-btn2-img, .ouen-purchase__list-btn2:any-link:active .ouen-purchase__list-btn2-img {
  opacity: 0.6;
}

/* =========================================================
    Info
========================================================= */
.ouen-info {
  background: #fff;
}
.ouen-info__inner {
  padding: 34px 0 44px;
}
@media (max-width: 767.98px) {
  .ouen-info__inner {
    padding: 17px 0 22px;
  }
}

/* =========================================================
   Footer
========================================================= */
.ouen-site-footer {
  font-size: 0.875rem;
  background: #10378e;
  color: #fff;
}
@media (max-width: 767.98px) {
  .ouen-site-footer {
    font-size: 0.625rem;
  }
}

.ouen-site-footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 5em;
  padding: 1em;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .ouen-site-footer__inner {
    min-height: 5.5em;
  }
}

.ouen-site-footer__copy {
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
  text-align: center;
}

/* =========================================================
   animation
========================================================= */
.ouen-ani-key-fadein {
  opacity: 0;
  animation: fadein-up 1s ease-out forwards;
}
.ouen-ani-key-fadein--delay1 {
  animation-delay: 0.2s;
}
.ouen-ani-key-fadein--delay2 {
  animation-delay: 0.4s;
}
.ouen-ani-key-fadein--delay3 {
  animation-delay: 0.6s;
}
.ouen-ani-key-fadein--duration1 {
  animation-duration: 0.5s;
}

@keyframes fadein {
  to {
    opacity: 1;
  }
}
.ouen-ani-key-blur {
  opacity: 0;
  filter: blur(10px);
  animation: blur 1s ease-out forwards;
}
.ouen-ani-key-blur--delay1 {
  animation-delay: 0.2s;
}
.ouen-ani-key-blur--delay2 {
  animation-delay: 0.4s;
}
.ouen-ani-key-blur--delay3 {
  animation-delay: 0.6s;
}
.ouen-ani-key-blur--duration1 {
  animation-duration: 0.5s;
}

@keyframes blur {
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.ouen-ani-key-fadein-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadein-up 1s ease-out forwards;
}
.ouen-ani-key-fadein-up--delay1 {
  animation-delay: 0.2s;
}
.ouen-ani-key-fadein-up--delay2 {
  animation-delay: 0.4s;
}
.ouen-ani-key-fadein-up--delay3 {
  animation-delay: 0.6s;
}
.ouen-ani-key-fadein-up--duration1 {
  animation-duration: 0.5s;
}

@keyframes fadein-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ouen-ani-blur {
  opacity: 0;
  filter: blur(10px);
  transition-property: opacity, filter;
  transition-duration: 1s;
}
.ouen-ani-blur--delay1 {
  transition-delay: 0.2s;
}
.ouen-ani-blur--delay2 {
  transition-delay: 0.4s;
}
.ouen-ani-blur--delay3 {
  transition-delay: 0.6s;
}
.ouen-ani-blur--duration1 {
  transition-duration: 1.5s;
}
.ouen-ani-blur.is-active {
  opacity: 1;
  filter: blur(0);
}

.ouen-ani-fadein {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ouen-ani-fadein--delay1 {
  transition-delay: 0.2s;
}
.ouen-ani-fadein--delay2 {
  transition-delay: 0.4s;
}
.ouen-ani-fadein--delay3 {
  transition-delay: 0.6s;
}
.ouen-ani-fadein--duration1 {
  transition-duration: 1.5s;
}
.ouen-ani-fadein.is-active {
  opacity: 1;
}

.ouen-ani-fadein-up {
  opacity: 0;
  transform: translateY(50px);
  transition-property: transform, opacity;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ouen-ani-fadein-up--delay1 {
  transition-delay: 0.2s;
}
.ouen-ani-fadein-up--delay2 {
  transition-delay: 0.4s;
}
.ouen-ani-fadein-up--delay3 {
  transition-delay: 0.6s;
}
.ouen-ani-fadein-up.is-active {
  transform: translateY(0);
  opacity: 1;
}

/* =========================================================
   display
========================================================= */
.ouen-inblock {
  display: inline-block;
}

@media (min-width: 768px) {
  .ouen-max-br {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .ouen-min-br {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */