@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");

/* ---------------------------
共通部分
--------------------------- */

*,
::before,
::after {
  box-sizing: border-box;
  /* color: var(--cleam); */
}

:root {
  --white: #ffffff;
  --black: #040000;
  --blue: #006bb9;
  --skyblue: #d7f1ff;
  --darkblue: #123c96;
  --deeppink: #e85298;
  --cleam: #fffef4;
  --text-shadow: 2px 2px 1px var(--white), -2px -2px 1px var(--white), 2px -2px 1px var(--white),
    -2px 2px 1px var(--white), 0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white),
    0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white),
    0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white),
    0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white),
    0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white), 0 0 3px var(--white);
}

#pageContainer {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.fade-in {
  opacity: 0;
}

.fade-in.active {
  animation: fade-in 1s;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.toolBox01 {
  background-color: #19238a;
}

.brand-btn-cart {
  background: #b99026;
}

img {
  display: unset;
  width: auto;
  max-width: 100%;
}

.text-blue {
  color: var(--darkblue);
}

.text-pink {
  color: var(--deeppink);
}

.inner {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .inner {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

.title-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.4rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4rem;
  letter-spacing: 0.04em;
  text-shadow: var(--text-shadow);
}

.title-1::before,
.title-1::after {
  content: "";
  display: inline-block;
  width: 37px;
  height: 44px;
  vertical-align: middle;
}

.title-1::before {
  background: center center / contain url(/-/Media/com/milmag/top/20221115/title-1-before-icon-blue.svg) no-repeat;
  margin-right: 2rem;
  margin-bottom: 5%;
}

.title-1::after {
  background: center center / contain url(/-/Media/com/milmag/top/20221115/title-1-after-icon-blue.svg) no-repeat;
  margin-top: 5%;
  margin-left: 2rem;
}

@media screen and (max-width: 768px) {
  .title-1 {
    font-size: 8.8vw;
    margin-bottom: 8.8vw;
  }
  .title-1::before,
  .title-1::after {
    width: 5.2vw;
    height: 7.2vw;
  }
  .title-1::before {
    margin-right: 1rem;
    margin-bottom: 5.2vw;
  }
  .title-1::after {
    margin-top: 5.2vw;
    margin-left: 1rem;
  }
}

.flow-title::before,
.faq-title::before {
  background: center center / contain url(/-/Media/com/milmag/top/20221115/title-1-before-icon-white.svg) no-repeat;
  margin-right: 2.5rem;
}

.flow-title::after,
.faq-title::after {
  background: center center / contain url(/-/Media/com/milmag/top/20221115/title-1-after-icon-white.svg) no-repeat;
  margin-left: 2.5rem;
}

.title-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 3.5rem;
}

.title-2::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 10px;
  background: center center / contain url(/-/Media/com/milmag/top/20221115/title-2-after-icon.svg) no-repeat;
  vertical-align: middle;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .title-2 {
    font-size: 4.1vw;
    margin-bottom: 4.7vw;
  }
  .title-2::after {
    width: 7.7vw;
    height: 1.3vw;
    margin-top: 2.7vw;
  }
}

.btn {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  text-align: center;
  line-height: 1;
  border-radius: 100vh;
  transition: opacity 0.3s ease;
}

.btn::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: center center / contain url(/-/Media/com/milmag/top/20221115/btn-icon.svg) no-repeat;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.btn:hover {
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
}

.btn:visited {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 4.4vw;
  }
  .btn::after {
    right: 2.5vw;
    width: 5.4vw;
    height: 5.4vw;
  }
}

/* ---------------------------
mv
--------------------------- */

.mv {
  background-color: #aeddef;
}

.mv .inner {
  padding: 0;
}

.mv-content {
  text-align: center;
}

/* ---------------------------
ナビゲーションメニュー
--------------------------- */

.page-link {
  background-color: #ffbbd2;
}

.page-link-nav {
  display: flex;
  align-items: center;
}

.page-link-nav a {
  position: relative;
  text-align: center;
  font-weight: 800;
  line-height: 1;
  border-radius: 0.5rem;
}

.page-link-nav a::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}

.page-link-nav-menu {
  display: flex;
}

.page-link-nav-menu-item-link {
  display: inline-block;
  color: var(--blue);
  background-color: var(--white);
  padding: 1.9rem calc(2.25rem + 20px) 1.9rem 2.05rem;
}

.page-link-nav-menu-item-link::after {
  background: center center / contain url(/-/Media/com/milmag/top/20221115/arrow_blue.svg) no-repeat;
}

.page-link-nav-cta-item-link {
  display: block;
  font-size: 1.8rem;
  color: var(--white);
  background-color: var(--blue);
  line-height: 1;
  border-top: solid 2px var(--black);
  border-bottom: solid 2px var(--black);
  padding: 1.4rem calc(2rem + 20px) 1.4rem 2rem;
}

