@charset "UTF-8";

@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap);

@font-face {
  font-family: 'Adobe Garamond Pro Italic';
  font-style: normal;
  font-weight: normal;
  src: local("Adobe Garamond Pro Italic"), url("/mens/src/fonts/AGaramondPro-Italic.woff") format("woff");
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

ul {
  list-style-type: none;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  color: #303030;
  font-size: 62.5%;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  max-width: 100%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 1200px) {
  html {
    min-width: 1200px;
  }
}

@media screen and (max-width: 900px) {
  html {
    min-width: 100%;
  }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  html {
    overflow-x: hidden;
  }
}

ul {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.overflow {
  overflow: hidden;
}

.mobile-show {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .mobile-show {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-inline {
    display: inline;
  }
}

input[type="submit"],
input[type="button"] {
  border-style: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  section {
    width: auto;
    padding-left: 4% !important;
    padding-right: 4% !important;
  }
}

img.cover,
video.cover {
  -o-object-fit: cover;
  object-fit: cover;
}

/** Anchor offset **/
:target {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  :target {
    top: -90px;
  }
}

[class^="btn-"] {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 200px;
  max-width: 200px;
  margin: 25px 37.5px 25px 0;
  text-transform: uppercase;
  border: 1px solid currentColor;
}

@media screen and (max-width: 767px) {
  [class^="btn-"] {
    margin: 25px 0;
  }
}

.btn-6 {
  color: tint(#4b54bc);
}

.btn-6 span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #5860c1;
  -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -o-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.btn-6:hover {
  color: tint(#4b54bc, 75%);
}

.btn-6:hover span {
  width: 225%;
  height: 450px;
}

.btn-6:active {
  background-color: #4b54bc;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

  .menu-trigger,
  .menu-trigger span {
    display: none;
  }
}

.menu-trigger {
  position: relative;
  width: 40px;
  height: 40px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #1f2679;
  border-radius: 7px;
}

.menu-trigger span:nth-of-type(1) {
  top: 5px;
}

.menu-trigger span:nth-of-type(2) {
  top: 20px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  -ms-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  -ms-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

.page {
  padding-top: 120px;
}

@media screen and (max-width: 767px) {
  .page {
    margin-top: 72px;
    padding-top: 0;
  }
}

@media screen and (max-width: 320px) {
  .page {
    top: 72px;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .page {
    margin-top: 12.7vw;
  }
}

@media (min-width: 812px) and (max-width: 823px) and (orientation: landscape) {
  .page {
    margin-top: 0;
  }
}

.page__container {
  width: 950px;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .page__container {
    max-width: 100%;
    padding: 0 3%;
  }
}

@media screen and (max-width: 767px) {
  .page__container {
    width: auto;
  }
}

.header {
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .header {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
  }
}

.header__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #1f2679;
  height: 100%;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .header__info {
    display: none;
  }
}

.header__info .info {
  padding: 0 20px 0 10px;
}

.header__info .info:first-child {
  text-align: left;
}

.header__info .number {
  font-weight: 700;
  font-size: 31px;
  line-height: 1;
}

.header__info .email {
  font-size: 17px;
  position: relative;
}

.header__info .email::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  width: 100%;
  height: 1px;
  opacity: 0;
  -webkit-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

.header__info .email:hover::before {
  bottom: -3px;
  opacity: 1;
}

.header__logo {
  width: 125px;
  height: 50px;
}

@media screen and (max-width: 767px) {
  .header__logo {
    width: 100px;
    height: 40px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  padding: 0 0 0 20px;
}

@media screen and (max-width: 900px) {
  .header__nav {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .header__nav {
    width: auto;
    height: 100%;
    padding: 10px 4%;
  }
}

.header__menu {
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  text-align: center;
  margin-left: auto;
}

@media screen and (max-width: 900px) {
  .header__menu {
    display: none;
  }
}

.header__menu--sp {
  display: block;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 92.3%;
  top: 10.2vw;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid #ccc;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  overflow-y: scroll;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .header__menu--sp {
    top: 15vw;
    height: 100%;
  }
}

@media screen and (max-width: 375px) {
  .header__menu--sp {
    top: 16.5vw;
  }
}

@media screen and (max-width: 320px) {
  .header__menu--sp {
    top: 19.5vw;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .header__menu--sp {
    top: 9.5vw;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .header__menu--sp {
    top: 8.6vw;
  }
}

@media (max-width: 667px) and (orientation: landscape) {
  .header__menu--sp {
    top: 9.5vw;
  }
}

@media (max-width: 640px) and (orientation: landscape) {
  .header__menu--sp {
    top: 9.9vw;
  }
}

@media (max-width: 568px) and (orientation: landscape) {
  .header__menu--sp {
    top: 11vw;
  }
}

@media screen and (max-width: 900px) {
  .header__menu--sp.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 999;
  }
}

.header__menu>a,
.header__menu div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding-bottom: 10px;
  margin: 0 15px;
  line-height: 1.2;
}

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

  .header__menu>a,
  .header__menu div {
    margin: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 1px solid #ccc;
    font-size: 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 20px 25px;
  }

  .header__menu>a::after,
  .header__menu div::after {
    display: none !important;
  }

  .header__menu>a.flex,
  .header__menu div.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    color: #fff;
    padding-right: 3.33333vw;
  }

  .header__menu>a.bg-purple,
  .header__menu div.bg-purple {
    background: #7e1285;
    margin-right: 0 !important;
  }

  .header__menu>a.bg-primary,
  .header__menu div.bg-primary {
    background: #1f2679;
    /*stylelint-disable*/
    /*stylelint-enable*/
  }

  .header__menu>a.bg-primary .flex-col,
  .header__menu div.bg-primary .flex-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header__menu>a.bg-primary .number,
  .header__menu div.bg-primary .number {
    font-size: 7.73333vw;
  }

  .header__menu>a.bg-primary .email,
  .header__menu div.bg-primary .email {
    font-size: 4.26667vw;
  }
}

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

  .header__menu>a.bg-primary .email,
  .header__menu div.bg-primary .email {
    margin-right: 0;
  }
}

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

  .header__menu>a,
  .header__menu div {
    padding: 5.33333vw 6.66667vw;
    font-size: 5.33333vw;
  }
}

.header__menu a:last-child {
  margin-right: 30px;
}

.header__menu a:hover {
  color: #1f2679;
}

.header__menu a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  opacity: 0;
  bottom: 10px;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header__menu a:hover::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #1f2679;
  bottom: 0;
  opacity: 1;
}

.header__purple {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #7e1285;
  color: #fff;
  height: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.4));
  font-size: 16px;
  z-index: 1;
  position: relative;
  /* stylelint-disable */
  /* stylelint-enable */
}

