@charset "UTF-8";
@media (min-width: 768px) {
  .sp-show {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-show {
    display: none !important;
  }
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  letter-spacing: 0.1rem;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

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

html {
  scroll-behavior: smooth;
}

section,
[id] {
  /* ヘッダーの高さ分、スクロール位置を上方向にずらす */
}
@media (max-width: 767px) {
  section,
  [id] {
    scroll-margin-top: 16.56%;
  }
}
@media (min-width: 768px) {
  section,
  [id] {
    scroll-margin-top: 88px;
  }
}

body {
  font-family: "EB Garamond", "Noto Sans JP", "Yu Mincho", "游明朝", serif;
}

@media (max-width: 767px) {
  .wrap {
    padding-top: 50px;
  }
}
@media (min-width: 768px) {
  .wrap {
    padding-top: 88px;
    max-width: 1440px;
    margin: 0 auto;
  }
}

/* --- 変数定義 --- */
/* --- 固定ヘッダー --- */
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease;
}
.site_header.is-open {
  background-color: #ffffff !important;
  backdrop-filter: none;
}
@media (max-width: 767px) {
  .site_header {
    height: 50px;
  }
}
@media (min-width: 768px) {
  .site_header {
    height: 88px;
  }
}
.site_header__inner {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .site_header__inner {
    padding: 0 4.4% 0 4.4%;
  }
}
@media (min-width: 768px) {
  .site_header__inner {
    padding: 0 4.4% 0 4%;
  }
}
@media (max-width: 767px) {
  .site_header .logo {
    width: 14.2%;
  }
}
@media (min-width: 768px) {
  .site_header .logo img {
    height: 44px;
    width: auto;
  }
}
.site_header .maro17_logo {
  margin-left: auto;
}
@media (max-width: 767px) {
  .site_header .maro17_logo {
    margin-right: 16px;
  }
}
@media (min-width: 768px) {
  .site_header .maro17_logo {
    margin-right: 28px;
  }
}
.site_header .maro17_logo a {
  display: flex;
  align-items: center;
}
.site_header .maro17_logo img {
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .site_header .maro17_logo img {
    height: 18px;
  }
}
@media (min-width: 768px) {
  .site_header .maro17_logo img {
    height: 24px;
  }
}

/* --- ハンバーガーボタン --- */
.hamburger-btn {
  position: relative;
  z-index: 1000;
  width: 19px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-btn__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #111;
  transition: transform 0.4s, opacity 0.4s;
}
.hamburger-btn {
  /* 開いたときの「×」アニメーション（16px高さに最適化） */
}
.hamburger-btn.is-active .hamburger-btn__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-active .hamburger-btn__bar:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active .hamburger-btn__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- ヘッダー「下」に開くオーバーレイメニュー --- */
.drawer-menu {
  position: fixed;
  left: 0;
  width: 100%;
  height: calc(100vh - 88px);
  height: calc(100dvh - 50px);
  z-index: 900;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .drawer-menu {
    top: 50px;
  }
}
@media (min-width: 768px) {
  .drawer-menu {
    top: 88px;
  }
}
.drawer-menu {
  /* 開いた状態 */
}
.drawer-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.drawer-menu {
  /* インナー領域 */
}
.drawer-menu__inner {
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .drawer-menu__inner {
    padding: 5.5% 5% 0;
  }
}
@media (min-width: 768px) {
  .drawer-menu__inner {
    padding: 5.5% 3.4% 0;
  }
}
.drawer-menu {
  /* ラベル「MENU」 */
}
.drawer-menu__head {
  padding-bottom: 1.9%;
}
.drawer-menu__label {
  letter-spacing: 0.1em;
  color: #333;
  font-family: serif;
  font-weight: 600;
}
@media (max-width: 767px) {
  .drawer-menu__label {
    font-size: 0.4em;
  }
}
@media (min-width: 768px) {
  .drawer-menu__label {
    font-size: 11px;
  }
}
.drawer-menu {
  /* 上下の横線で囲むメイン領域 */
}
@media (max-width: 767px) {
  .drawer-menu__body {
    padding: 13.7% 0 25%;
  }
}
@media (min-width: 768px) {
  .drawer-menu__body {
    padding: 2.1% 0 3.8%;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
  }
}
.drawer-menu {
  /* メインリスト */
}
.drawer-menu__main {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .drawer-menu__main {
    gap: 35px;
  }
}
@media (min-width: 768px) {
  .drawer-menu__main {
    gap: 42px;
  }
}
@media (min-width: 768px) {
  .drawer-menu__item {
    display: flex;
    align-items: baseline;
  }
}
.drawer-menu__item--has-sub {
  align-items: flex-start;
}
.drawer-menu__item-main {
  display: flex;
  align-items: baseline;
}
.drawer-menu__num {
  font-size: 0.65em;
  color: #000;
  font-family: serif;
  min-width: 20px;
  letter-spacing: 0.01em;
  font-weight: 800;
}
.drawer-menu__link {
  font-weight: 500;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: opacity 0.2s;
}
@media (max-width: 767px) {
  .drawer-menu__link {
    font-size: 2.3em;
    margin-left: 8%;
  }
}
@media (min-width: 768px) {
  .drawer-menu__link {
    font-size: 3.4em;
    margin-left: 56px;
  }
}
.drawer-menu__link:hover {
  opacity: 0.6;
}
.drawer-menu {
  /* サブメニュー (STYLING, HAIR CARE...) */
}
.drawer-menu__sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .drawer-menu__sub {
    gap: 21px;
    margin-left: 12.6%;
    margin-top: 10.6%;
  }
}
@media (min-width: 768px) {
  .drawer-menu__sub {
    gap: 31px;
    margin-left: 27.7%;
    margin-top: 1%;
  }
}
.drawer-menu__sub a {
  color: #000;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-family: serif;
  transition: opacity 0.2s;
  font-weight: 600;
}
@media (max-width: 767px) {
  .drawer-menu__sub a {
    font-size: 0.75em;
  }
}
@media (min-width: 768px) {
  .drawer-menu__sub a {
    font-size: 0.99em;
  }
}
.drawer-menu__sub a:hover {
  opacity: 0.6;
}
.drawer-menu {
  /* フッターリンク (COMPANY, SECURITY...) */
}
@media (min-width: 768px) {
  .drawer-menu__foot {
    padding-top: 3.2%;
  }
}
.drawer-menu__footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .drawer-menu__footer-links {
    display: flex;
    gap: 117px;
  }
}
.drawer-menu__footer-links li {
  padding: 0 0 6%;
}
.drawer-menu__footer-links a {
  font-size: 0.7em;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-family: serif;
  transition: opacity 0.2s;
  font-weight: 600;
}
.drawer-menu__footer-links a:hover {
  opacity: 0.8;
}