.page-link-nav .page-link-nav-cta-item-link::after {
  right: 2rem;
  background: center center / contain url(/-/Media/com/milmag/top/20221115/btn-icon.svg) no-repeat;
}

@media screen and (min-width: 769px) {
  .page-link-nav {
    padding: 1.5rem 0.5rem;
  }
  .page-link-nav-menu {
    margin-right: 1rem;
  }
  .page-link-nav-menu .page-link-nav-menu-item:not(:last-child) {
    margin-right: 1rem;
  }
  .page-link-nav-cta {
    flex-grow: 1;
  }
  .page-link-nav-cta-item-link {
    border-left: solid 2px var(--black);
    border-right: solid 2px var(--black);
  }
}

@media screen and (max-width: 768px) {
  .page-link-nav.inner {
    flex-direction: column-reverse;
    padding: 0;
  }
  .page-link-nav-menu {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5.5vw 3.8vw;
  }
  .page-link-nav-menu-item {
    width: calc(50% - 1.5vw);
  }
  .page-link-nav-menu .page-link-nav-menu-item:not(:last-child) {
    margin-bottom: 2.6vw;
  }
  .page-link-nav-menu-item-link {
    display: block;
    font-size: 4.2vw;
    padding: 4vw 7.4vw 4vw 4.8vw;
  }
  .page-link-nav .page-link-nav-menu-item-link {
    border-radius: 1.5vw;
  }
  .page-link-nav a::after {
    right: 1.7vw;
    width: 5.6vw;
    height: 5.6vw;
  }
  .page-link-nav-cta {
    width: 100%;
  }
  .page-link .page-link-nav-cta-item-link {
    font-size: 4.6vw;
    border-radius: 0;
    padding: 4.6vw 12vw;
  }
  .page-link-nav .page-link-nav-cta-item-link::after {
    width: 7vw;
    height: 7vw;
    right: 4vw;
  }
}

/* ---------------------------
こんなお悩みはありませんか
--------------------------- */

.worries {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-color: #e6f8ff;
  overflow: hidden;
}

.worries::before {
  position: absolute;
  top: -6%;
  right: 20.5%;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: center center / contain url(/-/Media/com/milmag/top/20221115/worries-bg.png) no-repeat;
  width: 305px;
  height: 240px;
}

.worries-title {
  position: relative;
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  line-height: 1.3;
  text-shadow: var(--text-shadow);
}

.worries-title span {
  font-size: 1.2em;
}

.worries-img {
  text-align: center;
  margin-top: -5%;
  margin-bottom: 6rem;
}