@media screen and (max-width: 767px) {
  .header__purple {
    width: 100%;
    height: 2.66667vw;
  }
}

.header__purple--sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .header__purple--sp-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__purple a {
  margin: 0 20px;
  position: relative;
}

.header__purple a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  opacity: 0;
}

.header__purple a:hover::before {
  bottom: -2px;
  opacity: 1;
}

.header__purple a::after {
  display: inline-block;
  position: relative;
  content: '';
  background: url("/mens/src/img/arrow-right.png") no-repeat;
  background-position: center;
  margin-left: 5px;
  width: 15px;
  height: 15px;
}

.footer {
  width: 100%;
  height: 290px;
  background: #1f2679;
  padding: 30px 20px 30px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #ccc;
  border-top: 20px solid #7e1285;
}

@media screen and (max-width: 900px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    padding: 30px 4%;
  }
}

.footer__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 900px) {
  .footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 130px;
  font-size: 14px;
}

@media screen and (max-width: 900px) {
  .footer__nav {
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__nav li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__nav li:not(:last-child) {
  margin-right: 90px;
}

.footer__nav hr {
  border: 1px solid #ccc;
  border-bottom-width: 0;
}

@media screen and (max-width: 900px) {
  .footer__nav hr {
    margin-top: 15px;
  }
}

@media screen and (max-width: 900px) {
  .footer__nav a {
    margin: 15px 0 0;
  }
}

.footer__social-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__social-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

@media screen and (max-width: 900px) {
  .footer__social-wrap {
    margin: 5.33333vw 0 8vw;
  }
}

.footer__social-wrap a:not(:last-child) {
  margin-right: 7px;
}

.footer__social-wrap .facebook,
.footer__social-wrap .twitter,
.footer__social-wrap .instagram {
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
}

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

  .footer__social-wrap .facebook,
  .footer__social-wrap .twitter,
  .footer__social-wrap .instagram {
    width: 40px;
    height: 40px;
  }
}

.footer__social-wrap .facebook {
  background: url("/mens/src/img/facebook.png") no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer__social-wrap .facebook:hover {
  opacity: 0.7;
}

.footer__social-wrap .twitter {
  background: url("/mens/src/img/twitter.png") no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer__social-wrap .twitter:hover {
  opacity: 0.7;
}

.footer__social-wrap .instagram {
  background: url("/mens/src/img/instagram.png") no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer__social-wrap .instagram:hover {
  opacity: 0.7;
}

.footer__logo {
  width: 130px;
  height: 60px;
}

@media screen and (max-width: 900px) {
  .footer__logo {
    margin: 0 auto;
  }
}

.footer__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .footer__info {
    margin-top: 9.33333vw;
  }
}

.footer__info p:first-child {
  margin-right: 15px;
}

.footer__info .number {
  font-weight: 500;
  font-size: 31px;
  line-height: 1;
}

.footer__info .email {
  font-size: 17px;
}

.footer__info .email:hover {
  text-decoration: underline;
}

.footer__copyright {
  font-family: Helvetica, sans-serif;
  font-size: 11px;
  text-align: right;
  margin-top: auto;
}

@media screen and (max-width: 900px) {
  .footer__copyright {
    text-align: center;
    margin-top: 5.33333vw;
    font-size: 2.93333vw;
  }
}

.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  height: 60px;
  font-size: 31px;
  color: #fff;
  font-weight: 700;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .button {
    width: 100% !important;
    font-size: 6.13333vw;
    text-align: center;
  }
}

.button>span {
  z-index: 1;
}

.button__to-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #666;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  opacity: 0.6 !important;
}

.button--short {
  width: 490px;
}

.button--long {
  width: 700px;
}

.button--gradient {
  background: -webkit-gradient(linear, left top, right top, from(#6eb0f2), color-stop(65%, #4b54bc));
  background: -o-linear-gradient(left, #6eb0f2 0%, #4b54bc 65%);
  background: linear-gradient(90deg, #6eb0f2 0%, #4b54bc 65%);
  border-radius: 50px;
  position: relative;
}

.button--transparent {
  background: transparent;
  border: 1px solid #fff;
}

.button--transparent::before {
  display: none;
}

.button--orange {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#f69d44), to(#ee8d1a));
  background: -o-linear-gradient(left, #f69d44 0%, #ee8d1a 100%);
  background: linear-gradient(90deg, #f69d44 0%, #ee8d1a 100%);
  border: 1px solid #999;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.button--orange:hover {
  opacity: 0.6;
}

.button--orange::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/mens/src/img/arrow-right.png") no-repeat;
  background-size: cover;
  width: 8px;
  height: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 270px;
}

@media screen and (max-width: 900px) {
  .button--orange::after {
    right: 160px;
  }
}

@media screen and (max-width: 767px) {
  .button--orange::after {
    right: 15px;
  }
}

@media screen and (max-width: 320px) {
  .button--orange::after {
    right: 10px;
  }
}

.top__mv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 655px;
  background: url("/mens/src/img/top-mv.jpg") no-repeat;
  background-position: top left;
  background-size: cover;
  font-size: 27px;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .top__mv {
    height: 106.66667vw;
    background: url("/mens/src/img/top-mv-sp.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    font-size: 3.6vw;
  }
}

.top__mv>div.title-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top__mv p {
  margin: 20px 0;
}

@media screen and (max-width: 767px) {
  .top__mv p {
    margin: 40px 0 20px;
  }
}

.top__mv p.large {
  font-size: 50px;
  font-weight: 700;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .top__mv p.large {
    font-size: 6.66667vw;
  }
}

@media screen and (max-width: 767px) {
  .top__mv img.logo {
    width: 76vw;
    height: 32vw;
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .top__mv img.title-image {
    width: 40vw;
    height: 6.66667vw;
  }
}

.top__mv-social-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 150px;
  background: #fff;
  z-index: 998;
}

@media screen and (max-width: 767px) {
  .top__mv-social-container {
    width: 12vw;
    height: 34.66667vw;
    top: 40%;
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .top__mv-social-container {
    width: 6vw;
    height: 15.67vw;
    top: 55%;
  }
}

@media screen and (max-width: 767px) {
  .top__mv-social-container--lp {
    top: 23%;
  }
}

@media screen and (max-width: 360px) {
  .top__mv-social-container--lp {
    top: 26%;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .top__mv-social-container--lp {
    top: 53%;
  }
}

.top__mv-social-container .facebook,
.top__mv-social-container .twitter,
.top__mv-social-container .instagram {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 33.3%;
  border: 2px solid #fff;
  border-right: none;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

  .top__mv-social-container .facebook,
  .top__mv-social-container .twitter,
  .top__mv-social-container .instagram {
    border: 4px solid #fff;
  }
}

.top__mv-social-container .instagram {
  background: url("/mens/src/img/instagram.png") no-repeat;
  background-size: 75%;
  background-color: #e62585;
  border-top: none;
  background-position: center;
}

.top__mv-social-container .instagram:hover {
  opacity: 0.7;
}

.top__mv-social-container .facebook {
  background: url("/mens/src/img/facebook.png") no-repeat;
  background-size: 75%;
  background-color: #3a559f;
  background-position: center;
}

.top__mv-social-container .facebook:hover {
  opacity: 0.7;
}

.top__mv-social-container .twitter {
  background: url("/mens/src/img/twitter.png") no-repeat;
  background-size: 75%;
  border-top: none;
  background-color: #1da1f2;
  background-position: center;
}

.top__mv-social-container .twitter:hover {
  opacity: 0.7;
}

.top__mv-social {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top__feature-text {
  width: 470px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .top__feature-text {
    width: auto;
  }
}

.top__feature-image {
  position: relative;
  width: 440px;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .top__feature-image img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .top__feature-image {
    width: 100%;
  }

  .top__feature-image img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .top__feature-image img {
    margin-top: 6.66667vw;
    height: 58.66667vw;
  }
}

@media screen and (max-width: 767px) and (max-width: 1023px) and (orientation: landscape) {
  .top__feature-image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
  }
}

.top__feature-image span {
  display: block;
  position: absolute;
  bottom: -110px;
  right: -30px;
  color: #1f2679;
  font-family: "Adobe Garamond Pro Italic", sans-serif;
  font-size: 242px;
  text-shadow: 2px 4px 5px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 767px) {
  .top__feature-image span {
    right: -20px;
    bottom: -90px;
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .top__feature-image span {
    bottom: -25vw;
  }
}

@media (width: 812px) and (orientation: landscape) {
  .top__feature-image span {
    bottom: -5vw;
  }
}

.top__movie {
  padding: 90px 0 0;
}

@media screen and (max-width: 767px) {
  .top__movie {
    padding: 40px 0 0;
  }
}

.top__movie .top__movie-box {
  position: relative;
  padding-top: 120%;
}

.top__movie .top__movie-box video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

.top__movie .top__movie-store-search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 70px;
  margin: 40px auto 0;
  border-radius: 10px;
  background-color: #5860c1;
}

@media screen and (max-width: 767px) {
  .top__movie .top__movie-store-search {
    width: calc(100vw - 50px);
    height: 60px;
    margin: 20px auto 0;
  }
}

.top__movie .top__movie-store-search span {
  display: block;
  margin-left: 23px;
  color: #fff;
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .top__movie .top__movie-store-search span {
    margin-left: 28px;
    font-size: 21px;
  }
}

.top__movie .top__movie-store-search::after {
  display: block;
  content: '';
  width: 10px;
  height: 17px;
  margin-left: 23px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211px%22%20height%3D%2217px%22%3E%3Cdefs%3E%3Cfilter%20id%3D%22Filter_0%22%3E%20%3CfeFlood%20flood-color%3D%22rgb(255%2C%20255%2C%20255)%22%20flood-opacity%3D%221%22%20result%3D%22floodOut%22%20%2F%3E%20%3CfeComposite%20operator%3D%22atop%22%20in%3D%22floodOut%22%20in2%3D%22SourceGraphic%22%20result%3D%22compOut%22%20%2F%3E%20%3CfeBlend%20mode%3D%22normal%22%20in%3D%22compOut%22%20in2%3D%22SourceGraphic%22%20%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cg%20filter%3D%22url(%23Filter_0)%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(128%2C%2032%2C%20119)%22%20d%3D%22M6.038%2C8.369%20L0.287%2C2.273%20L2.435%2C-0.005%20L10.335%2C8.369%20L2.435%2C16.743%20L0.287%2C14.467%20L6.038%2C8.369%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .top__movie .top__movie-store-search::after {
    width: 8px;
    height: 13px;
    margin-left: 28px;
  }
}

.top__features {
  padding: 90px 0 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top__features {
    padding: 50px 0 100px;
  }
}

.top__features::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 63%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #eee;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .top__features::after {
    display: none;
  }
}

.top__features ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .top__features ul {
    margin-top: 40px;
  }
}

.top__features ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .top__features ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top__features ul li:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  /* stylelint-disable-next-line */
}

@media screen and (max-width: 767px) {
  .top__features ul li:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top__features ul li:nth-child(2n) .top__feature-text {
  margin-left: 70px;
}

@media screen and (max-width: 767px) {
  .top__features ul li:nth-child(2n) .top__feature-text {
    margin-left: 0;
  }
}

.top__features ul li:not(:first-child) {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .top__features ul li:not(:first-child) {
    margin-top: 50px;
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .top__features ul li:not(:first-child) {
    margin-top: 10vw;
  }
}

.top__features ul h3 {
  color: #1f2679;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .top__features ul h3 {
    font-size: 21px;
  }
}

.top__features ul p {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .top__features ul p {
    font-size: 16px;
  }
}

.top__steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  background: url("/mens/src/img/step-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 60px;
}

@media screen and (max-width: 900px) {
  .top__steps {
    height: auto;
    background: url("/mens/src/img/steps-bg-sp-2.jpg") no-repeat;
    background-position: top center;
    background-color: #8591d6;
    background-size: contain;
    padding-top: 40px;
  }
}

.top__steps ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 90px 0 65px;
  color: #fff;
  /* stylelint-disable */
  /* stylelint-enable */
}

@media screen and (max-width: 900px) {
  .top__steps ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 40px 0 0;
  }
}

.top__steps ul li {
  width: 270px;
  line-height: 2;
  position: relative;
}

@media screen and (max-width: 900px) {
  .top__steps ul li {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .top__steps ul li {
    width: 100%;
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .top__steps ul li {
    margin-bottom: 10.66667vw;
  }

  .top__steps ul li:last-child {
    margin-bottom: 0;
  }
}

.top__steps ul li:not(:last-child) {
  margin-right: 60px;
}

@media screen and (max-width: 900px) {
  .top__steps ul li:not(:last-child) {
    margin-right: 0;
  }
}

.top__steps ul li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 30px;
  background: url("/mens/src/img/step-arrow.png") no-repeat;
  background-size: contain;
  right: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 900px) {
  .top__steps ul li:not(:last-child)::after {
    right: 50%;
    top: 105%;
    -webkit-transform: translateX(50%) rotate(90deg);
    -ms-transform: translateX(50%) rotate(90deg);
    transform: translateX(50%) rotate(90deg);
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .top__steps ul li:not(:last-child)::after {
    top: 120%;
  }
}

.top__steps ul .step-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "Adobe Garamond Pro Italic", sans-serif;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .top__steps ul .step-label {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.top__steps .top__steps-store-search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 70px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .top__steps .top__steps-store-search {
    width: calc(100vw - 50px);
    height: 60px;
  }
}

.top__steps .top__steps-store-search span {
  display: block;
  margin-left: 23px;
  color: #5860c1;
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .top__steps .top__steps-store-search span {
    margin-left: 28px;
    font-size: 21px;
  }
}

.top__steps .top__steps-store-search::after {
  display: block;
  content: '';
  width: 10px;
  height: 17px;
  margin-left: 23px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211px%22%20height%3D%2217px%22%3E%3Cdefs%3E%3Cfilter%20id%3D%22Filter_0%22%3E%20%3CfeFlood%20flood-color%3D%22rgb(88%2C%2096%2C%20193)%22%20flood-opacity%3D%221%22%20result%3D%22floodOut%22%20%2F%3E%20%3CfeComposite%20operator%3D%22atop%22%20in%3D%22floodOut%22%20in2%3D%22SourceGraphic%22%20result%3D%22compOut%22%20%2F%3E%20%3CfeBlend%20mode%3D%22normal%22%20in%3D%22compOut%22%20in2%3D%22SourceGraphic%22%20%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cg%20filter%3D%22url(%23Filter_0)%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(128%2C%2032%2C%20119)%22%20d%3D%22M6.038%2C8.370%20L0.287%2C2.273%20L2.435%2C-0.005%20L10.335%2C8.370%20L2.435%2C16.744%20L0.287%2C14.467%20L6.038%2C8.370%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .top__steps .top__steps-store-search::after {
    width: 8px;
    height: 13px;
    margin-left: 28px;
  }
}

.top__steps ul h2 {
  font-size: 48px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .top__steps ul h2 {
    line-height: 1.5;
    font-size: 36px;
  }
}

.top__steps ul span {
  font-size: 60px;
}

@media screen and (max-width: 767px) {
  .top__steps ul span {
    font-size: 45px;
  }
}

.top__steps ul h4 {
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .top__steps ul h4 {
    font-size: 21px;
  }
}

.top__steps ul p {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .top__steps ul p {
    font-size: 16px;
  }
}

.top__steps ul img {
  width: 100px;
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .top__steps ul img {
    margin-left: 4vw;
  }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .top__steps ul img {
    width: 90px;
    height: 90px;
  }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .top__steps ul li:nth-child(3) img {
    width: 50px;
  }
}

.top__steps-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  background: rgba(31, 38, 121, 0.5);
  width: 100%;
  height: 80px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .top__steps-footer {
    width: 100vw;
    height: auto;
    position: relative;
    left: 0;
    margin-top: 20px;
    text-align: center;
    font-size: 23px;
  }
}

.top__steps-footer .steps-footer-content {
  position: relative;
}

@media screen and (max-width: 767px) {
  .top__steps-footer .steps-footer-content {
    margin: 15px 0;
  }
}

.top__steps-footer .mobile-hide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .top__steps-footer .mobile-show {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    vertical-align: middle;
  }
}

.top__steps-footer .sp-parenthesis {
  font-size: 60px;
  line-height: 1.2;
}

.top__steps-footer .sp-parenthesis:nth-child(2) {
  margin-right: 15px;
}

@media screen and (max-width: 320px) {
  .top__steps-footer .sp-parenthesis:nth-child(2) {
    margin-right: -5px;
  }
}

.top__steps-footer .sp-parenthesis:nth-child(4) {
  margin-left: 15px;
}

@media screen and (max-width: 320px) {
  .top__steps-footer .sp-parenthesis:nth-child(4) {
    margin-left: -5px;
  }
}

.top__steps-footer span.small {
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .top__steps-footer span.small {
    font-size: 14px;
  }
}

.top__location-logo {
  width: 100px;
  height: 50px;
  background: url("/mens/src/img/logo-blue.svg") no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.top__location {
  padding: 80px 0 140px;
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
}

@media screen and (max-width: 900px) {
  .top__location {
    padding: 10.66667vw 0;
  }
}

@media screen and (max-width: 767px) {
  .top__location a.button {
    height: 20vw;
  }
}

.top__location ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 70px;
}

@media screen and (max-width: 900px) {
  .top__location ul {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media screen and (max-width: 767px) {
  .top__location ul {
    margin-top: 40px;
  }
}

.top__location ul>a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  width: 200px;
  height: 200px;
  border-radius: 10px;
  border: 1px solid #ccc;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #fff;
  /* stylelint-disable */
  /* stylelint-enable */
}

@media screen and (max-width: 900px) {
  .top__location ul>a {
    width: 170px;
    height: 170px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .top__location ul>a {
    width: 46%;
    height: 40vw;
    margin-top: 0;
    font-size: 16px;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .top__location ul>a {
    height: 28vw;
    margin-top: 5vw;
  }
}

@media screen and (max-width: 320px) {
  .top__location ul>a {
    font-size: 14px;
  }
}

.top__location ul>a .scale-down {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top__location ul>a p {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #1f2679;
}

.top__location ul>a:hover {
  color: #fff;
}

.top__location ul>a:hover .top__location-logo {
  background: url("/mens/src/img/logo-white.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

.top__location ul>a:hover p {
  color: #fff !important;
}

.top__location ul>a p:first-child {
  color: #303030;
}

.top__location ul>a img {
  width: 100px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}

.top__recommend {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 70px 0;
  background: #f3f3f3;
  /* stylelint-disable-next-line */
}

@media screen and (max-width: 767px) {
  .top__recommend {
    padding: 40px 0;
  }
}

.top__recommend img {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .top__recommend img {
    width: 100%;
    margin-top: 40px;
  }
}

.top__voice {
  position: relative;
  padding: 50px 0 90px;
  /* stylelint-disable */
}

@media screen and (max-width: 767px) {
  .top__voice {
    padding: 54px 0 40px;
  }
}

.full {
  width: 100% !important;
  margin: 0 !important;
}

.top__voice ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .top__voice ul {
    flex-direction: column;
    margin-top: 30px;
  }
}

.top__voice li {
  width: calc((100% - 40px) / 3);
  margin: 0 0 60px;
}

@media screen and (max-width: 767px) {
  .top__voice li {
    width: 100%;
    margin: 0 0 30px;
  }
}

.top__voice li:nth-of-type(3n - 1) {
  margin: 0 20px 60px;
}

@media screen and (max-width: 767px) {
  .top__voice li:nth-of-type(3n - 1) {
    margin: 0 0 30px;
  }
}

.top__voice li:nth-of-type(1) {
  order: 1;
}

.top__voice li:nth-of-type(2) {
  order: 2;
}

.top__voice li:nth-of-type(3) {
  order: 3;
}

.top__voice li:nth-of-type(4) {
  order: 4;
}

.top__voice li:nth-of-type(5) {
  order: 5;
}

.top__voice li:nth-of-type(6) {
  order: 6;
}

@media screen and (max-width: 767px) {
  .top__voice li:nth-of-type(1) {
    order: 1;
  }

  .top__voice li:nth-of-type(2) {
    order: 3;
  }

  .top__voice li:nth-of-type(3) {
    order: 5;
  }

  .top__voice li:nth-of-type(4) {
    order: 2;
  }

  .top__voice li:nth-of-type(5) {
    order: 4;
  }

  .top__voice li:nth-of-type(6) {
    order: 6;
  }
}

.top__voice-problem {
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  color: #1f2679;
}

@media screen and (max-width: 767px) {
  .top__voice-problem {
    line-height: 25px;
  }
}

.top__voice-problem .big {
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .top__voice-problem .big {
    font-size: 20px;
  }
}

.top__voice-container {
  position: relative;
  padding: 20px 20px 30px;
  border-radius: 10px;
  background: #659de8;
}

@media screen and (max-width: 767px) {
  .top__voice-container {
    margin-top: 12px;
    padding: 10px;
    border-radius: 5px;
  }
}

.top__voice-person {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.top__voice-person .top__voice-img {
  width: 90px;
  height: 90px;
  margin-right: 18px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .top__voice-person .top__voice-img {
    width: 75px;
    height: 75px;
    margin: 0 auto;
  }
}

.top__voice-comment-pc {
  display: flex;
  align-items: center;
  position: relative;
  width: calc(100% - 90px - 18px);
  height: 90px;
  padding-left: 10px;
  border-radius: 10px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .top__voice-comment-pc {
    display: none;
  }
}

.top__voice-comment-pc::before {
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 9px);
  left: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 20px 9px 0;
  border-color: transparent #ffffff transparent transparent;
}

.top__voice-comment-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .top__voice-comment-sp {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 18px;
    padding: 8px 0;
    border-radius: 5px;
    background: #fff;
  }
}

.top__voice-comment-sp::before {
  display: block;
  content: '';
  position: absolute;
  bottom: -12px;
  left: 22%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6.5px 0 6.5px;
  border-color: #ffffff transparent transparent transparent;
}

.top__voice-comment-txt {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .top__voice-comment-txt {
    text-align: center;
  }
}

.top__voice-name {
  margin-top: 8px;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top__voice-name {
    width: calc(100% - 148px);
    margin-top: -8px;
    text-align: center;
    line-height: 19px;
  }
}

.top__voice-movie {
  position: relative;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .top__voice-movie {
    width: 148px;
    margin: 0;
  }
}

.top__voice-movie::before {
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f2679;
}

.top__voice-movie::after {
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 5px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #ffffff;
}

.top__voice-movie img,
.top__voice-movie video {
  max-width: 100%;
}

.modaal-content-container {
  padding: 0 !important;
}

.modaal-wrapper video {
  display: block;
  width: 100%;
}

/*動画表示のモーダルの余白を変更したい場合*/
.modaal-inner-wrapper {
  padding: 0 !important;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.top__voice-notice {
  font-size: 18px;
  line-height: 36px;
}

@media screen and (max-width: 767px) {
  .top__voice-notice {
    font-size: 16px;
    line-height: 32px;
  }
}

.top__question {
  padding: 90px 0;
}

@media screen and (max-width: 767px) {
  .top__question {
    padding: 40px 0 24vw;
  }
}

.top__question ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .top__question ul {
    margin-top: 40px;
  }
}

.top__question li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.top__question li:not(:first-child) {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .top__question p.question {
    width: 90%;
  }
}

.top__question p.question::before {
  content: 'Q.';
  font-size: 24px;
}

.top__question-container {
  position: relative;
  background: #659de8;
  color: #fff;
  font-size: 24px;
  height: 60px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  border: 1px solid #ccc;
  border-bottom: 0;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .top__question-container {
    font-size: 19px;
  }
}

@media screen and (max-width: 767px) {
  .top__question-container {
    height: auto;
    padding: 2.66667vw 0 2.66667vw 2.66667vw;
    font-size: 21px;
  }
}

.top__question-container::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 5px;
  background: #fff;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .top__question-container::before {
    right: 10px;
  }
}

.top__question-container::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 5px;
  background: #fff;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .top__question-container::after {
    right: 10px;
  }
}

.top__question-container--active::before {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.top__question-container--active::after {
  -webkit-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.top__answer-container {
  background: #f3f3f3;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  overflow: hidden;
  max-height: 0;
  line-height: 2;
  border: 1px solid #ccc;
  -webkit-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

@media screen and (max-width: 767px) {
  .top__answer-container {
    font-size: 16px;
  }
}

.top__answer-container--active {
  max-height: 1000px;
}

.top__answer-container .large {
  font-size: 24px;
}

.top__answer-container .red {
  color: #ff3333;
  font-weight: 700;
}

.top__answer-wrap {
  padding: 20px 20px 30px;
}

.top__thoughts {
  width: 100%;
  background: url("/mens/src/img/thoughts-bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top__thoughts {
    background: url("/mens/src/img/thoughts-bg-sp.jpg") no-repeat;
    background-size: cover;
    background-position: top center;
  }
}

.top__thoughts img.logo-bg {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1250px;
  height: 500px;
  opacity: 0.15;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top__thoughts img.logo-bg {
    width: 100%;
    height: 66.66667vw;
  }
}

.top__thoughts-container {
  width: 620px;
  height: auto;
  margin: 0 auto;
  padding: 60px 0;
  font-weight: 700;
  font-size: 18px;
  color: #1f2679;
  line-height: initial;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top__thoughts-container {
    width: auto;
    font-size: 16px;
  }
}

.top__thoughts-container hr {
  color: #1f2679;
  border: 1px solid #1f2679;
}

.top__thoughts-container .title {
  font-size: 32px;
}

.top__thoughts-container .subtitle {
  font-size: 25px;
}

@media screen and (max-width: 767px) {
  .top__thoughts-container .subtitle {
    font-size: 21px;
  }
}

@media screen and (max-width: 767px) {
  .top__thoughts-container .subtitle p {
    display: inline;
  }
}

.top__thoughts-container .subtitle:nth-child(4) {
  margin: 60px 0 20px;
}

@media screen and (max-width: 767px) {
  .top__thoughts-container .subtitle:nth-child(4) {
    margin: 20px 0;
  }
}

.top__thoughts-container .content {
  font-weight: 400;
  line-height: 2;
}

.top__stores {
  background: #f3f3f3;
  padding: 70px 0 140px;
}

@media screen and (max-width: 767px) {
  .top__stores {
    padding: 40px 0 70px;
  }
}

.top__stores ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.top__stores li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 120px;
}

@media screen and (max-width: 900px) {
  .top__stores li {
    margin-top: 50px;
  }

  .top__stores li:first-child {
    margin-top: 40px;
  }
}

.top__stores li p.title {
  font-size: 24px;
  line-height: 2;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .top__stores li p.title {
    font-size: 21px;
  }
}

.top__stores hr {
  border: 1px solid #333;
}

.top__stores .store-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 65px 0 30px;
}

@media screen and (max-width: 767px) {
  .top__stores .store-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 40px 0 15px;
  }
}

.top__stores .store-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .top__stores .store-content {
    font-size: 16px;
  }
}

.top__stores .store-content p:first-child {
  font-size: 24px;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .top__stores .store-content p:first-child {
    font-size: 21px;
  }
}

.top__stores .store-map {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.top__stores .store-map a {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  width: 100%;
  text-align: right;
}

.top__stores .store-map a:hover {
  text-decoration: underline;
  text-underline-position: under;
}

@media screen and (max-width: 767px) {
  .top__stores .store-map img {
    width: 100%;
    margin-top: 8vw;
  }
}

.top__stores .bold {
  font-weight: 700;
  margin-top: 30px;
}

.health__mv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 655px;
  background: url("/mens/src/img/health-mv.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  padding-left: 4.94792vw;
}

@media screen and (min-width: 1440px) {
  .health__mv {
    padding-left: 10vw;
  }
}

@media screen and (min-width: 1600px) {
  .health__mv {
    padding-left: 15vw;
  }
}

@media screen and (min-width: 1920px) {
  .health__mv {
    padding-left: 20vw;
  }
}

@media screen and (max-width: 900px) {
  .health__mv {
    height: 106.66667vw;
    background: url("/mens/src/img/health-mv-sp.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    font-size: 4vw;
    text-align: center;
    font-weight: 500;
    padding-left: 0;
  }
}

.health__mv .large {
  font-size: 65px;
}

@media screen and (max-width: 767px) {
  .health__mv .large {
    font-size: 8.66667vw;
    font-weight: 700;
  }
}

.health__thoughts {
  position: relative;
  height: 260px;
  background: url("/mens/src/img/health-thoughts-bg.jpg") no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  font-size: 24px;
  text-shadow: 1px 1px 3px #000;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .health__thoughts {
    background: url("/mens/src/img/health-thoughts-bg-sp.jpg") no-repeat;
    background-size: cover;
    overflow-x: hidden;
    font-size: 5.33333vw;
  }
}

.health__thoughts .large {
  font-weight: 700;
  font-size: 30px;
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  .health__thoughts .large {
    font-size: 5.6vw;
  }
}

.health__thoughts .thoughts-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .health__thoughts .thoughts-container {
    width: 85%;
  }
}

.health__thoughts .thoughts-container::before {
  content: "";
  display: block;
  position: absolute;
  background: url("/mens/src/img/thoughts-decor.png") no-repeat;
  left: -40px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 40px;
  height: 180px;
}

@media screen and (max-width: 767px) {
  .health__thoughts .thoughts-container::before {
    left: -25px;
  }
}

.health__thoughts .thoughts-container::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/mens/src/img/thoughts-decor.png") no-repeat;
  right: -40px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
  width: 40px;
  height: 180px;
}

@media screen and (max-width: 767px) {
  .health__thoughts .thoughts-container::after {
    right: -25px;
  }
}

.health__events,
.health__examples {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 70px;
}

.health__events>.page__container>p,
.health__examples>.page__container>p {
  font-weight: 700;
  font-size: 27px;
  text-align: center;
}

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

  .health__events>.page__container>p,
  .health__examples>.page__container>p {
    font-size: 5.6vw;
    display: inline;
  }
}