.tvcm {
  background-color: #000;
}
@media (max-width: 767px) {
  .tvcm {
    padding: 5.7% 5.2% 6% 5.2%;
  }
}
@media (min-width: 768px) {
  .tvcm {
    padding: 5.7% 3.4% 12.9% 3.4%;
  }
}
.tvcm p {
  color: #fff;
}
@media (max-width: 767px) {
  .tvcm p {
    font-size: 0.675em;
    margin-top: 6.2%;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .tvcm p {
    font-size: 15px;
    margin: 2.4% 3.4% 0 0%;
    line-height: 1em;
    letter-spacing: -0.03em;
  }
}
@media (max-width: 767px) {
  .tvcm .tvcm_title {
    margin-bottom: 9.2%;
  }
}
@media (min-width: 768px) {
  .tvcm .tvcm_title {
    display: flex;
    justify-content: space-between;
  }
}
.tvcm .tvcm_title h2 {
  color: #fff;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -1.2px;
}
@media (max-width: 767px) {
  .tvcm .tvcm_title h2 {
    font-size: 2.73em;
  }
}
@media (min-width: 768px) {
  .tvcm .tvcm_title h2 {
    font-size: 3.6em;
  }
}
@media (min-width: 768px) {
  .tvcm .cm_box {
    max-width: 1120px;
    margin: 2.9% 6.4% 0 6.4%;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 17.7% 5.2% 14.1%;
  }
}
@media (min-width: 768px) {
  .about {
    display: flex;
    padding: 5.2% 3.4% 0.1% 3.4%;
  }
}
@media (max-width: 767px) {
  .about .about_title {
    margin-bottom: 24.4%;
  }
}
.about .about_title h2 {
  color: #444444;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -1.2px;
}
@media (max-width: 767px) {
  .about .about_title h2 {
    font-size: 2.72em;
  }
}
@media (min-width: 768px) {
  .about .about_title h2 {
    font-size: 3.6em;
  }
}
@media (min-width: 768px) {
  .about .about_contents {
    margin-left: 19%;
  }
}
.about .about_contents h2 {
  color: #444444;
  font-weight: 400;
  line-height: 1.05em;
  margin-top: -1.5%;
}
@media (max-width: 767px) {
  .about .about_contents h2 {
    font-size: 2.5em;
    letter-spacing: -0.2px;
    margin-bottom: 21.8%;
  }
}
@media (min-width: 768px) {
  .about .about_contents h2 {
    font-size: 4.73em;
    letter-spacing: -1.2px;
    margin-bottom: 18%;
  }
}
.about .about_contents p {
  font-family: "Noto Sans JP", serif;
  color: #444444;
  margin: 0% 3.4% 0 0%;
  letter-spacing: -0.03em;
  font-weight: 400;
}
@media (max-width: 767px) {
  .about .about_contents p {
    font-size: 1em;
    line-height: 1.9em;
  }
}
@media (min-width: 768px) {
  .about .about_contents p {
    font-size: 18.5px;
    line-height: 1.85em;
  }
}
.about .about_contents p.mini {
  margin: 23.6% 0 3.5% 0;
  font-size: 13.7px;
}

hr {
  border: none;
  height: 2px;
  background-color: #444;
  margin: 0 0 0 3%;
  max-width: 1440px;
  width: 90.5%;
}

@media (max-width: 767px) {
  .products {
    padding: 13% 5.2% 0.1%;
  }
}
@media (min-width: 768px) {
  .products {
    padding: 6% 3.4% 0.1% 3.4%;
  }
}
.products .products_title {
  margin-bottom: 1%;
}
@media (min-width: 768px) {
  .products .products_title {
    display: flex;
    justify-content: space-between;
  }
}
.products .products_title h2 {
  color: #444444;
  font-weight: 400;
}
@media (max-width: 767px) {
  .products .products_title h2 {
    font-size: 2.7em;
    line-height: 1em;
    letter-spacing: -0.6px;
    margin-bottom: 5.5%;
  }
}
@media (min-width: 768px) {
  .products .products_title h2 {
    font-size: 3.6em;
    letter-spacing: -1.2px;
    line-height: 1.05em;
    margin-bottom: 5.8%;
    margin-top: -1.5%;
  }
}
.products .products_title .link_btn {
  color: #444;
  margin-right: 3.4%;
  text-decoration: none;
}
@media (max-width: 767px) {
  .products .products_title .link_btn {
    font-size: 0.7em;
    letter-spacing: -0.035em;
    margin-bottom: 12.4%;
  }
}
@media (min-width: 768px) {
  .products .products_title .link_btn {
    font-size: 13.1px;
    margin-top: 0.9%;
    letter-spacing: -0.001em;
  }
}
.products .products_title .link_btn a {
  color: #444;
  text-decoration: none;
}
.products .products_title p {
  color: #444444;
  font-size: 18.5px;
  margin: 0% 3.4% 0 0%;
  line-height: 1.85em;
  letter-spacing: -0.03em;
}
.products .contents {
  margin-bottom: 10.8%;
}
.products .contents h3 {
  color: #444444;
  font-weight: 500;
  line-height: 1.05em;
  letter-spacing: -1.2px;
  margin-top: -1.5%;
}
@media (max-width: 767px) {
  .products .contents h3 {
    font-size: 2.07em;
    margin-bottom: 8.2%;
  }
}
@media (min-width: 768px) {
  .products .contents h3 {
    font-size: 2.5em;
    margin-bottom: 4.3%;
  }
}
.products .contents p {
  font-family: "Noto Sans JP", serif;
  color: #444444;
  font-weight: 400;
  letter-spacing: -1.1px;
  margin-top: -1.5%;
  margin-bottom: 3.5%;
}
@media (max-width: 767px) {
  .products .contents p {
    font-size: 0.756em;
    line-height: 1.61em;
  }
}
@media (min-width: 768px) {
  .products .contents p {
    font-size: 1.2em;
    line-height: 1.8em;
  }
}
.products .contents {
  /* --- 変数設定 --- */
}
.products .contents .products_box {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .products .contents .products_box {
    padding: 16.8% 0;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box {
    padding: 8.6% 0;
  }
}
.products .contents .products_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .products .contents .products_box ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3.5%;
    row-gap: 4.8%;
    padding-right: 4.7%;
  }
}
@media (max-width: 767px) {
  .products .contents .products_box ul li {
    display: grid;
    grid-template-columns: 35% 1fr;
    column-gap: 7.7%;
    grid-template-areas: "left right1" "left right2" "left right3" "left right4" "left right5";
    margin-bottom: 21.2%;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box ul li {
    display: flex;
    flex-direction: column;
    position: relative;
  }
}
.products .contents .products_box .number {
  font-family: "EB Garamond", "Noto Sans JP", serif;
  font-weight: 700;
  color: #000;
}
@media (max-width: 767px) {
  .products .contents .products_box .number {
    grid-area: left;
    font-size: 0.7em;
    letter-spacing: normal;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box .number {
    letter-spacing: 0.05em;
    margin-bottom: 4%;
  }
}
@media (max-width: 767px) {
  .products .contents .products_box .pr_photo {
    grid-area: left;
    margin-top: 18%;
    height: auto;
    margin-left: -16%;
    width: 138%;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box .pr_photo {
    width: 100%;
    max-height: 267px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3.4%;
  }
}
.products .contents .products_box .pr_photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.products .contents .products_box .pr_photo:hover img {
  transform: scale(1.04);
}
.products .contents .products_box .pr_title {
  font-weight: 400;
  line-height: 1.7em;
  color: #444;
}
@media (max-width: 767px) {
  .products .contents .products_box .pr_title {
    grid-area: right2;
    font-size: 0.73em;
    margin-top: 20%;
    margin-bottom: 17.3%;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box .pr_title {
    font-size: 0.89em;
    margin-bottom: 7%;
  }
}
.products .contents .products_box .pr_note {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  color: #444;
}
@media (max-width: 767px) {
  .products .contents .products_box .pr_note {
    grid-area: right3;
    font-size: 0.67em;
    letter-spacing: -0.06em;
    margin-bottom: 19.3%;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box .pr_note {
    font-size: 0.85em;
    letter-spacing: -0.05em;
    margin-bottom: 10.9%;
  }
}
.products .contents .products_box .pr_detail {
  color: #444;
}
@media (max-width: 767px) {
  .products .contents .products_box .pr_detail {
    grid-area: right4;
    font-size: 0.69em;
    letter-spacing: -0.01em;
    line-height: 1.8em;
    margin-bottom: 21%;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box .pr_detail {
    font-size: 1.1em;
    line-height: 2;
    margin-bottom: 24px;
    width: 94%;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 767px) {
  .products .contents .products_box .cart {
    grid-area: right5;
    margin-top: auto;
    display: flex;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box .cart {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6%;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box .cart .btn {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
  }
}
.products .contents .products_box .cart .btn:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .products .contents .products_box .cart .btn img {
    width: 91%;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box .cart .btn img {
    width: 50%;
  }
}
.products .contents .products_box .cart .price {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .products .contents .products_box .cart .price {
    font-size: 0.7em;
    margin-right: -0.5%;
    margin-top: 8%;
  }
}
@media (min-width: 768px) {
  .products .contents .products_box .cart .price {
    font-size: 0.8em;
    margin-right: -3.5%;
  }
}
.products {
  /* --- 注釈 ＆ 区切り線 --- */
}
.products .footnotes {
  margin: -100px auto 0;
  padding: 0px 0px;
}
.products .footnotes p {
  color: #737373;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .products .footnotes p {
    font-size: 0.55em;
    letter-spacing: -0.06em;
    margin-bottom: 7.2%;
  }
}
@media (min-width: 768px) {
  .products .footnotes p {
    font-size: 0.75em;
    letter-spacing: -0.015em;
    margin-bottom: 1.2%;
  }
}
.products .footnotes hr {
  height: 1px;
  border: none;
  border-top: 1px solid #000;
  margin: 0;
  width: 96.6%;
}
@media (max-width: 767px) {
  .products .footnotes hr {
    margin-bottom: 11%;
  }
}

/* --- フッター --- */
@media (max-width: 767px) {
  .footer {
    padding: 0% 5.2%;
  }
}
@media (min-width: 768px) {
  .footer {
    padding: 40px 20px;
  }
}
.footer__inner {
  max-width: 1340px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    width: 19.8%;
    margin-left: 1.6%;
    margin-bottom: 12%;
  }
}
@media (min-width: 768px) {
  .footer__logo {
    width: 7%;
  }
}
@media (max-width: 767px) {
  .footer__nav {
    margin-bottom: 7%;
  }
}
.footer__nav ul {
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .footer__nav ul {
    display: flex;
    gap: 47%;
    margin: 0 0 0 28%;
  }
}
.footer__nav ul li {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footer__nav ul li {
    padding: 0 0 5%;
  }
}
.footer__nav ul a {
  font-size: 0.75em;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.footer__nav ul a:hover {
  opacity: 0.6;
}
.footer__copyright {
  color: #000;
  letter-spacing: 0;
  margin-right: 3.5%;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 0.6em;
    margin-bottom: 10%;
  }
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 0.75em;
  }
}

/* モーダルと背景の指定 */
.modal,
.modal2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 101;
}

@media (max-width: 767px) {
  .modal,
  .modal2 {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .modal,
  .modal2 {
    padding: 40px 20px;
  }
}
/* モーダルの擬似要素の指定 */
.modal:before,
.modal2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active,
.modal2.is-active {
  opacity: 1;
  visibility: visible;
  position: fixed;
}

/* モーダル内側の指定 */
.modal-container,
.modal-container2 {
  position: relative;
  vertical-align: top;
}
@media (max-width: 767px) {
  .modal-container,
  .modal-container2 {
    height: 100vh;
  }
}

/* モーダルを閉じるボタンの指定 */
.modal-close,
.modal-close2 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 4;
}

@media (max-width: 767px) {
  .modal-close,
  .modal-close2 {
    top: 4vh;
    right: 3vw;
    width: 80px;
    height: 80px;
  }
  .modal-close img.close_btn,
  .modal-close2 img.close_btn {
    width: 40px;
    height: 25px;
  }
  .collab_bg2 .section__inner .movie_box .collab_movie .movie_btn .sec_btn_box .sec_btn img.close_btn {
    width: 40px !important;
    height: 25px !important;
  }
}
@media (min-width: 768px) {
  .modal-close,
  .modal-close2 {
    top: 40px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
/* モーダルのコンテンツ部分の指定 */
.modal-content .movie_main {
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .modal-content .movie_main {
    width: 100vw;
  }
}
@media (min-width: 768px) {
  .modal-content .movie_main {
    width: 70vw;
    height: 100vh;
    padding: 3vh;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .modal-content .movie_main iframe {
    margin: 45vw 0 0;
  }
}
@media (min-width: 768px) {
  .modal-content .movie_main iframe {
    margin-top: -10vh;
    height: 36vw;
  }
}/*# sourceMappingURL=style.css.map */