.worries-action {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.worries-action-inner {
  display: grid;
  grid-template-areas: "image title" "image content";
  background-color: var(--white);
  border: solid 1px var(--black);
  border-radius: 3rem;
  padding: 5rem 11rem 4.7rem 11rem;
}

.worries-action-img {
  grid-area: image;
  text-align: center;
}

.worries-action-title {
  grid-area: title;
}

.worries-action-title-sub {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.worries-action-title-sub::before,
.worries-action-title-sub::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 27px;
  height: 53px;
}

.worries-action-title-sub::before {
  background: center center / contain url(/-/Media/com/milmag/top/20221115/worries-action-title-icon-01.svg) no-repeat;
}

.worries-action-title-sub::after {
  background: center center / contain url(/-/Media/com/milmag/top/20221115/worries-action-title-icon-02.svg) no-repeat;
}

.worries-action-title-main img {
  width: 220px;
  display: block;
  margin: 0 auto 20px;
}

.worries-action-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.worries-action-text {
  margin-bottom: 2.8rem;
}

.worries-action-btn {
  display: block;
  padding: 2rem calc(1rem + 24px) 2rem 2rem;
}

.worries-action-content .worries-action-btn:first-of-type {
  background-color: #339fda;
  margin-bottom: 1rem;
}

.worries-action-content .worries-action-btn:last-of-type {
  background-color: var(--blue);
}

@media screen and (min-width: 769px) {
  .worries-img {
    padding-left: 3%;
  }
  .worries-action-title {
    margin-top: 3%;
  }
  .worries-action-title-sub {
    padding-left: 2%;
    letter-spacing: 0.04em;
  }
  .worries-action-title-main {
    /*		padding-right: 8%;*/
  }
  .worries-action-content {
    position: relative;
    top: -2%;
    right: 3%;
    max-width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .worries {
    padding-top: 9vw;
    padding-bottom: 10.5vw;
  }
  .worries::before {
    top: -7%;
    right: -3%;
    width: 40vw;
    height: 32vw;
  }
  .worries-title {
    font-size: 5vw;
  }
  .worries-img {
    margin-top: -7vw;
    margin-bottom: 6.5vw;
  }

  .worries-action-inner {
    grid-template-areas: "title title" "image content";
    padding: 6vw 4vw 7.6vw;
  }
  .worries-action-title {
    margin-bottom: 6.9vw;
  }
  .worries-action-title-sub {
    font-size: 3.7vw;
    margin-bottom: 2vw;
    line-height: 1.9;
  }
  .worries-action-title-sub::before,
  .worries-action-title-sub::after {
    width: 4.8vw;
    height: 9vw;
  }
  .worries-action-title-main img {
    width: 36vw;
    margin: auto;
  }
  .worries-action-img {
    width: 34vw;
  }
  .worries-action-img > img {
    width: 78%;
  }
  .worries-action-content {
    padding-top: 4vw;
    padding-left: 1.5vw;
    width: 49vw;
  }
  .worries-action-text {
    margin-bottom: 8.5vw;
  }
  .worries-action-text > img {
    width: 33vw;
    max-width: none;
  }
  .worries-action-btn {
    font-size: 3.7vw;
    padding: 4.1vw 6vw 4.1vw 4vw;
  }
  .worries-action-content .worries-action-btn:first-of-type {
    margin-bottom: 4.4vw;
  }
}

/* ---------------------------
便秘（コロコロ便）になるメカニズム
--------------------------- */

.mechanism {
  background-color: var(--cleam);
  padding-top: 10rem;
  padding-bottom: 13rem;
}

.mechanism-content {
  background-color: var(--white);
  border: solid 1px var(--black);
  border-radius: 3rem;
  padding: 5rem 3rem 6rem;
}

.mechanism-text {
  max-width: 740px;
  font-size: 1.8rem;
  margin: 0 auto 3rem;
}

.mechanism-img {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .mechanism {
    padding-top: 12.2vw;
    padding-bottom: 21vw;
  }
  .mechanism-content {
    border-radius: 4vw;
    padding: 8.4vw 1vw 11vw 1vw;
  }
  .mechanism-text {
    width: 92%;
    font-size: 3.6vw;
    line-height: 1.7;
    margin: 0 auto 4.1vw;
  }
  .mechanism-img {
    width: 92%;
    margin: auto;
  }
}

/* ---------------------------
体内の働き
--------------------------- */

.flow {
  position: relative;
  background-position: center top;
  background-size: cover;
  background-image: url(/-/Media/com/milmag/top/20221115/flow-bg.png);
  background-repeat: no-repeat;
  padding-top: 13rem;
  padding-bottom: 8rem;
  margin-top: -6rem;
}

.flow-title {
  position: relative;
  padding-top: 2rem;
  margin-bottom: 5.5rem;
}

.flow-title > span {
  position: absolute;
  top: -5%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.5em;
  color: var(--skyblue);
  text-shadow: none;
  transform: translateX(-50%);
}

.flow-title > span::before,
.flow-title > span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 32px;
}

.flow-title > span::before {
  background: center center / contain url(/-/Media/com/milmag/top/20221115/flow-title-before-icon.svg) no-repeat;
  margin-right: 1rem;
}

.flow-title > span::after {
  background: center center / contain url(/-/Media/com/milmag/top/20221115/flow-title-after-icon.svg) no-repeat;
  margin-left: 1rem;
}

.flow-grid {
  display: grid;
  gap: 4rem;
  list-style: none;
  padding-left: 0;
}

.flow-grid-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: solid 1px var(--black);
  border-radius: 3rem;
  margin-top: 3rem;
  padding: 5.5rem 4rem 3.5rem;
}

.flow-grid .flow-grid-item:not(:last-child):before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.flow-grid .flow-grid-item:first-child {
  grid-area: step1;
}

.flow-grid .flow-grid-item:first-child::before {
  top: 50%;
  right: -3.5rem;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #b2e4ff;
  transform: translateY(-50%);
}

.flow-grid .flow-grid-item:nth-child(2) {
  grid-area: step2;
}

.flow-grid .flow-grid-item:nth-child(2)::before {
  bottom: -3.5rem;
  left: 50%;
  border-width: 20px 20px 0 20px;
  border-color: #b2e4ff transparent transparent transparent;
  transform: translateX(-50%);
}

.flow-grid .flow-grid-item:nth-child(3) {
  grid-area: step3;
}

.flow-grid .flow-grid-item:nth-child(3)::before {
  top: 50%;
  left: -3.5rem;
  border-width: 20px 20px 20px 0;
  border-color: transparent #b2e4ff transparent transparent;
  transform: translateY(-50%);
}

.flow-grid .flow-grid-item:last-child {
  grid-area: step4;
}

.flow-grid-item-title {
  position: absolute;
  top: -3px;
  left: 5px;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}

.flow-grid-item-title-inner {
  position: relative;
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 800;
  background-color: #ff8cb3;
  border: solid 3px var(--black);
  border-radius: 100vh;
  line-height: 1;
  padding: 1rem 3.5rem 1rem 5.5rem;
  letter-spacing: 0.08em;
}