.health__events ul,
.health__examples ul {
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

  .health__events ul,
  .health__examples ul {
    margin-top: 10.66667vw;
  }
}

.health__events li,
.health__examples li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #1f2679;
  margin-bottom: 60px;
}

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

  .health__events li,
  .health__examples li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.health__events img,
.health__examples img {
  width: 47%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
}

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

  .health__events img,
  .health__examples img {
    width: 100%;
    height: 54.66667vw;
  }
}

.health__events .event-desc,
.health__examples .event-desc {
  width: 47%;
  font-size: 18px;
  line-height: 2;
}

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

  .health__events .event-desc,
  .health__examples .event-desc {
    width: 100%;
    font-size: 16px;
  }
}

.health__events .large,
.health__examples .large {
  font-weight: 700;
  font-size: 24px !important;
}

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

  .health__events .large,
  .health__examples .large {
    display: block !important;
  }
}

.health__events {
  background: url("/mens/src/img/health-event-bg.png") no-repeat;
  background-position: bottom right;
  background-color: #f1f1f1;
  /* stylelint-disable-next-line */
}

@media screen and (max-width: 767px) {
  .health__events {
    background: url("/mens/src/img/health-event-bg-sp.png") no-repeat;
    background-size: 85%;
    background-position: bottom left;
    background-color: #f1f1f1;
    padding-top: 10.66667vw;
  }
}