.flow-grid-item-title-inner::before,
.flow-grid-item-title-inner::after {
  content: "";
  position: absolute;
  width: calc(3px * 2);
  height: 3px;
  background-color: #ff8cb3;
}

.flow-grid-item-title-inner::before {
  top: -3px;
  right: 35%;
}

.flow-grid-item-title-inner::after {
  bottom: -3px;
  left: 25%;
}

.flow-grid-item-title-inner span {
  font-size: 1.5em;
  letter-spacing: 0;
  vertical-align: bottom;
}

.flow-grid-item-text {
  position: relative;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.flow-grid-item-text .bg-water {
  position: relative;
}

.flow-grid-item-text .bg-water::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 32px;
  height: 41px;
  background: center center / contain url(/-/Media/com/milmag/top/20221115/water-icon.png) no-repeat;
  vertical-align: middle;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.flow-grid-item-img {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .flow-grid {
    grid-template-areas: "step1 step2" "step4 step3";
    gap: 4rem;
  }
  .flow-grid-item-title-inner span {
    position: relative;
    right: 2%;
  }
}

@media screen and (max-width: 768px) {
  .flow {
    background-image: url(/-/Media/com/milmag/top/20221115/flow-bg-sp.png);
    margin-top: -11vw;
    padding-top: 21vw;
    padding-bottom: 10.5vw;
  }
  .flow-title {
    padding-top: 5.6vw;
    margin-bottom: 2vw;
  }
  .flow-title > span::before,
  .flow-title > span::after {
    width: 2.6vw;
    height: 5.3vw;
  }
  .flow-grid {
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    row-gap: 5vw;
    column-gap: 0;
  }
  .flow-grid-item {
    border-radius: 4vw;
    margin-top: 10vw;
  }
  .flow-grid .flow-grid-item:first-child::before,
  .flow-grid .flow-grid-item:nth-child(3)::before {
    top: unset;
    bottom: -6.8vw;
    left: 50%;
    right: unset;
    border-width: 5vw 5vw 0 5vw;
    border-color: #b2e4ff transparent transparent transparent;
    transform: translateX(-50%);
  }
  .flow-grid .flow-grid-item:first-child {
    grid-column: 1;
    grid-row: 1;
    padding: 8vw 4.6vw 7.8vw;
  }
  .flow-grid .flow-grid-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    padding: 9.3vw 4.6vw 6.2vw;
  }
  .flow-grid .flow-grid-item:nth-child(2)::before {
    border-width: 5vw 5vw 0 5vw;
    bottom: -6.8vw;
  }
  .flow-grid .flow-grid-item:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    padding: 9.3vw 4.6vw 4.8vw;
  }
  .flow-grid .flow-grid-item:last-child {
    grid-column: 1;
    grid-row: 4;
    padding: 9.3vw 4.6vw 4.8vw;
  }
  .flow-grid-item-title {
    top: -1.5vw;
  }
  .flow-grid-item-title-inner {
    font-size: 4.5vw;
    padding: 2vw 6vw;
  }

  .flow-grid-item-text {
    font-size: 3.7vw;
    line-height: 1.8;
    margin-bottom: 5vw;
  }
  .flow-grid-item-text .bg-water::before {
    width: 6.6vw;
    height: 8.4vw;
  }
  .flow-grid-item-img > img {
    width: 84%;
  }
}

/* ---------------------------
商品特徴
--------------------------- */

.feature {
  counter-reset: feature-point 0;
  background-color: #ffeaf1;
  padding-top: 8rem;
  padding-bottom: 11.5rem
}

.feature-title {
  margin-bottom: 9rem;
}

.feature-point {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: center center / contain url(/-/Media/com/milmag/top/20221115/feature-bg.png) no-repeat;
  margin-left: auto;
  margin-right: auto;
}

.feature-point::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.feature-point-first {
  margin-bottom: 7.5rem;
}

.feature-point-title {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 2.4rem;
  color: #4ab5f0;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
  align-items: center;
  width: 120px;
  height: 120px;
  background: center center / contain url(/-/Media/com/milmag/top/20221115/feature-point-bg.png) no-repeat;
  transform: translate(-50%, -25%);
  padding-top: 8px;
}

.feature-point-first .feature-point-title {
  top: -8px;
}

.feature-point-title::after {
  content: counter(feature-point) "";
  counter-increment: feature-point 1;
  font-size: 1.2em;
}

.feature-point-content {
  position: absolute;
  width: 100%;
  left: 50%;
  text-align: center;
}

.feature-point-first .feature-point-content {
  top: 53%;
}

.feature-point-second .feature-point-content {
  top: 56%;
}

.feature-inner .feature-point:first-of-type .feature-point-content {
  transform: translate(-50%, -50%);
}

.feature-inner .feature-point:nth-of-type(2) .feature-point-content {
  transform: translate(-50%, -100%);
}

.feature-point-text {
  font-size: 2rem;
  color: var(--darkblue);
  margin-bottom: 3rem;
}

.feature-point-text span {
  display: block;
  font-size: 1.5em;
  font-weight: 800;
  text-shadow: var(--text-shadow);
  margin-top: 0.8rem;
}

.feature-point-text small {
  font-size: 0.5em;
  vertical-align: text-top;
}

.feature-point-content img {
  max-width: 382px;
}

.feature-cta-inner {
  max-width: 880px;
  position: relative;
  z-index: 1;
  margin-top: -22rem;
}

.feature-cta {
  background-color: var(--white);
  border: solid 1px var(--black);
  border-radius: 3rem;
  padding: 5.5rem 6rem 3rem;
}

.feature-cta-first {
  margin-bottom: 4rem;
}

.feature-cta-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-cta-title-type {
  color: var(--white);
  font-size: 2rem;
  border-radius: 100vh;
  padding: 0.5rem 3rem;
}

.feature-cta-title-main {
  font-size: 3rem;
  font-weight: 800;
  color: var(--darkblue);
  margin-left: 2rem;
  margin-right: 2rem;
}

.feature-cta-first .feature-cta-title-type {
  background-color: #339fda;
}

.feature-cta-second .feature-cta-title-type {
  background-color: #ff8cb3;
}

.feature-cta-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 0.7rem;
}

.feature-cta-flex-item {
  width: 54%;
}

.feature-cta-flex-item > img {
  position: relative;
}

.feature-cta-first .feature-cta-flex-item > img {
  left: 10%;
}

.feature-cta-second .feature-cta-flex-item > img {
  left: 13%;
}

.feature-cta-flex-item-point {
  width: 46%;
  margin-bottom: 9%;
}

.feature-cta-flex-item-point-item {
  position: relative;
  font-size: 2rem;
  padding-left: 5rem;
}

.feature-cta-flex-item-point .feature-cta-flex-item-point-item:not(:last-child) {
  margin-bottom: 2rem;
}

.feature-cta-flex-item-point-item::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 37px;
  height: 34px;
  background: center center / contain url(/-/Media/com/milmag/top/20221115/check-icon.png) no-repeat;
  vertical-align: middle;
}

.feature-cta-flex-item-point-item small {
  font-size: 0.5em;
  vertical-align: text-top;
}

.feature-cta-flex-item-point-item .text-pink {
  display: inline-block;
  background-color: #ffeaf1;
  border-radius: 100vh;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
}

.feature-cta-btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.feature-cta-btn {
  width: 300px;
  padding: 2rem calc(1rem + 24px) 2rem 3rem;
  margin: 0 1rem 2rem;
}

.feature-cta-btn-area .feature-cta-btn:first-child {
  background-color: #339fda;
}

.feature-cta-btn-area .feature-cta-btn:last-child {
  background-color: var(--blue);
}

.feature-cta-text {
  position: relative;
  display: flex;
  max-width: 740px;
  font-size: 1.8rem;
  color: var(--blue);
  background-color: var(--skyblue);
  border-radius: 4rem;
  margin: -2rem auto 4rem;
  padding: 3.5rem 2rem 2.5rem;
}

.feature-cta-text::before {
  content: "";
  position: absolute;
  bottom: 90%;
  right: 5%;
  display: inline-block;
  width: 79px;
  height: 65px;
  background: center center / contain url(/-/Media/com/milmag/top/20221115/feature-cta-text-bg.png) no-repeat;
  vertical-align: middle;
}

.feature-cta-text p {
  width: 75%;
  padding-top: 1.4%;
  padding-left: 4%;
}

.feature-cta-text-icon {
  width: 35%;
  text-align: center;
}