@media screen and (max-width: 767px) {
  .health__events .event-desc>p {
    display: inline;
  }
}

.health__events .event-desc>p:last-child {
  margin-left: -3px;
}

.health__events li:last-child {
  margin-bottom: 160px;
}

@media screen and (max-width: 767px) {
  .health__events li:last-child {
    margin-bottom: 80px;
  }
}

.health__examples {
  background: url("/mens/src/img/health-examples-bg.png") no-repeat;
  background-size: 16%;
  background-position: top left;
  background-color: #fff;
  padding-top: 100px;
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
}

@media screen and (max-width: 767px) {
  .health__examples {
    background: url("/mens/src/img/health-examples-bg-sp.png") no-repeat;
    background-size: 95%;
    background-position: bottom left;
    padding-top: 10.66667vw;
  }
}

.health__examples h1 {
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .health__examples h1 {
    margin-bottom: 40px;
  }
}

.health__examples a.button {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .health__examples a.button {
    margin-bottom: 10.66667vw;
  }
}

.health__examples li {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .health__examples li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .health__examples li:last-child {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .health__examples .event-desc>p {
    font-weight: 700;
  }
}

.health__voice {
  background: -o-linear-gradient(294deg, #6eb0f2 0%, #4b54bc 100%);
  background: linear-gradient(156deg, #6eb0f2 0%, #4b54bc 100%);
  background-color: #6eb0f2;
  padding: 100px 0 160px;
  color: #fff;
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
}

@media screen and (max-width: 767px) {
  .health__voice {
    padding: 10.66667vw 0 16vw;
  }
}

.health__voice .title {
  font-size: 30px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .health__voice .title {
    font-size: 21px;
    line-height: 2;
  }
}

.health__voice .title-margin {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 60px 0;
}

@media screen and (max-width: 767px) {
  .health__voice .title-margin {
    margin: 40px 0;
  }
}

.health__voice .center {
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.health__voice li.block>p {
  font-size: 18px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .health__voice li.block>p {
    font-size: 16px;
  }
}

.health__voice li.block>p::before {
  content: "";
  display: "inline-block";
  position: "relative";
  content: '⬤';
}

.health__voice ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 900px) {
  .health__voice ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .health__voice ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.health__voice li.block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 445px;
  background: #fff;
  border-radius: 10px;
  color: #333;
  line-height: 2;
  padding: 25px;
}

@media screen and (max-width: 900px) {
  .health__voice li.block:nth-child(2) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -10px;
  }
}

@media screen and (max-width: 767px) {
  .health__voice li.block {
    width: 100%;
  }
}

.health__voice li.block>.title-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: #333;
}

.health__voice .red {
  color: #f33;
  font-weight: 700;
}

.health__voice span.mobile-show {
  display: none;
}

@media screen and (max-width: 767px) {
  .health__voice span.mobile-show {
    display: inline !important;
  }
}

@media screen and (max-width: 767px) {
  .health__voice img {
    width: 33%;
  }
}

.health__contact {
  padding: 90px 0 160px;
  background: #f1f1f1;
  font-weight: 700;
  font-size: 25px;
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .health__contact {
    padding: 10.66667vw 0 20vw;
    font-size: 5.6vw;
  }
}

.health__contact a:hover {
  text-decoration: underline;
}

.health__contact .button {
  margin: 60px auto;
}

@media screen and (max-width: 767px) {
  .health__contact .button {
    margin: 40px auto;
  }
}

.health__contact .number {
  font-size: 50px;
  line-height: 0.9;
}

@media screen and (max-width: 767px) {
  .health__contact .number {
    font-size: 10.13333vw;
  }
}

/*# sourceMappingURL=style.css.map*/