.feature-remarks {
  counter-reset: number 0;
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.feature-remarks-item {
  position: relative;
  padding-left: 2.6em;
}

.feature-remarks-item::before {
  content: "※" counter(number) "：";
  counter-increment: number 1;
  position: absolute;
  left: 0;
}

@media screen and (max-width: 768px) {
  .feature {
    padding-top: 14vw;
    padding-bottom: 24vw;
  }
  .feature-title {
    margin-bottom: 14.6vw;
  }
  .feature-point {
    width: 92%;
    max-width: none;
  }
  .feature .feature-point:first-of-type {
    margin-bottom: 7vw;
  }
  .feature-point-title {
    font-size: 3.6vw;
    width: 17.4vw;
    height: 17.4vw;
  }
  .feature-point-first .feature-point-title {
    top: -0.4vw;
    padding-top: 2.1vw;
  }
  .feature-inner .feature-point:first-of-type .feature-point-content {
    transform: translate(-50%, -53%);
  }
  .feature-inner .feature-point:nth-of-type(2) .feature-point-content {
    transform: translate(-50%, -107%);
  }
  .feature-point-text {
    font-size: 4vw;
    margin-bottom: 2.8vw;
  }
  .feature-point-content img {
    width: 80.5%;
    max-width: inherit;
  }
  .feature-point-text span {
    margin-top: 1.1vw;
  }
  .feature-cta-inner {
    margin-top: -38vw;
  }
  .feature-cta {
    padding: 5vw 4vw 6vw;
  }
  .feature-cta-first {
    margin-bottom: 6.6vw;
  }
  .feature-cta-title {
    margin-bottom: 0;
  }
  .feature-cta-title-type {
    font-size: 3.8vw;
    line-height: 1;
    padding: 1.5vw 6vw;
  }
  .feature-cta-title-main {
    font-size: 6vw;
    margin-left: 2vw;
    margin-right: 2vw;
  }
  .feature-cta-title > img {
    width: 14.5vw;
  }
  .feature-cta-flex {
    margin-bottom: 3vw;
  }
  .feature-cta-flex-item {
    width: 100%;
    text-align: center;
  }
  .feature-cta-first .feature-cta-flex-item {
    padding-top: 2.5%;
    margin-bottom: 1.5vw;
  }
  .feature-cta-first .feature-cta-flex-item > img {
    width: 76%;
    left: 8%;
  }
  .feature-cta-second .feature-cta-flex-item {
    padding-top: 1.1%;
  }
  .feature-cta-second .feature-cta-flex-item > img {
    left: 10%;
    width: 78%;
  }
  .feature-cta-flex-item-point {
    width: 100%;
    margin-top: -3.5vw;
    margin-bottom: 3.5vw;
  }
  .feature-cta-first .feature-cta-flex-item-point {
    margin-top: -3.5vw;
  }
  .feature-cta-second .feature-cta-flex-item-point {
    margin-top: -2.1vw;
    margin-bottom: 5.9vw;
  }
  .feature-cta-flex-item-point-item {
    font-size: 4.3vw;
    padding-left: 10vw;
  }
  .feature-cta-flex-item-point .feature-cta-flex-item-point-item:not(:last-child) {
    margin-bottom: 2.1vw;
  }
  .feature-cta-flex-item-point-item::before {
    width: 7vw;
    height: 6.2vw;
  }
  .feature-cta-flex-item-point-item .text-pink {
    font-size: 3.5vw;
    padding: 1.2vw 4.1vw;
    margin-top: 0;
    margin-left: 2.3vw;
  }
  .feature-cta-btn-area > .feature-cta-btn:not(:last-child) {
    margin-bottom: 4.4vw;
  }
  .feature-cta-btn-area > .feature-cta-btn:last-child {
    margin-bottom: 0;
  }
  .feature-cta-btn {
    width: 88%;
    font-size: 3.7vw;
    padding: 4vw 9vw;
  }

  .feature-cta-text {
    max-width: none;
    font-size: 3.3vw;
    border-radius: 4vw;
    margin: -2.4vw auto 7vw;
    padding: 3.8vw 3vw 6vw;
  }
  .feature-cta-text::before {
    bottom: 95%;
    width: 15vw;
    height: 10vw;
  }
  .feature-cta-text p {
    line-height: 1.7;
  }
  .feature-cta-text-icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .feature-cta-text-icon > img {
    width: 80%;
  }
  .feature-remarks {
    margin-top: 5vw;
  }
  .feature-remarks-item {
    font-size: 3vw;
  }
}

/* ---------------------------
ご愛用いただいている皆さまの声
--------------------------- */

.voice {
  background-color: var(--cleam);
  padding-top: 7.5rem;
  padding-bottom: 11.5rem;
}

.voice-inner {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.voice-content {
  display: flex;
  justify-content: space-between;
}

.voice-inner .voice-content:not(:last-child) {
  margin-bottom: 2.5rem;
}

.voice-content-text {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--darkblue);
  font-size: 2rem;
}

.voice-content-text > p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
}

.voice-inner .voice-content:nth-child(even) {
  flex-direction: row;
}

.voice-inner .voice-content:nth-child(odd) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .voice {
    padding-top: 11.4vw;
    padding-bottom: 24vw;
  }
  .voice-title {
    margin-bottom: 7vw;
  }
  .voice-inner .voice-content:not(:last-child) {
    margin-bottom: 6.4vw;
  }
  .voice-content-icon {
    width: 34%;
    text-align: center;
    padding-top: 1%;
  }
  .voice-content-icon > img {
    width: 79%;
  }
  .voice-content-text {
    width: 76%;
    font-size: 3.5vw;
  }
  .voice-inner .voice-content:nth-child(even) .voice-content-text > p {
    left: 54%;
  }
  .voice-inner .voice-content:nth-child(odd) .voice-content-text > p {
    left: 45%;
  }
  .voice-content-text > p {
    line-height: 1.7;
  }
}

/* ---------------------------
よくあるご質問
--------------------------- */

.faq {
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: -6.3rem;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 6.3rem;
  background: center top / cover url(/-/Media/com/milmag/top/20221115/faq-bg-wave-01.png) no-repeat;
  vertical-align: middle;
}

.faq-inbg {
  background-color: #4ab5f0;
  padding-bottom: 15rem;
  padding-top: 8rem;
}

.faq-title {
  margin-bottom: 6rem;
}

.accordion-title,
.accordion-content {
  background-color: var(--white);
  border: solid 1px var(--black);
  border-radius: 3rem;
}

.accordion-title {
  position: relative;
  font-size: 2rem;
  color: var(--darkblue);
  margin-bottom: 1.8rem;
  padding: 2.65rem 5rem;
  cursor: pointer;
}

.accordion-title::before,
.accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 30px;
  height: 2px;
  background-color: #4ab5f0;
}

.accordion-title::before {
  transform: translateY(-50%);
}

.accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s ease;
}

.accordion-title.close::after {
  opacity: 0;
}

.accordion-title .q-icon::before {
  content: "Q.";
  font-size: 3rem;
  font-weight: 800;
  color: #4ab5f0;
  margin-right: 1rem;
}

.accordion-content {
  font-size: 1.8rem;
  padding: 1.5rem 5rem 3rem;
  margin-bottom: 3rem;
}

.accordion-content::before {
  content: "A.";
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #4ab5f0;
}

@media screen and (max-width: 768px) {
  .faq {
    margin-bottom: -3vw;
  }
  .faq::before {
    height: 20vw;
    top: -10vw;
    background: center top / cover url(/-/Media/com/milmag/top/20221115/faq-bg-wave-sp.png) no-repeat;
    bottom: calc(100% - 15vw);
  }
  .faq-inbg {
    padding-top: 10vw;
    padding-bottom: 1vw;
  }
  .faq-inner {
    position: relative;
    padding-top: 24vw;
  }
  .faq-title {
    position: absolute;
    bottom: calc(100% - 15vw);
    left: 0;
    width: 100%;
    margin-bottom: 0;
  }
  .accordion-title,
  .accordion-content {
    border-radius: 4vw;
  }
  .accordion-title {
    font-size: 4.1vw;
    margin-bottom: 4.3vw;
    padding: 3.9vw 10vw 3.9vw 4.8vw;
    display: flex;
  }
  .accordion-title::before,
  .accordion-title::after {
    right: 4vw;
    width: 4.5vw;
  }
  .accordion-title .q-icon {
    line-height: 1;
  }
  .accordion-title .q-icon::before {
    font-size: 5.2vw;
    margin-right: 2.5vw;
  }
  .accordion-content {
    font-size: calc(0.33625rem + 3.285vw);
    line-height: 1.9;
    padding: 4.2vw 5.1vw 4.3vw;
    margin-bottom: 6.7vw;
  }
  .accordion-content::before {
    font-size: 5.2vw;
    line-height: 1.5;
  }
}

/* ---------------------------
ミルマグの歴史
--------------------------- */

.history {
  position: relative;
  background: center top / cover url(/-/Media/com/milmag/top/20221115/history-bg.png) no-repeat;
  /*	padding-top: 15rem;*/
  padding-top: 8rem;
  padding-bottom: 16rem;
  margin-top: -8rem;
  z-index: 1;
}
.history-inbg {
  padding-top: 8rem;
}

.history-inner {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.history-title {
  margin-bottom: 6rem;
}

.history-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.history-inner .history-content:not(:last-child):before {
  content: "";
  position: absolute;
  width: 300px;
  height: 2px;
  background-color: var(--black);
  z-index: -1;
}

.history-inner .history-content:first-of-type::before {
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%) rotate(38deg);
}

.history-inner .history-content:nth-of-type(2)::before {
  bottom: -4%;
  right: 50%;
  transform: translateX(50%) rotate(-38deg);
}

.history-inner .history-content:nth-child(even) {
  flex-direction: row;
}

.history-inner .history-content:nth-child(odd) {
  flex-direction: row-reverse;
}

.history-inner .history-content:not(:last-child) {
  margin-bottom: 2rem;
}

.history-content-img {
  width: 46%;
  text-align: center;
}

.history-inner .history-content:nth-child(odd) .history-content-img {
  padding-right: 4%;
}

.history-content-text {
  width: 54%;
  font-size: 2.2rem;
  padding-bottom: 2%;
}

.history-inner .history-content:nth-child(odd) .history-content-text {
  padding-left: 5%;
}

.history-content-text small {
  display: block;
  font-size: 0.7em;
}

@media screen and (max-width: 768px) {
  .history {
    background: center bottom / cover url(/-/Media/com/milmag/top/20221115/history-bg-sp.png) no-repeat;
    margin-top: 0;
    padding-top: calc(13vw + 4.2vw);
    padding-bottom: 22vw;
  }
  .history::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 13vw;
    background: center bottom / cover url(/-/Media/com/milmag/top/20221115/faq-bg-wave-sp-end.png) no-repeat;
  }
  .history-inbg {
    padding-top: 10vw;
  }
  .history-title {
    font-size: 7.4vw;
    margin-bottom: 12vw;
  }
  .history-inner .history-content:first-of-type::before {
    bottom: -9%;
    transform: translateX(-50%) rotate(45deg);
  }
  .history-inner .history-content:nth-of-type(2)::before {
    bottom: -7%;
    transform: translateX(50%) rotate(-45deg);
  }
  .history-inner .history-content:not(:last-child) {
    margin-bottom: 7vw;
  }
  .history-content-img {
    width: 50%;
  }
  .history-content-img > img {
    width: 100%;
  }
  .history-inner .history-content:nth-child(odd) .history-content-img {
    padding-right: 0;
  }
  .history-content-text {
    width: 50%;
    font-size: 4vw;
    line-height: 1.8;
    padding-bottom: 2%;
  }
  .history-inner .history-content:nth-child(even) .history-content-text {
    padding-top: 3%;
    padding-left: 4%;
  }
  .history-inner .history-content:nth-child(odd) .history-content-text {
    padding-top: 10%;
    padding-left: 1%;
  }
}

/* ---------------------------
TVCM
--------------------------- */

.tvcm {
  position: relative;
  background-color: #ffeaf1;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 0;
}

.tvcm-inner {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.tvcm-title {
  font-size: 5rem;
  text-shadow: none;
}

.tvcm-content {
  position: relative;
  width: 100%;
}

.tvcm-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 690px;
  margin: auto;
  transition: opacity 0.3s ease;
}
.tvcm-content a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .tvcm {
    padding-top: 14vw;
  }
  .tvcm-inner {
    max-width: none;
  }
  .tvcm-title {
    font-size: 7.9vw;
    margin-bottom: 9.1vw;
  }
  .tvcm-content a {
    width: 100%;
  }
}

/* ---------------------------
OTHER
--------------------------- */

.other {
  position: relative;
  background-color: var(--cleam);
  z-index: 1;
  padding-bottom: 12rem;
}

.other::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 7vw;
  background: center top / cover url(/-/Media/com/milmag/top/20221115/tvcm-bg.png) no-repeat;
  vertical-align: middle;
}

.other-inner {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.other-banner {
  /*	margin-bottom: 8rem;*/
}

.other-banner > a {
  transition: opacity 0.3s ease;
}

.other-banner > a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .other {
    padding-top: 12.8vw;
    padding-bottom: 12vw;
  }
  .other::before {
    content: none;
  }
  .other-inner {
    max-width: none;
  }
  .other-banner {
    /*		margin-bottom: 16vw;*/
  }
}

body.state-modal .modal {
  left: 0;
  padding: 0 0 0;
}

body.state-modal .modal::after {
  opacity: 0.5;
}

body.state-modal .modal-bg {
  left: 0;
}

.modal {
  position: relative;
  position: absolute;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10000;
  left: -200%;
}

.modal::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal-bg {
  position: fixed;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0;
  z-index: 2;
  left: -100%;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal-box {
  width: 864px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
}

.modal-box-movie {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}

.modal-box-movie iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.modal-close {
  display: block;
  width: 44px;
  height: 44px;
  position: absolute;
  top: -60px;
  right: 0px;
  z-index: 5;
}

.modal-close a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/-/Media/com/repairone/top/20220725/icon_modal_close.png) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transition: opacity 0.3s 0s ease;
  -moz-transition: opacity 0.3s 0s ease;
  -ms-transition: opacity 0.3s 0s ease;
  -o-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}

@media screen and (min-width: 1024px) {
  .modal-close a:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.2s 0s ease;
    -moz-transition: opacity 0.2s 0s ease;
    -ms-transition: opacity 0.2s 0s ease;
    -o-transition: opacity 0.2s 0s ease;
    transition: opacity 0.2s 0s ease;
  }
}

@media screen and (max-width: 768px) {
  .modal-box {
    width: 90%;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    top: -54px;
  }
}

#milmagpkg {
  background-image: repeating-linear-gradient(-45deg, #ffeaf1, #ffeaf1 6px, #fffef4 6px, #fffef4 12px);
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.milmagpkg-content {
  background-color: var(--white);
  border: solid 1px var(--black);
  border-radius: 3rem;
  padding: 5rem 4rem;
}

.milmagpkg-content ul {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 940px) {
  .milmagpkg-content ul {
    gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  #milmagpkg {
    padding-top: 10.5vw;
    padding-bottom: 10.5vw;
  }
  .milmagpkg-content {
    border-radius: 4vw;
    padding: 6vw 4vw;
  }
  .milmagpkg-content ul {
    display: block;
    padding: 0 5vw;
  }
  .milmagpkg-content ul li img {
    display: block;
    margin: 0 auto;
  }
  .milmagpkg-content ul li:last-child {
    margin-top: 5vw;
  }
}
