@charset "UTF-8";
/**
* 目次
*
* 00. Reset
* 01. Rayout(block)
* 02. element
* 03. Modules
* 04. Sections




/* ==========================================================================
00. Reset
========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500&family=Oswald:wght@200;300;400&display=swap");
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
address,
em,
img,
small,
strong,
tt,
b,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
form,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
footer,
header,
hgroup,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  vertical-align: baseline;
}

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

footer,
header,
nav,
section {
  display: block;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
  width: 100%;
}

ol,
ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

input,
select {
  vertical-align: middle;
}

hr {
  height: 0px;
  margin: 0;
  border: none;
  border-top: 1px solid #000;
}

* html hr {
  /* for -IE6 */
  margin: 0;
}

*:first-child + html hr {
  /* for IE7 */
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input[type=submit],
input[type=button],
input[type=text] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  outline: none;
}

input[type=text] {
  border: 1px solid #cecece;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

button,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
}

/*
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: middle;
  text-indent: .01px;
  text-overflow: "";
}
*/
textarea {
  border: 1px solid #cecece;
}

b {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400 !important;
  font-size: 17px;
  font-size: 1.7rem;
}

/* ======================================================================= */
/* ==========================================================================
01. Layout
========================================================================== */
body {
  color: black !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  /*ランドスケープ対策*/
}

/* container
========================================================================== */
.container-1, .container-2, .container-3 {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-2, .container-3 {
  max-width: 1240px;
  margin-bottom: 90px;
  padding: 0 20px;
}

.container-3 {
  border-top: 1px solid #5c5c5c;
  padding-top: 50px;
}

.container-4, .container-5 {
  width: 100%;
  max-width: 1240px;
  margin: 100px auto 0 auto;
  padding: 0 20px;
}

.container-5 {
  margin: 0 auto;
  padding: 100px 20px;
}

.container-6, .container-7 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.container-7 {
  margin-top: 70px;
}
.container-7:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .container-1, .container-2, .container-3 {
    padding: 0 4%;
  }
  .container-2, .container-3 {
    margin-bottom: 70px;
    padding: 0 4%;
  }
  .container-3 {
    padding-top: 70px;
    margin-bottom: 70px;
  }
  .container-4, .container-5 {
    margin: 80px auto 0 auto;
    padding: 0 4%;
  }
  .container-5 {
    margin: 0 auto;
    padding: 80px 4%;
  }
}
@media only screen and (max-width: 480px) {
  .container-2, .container-3 {
    margin-bottom: 50px;
  }
  .container-3 {
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .container-4, .container-5 {
    margin: 60px auto 0 auto;
  }
  .container-5 {
    margin: 0 auto;
    padding: 60px 4%;
  }
}
/* ======================================================================= */
/* ==========================================================================
02. element
========================================================================== */
/* common */
/* blur
========================================================================== */
#blurContent {
  width: 100%;
  top: 0;
  z-index: 9;
  transition: 0.2s;
}

#blurContent.active {
  -ms-filter: blur(6px);
  filter: blur(6px);
  transition: 0.2s;
}

#text {
  font-size: 40px;
  color: #fff;
  padding-top: 150px;
  vertical-align: middle;
  font-weight: bold;
}

#close {
  background-color: #FFF;
  width: 70px;
  margin: auto;
  text-align: center;
  font-size: 15px;
  padding: 5px 0 5px 0;
  border-radius: 3px;
  cursor: pointer;
  border: #FFF;
}

/* ======================================================================= */
/* header
========================================================================== */
.header {
  position: relative;
  z-index: 99999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
}

/* ======================================================================= */
/* globalーnavigation
========================================================================== */
.g-nav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  color: white;
}
.g-nav__item-1 {
  display: block;
  width: 150px;
  margin: 23px 3.3333%;
  order: 0;
}
.g-nav__item-2 {
  position: absolute;
  right: 0;
  display: flex;
  order: 2;
}
.g-nav__item-3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40.25%;
  order: 1;
}
.g-nav__item-child-1 .font-size {
  position: relative;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 28px 0;
}
.g-nav__item-child-1 .font-size span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
}
.g-nav__item-child-1__arrow {
  position: absolute;
  content: "";
  bottom: 18px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 2px white;
  border-right: solid 2px white;
  transform: rotate(45deg);
  transition: 0.3s;
}
.g-nav .g-nav__item-child-1 > a, .g-nav .g-nav__item-child-1 > div > a {
  position: relative;
  display: inline-block;
  transition: 0.3s;
}
.g-nav .g-nav__item-child-1 > a:hover, .g-nav .g-nav__item-child-1 > div > a:hover {
  color: red;
  transition: 0.3s;
}
.g-nav .g-nav__item-child-1 > a:after, .g-nav .g-nav__item-child-1 > div > a:after {
  position: absolute;
  bottom: 0.5em;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: red;
  opacity: 0;
  transition: 0.3s;
}
.g-nav .g-nav__item-child-1 > a:hover::after, .g-nav .g-nav__item-child-1 > div > a:hover::after {
  bottom: 0;
  opacity: 1;
}
.g-nav__item-child-2 {
  width: 103px;
  padding: 14px 0 11px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.2em;
  text-align: center;
  background-color: #1b54ef;
  transition: 0.3s;
}
.g-nav__item-child-2:first-child {
  background-color: #cc0000;
}
.g-nav__item-child-2:first-child:hover {
  background-color: #df5c5c;
}
.g-nav__item-child-2:last-child {
  background-color: #fd6e9e;
}
.g-nav__item-child-2:last-child:hover {
  background-color: #fb9494;
}
.g-nav__item-child-2__img {
  display: block;
  width: 25px;
  margin: 0 auto 5px auto;
}
.g-nav__item-child-2:hover {
  transition: 0.3s;
  background-color: #5780f3;
}

@media only screen and (max-width: 1000px) {
  .g-nav__item-1 {
    display: block;
    width: 150px;
    margin: 20px 3.3333%;
    order: 0;
  }
  .g-nav__item-2 {
    position: static;
    order: 1;
    margin-left: auto;
    margin-right: 0;
  }
  .g-nav__item-3 {
    position: static;
    transform: none;
    width: 100%;
    order: 2;
    margin: 0 auto;
    padding: 0 40px;
    border-top: 1px solid #5b5b5b;
  }
  .g-nav__item-child-1 .font-size {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 20px 0;
  }
  .g-nav__item-child-1 .font-size span {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .g-nav__item-child-1__arrow {
    position: absolute;
    bottom: 15px;
  }
  .g-nav__item-child-2 {
    padding: 10px 0;
  }
  .g-nav__item-child-2:first-child {
    background-color: #cc0000;
  }
  .g-nav__item-child-2:last-child {
    background-color: #fd6e9e;
  }
  .g-nav__item-child-2__img {
    display: block;
    width: 25px;
    margin: 0 auto 5px auto;
  }
}
@media only screen and (max-width: 768px) {
  .g-nav .g-nav__item-child-1 > a:after, .g-nav .g-nav__item-child-1 > div > a:after {
    height: 0;
  }
  .g-nav__item-child-2 {
    width: 90px;
  }
  .g-nav__item-child-2 .text {
    display: block;
    font-size: 10px !important;
    font-size: 1rem !important;
    transform: scale(1) !important;
  }
}
@media only screen and (max-width: 480px) {
  .g-nav__item-1 {
    width: 100%;
    max-width: 150px;
    margin: 10px 1% 10px 4%;
  }
  .g-nav__item-3 {
    padding: 0 4%;
  }
  .g-nav__item-child-1 .font-size {
    font-weight: 300;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 15px 0;
  }
  .g-nav__item-child-1 .font-size span {
    font-weight: 300;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .g-nav__item-child-1__arrow {
    width: 7px;
    height: 7px;
    bottom: 12px;
  }
  .g-nav__item-child-2 {
    padding: 4px 0 1px 0;
  }
  .g-nav__item-child-2 .text {
    display: block;
    font-size: 10px !important;
    font-size: 1rem !important;
    transform: scale(0.8) !important;
  }
  .g-nav__item-child-2__img {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 340px) {
  .g-nav__item-1 {
    max-width: 130px;
  }
  .g-nav__item-child-1 .font-size {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
/* ======================================================================= */
/* maga-menu
========================================================================== */
.m-menu {
  position: absolute;
  top: 81px;
  left: -74%;
  width: 100vw;
  height: 100hw;
  z-index: 9999;
  background-color: #f8f8f8;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.m-menu__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .m-menu__inner {
    max-width: 760px;
  }
  .m-menu__inner:after {
    content: "";
    display: block;
  }
  .m-menu__inner[data-col=products]:after {
    width: 33.4%;
  }
  .m-menu__inner[data-col=support]:after {
    width: 66%;
  }
}
.m-menu__inner__child {
  display: block;
  width: 100%;
  max-width: 180px;
  color: black;
  border-bottom: 1px solid #cbcbcb;
  margin-bottom: 30px;
  padding-bottom: 30px;
  transition: 0.3s;
}
.m-menu__inner__child:hover {
  transition: 0.3s;
  opacity: 0.5;
}
.m-menu__inner__child:nth-last-child(-n+4) {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.m-menu__inner__child-strong {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 10px;
}
.m-menu__inner__child-2 {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 24%;
  color: black;
  border-right: 3px dotted #cbcbcb;
  margin-top: 20px;
}
.m-menu__inner__child-2:first-child {
  border-left: 3px dotted #cbcbcb;
}
@media only screen and (max-width: 768px) {
  .m-menu__inner__child-2 {
    max-width: 33%;
  }
  .m-menu__inner__child-2:nth-child(4n) {
    border-left: 3px dotted #cbcbcb;
  }
  .m-menu__inner__child-2:nth-child(-n+3) {
    margin-top: 0;
  }
}
.m-menu__inner__child-2-img {
  display: block;
  width: 100%;
  max-width: 50px;
  margin: 0 auto;
}
.m-menu__inner__child-2-strong {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2em;
  text-align: center;
  margin-top: 10px;
}
.m-menu__inner__child-2 > div {
  transition: 0.3s;
}
.m-menu__inner__child-2 > div:hover {
  transition: 0.3s;
  opacity: 0.5;
}
.m-menu:hover {
  visibility: visible;
  opacity: 1;
}

.js-dropDown:hover > .m-menu,
.js-dropDown:active > .m-menu {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .m-menu {
    top: 142px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .m-menu {
    display: none;
    transition: none;
  }
  .m-menu__inner {
    padding: 0 4%;
  }
  .m-menu__inner__child {
    width: 33.3%;
    max-width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .m-menu__inner__child:nth-last-child(-n+4) {
    border-bottom: 1px solid #cbcbcb;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .m-menu__inner__child:nth-last-child(-n+2) {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .m-menu {
    top: 112px;
  }
  .m-menu__inner__child-2-img {
    max-width: 40px;
  }
  .m-menu__inner__child-2-strong {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 358px) {
  .m-menu {
    top: 125px;
  }
}
/* ======================================================================= */
/* footer
========================================================================== */
footer {
  background-color: black;
  padding: 70px 0 35px 0;
}
footer .footerInner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1020px;
  color: white;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}
footer .footerLink {
  width: 23%;
  border-left: 1px solid white;
  padding-left: 60px;
}
footer .footerLogo {
  width: 90%;
  margin: 0 auto;
}
footer .footerLogo .footerLogoItem {
  display: block;
}
footer .footerLogo .footerLogoItem:last-child {
  margin: 20px auto 0 40px;
}
footer .footerLogo .footerLogoItem:last-child img {
  width: 80px;
  padding-top: 10px;
}
footer .footerLogo .footerLogoItem small {
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
}
footer .footerSns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
footer .footerSns__item {
  width: 18%;
}
footer .note {
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
}

.footerNav {
  display: flex;
}

.footerNavItem {
  margin-right: 60px;
}
.footerNavItem:last-child {
  margin-right: 0;
}
.footerNavItem .footerNavChild {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
}
.footerNavItem .footerNavChild .spItem {
  display: block;
  margin-bottom: 20px;
}
.footerNavItem .footerNavGrandChild li {
  margin-bottom: 10px;
}
.footerNavItem .footerNavGrandChild li:last-child {
  margin-bottom: 0;
}
.footerNavItem .footerNavGrandChild li a {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: 13px;
  font-size: 1.3rem;
}
.footerNavItem .footerNavGrandChild li a:hover {
  text-decoration: underline;
}
.footerNavItem .footerNavGrandChild li a:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(45deg);
}

.copyRight {
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

@media only screen and (max-width: 1020px) {
  footer {
    padding: 20px 0 35px 0;
  }
  footer .footerInner {
    display: block;
    padding: 0;
  }
  footer .footerLink {
    width: 200px;
    border-left: none;
    margin: 30px auto 0 auto;
    padding-left: 0;
  }
  footer .footerLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-left: none;
    margin-top: 40px;
    margin-left: 0;
    padding-left: 0;
  }
  footer .footerLogo .footerLogoItem {
    display: block;
  }
  footer .footerLogo .footerLogoItem img {
    width: 80px;
  }
  footer .footerLogo .footerLogoItem:first-child img {
    width: 117px;
  }
  footer .footerLogo .footerLogoItem:last-child {
    border-left: 1px solid rgb(65, 65, 65);
    margin: 0 0 0 30px;
    padding-top: 0;
    padding-left: 30px;
  }
  footer .footerLogo .footerLogoItem:last-child small {
    display: block;
  }
  .footerNav {
    display: block;
  }
  .footerNavItem {
    margin-right: 0;
    border-bottom: 1px solid rgb(65, 65, 65);
  }
  .footerNavChild {
    position: relative;
    margin-top: 20px;
    cursor: pointer;
  }
  .footerNavChild .spItem {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-left: 4%;
  }
  .footerNavChild .spItem:before {
    display: block;
    content: "";
    position: absolute;
    top: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 20px;
    margin: auto;
    width: 13px;
    height: 2px;
    background-color: white;
    transition: 0.2s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }
  .footerNavChild .spItem:after {
    display: block;
    content: "";
    position: absolute;
    top: 11px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 20px;
    margin: auto;
    width: 13px;
    height: 2px;
    background-color: white;
    transition: 0.3s;
  }
  .footerNavChild .spItem.on:before {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  .footerNavChild .spItem.on:after {
    transform: rotate(0deg);
    background-color: transparent;
  }
  .footerNavGrandChild {
    display: none;
    padding: 40px 0;
    background-color: #181818;
  }
  .footerNavGrandChild li {
    padding-bottom: 25px;
    padding-left: 4%;
  }
  .footerNavGrandChild li:last-child {
    padding-bottom: 0;
  }
  .footerNavGrandChild li a {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400 !important;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
/* ======================================================================= */
/* btn
========================================================================== */
/* hamburgerBtn */
.hamburgerBtn {
  display: none;
}

@media only screen and (max-width: 900px) {
  /* hamburgerBtn */
  .hamburgerBtn {
    display: block;
    position: fixed;
    z-index: 999;
    right: 4%;
    top: 11px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburgerBtn span {
    display: block;
    position: absolute;
    z-index: 9999;
    width: 25px;
    height: 2px;
    left: 6px;
    background: white;
    transition: 0.5s all;
  }
  .hamburgerBtn span:nth-child(1) {
    top: 10px;
  }
  .hamburgerBtn span:nth-child(2) {
    top: 20px;
  }
  .hamburgerBtn span:nth-child(3) {
    top: 30px;
  }
  .hamburgerBtn.active span:nth-child(1) {
    top: 20px;
    left: 6px;
    width: 24px;
    background: black;
    transform: rotate(-45deg);
  }
  .hamburgerBtn.active span:nth-child(2) {
    left: 60%;
    opacity: 0;
    animation: active-hamburger-bar02 0.8s forwards;
  }
  @keyframes active-hamburger-bar02 {
    100% {
      height: 0;
    }
  }
  .hamburgerBtn.active span:nth-child(3) {
    top: 20px;
    width: 24px;
    background: black;
    transform: rotate(45deg);
  }
  .hamburgerBtn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 45px;
    height: 45px;
    margin: -23px 0 0 -26px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0);
    transition: all 0.75s;
  }
  .hamburgerBtn.active::after {
    background-color: #ebebeb;
  }
}
.btn {
  position: relative;
  display: block;
  width: 320px;
  color: white;
  background-size: auto auto;
  background-color: rgb(176, 1, 1);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, rgb(193, 32, 32) 3px, rgb(193, 32, 32) 4px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  margin: 85px auto 0 auto;
  padding: 20px 0;
}
.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 14px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  margin-top: -7px;
}

.btn-2Wrap {
  text-align: center;
}
.btn-2Wrap .btn-2, .btn-2Wrap .btn-2Black {
  position: relative;
  display: inline-block;
  color: #b00101;
  border: 1px solid #b00101;
  padding: 10px 50px 10px 45px;
}
.btn-2Wrap .btn-2:after, .btn-2Wrap .btn-2Black:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #b00101;
  border-right: 1px solid #b00101;
  transform: rotate(45deg);
  margin-top: -5px;
}
.btn-2Wrap .btn-2Black {
  color: black;
  background-color: white;
  border: 1px solid black;
}
.btn-2Wrap .btn-2Black:after {
  border-top: 1px solid black;
  border-right: 1px solid black;
}

.btn-3, .topProducts .productsBtnBlack, .topProducts .productsName .productsBtn, .topProducts .productsNameBlack .productsBtn {
  display: block;
  width: 200px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: black;
  background-color: white;
  border: 2px solid black;
  border-radius: 30px;
  margin: 26px auto 0 auto;
  padding: 10px 0;
  transition: all 0.3s;
}
.btn-3:hover, .topProducts .productsBtnBlack:hover, .topProducts .productsName .productsBtn:hover, .topProducts .productsNameBlack .productsBtn:hover {
  color: white;
  background-color: black;
}

/* ======================================================================= */
/* slickslider-side-arrow
========================================================================== */
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.slideArrow {
  height: 90px;
  position: absolute;
  top: 50%;
  margin-top: -65px;
  z-index: 1;
}

.prevArrow {
  left: -35px;
}

.nextArrow {
  right: -35px;
}

.arrowLeft,
.arrowRight {
  left: 50px;
  width: 0;
  height: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-top: 1px solid #b00101;
  border-right: 1px solid #b00101;
  margin: 0 15px;
}

.arrowLeft {
  transform: rotate(-135deg);
}

.arrowRight {
  transform: rotate(45deg);
}

/* ======================================================================= */
/* tab-nav
========================================================================== */
.tabsList {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  width: 767px;
  margin: 0 auto;
}
.tabsListItem {
  width: 250px;
  border-right: 1px solid #cecece;
  text-align: center;
  margin-top: 30px;
  padding: 10px 20px 10px 0;
}
.tabsListItem:nth-child(-n+3) {
  margin-top: 0;
}
.tabsListItem:nth-of-type(1), .tabsListItem:nth-of-type(4), .tabsListItem:nth-of-type(7) {
  border-left: 1px solid #cecece;
}
.tabsListItem a {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.8rem;
  color: black;
}
.tabsListItem a:hover {
  text-decoration: underline;
}
.tabsListItem a:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: black 2px solid;
  border-right: black 2px solid;
  transform: rotate(45deg);
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.tabsList .active {
  background-color: #f5f4f4;
}
.tabsList .active a {
  font-weight: 500;
  color: #d00707;
}
.tabsList .active a:after {
  border-top: #d00707 2px solid;
  border-right: #d00707 2px solid;
  transform: rotate(135deg);
  bottom: 3px;
  transition: 0.3s;
}

.tabsContent {
  background-color: #f5f4f4;
  margin-top: 70px;
  padding: 40px;
}

@media only screen and (max-width: 768px) {
  .tabsContent {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .tabsContent {
    margin-top: 30px;
    padding: 25px;
  }
}
/* accordion */
.accordionWrap {
  margin-bottom: 50px;
}
.accordionWrap:last-child {
  margin-bottom: 0;
}
.accordionWrap .accordionHeading {
  display: none;
}
.accordionWrap .accordionList {
  display: none;
  background-color: white;
}
.accordionWrap .accordionListItem {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.8em;
  padding: 40px;
}
.accordionWrap .accordionListItem a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.8em;
  color: black;
  text-decoration: underline;
}
.accordionWrap .accordionListChild {
  margin-top: 20px;
  padding-left: 1em;
}
.accordionWrap .accordionListChildItem {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.8em;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 20px;
}

.accordionBtn {
  display: block;
  width: 100%;
  border-bottom: 1px solid #cecece;
  padding-bottom: 10px;
  text-align: left;
}
.accordionBtn span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5em;
}
.accordionBtn span:after {
  right: 0;
  bottom: 8px;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: black 2px solid;
  border-right: black 2px solid;
  transform: rotate(45deg);
  transition: 0.3s;
}

.accordionBtn.active span {
  font-weight: 500;
  color: #d00707;
}

.accordionBtn.active span:after {
  bottom: 9px;
  border-top: #d00707 2px solid;
  border-right: #d00707 2px solid;
  transform: rotate(135deg);
  transition: 0.3s;
}

@media only screen and (max-width: 768px) {
  .tabsList {
    display: none;
  }
  /* accordion */
  .accordionWrap .accordionHeading {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1.5em;
    margin-bottom: 30px;
  }
  .accordionWrap .accordionList {
    display: none;
  }
  .accordionWrap .accordionListItem {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .accordionWrap {
    margin-bottom: 30px;
  }
  .accordionWrap .accordionHeading {
    font-size: 20px;
    font-size: 2rem;
  }
  .accordionWrap .active span:after {
    bottom: 7px;
  }
  .accordionBtn span {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .accordionBtn span:after {
    bottom: 6px;
  }
}
/* ======================================================================= */
/* news-common */
/* newsList
========================================================================== */
.newsList {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.newsItem-1, .newsItem-2, .newsItem-3 {
  margin-bottom: 40px;
}
.newsItem-1 .newsData-1, .newsItem-2 .newsData-1, .newsItem-2 .newsGroup .newsData-2, .newsItem-3 .newsData-1, .newsItem-3 .newsGroup .newsData-2 {
  display: inline;
  width: 13%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  border-right: 1px solid black;
  margin-right: 0.5%;
  padding-right: 1.3%;
}
.newsItem-1 a, .newsItem-2 a, .newsItem-3 a {
  position: relative;
  color: black;
  width: 87%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.6em;
  margin-top: -0.4%;
}
.newsItem-1 a:hover, .newsItem-2 a:hover, .newsItem-3 a:hover {
  text-decoration: underline;
}
.newsItem-1 a:after, .newsItem-2 a:after, .newsItem-3 a:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -8px;
  width: 9px;
  height: 9px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg);
}

.newsItem-2, .newsItem-3 {
  display: flex;
  align-items: baseline;
}
.newsItem-2 .newsIcon, .newsItem-2 .newsIconBlue, .newsItem-2 .newsIconGreen, .newsItem-2 .newsIconOrange, .newsItem-2 .newsIconPink, .newsItem-2 .newsIconRed, .newsItem-3 .newsIcon, .newsItem-3 .newsIconBlue, .newsItem-3 .newsIconGreen, .newsItem-3 .newsIconOrange, .newsItem-3 .newsIconPink, .newsItem-3 .newsIconRed {
  width: 100px;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  margin-right: 2%;
  padding: 3px 0;
}
.newsItem-2 .newsIconRed, .newsItem-3 .newsIconRed {
  background-color: rgb(219, 1, 1);
}
.newsItem-2 .newsIconPink, .newsItem-3 .newsIconPink {
  background-color: rgb(245, 80, 149);
}
.newsItem-2 .newsIconOrange, .newsItem-3 .newsIconOrange {
  background-color: rgb(255, 136, 0);
}
.newsItem-2 .newsIconGreen, .newsItem-3 .newsIconGreen {
  background-color: rgb(59, 187, 76);
}
.newsItem-2 .newsIconBlue, .newsItem-3 .newsIconBlue {
  background-color: rgb(25, 91, 212);
}
.newsItem-2 .newsGroup, .newsItem-3 .newsGroup {
  width: 88%;
}
.newsItem-2 .newsGroup .newsData-2, .newsItem-3 .newsGroup .newsData-2 {
  width: 12.5%;
  padding-right: 1.3%;
}
.newsItem-2 .newsGroup a:hover, .newsItem-3 .newsGroup a:hover {
  text-decoration: underline;
}
.newsItem-2 .newsGroup a:after, .newsItem-3 .newsGroup a:after {
  content: "";
  bottom: 4px;
  right: -8px;
  width: 9px;
  height: 9px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg);
}

.newsItem-3:last-child {
  margin-bottom: 0;
}

.LowerNewsList {
  padding-bottom: 60px;
}

@media only screen and (max-width: 480px) {
  .newsItem-1:last-child, .newsItem-3:last-child, .newsItem-2:last-child {
    margin-bottom: 50px;
  }
  .newsItem-1, .newsItem-2, .newsItem-3 {
    margin-bottom: 30px;
  }
  .newsItem-2 {
    display: block;
  }
  .newsItem-2 .newsGroup {
    width: 100%;
    padding-top: 10px;
  }
}
/* ======================================================================= */
/* news-vacation
========================================================================== */
/* vacation-area */
.vacation {
  margin-bottom: 30px;
}

.vacation-first {
  padding-top: 30px;
}

.vacation__text {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
  padding-right: 20px;
}

.vacation__text--pink {
  padding-left: 15px;
}

.vacation__text--pink:before {
  position: absolute;
  content: "□";
  top: 0;
  left: 0;
}

.vacation__text--pink:before {
  content: "◼︎";
  color: #ffd3d3;
  top: 2px;
  font-size: 18px;
  font-size: 1.8rem;
}

.vacation-calendar {
  width: 100%;
  min-width: 970px;
  border: 1px solid #cecece;
  margin: 10px 0 10px 0;
}

.vacation-calendar__data {
  padding: 5px;
  font-size: 13px;
  font-size: 1.3rem;
  border: 1px solid #cecece;
  text-align: center;
}

.vacation-calendar--gray {
  background-color: #f0efef;
}

.vacation-calendar--pink {
  background-color: #ffd3d3;
}

.arrow-vacation:after {
  margin-top: 10px !important;
}

@media only screen and (max-width: 767px) {
  .vacation-calendar {
    min-width: 100%;
  }
}
/* ======================================================================= */
/* article
========================================================================== */
.articleImg, .articleImg_vgp, .articleImg_50, .articleImg_60 {
  width: 100%;
  margin: 0 auto 50px auto;
}

.articleImg_60 {
  width: 50%;
}

.articleImg_50 {
  width: 50%;
}

.articleImg_vgp {
  width: 150px;
}

.contentWrap {
  width: 100%;
  text-align: center;
}

.articleContent, .articleContent p {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.8em;
  margin-bottom: 30px;
  text-align: left;
}
.articleContent:last-child, .articleContent p:last-child {
  margin-bottom: 0;
}
.articleContent a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: black;
  text-decoration: underline;
  padding-top: 20px;
}

.articleList {
  margin-bottom: 30px;
}
.articleListItem {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

/* ======================================================================= */
/* award-area
========================================================================== */
.awardList {
  padding-bottom: 50px;
}
.awardList:last-child {
  margin-bottom: 0;
}

.award {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.awardItem {
  width: 48%;
  display: flex;
  color: black;
  margin-bottom: 40px;
  margin-right: 2%;
}
.awardItem:nth-child(2n) {
  margin-right: 0;
}
.awardItem:nth-last-of-type(-n+2) {
  margin-bottom: 0;
}
.awardChild {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: black;
}
.awardChild:first-child {
  width: 20%;
  border-right: 1px solid #cecece;
  margin-right: 20px;
  padding-right: 20px;
}
.awardChild:last-child {
  width: 75%;
}
.awardChild:last-child:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .award {
    display: block;
  }
  .awardItem {
    width: 100%;
    margin-right: 0;
  }
  .awardItem:nth-last-of-type(-n+2) {
    margin-bottom: 40px;
  }
  .awardItem:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  .awardChild:first-child {
    width: 35%;
  }
  .awardChild:last-child {
    width: 65%;
  }
}
/* ======================================================================= */
/* products-common */
/* sub-navigation
========================================================================== */
#subNavWrap {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid #a10505;
}

#subNavWrap.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}

.subNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  color: black;
  padding: 20px 20px 15px;
}
.subNavItem:first-child {
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.subNavList {
  display: flex;
  align-items: center;
}
.subNavListItem {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: black;
  font-size: 15px;
  font-size: 1.5rem;
  margin-right: 25px;
  letter-spacing: 1px;
  transition: 0.3s;
}
.subNavListItem:hover {
  color: #e50505;
  transition: 0.3s;
}
.subNavListItem:last-child {
  margin-right: 0;
}
.subNavList .subNavListBtn {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  border-radius: 5px;
  background-color: #a10505;
  color: white;
  padding: 8px 15px;
  transition: 0.1s;
}
.subNavList .subNavListBtn:hover {
  transition: 0.1s;
  background-color: #e42525;
}

@media only screen and (max-width: 768px) {
  #subNavWrap {
    width: 100%;
  }
  #subNavWrap.fixed {
    position: fixed;
    z-index: 999;
    left: 0;
  }
  .subNav {
    display: flex;
    padding: 15px 4%;
  }
  .subNavItem:first-child {
    font-family: "Oswald", sans-serif;
    font-weight: 200;
    font-size: 25px;
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 560px) {
  .subNav {
    position: relative;
    display: block;
    padding: 10px 4% 7px;
  }
  .subNavItem:first-child {
    border-bottom: 1px solid #cecece;
    margin-bottom: 6px;
    padding-top: 6px;
    padding-bottom: 15px;
  }
  .subNavList {
    display: flex;
    align-items: center;
  }
  .subNavListItem {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    color: black;
    font-size: 15px;
    font-size: 1.5rem;
    margin-right: 25px;
    letter-spacing: 1px;
    transition: 0.3s;
  }
  .subNavListItem:hover {
    color: #e50505;
    transition: 0.3s;
  }
  .subNavListBtn {
    position: absolute;
    bottom: 48px;
    right: 4%;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 5px 10px !important;
  }
}
/* ======================================================================= */
/* products-title
========================================================================== */
.ProductsTitle, .ProductsTitleTw1, .ProductsTitleTw2, .ProductsTitleTw3, .ProductsTitleTw11, .ProductsTitleTw21, .ProductsTitleTw22, .ProductsTitleTw33 {
  margin: 0 auto 40px auto;
}

/* ======================================================================= */
/* products-award-area
========================================================================== */
.ProductsAward {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.ProductsAwardItem {
  width: 100px;
  margin-left: 20px;
}
.ProductsAwardItem:first-child {
  margin-left: 0;
}

/* ======================================================================= */
/* products-image-area
========================================================================== */
.ProductsImage {
  display: flex;
  justify-content: center;
}
.ProductsImageItem, .tw1Image, .tw2Image, .tw3Image, .tw11Image, .tw21Image, .tw22Image, .tw33Image {
  position: relative;
  margin-right: 4.5%;
}
.ProductsImageItem:last-child, .tw1Image:last-child, .tw2Image:last-child, .tw3Image:last-child, .tw11Image:last-child, .tw21Image:last-child, .tw22Image:last-child, .tw33Image:last-child {
  margin-right: 0;
}
.ProductsImageItemNote, .tw1ImageNote, .tw2ImageNote, .tw3ImageNote, .tw11ImageNote, .tw21ImageNote, .tw22ImageNote, .tw33ImageNote {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
}
.ProductsImageItemNote span, .tw1ImageNote span, .tw2ImageNote span, .tw3ImageNote span, .tw11ImageNote span, .tw21ImageNote span, .tw22ImageNote span, .tw33ImageNote span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5em;
  color: black;
}

@media only screen and (max-width: 768px) {
  .ProductsImage {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }
  .ProductsImageItem, .tw1Image, .tw2Image, .tw3Image, .tw11Image, .tw21Image, .tw22Image, .tw33Image {
    margin-top: 30px;
  }
  .ProductsImageItem:nth-child(2n), .tw1Image:nth-child(2n), .tw2Image:nth-child(2n), .tw3Image:nth-child(2n), .tw11Image:nth-child(2n), .tw21Image:nth-child(2n), .tw22Image:nth-child(2n), .tw33Image:nth-child(2n) {
    margin-right: 0;
  }
  .ProductsImageItem:nth-child(-n+2), .tw1Image:nth-child(-n+2), .tw2Image:nth-child(-n+2), .tw3Image:nth-child(-n+2), .tw11Image:nth-child(-n+2), .tw21Image:nth-child(-n+2), .tw22Image:nth-child(-n+2), .tw33Image:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .ProductsImageItem, .tw1Image, .tw2Image, .tw3Image, .tw11Image, .tw21Image, .tw22Image, .tw33Image {
    margin-right: 0;
  }
  .ProductsImageItem:nth-child(-n+2), .tw1Image:nth-child(-n+2), .tw2Image:nth-child(-n+2), .tw3Image:nth-child(-n+2), .tw11Image:nth-child(-n+2), .tw21Image:nth-child(-n+2), .tw22Image:nth-child(-n+2), .tw33Image:nth-child(-n+2) {
    margin-top: 30px;
  }
  .ProductsImageItem:first-child, .tw1Image:first-child, .tw2Image:first-child, .tw3Image:first-child, .tw11Image:first-child, .tw21Image:first-child, .tw22Image:first-child, .tw33Image:first-child {
    margin-top: 0;
  }
}
/* ========================================================================= */
/* products-Catch-area
============================================================================= */
.productsCatchWrap {
  margin-top: 100px;
}

@media only screen and (max-width: 768px) {
  .productsCatchWrap {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .productsCatchWrap {
    margin-top: 60px;
  }
}
/* ========================================================================= */
/* products-Features-area
============================================================================= */
.featuresTitle, .featuresTitle span, .featuresHeading, .featuresText {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.5em;
}

.featuresTitle {
  font-size: 41px;
  font-size: 4.1rem;
  text-align: center;
}

.featuresHeading {
  font-size: 30px;
  font-size: 3rem;
}

.featuresText {
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 30px;
}
.featuresTextNote {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
  margin-top: 20px;
}
.featuresText .annotation {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 10px;
  font-size: 1rem;
  vertical-align: 8px;
}

.featuresNote {
  margin-top: 40px;
}
.featuresNote span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
}

@media only screen and (max-width: 768px) {
  .featuresTitle {
    font-size: 35px;
    font-size: 3.5rem;
  }
  .featuresHeading {
    font-weight: 400;
    font-size: 25px;
    font-size: 2.5rem;
  }
  .featuresText {
    margin-top: 10px;
  }
  .featuresNote {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .featuresTitle {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.5em;
  }
  .featuresHeading {
    font-size: 19px;
    font-size: 1.9rem;
  }
  .featuresText {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 15px;
  }
  .featuresTextNote {
    margin-top: 5px;
  }
}
/* featuresMovie */
.featuresMovie {
  width: 100%;
  aspect-ratio: 16/9;
}
.featuresMovie iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #cecece;
}

/* featuresList */
.featuresList {
  margin-top: 70px;
}

.featuresList-1, .featuresList-2, .featuresList-3, .featuresList-4 {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
.featuresList-1:first-child, .featuresList-2:first-child, .featuresList-3:first-child, .featuresList-4:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .featuresList-1, .featuresList-2, .featuresList-3, .featuresList-4 {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .featuresList-1, .featuresList-2, .featuresList-3, .featuresList-4 {
    margin-top: 50px;
  }
}
/* featuresList-1 */
.featuresList-1Item {
  width: 50%;
}
.featuresList-1Item:last-child {
  width: 45%;
}

@media only screen and (max-width: 768px) {
  .featuresList-1 {
    display: flex;
  }
}
@media only screen and (max-width: 630px) {
  .featuresList-1 {
    display: block;
  }
  .featuresList-1Item {
    width: 100%;
  }
  .featuresList-1Item:last-child {
    width: 70%;
    margin: 30px auto 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .featuresList-1Item:last-child {
    width: 100%;
  }
}
/* FeaturesList-2 */
.featuresList-2Item {
  width: 50%;
}
.featuresList-2Item:last-child {
  width: 44%;
}

@media only screen and (max-width: 768px) {
  .featuresList-2Item {
    width: 100%;
  }
  .featuresList-2Item:last-child {
    width: 60%;
    margin: 20px auto 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .featuresList-2Item:last-child {
    width: 80%;
  }
}
/* FeaturesList-3 */
.featuresList-3Item {
  width: 40%;
}
.featuresList-3Item:last-child {
  width: 54%;
}
.featuresList-3Item:last-child img {
  border: 1px solid #cecece;
}
.featuresList-3Child {
  display: flex;
  justify-content: space-between;
}
.featuresList-3ChildItem {
  width: 48.1481%;
}

@media only screen and (max-width: 768px) {
  .featuresList-3Item {
    width: 100%;
  }
  .featuresList-3Item:last-child {
    width: 80%;
    margin: 20px auto 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .featuresList-3Item:last-child {
    width: 100%;
  }
}
/* FeaturesList-4 */
.featuresList-4Item {
  width: 48%;
}
.featuresList-4Item .featuresHeading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.featuresList-4Child {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.featuresList-4ChildItem {
  width: 37.7083%;
}
.featuresList-4ChildItem:first-child img {
  border: 1px solid #707070;
}
.featuresList-4ChildItem:last-child {
  width: 59.375%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
}

@media only screen and (max-width: 768px) {
  .featuresList-4Item {
    width: 100%;
    padding-bottom: 70px;
  }
  .featuresList-4Item:last-child {
    padding-bottom: 0;
  }
  .featuresList-4Item div {
    width: 100%;
  }
  .featuresList-4Child {
    display: block;
    margin-top: 30px;
  }
  .featuresList-4ChildItem {
    width: 100%;
  }
  .featuresList-4ChildItem:first-child img {
    display: block;
    width: 60%;
    margin: 0 auto;
    border: 1px solid #707070;
  }
  .featuresList-4ChildItem:last-child {
    width: 60%;
    margin: 10px auto 0 auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  .featuresList-4Item {
    width: 100%;
    padding-bottom: 60px;
  }
  .featuresList-4Item div {
    width: 100%;
  }
  .featuresList-4Child {
    display: block;
    margin-top: 30px;
  }
  .featuresList-4ChildItem:first-child img {
    display: block;
    width: 70%;
    margin: 0 auto;
    border: 1px solid #707070;
  }
  .featuresList-4ChildItem:last-child {
    width: 70%;
  }
}
/* FeaturesList-5 */
.featuresList-5 {
  display: flex;
  justify-content: space-between;
}
.featuresList-5Item {
  width: 50%;
}
.featuresList-5Item-2 {
  width: 50%;
}
.featuresList-5Item-2 .featuresText {
  margin-left: 15%;
  margin-right: 15%;
}
.featuresList-5Item-2Inner, .featuresList-5Item-2Inner-2, .featuresList-5Item-2Inner-1 {
  position: relative;
  display: block;
  height: 0;
  /* 表示画像の高さ ÷ 表示画像の幅 × 100 - 0.1 */
  padding-top: 66.6%;
  background-size: contain;
  background-repeat: no-repeat;
}
.featuresList-5Item-2Inner-1 {
  background-image: url(../img/products/ms-tw22/img-tw22_catch_3_1.jpg);
}
.featuresList-5Item-2Inner-1Heading-1 {
  position: absolute;
  width: 41%;
  top: 5%;
  right: 3.2342%;
  text-align: right;
}
.featuresList-5Item-2Inner-2 {
  background-image: url(../img/products/ms-tw22/img-tw22_catch_3_2.jpg);
}
.featuresList-5Item-2Inner-2Heading-2 {
  position: absolute;
  width: 41%;
  top: 5%;
  left: 3.2342%;
  text-align: left;
}
.featuresList-5Note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
  margin-top: 20px;
}

@media only screen and (max-width: 1000px) {
  .featuresList-5 .featuresList-5Item-2Inner-1Heading-1 .featuresHeading, .featuresList-5 .featuresList-5Item-2Inner-2Heading-2 .featuresHeading {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
@media only screen and (max-width: 768px) {
  .featuresList-5 {
    display: block;
  }
  .featuresList-5Item {
    width: 100%;
  }
  .featuresList-5 .featuresList-5Item-2Inner-1Heading-1 .featuresHeading, .featuresList-5 .featuresList-5Item-2Inner-2Heading-2 .featuresHeading {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .featuresList-5Item-2 {
    width: 100%;
    margin-top: 60px;
  }
  .featuresList-5Item-2:first-child {
    margin-top: 0;
  }
  .featuresList-5Item-2 .featuresText {
    margin-left: 4%;
    margin-right: 4%;
  }
  .featuresList-5Item-2Inner-1Heading-1 {
    top: 15%;
    right: 2%;
    text-align: left;
  }
  .featuresList-5Item-2Inner-2Heading-2 {
    top: 15%;
    left: 4%;
  }
}
@media only screen and (max-width: 480px) {
  .featuresList-5 .featuresList-5Item-2Inner-1Heading-1 .featuresHeading, .featuresList-5 .featuresList-5Item-2Inner-2Heading-2 .featuresHeading {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
/* ========================================================================== */
/* lower-support-common */
/* breadcrumb-trail
============================================================================= */
.breadCrumbWrap {
  width: 100%;
}

.breadCrumb {
  display: flex;
  margin: 20px 0;
}
.breadCrumbItem {
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
}
.breadCrumbItem span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
  color: #b30000;
}
.breadCrumbItem:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
  transform: rotate(45deg);
}
.breadCrumbItem:last-child {
  padding-right: 0;
  margin-right: 0;
}
.breadCrumbItem:last-child:after {
  border-top: none;
  border-right: none;
}
.breadCrumbItem a span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
  color: black;
}
.breadCrumbItem a span:hover {
  text-decoration: underline;
}

/* ========================================================================== */
/* lower
============================================================================= */
.lowerWrap {
  width: 100%;
  padding-top: 0;
}

.lowerTitleWrap {
  width: 100%;
  background-color: #f7f8f9;
  padding: 55px 0;
  text-align: center;
}

.lowerTitle {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: 41px;
  font-size: 4.1rem;
  line-height: 1.5em;
  text-align: left;
}

.lowerHeading, .supportLowerHeading, .lowerHeading-3, .lowerHeading-2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 70px;
}

.lowerHeading-2 {
  text-align: left;
  border-bottom: 1px solid #cecece;
  margin-bottom: 40px;
  padding-bottom: 10px;
}

.lowerHeading-3 {
  font-size: 30px;
  font-size: 3rem;
  text-align: left;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .lowerWrap {
    padding-top: 0;
  }
  .lowerTitle {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .lowerTitleWrap {
    padding: 30px 0;
  }
  .lowerTitle {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .lowerHeading, .supportLowerHeading, .lowerHeading-2, .lowerHeading-3 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
  .lowerHeading-3 {
    font-size: 27px;
    font-size: 2.7rem;
  }
}
/* ========================================================================== */
/* shoplist
============================================================================= */
.shoplist-1 {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  overflow: hidden;
}
.shoplist-1Item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(25% - 30px);
  border: 1px solid #b81e00;
  margin: 0 30px 30px 0;
  padding: 30px;
  text-align: center;
}
.shoplist-1Item span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: black;
  font-size: 18px;
  font-size: 1.8rem;
}

.officialStore {
  text-align: center;
}
.officialStoreItem {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  border-radius: 30px;
  font-size: 23px;
  font-size: 2.3rem;
  background-color: #181818;
  color: white;
  padding: 20px 70px;
  transition: 0.3s;
}
.officialStoreItem img {
  width: 100%;
  max-width: 250px;
}
.officialStoreItem:hover {
  transition: 0.3s;
  background-color: #b81e00;
}

.shopCaution {
  background-color: #fdf4f4;
  border: 3px solid #f4c2c1;
  padding: 25px;
  margin-bottom: 70px;
}
.shopCaution p {
  text-align: center;
}
.shopCaution p span {
  display: inline-block;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

.shoplistNav {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.shoplistNavItem {
  width: 200px;
  display: block;
  border: 1px solid black;
  border-radius: 5px;
  margin-left: 15px;
  padding: 20px 0;
  text-align: center;
}
.shoplistNavItem:nth-of-type(1) {
  margin-left: 0;
}
.shoplistNavItem span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: black;
  transition: 0.3s;
}
.shoplistNavItem span:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.shoplistNavItem .arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 18px;
  vertical-align: middle;
  text-decoration: none;
}
.shoplistNavItem .arrow::before,
.shoplistNavItem .arrow::after {
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.shoplistNavItem .arrow::before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgb(41, 41, 41);
}
.shoplistNavItem .arrow::after {
  top: 0;
  left: 4px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg);
}

.shopLocalNav {
  display: flex;
  flex-wrap: wrap;
}
.shopLocalNavItem {
  display: block;
  width: 100px;
  margin-bottom: 20px;
}
.shopLocalNavItem span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: black;
  font-size: 17px;
  font-size: 1.7rem;
  transition: 0.3s;
}
.shopLocalNavItem span:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.shopLocalNavItem .arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 18px;
  vertical-align: middle;
  text-decoration: none;
}
.shopLocalNavItem .arrow::before,
.shopLocalNavItem .arrow::after {
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.shopLocalNavItem .arrow::after {
  top: 0;
  left: 4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid black;
  border-right: 2px solid black;
  transform: rotate(135deg);
}

.shopContentWrap {
  border: 1px solid #cecece;
}
.shopContentWrap .shopContentHead {
  font-size: 20px;
  font-size: 2rem;
  background-color: #e9e9e9;
  padding: 10px 0 10px 10px;
}
.shopContentWrap .shopContent {
  display: flex;
  border-bottom: 1px solid #cecece;
}
.shopContentWrap .shopContent:last-child {
  border-bottom: none;
}
.shopContentWrap .shopContentItem {
  padding: 10px;
}
.shopContentWrap .shopContentItem > div {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}
.shopContentWrap .shopContentItem > div > span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding-right: 5px;
}
.shopContentWrap .shopContentItem:first-child {
  width: 30%;
  border-right: 1px solid #cecece;
}

#region01, #region02, #region03, #region04, #region05, #region06, #province01, #province02, #province03, #province04, #province05, #province06, #province07, #province08, #province09, #province10, #province11, #province12, #province13, #province14, #province14, #province15, #province16, #province17, #province18, #province19, #province20, #province21, #province22, #province23, #province24, #province25, #province26, #province27, #province28, #province29, #province30, #province31, #province32, #province33, #province34, #province35, #province36, #province37, #province38, #province39, #province40, #province41, #province42, #province43, #province44, #province45, #province46, #province47 {
  padding-top: 100px;
  margin-top: -100px;
}

#allshop, #online-shop {
  padding-top: 130px;
  margin-top: -130px;
}

@media only screen and (max-width: 990px) {
  .shoplist-1 {
    width: 104%;
  }
  .shoplist-1Item {
    width: 46%;
    margin: 0 4% 4% 0;
  }
  .shoplistNav {
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100％;
  }
  .shoplistNavItem {
    width: 49%;
    margin-left: 0;
    margin-bottom: 3%;
    padding: 20px;
  }
  .shoplistNavItem:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .shopContentWrap .shopContent {
    display: block;
  }
  .shopContentWrap .shopContentItem:first-child {
    width: 100%;
    border-right: none;
  }
  #province01, #province02, #province03, #province04, #province05, #province06, #province07, #province08, #province09, #province10, #province11, #province12, #province13, #province14, #province14, #province15, #province16, #province17, #province18, #province19, #province20, #province21, #province22, #province23, #province24, #province25, #province26, #province27, #province28, #province29, #province30, #province31, #province32, #province33, #province34, #province35, #province36, #province37, #province38, #province39, #province40, #province41, #province42, #province43, #province44, #province45, #province46, #province47 {
    padding-top: 50px;
    margin-top: -50px;
  }
}
@media only screen and (max-width: 480px) {
  .shoplist-1 {
    display: block;
    width: 100%;
  }
  .shoplist-1Item {
    width: 100%;
    margin: 0 4% 4% 0;
  }
  .shoplistNavItem {
    padding: 12px;
  }
}
/* ========================================================================== */
/* support
============================================================================= */
/* support-news */
.supportNewsWrap {
  border: 1px solid red;
  border-radius: 5px;
  margin-bottom: 50px;
  padding: 32px;
}
.supportNewsWrap .supportNewsWrap__text {
  text-align: center;
}
.supportNewsWrap .supportNewsWrap__text span {
  color: red;
}
@media only screen and (max-width: 768px) {
  .supportNewsWrap .supportNewsWrap__text span {
    display: inline-block;
    text-align: left;
  }
}

.supportNews {
  display: flex;
  border-bottom: 1px dotted black;
  margin-top: 10px;
  padding-bottom: 10px;
}
.supportNews:first-child {
  margin-top: 0;
}
.supportNews:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.supportNewsData {
  width: 100px;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  margin-right: 30px;
}
.supportNewsItem a {
  display: block;
  color: black;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.6em;
}
.supportNewsItem a:hover {
  text-decoration: underline;
}
.supportNewsItem a:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -8px;
  width: 9px;
  height: 9px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg);
}

/* contact-choose */
.chooseWrap {
  position: relative;
  margin-bottom: 80px;
}
.chooseWrapInner {
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.chooseWrapInner p {
  font-size: 17px;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  text-align: left;
}
.chooseWrap .chooseBreadCrumbWrap {
  width: 100%;
}
.chooseWrap .chooseBreadCrumb {
  display: flex;
  margin: 20px 0;
}
.chooseWrap .chooseBreadCrumbItem {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
  padding-right: 15px;
  margin-right: 10px;
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
}

.backBtn, .contactBtn {
  position: relative;
  display: block;
  width: 200px;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  background-color: black;
  border: 1px solid black;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
}
.backBtn:after, .contactBtn:after {
  content: "";
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(45deg);
}

.contactBtn {
  width: 320px;
  background-color: white;
  border: 1px solid black;
  color: black;
  margin-top: 60px;
  margin-bottom: 30px;
}
.contactBtn:after {
  content: "";
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg);
}

.choose, .chooseCenter {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
.chooseItem, .chooseCenterItem {
  position: relative;
  display: block;
  width: 30%;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  text-align: center;
  border-radius: 5px;
  color: black;
  border: 1px solid #626262;
  padding: 20px;
  transition: 0.3s;
}
.chooseItem:after, .chooseCenterItem:after {
  content: "";
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 20px;
  width: 12px;
  height: 12px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg);
}
.chooseItem:hover:after, .chooseCenterItem:hover:after {
  border-top: 1px solid white;
  border-right: 1px solid white;
}
.chooseItem:hover, .chooseCenterItem:hover {
  background-color: #626262;
  color: white;
  border: 1px solid #626262;
  transition: 0.3s;
}

.chooseCenter {
  justify-content: center;
}
.chooseCenterItem:first-child {
  margin-right: 30px;
}

#q_answre {
  padding-top: 140px;
  margin-top: -140px;
}

#qa {
  padding-top: 60px;
  margin-top: -60px;
}

/* supportLineup */
.supportLineup {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.supportLineupItem {
  display: block;
  width: 22%;
  text-align: center;
  margin-top: 90px;
  margin-right: 4%;
}
.supportLineupItem:nth-child(4n) {
  margin-right: 0;
}
.supportLineupItem:nth-child(-n+4) {
  margin-top: 0;
}
.supportLineupItem span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  color: black;
  margin-top: 10px;
}
.supportLineupItem span:hover {
  text-decoration: underline;
}
.supportLineupItem .img {
  border: 1px solid #cecece;
  border-radius: 5px;
  padding: 15px;
}
.supportLineupItem .img img {
  transition: 0.2s;
}
.supportLineupItem .img img:hover {
  transition: 0.2s;
  opacity: 0.8;
}
.supportLineupItem .img .img-1 {
  width: 99%;
}
.supportLineupItem .img .img-2 {
  width: 76%;
}
.supportLineupItem .img .img-4 {
  width: 91%;
}
.supportLineupItem .img .img-5 {
  width: 95%;
}
.supportLineupItem .img .img-6 {
  width: 64%;
}
.supportLineupItem .img .img-7 {
  width: 91%;
}

@media only screen and (max-width: 768px) {
  /* contact-choose */
  .chooseWrap {
    margin-bottom: 60px;
  }
  .chooseBreadCrumb {
    display: none !important;
  }
  .choose, .chooseCenter {
    display: block;
    padding: 30px 0;
  }
  .chooseItem, .chooseCenterItem {
    display: block;
    width: 80%;
    font-size: 16px;
    font-size: 1.6rem;
    margin: 15px auto 0 auto;
  }
  .chooseItem:first-child, .chooseCenterItem:first-child {
    margin-top: 0;
  }
  .chooseCenterItem:first-child {
    margin-right: auto;
  }
  #q_answre {
    padding-top: 140px;
    margin-top: -140px;
  }
  #qa {
    padding-top: 60px;
    margin-top: -60px;
  }
  .supportLineupItem {
    width: 30.6%;
    margin-top: 70px;
  }
  .supportLineupItem:nth-child(4n) {
    margin-right: 4%;
  }
  .supportLineupItem:nth-child(3n) {
    margin-right: 0;
  }
  .supportLineupItem:nth-of-type(4) {
    margin-top: 70px;
  }
  .supportLineupItem:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .supportLineupItem {
    width: 48%;
    margin-top: 50px;
  }
  .supportLineupItem:nth-child(3n) {
    margin-right: 4%;
  }
  .supportLineupItem:nth-child(even) {
    margin-right: 0;
  }
  .supportLineupItem:nth-of-type(3) {
    margin-top: 50px;
  }
  .supportLineupItem:nth-of-type(4) {
    margin-top: 50px;
  }
  .supportLineupItem:nth-child(-n+2) {
    margin-top: 0;
  }
}
/* compensationNews */
.compensationNews {
  width: 70%;
  border: 2px solid red;
  border-radius: 5px;
  margin: 0 auto;
  padding: 20px;
}
.compensationNewsTitle {
  color: red;
  border-bottom: 1px solid red;
  padding-bottom: 10px;
  text-align: center;
}
.compensationNewsTitle span {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.5em;
  text-align: left;
}
.compensationNews p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5em;
  padding-top: 20px;
}
.compensationNewsList {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5em;
  color: red;
  border-bottom: 1px dotted red;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.compensationNewsList:first-child {
  padding-top: 20px;
}
.compensationNewsList:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.compensationNewsList dt {
  margin-bottom: 5px;
}

.compensationIcon {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 60px auto;
}
.compensationIconItem {
  width: 120px;
}

@media only screen and (max-width: 768px) {
  .compensationNews {
    width: 100%;
  }
  .compensationIcon {
    justify-content: center;
    width: 100%;
  }
  .compensationIconItem {
    width: 100%;
    max-width: 120px;
    margin-left: 20px;
  }
  .compensationIconItem:first-child {
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .compensationNewsTitle span {
    font-size: 20px;
    font-size: 2rem;
  }
}
/* compensationBtn */
.compensationBtn {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 100px auto 0 auto;
  transition: 0.2s;
}
.compensationBtn:hover {
  transition: 0.2s;
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  .compensationBtn {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .compensationBtn {
    margin-top: 60px;
  }
}
/* compensationNote */
.compensationNote {
  color: red;
  border: 1px solid red;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 30px;
  padding: 10px;
}
.compensationNote span {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.5em;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .compensationNote {
    text-align: center;
    margin-bottom: 0;
    padding: 10px !important;
  }
  .compensationNote span {
    display: inline-block !important;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.5em;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
/* support-lower */
.supportLowerHeading {
  border-bottom: 1px solid #cecece;
  padding-bottom: 10px;
}

.supportLowerBoxWrap {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  margin-bottom: 120px;
}
.supportLowerBoxWrap span {
  display: inline-block;
  text-align: left;
}
.supportLowerBoxWrap a {
  display: inline-block;
  color: black;
  font-weight: 300;
  line-height: 1.8em;
  text-align: left;
}
.supportLowerBoxWrap small {
  display: block;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}
.supportLowerBoxWrap small span {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 2em;
  text-align: left;
}
.supportLowerBoxWrap:last-child {
  margin-bottom: 0;
}

.supportLowerBox-1 {
  display: flex;
  justify-content: center;
}
.supportLowerBox-1 .tableWrap {
  padding-top: 50px;
}
.supportLowerBox-1 .tableWrapFirst {
  padding-top: 0;
}
.supportLowerBox-1 table {
  width: 100%;
  border: 1px solid #cecece;
  background-color: white;
}
.supportLowerBox-1 table th {
  background-color: #f1f3f7;
}
.supportLowerBox-1 table th, .supportLowerBox-1 table td {
  border: 1px solid #cecece;
  text-align: center;
  padding: 10px;
  vertical-align: middle;
}
.supportLowerBox-1 table th span, .supportLowerBox-1 table td span {
  display: inline-block;
  font-weight: 300;
  text-align: left;
}
.supportLowerBox-1Item-1 {
  display: block;
  width: 100%;
  max-width: 300px;
  color: black;
  margin-left: 20px;
}
.supportLowerBox-1Item-1:first-child {
  margin-left: 0;
}
.supportLowerBox-1Item-1 div:first-child {
  width: 100%;
  max-width: 50px;
  margin: 0 auto;
}
.supportLowerBox-1Item-1 div:last-child {
  margin-top: 10px;
  text-align: center;
}
.supportLowerBox-1Item-1 div:last-child span {
  display: inline-block;
  font-weight: 300;
  line-height: 1.5em;
  text-align: left;
}
.supportLowerBox-1Item-1 div:last-child span:hover {
  text-decoration: underline;
}
.supportLowerBox-1Item-2, .supportLowerBox-1Item-3, .supportLowerBox-1Item-4 {
  width: 48%;
}
.supportLowerBox-1Item-2ChildHeading, .supportLowerBox-1Item-3ChildHeading, .supportLowerBox-1Item-4ChildHeading {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5em;
  margin-bottom: 20px;
}
.supportLowerBox-1Item-2ChildNote, .supportLowerBox-1Item-3ChildNote, .supportLowerBox-1Item-4ChildNote {
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5em;
  margin-top: 20px;
}
.supportLowerBox-1Item-2GrandChild, .supportLowerBox-1Item-3GrandChild, .supportLowerBox-1Item-4GrandChild {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.supportLowerBox-1Item-2GrandChildItem, .supportLowerBox-1Item-3GrandChildItem, .supportLowerBox-1Item-4GrandChildItem {
  width: 49%;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #cecece;
  border-radius: 5px;
}
.supportLowerBox-1Item-2GrandChildItem small span, .supportLowerBox-1Item-3GrandChildItem small span, .supportLowerBox-1Item-4GrandChildItem small span {
  font-size: 13px;
  font-size: 1.3rem;
}
.supportLowerBox-1Item-3 {
  width: 49.4%;
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 5px;
}
.supportLowerBox-1Item-4 {
  width: 100%;
}
.supportLowerBox-1Item-4 table {
  width: 100%;
}
.supportLowerBox-1Item-4 table th {
  width: 40%;
}
.supportLowerBox-1Item-4 table th, .supportLowerBox-1Item-4 table td {
  padding: 15px;
}
.supportLowerBox-1Item-4 table th span, .supportLowerBox-1Item-4 table td span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}
.supportLowerBox-1Item-4GrandChildItem {
  display: flex;
  flex-direction: column;
}
.supportLowerBox-1Item-4GrandChildItem .Img {
  text-align: center;
}
.supportLowerBox-1Item-4GrandChildItem small {
  flex: 1;
  height: 100%;
  min-height: 0%;
}

.supportLowerBox-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.supportLowerBox-2Item:first-child {
  width: 15%;
}
.supportLowerBox-2Item:last-child {
  width: 80%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  text-align: left;
}

.supportLowerBox-3 {
  border: 1px solid #cecece;
  padding: 40px;
}
.supportLowerBox-3Item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.8em;
  margin-top: 20px;
  padding-left: 1em;
  text-indent: -1em;
}
.supportLowerBox-3Item:first-child {
  margin-top: 0;
}
.supportLowerBox-3Child, .supportLowerBox-3GrandChild {
  margin-top: 20px;
  padding-left: 1em;
}
.supportLowerBox-3ChildItem, .supportLowerBox-3GrandChildItem {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.8em;
  margin-top: 20px;
}

.supportCaution {
  background-color: #fdf4f4;
  border: 3px solid #f4c2c1;
  padding: 25px;
}
.supportCautionItem {
  margin-top: 30px;
}
.supportCautionItem:first-child {
  margin-top: 0;
}
.supportCautionItem p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  padding-left: 1em;
  text-indent: -1em;
}
.supportCautionItem .img {
  width: 100%;
  max-width: 600px;
  margin-top: 10px;
  border: 1px solid #181818;
}
.supportCautionItem .movieWrap {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}
.supportCautionItem .movieWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .supportLowerBoxWrap {
    margin-bottom: 80px;
  }
  .supportLowerBox-1 {
    display: block;
  }
  .supportLowerBox-1Item-2, .supportLowerBox-1Item-3, .supportLowerBox-1Item-4 {
    width: 100%;
    margin-bottom: 50px;
  }
  .supportLowerBox-1Item-2:last-child, .supportLowerBox-1Item-3:last-child, .supportLowerBox-1Item-4:last-child {
    margin-bottom: 0;
  }
  .supportLowerBox-1Item-2GrandChild, .supportLowerBox-1Item-3GrandChild, .supportLowerBox-1Item-4GrandChild {
    display: block;
  }
  .supportLowerBox-1Item-2GrandChildItem, .supportLowerBox-1Item-3GrandChildItem, .supportLowerBox-1Item-4GrandChildItem {
    width: 100%;
    margin-bottom: 4%;
  }
  .supportLowerBox-2 {
    display: block;
  }
  .supportLowerBox-2Item:first-child {
    width: 20%;
    margin: 0 auto 20px auto;
  }
  .supportLowerBox-2Item:last-child {
    width: 100%;
  }
  .supportLowerBox-2Item span {
    margin: 40px auto 0 auto;
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .supportLowerBoxWrap {
    margin-bottom: 60px;
  }
  .supportLowerBox-1 table th span, .supportLowerBox-1 table td span {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .supportLowerBox-2Item:first-child {
    width: 35%;
  }
  .supportLowerBox-2Item span {
    margin-top: 30px;
  }
  .supportLowerBox-3 {
    padding: 20px;
  }
}
/* ========================================================================== */
/* special-link-banner
========================================================================== */
.specialLinkBanner {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 90px;
}

@media only screen and (max-width: 768px) {
  .specialLinkBanner {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .specialLinkBanner {
    padding-top: 50px;
  }
}
/* ======================================================================= */
/* spec-area
========================================================================== */
.specWrap {
  background-color: #f1f1f1;
  margin-top: 100px;
}

.specTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 40px;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 70px;
}

.specImage, .specImageTw3 {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 0 auto 80px auto;
}
.specImageItem, .specImageTw3Item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 181px;
  margin-left: 20px;
}
.specImageItem:first-child, .specImageTw3Item:first-child {
  margin-left: 0;
}
.specImageItem div:nth-of-type(3), .specImageTw3Item div:nth-of-type(3) {
  margin-top: auto;
}
.specImageItem span, .specImageTw3Item span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5em;
  margin-top: 15px;
  text-align: center;
}

.specImageCenter {
  justify-content: center;
}

.specImageNote {
  text-align: center;
}

.spec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 70px;
}
.specItem {
  width: 48%;
  border-top: 1px solid #B4B4B4;
  padding: 20px;
}

.specDetail {
  display: flex;
  justify-content: space-between;
}
.specDetailItem {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.5em;
}
.specDetailItem:first-child {
  width: 32%;
}
.specDetailItem:last-child {
  width: 50%;
}
.specDetailItem .small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5em;
}
.specDetailItem .icon-1 {
  width: 86px;
  margin-top: 20px;
}
.specDetailItem .icon-2 {
  width: 132px;
  margin-top: 20px;
}

.specItem-2 {
  margin-top: 50px;
}
.specItem-2Title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.5em;
  margin-bottom: 20px;
}
.specItem-2Inner {
  display: flex;
}
.specItem-2InnerItem {
  display: block;
  width: 100%;
  max-width: 170px;
  margin-right: 20px;
}
.specItem-2InnerItem:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 830px) {
  .specImage, .specImageCenter {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .specWrap {
    margin-top: 80px;
  }
  .specTitle {
    font-size: 34px;
    font-size: 3.4rem;
    margin-bottom: 50px;
  }
  .specImageNote div {
    display: block;
  }
  .specImageNote span:last-child {
    margin-top: 0;
  }
  .spec {
    display: block;
  }
  .specItem {
    width: 100%;
  }
}
@media only screen and (max-width: 670px) {
  .specImage, .specImageTw3 {
    width: 90%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .specImageItem, .specImageTw3Item {
    width: 45%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  .specImageItem:first-child, .specImageTw3Item:first-child {
    margin-left: 0;
  }
  .specImageItem:nth-child(-n+2), .specImageTw3Item:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .specWrap {
    margin-top: 60px;
  }
  .specImage {
    width: 100%;
    flex-wrap: wrap;
  }
  .specImageItem {
    width: 55%;
    margin: 0 auto;
    padding-top: 40px;
  }
  .specImageItem:first-child {
    margin-left: auto;
    padding-top: 0;
  }
  .specItem {
    padding: 20px 0;
  }
  .specDetail {
    display: block;
  }
  .specDetailItem:first-child {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    font-size: 1.6rem;
    padding-bottom: 10px;
  }
  .specDetailItem:last-child {
    width: 100%;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .specDetailItem .small {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5em;
  }
  .specDetailItem .icon-1 {
    width: 86px;
    margin-top: 20px;
  }
  .specDetailItem .icon-2 {
    width: 132px;
    margin-top: 20px;
  }
  .specItem-2 {
    margin-top: 30px;
  }
  .specItem-2Inner {
    display: flex;
  }
  .specItem-2InnerItem {
    display: block;
    width: 100%;
    max-width: 170px;
    margin-right: 20px;
  }
  .specItem-2InnerItem:last-child {
    margin-right: 0;
  }
}
/* ========================================================================== */
/* form
============================================================================ */
form .contents {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
form .question {
  width: 100%;
  margin-bottom: 40px;
}
form .question th {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.8rem;
  padding-bottom: 10px;
}
form .question th .required {
  background-color: red;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  margin-left: 5px;
  padding: 3px;
  border-radius: 5px;
}
form .question td {
  width: 100%;
  vertical-align: middle;
}
form .question td input[type=text] {
  width: 48.5%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 10px;
}
form .question td input[type=text]:last-child {
  margin-left: 2%;
}
form .question td input[name="03"], form .question td input[name="03-confirm"] {
  width: 80%;
}
form .question td input[name="03-confirm"] {
  margin-top: 10px;
}
form .question td input[name="03-confirm"]:last-child {
  margin-left: 0;
}
form .question td input[name="04"], form .question td input[name="05"] {
  width: 30%;
}
form .question td input[name="05"]:last-child, form .question td input[name="07"]:last-child, form .question td input[name="10"]:last-child {
  margin-left: 0;
}
form .question td ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  margin-bottom: 5px;
}
form .question td ul li:last-child {
  margin-bottom: 0;
}
form .question td .description {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  margin-top: 10px;
}
form .question td select {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 10px;
}
form .question td textarea {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 10px;
}
form .confirm {
  width: 100%;
}
form .confirm th {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  padding-top: 15px;
}
form .confirm td {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #cecece;
}
form .confirm td ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
}
form .confirm td .total {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
}
form .button_area {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}
form .button_area input[type=submit],
form .button_area input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  width: 150px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  color: white;
  border-radius: 5px;
  background-color: #9c9c9c;
  padding: 10px;
  cursor: pointer;
}
form .button_area input[type=submit]::-webkit-search-decoration,
form .button_area input[type=button]::-webkit-search-decoration {
  display: none;
}
form .button_area input[type=submit]::focus,
form .button_area input[type=button]::focus {
  outline-offset: -2px;
}
form .button_area input[type=submit] {
  margin-left: 20px;
}

.complete p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5em;
  margin-bottom: 30px;
}
.complete ul {
  margin-top: 50px;
}
.complete ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.complete ul li:last-child {
  margin-bottom: 0;
}
.complete ul li .child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 20px;
}

@media only screen and (max-width: 480px) {
  form .question {
    margin-bottom: 30px;
  }
  form .question td input[type=text] {
    width: 100%;
  }
  form .question td input[type=text]:last-child {
    margin-top: 10px;
    margin-left: 0;
  }
  form .question td input[name="03"], form .question td input[name="03-confirm"] {
    width: 100%;
  }
  form .question td input[name="04"], form .question td input[name="05"] {
    width: 30%;
    margin-top: 0 !important;
  }
  .contact form .question td input[name="04"] {
    width: 50% !important;
  }
}
/* ========================================================================== */
/* ============================================================================
03. Modules
============================================================================ */
/* display
============================================================================ */
.dpBlock {
  display: block;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  .tabNone {
    display: none !important;
  }
  .tab {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
  .spNone {
    display: none !important;
  }
}
/* ========================================================================== */
/* link
============================================================================ */
a {
  text-decoration: none;
  color: white;
}

.anchor {
  padding-top: 200px;
  margin-top: -200px;
}

.linkOpacity {
  transition: 0.3s;
}
.linkOpacity:hover {
  transition: 0.3s;
  opacity: 0.5;
}

.linkOpacityHeader, .linkOpacityHeaderSns, .linkOpacityHeaderBlue, .linkOpacityHeaderPink, .linkOpacityHeaderRed {
  transition: 0.1s;
}
.linkOpacityHeader:hover, .linkOpacityHeaderSns:hover, .linkOpacityHeaderBlue:hover, .linkOpacityHeaderPink:hover, .linkOpacityHeaderRed:hover {
  transition: 0.1s;
}

.linkOpacityHeaderRed:hover {
  background-color: #c43535;
  opacity: 1;
}

.linkOpacityHeaderPink:hover {
  background-color: #fc9bc8 !important;
  opacity: 1;
}

.linkOpacityHeaderBlue:hover {
  background-color: #4f6ae6 !important;
  opacity: 1;
}

.linkOpacityHeaderSns:hover {
  opacity: 0.7;
}

/* text-align
============================================================================ */
.textCenter {
  text-align: center;
}

.textleft {
  text-align: left;
}

.textCenterLeft {
  display: inline-block;
  text-align: left;
}

@media only screen and (max-width: 480px) {
  .spTextCenter {
    text-align: center;
  }
  .spTextCenterLeft {
    display: inline-block;
    text-align: left;
  }
}
/* ========================================================================== */
/* text-decration
============================================================================ */
.underLine {
  text-decoration: underline;
}

/* ========================================================================== */
/* ClearFix
============================================================================= */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

.clear {
  clear: both;
}

/* ========================================================================== */
/* color
============================================================================ */
.red {
  color: red;
}

/* ========================================================================== */
/* bg-color
============================================================================ */
.bg-gray {
  background-color: #efefef;
}

/* ========================================================================== */
/* font-size
============================================================================ */
.f-12 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5em;
}

.f-20 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5em;
}

/* ========================================================================== */
/* font-weight
============================================================================ */
.normal {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300 !important;
}

.bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400 !important;
}

/* ========================================================================== */
/* border
============================================================================ */
.borderBlack {
  border-bottom: 1px solid #cecece;
  padding-bottom: 10px;
}

/* ========================================================================== */
/* margin
============================================================================ */
.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.m-r {
  margin-left: auto !important;
  margin-right: 0 !important;
}

@media only screen and (max-width: 768px) {
  .sp-m-0 {
    margin: 0 !important;
  }
}
/* ========================================================================== */
/* padding
============================================================================ */
.pt-30 {
  padding-top: 30px;
}

/* ========================================================================== */
/* =============================================================================
04. Sections
============================================================================= */
/* top-page */
/* topMainvisual
============================================================================= */
.topMainvisual {
  width: 100%;
}
.topMainvisual .topMovie {
  width: 100%;
  aspect-ratio: 16/9;
}
.topMainvisual .topMovie iframe {
  width: 100%;
  height: 100%;
}

/* top-special */
.top-special {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .top-special {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 4%;
  }
}
/* ========================================================================== */
/* top-campaign-area
============================================================================= */
.topCampaignWrap {
  background-color: #f5f4f4;
  margin-bottom: 90px;
  padding: 60px 0;
}

.topCampaign {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.topCampaignItem {
  display: block;
  width: 100%;
  max-width: 480px;
  border: 1px solid #c6cdd4;
}
.topCampaignItem:first-child {
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  .topCampaignWrap {
    margin-bottom: 70px;
  }
  .topCampaign {
    display: block;
  }
  .topCampaignItem {
    width: 70%;
    max-width: 100%;
    margin: 0 auto;
  }
  .topCampaignItem:first-child {
    margin-right: auto;
    margin-bottom: 6%;
  }
}
@media only screen and (max-width: 480px) {
  .topCampaignWrap {
    margin-bottom: 50px;
    padding: 30px 0;
  }
  .topCampaignItem {
    width: 80%;
  }
}
/* ========================================================================== */
/* top-products-area
============================================================================= */
/* topProductsMain */
.topProductsMain {
  display: block;
  width: 98%;
  background-color: #C6CDD4;
  margin: 1% auto 0 auto;
}
.topProductsMainInner {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding-top: 45px;
}
.topProductsMainBtn {
  position: absolute;
  bottom: 27px;
  right: 13px;
  width: 150px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  color: black;
  text-align: center;
  border: 2px solid black;
  border-radius: 30px;
  margin-top: 26px;
  padding: 10px 0;
  transition: all 0.3s;
}
.topProductsMainBtn:hover {
  color: white;
  background-color: black;
}

@media only screen and (max-width: 768px) {
  .topProductsMainInner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 4% 10% 0 10%;
  }
  .topProductsMainInner span {
    display: none;
  }
}
.topProductsWrap, .topProductsWrap-first {
  width: 100%;
  margin-bottom: 90px;
  padding-bottom: 0px;
}

.topProductsWrap-first {
  background-color: #efefef;
  border-top: 20px solid #cecece;
  padding: 80px 0;
}

.topProducts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 85%;
  margin: 0 auto;
}
.topProductsItem {
  position: relative;
  display: block;
  width: 49%;
  margin-top: 2%;
  border: 1px solid rgb(193, 193, 193);
}
.topProducts .productsName, .topProducts .productsNameBlack {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 25px;
  font-size: 2.5rem;
  text-align: center;
  z-index: 99;
}
.topProducts .productsName .productsBtn, .topProducts .productsNameBlack .productsBtn {
  color: white;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: transparent;
  margin-top: 15px;
  border: 2px solid white;
}
.topProducts .productsName .productsBtn:hover, .topProducts .productsNameBlack .productsBtn:hover {
  color: black;
  background-color: white;
}
.topProducts .productsNameBlack {
  color: black;
}
.topProducts .productsBtnBlack {
  font-size: 16px;
  font-size: 1.6rem;
  color: black;
  margin-top: 15px;
  border: 2px solid black;
}
.topProducts .productsBtnBlack:hover {
  color: white;
  background-color: black;
}

@media only screen and (max-width: 970px) {
  .topProductsWrap, .topProductsWrap-first {
    margin-bottom: 70px;
  }
  .topProductsWrap-first {
    padding: 70px 0;
  }
  .topProducts .productsName, .topProducts .productsNameBlack {
    font-size: 20px;
    font-size: 2rem;
  }
  .topProducts .productsName .productsBtn, .topProducts .productsNameBlack .productsBtn {
    margin-top: 10px;
  }
  .topProducts .productsBtnBlack {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 830px) {
  .topProducts {
    width: 100%;
  }
  .topProducts .productsName, .topProducts .productsNameBlack {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 580px) {
  .topProducts .productsName, .topProducts .productsNameBlack {
    font-size: 20px;
    font-size: 2rem;
  }
  .topProducts .productsName .productsBtn, .topProducts .productsNameBlack .productsBtn {
    width: 130px;
    color: white;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 5px 0;
  }
  .topProducts .productsBtnBlack {
    width: 130px;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 5px 0;
  }
}
@media only screen and (max-width: 480px) {
  .topProductsWrap, .topProductsWrap-first {
    margin-bottom: 50px;
  }
  .topProductsWrap-first {
    padding: 50px 0;
  }
  .topProducts .productsName .productsBtn, .topProducts .productsNameBlack .productsBtn, .topProducts .productsName .productsBtnBlack, .topProducts .productsNameBlack .productsBtnBlack {
    width: auto;
    position: relative;
    margin-top: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 400px) {
  .topProducts .productsName, .topProducts .productsNameBlack {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
/* ========================================================================== */
/* top-heading
============================================================================= */
.topHeading {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 35px;
  font-size: 3.5rem;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 50px;
}
.topHeading div {
  color: #b00101;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .topHeading {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 30px;
  }
  .topHeading div {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .topHeading {
    font-weight: 400;
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
  .topHeading div {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 5px;
  }
}
/* ========================================================================== */
/* top-topics
============================================================================= */
.topTopicsNew {
  width: 96%;
  margin: 0 auto;
  padding: 0;
}
.topTopicsNewItem {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 10px;
}
.topTopicsNewItem img {
  border: 1px solid #c6cdd4;
}
.topTopicsNewItem p {
  display: inline-block;
  text-align: left;
  color: #b00101;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  margin-top: 20px;
}
.topTopicsNewItem p:hover {
  text-decoration: underline;
}

/* ========================================================================== */
/* top-category-area
============================================================================= */
.topCategory {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 50px;
  padding: 50px;
}
.topCategoryItem {
  display: block;
}
.topCategoryItem:first-child {
  width: 100%;
  max-width: 265px;
  border-right: 1px solid black;
  margin-right: 2%;
  padding-right: 2%;
}
.topCategoryItem:last-child {
  display: inline-block;
  border-radius: 28px;
  font-size: 25px;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: white;
  background-color: #181818;
  margin-top: 55px;
  padding: 15px 60px;
}

@media only screen and (max-width: 768px) {
  .topCategory {
    display: block;
  }
  .topCategoryItem {
    margin: 0 auto;
  }
  .topCategoryItem:first-child {
    border-right: none;
    margin-right: 2%;
    margin-right: auto;
    padding-right: 0;
  }
  .topCategoryItem:last-child {
    display: block;
    width: 60%;
    font-size: 20px;
    font-size: 2rem;
    margin-top: 30px;
    padding: 20px 60px;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) and (max-width: 480px) {
  .topCategoryItem {
    width: 65%;
  }
  .topCategoryItem:first-child {
    width: 61%;
  }
  .topCategoryItem:last-child {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 20px;
    padding: 20px 0;
  }
}
/* ========================================================================== */
/* product tw-23 */
/* tw-23-top-visual
============================================================================= */
.tw-23-top-visual {
  position: relative;
  height: 0;
  width: 100%;
  background-image: url(../img/products/ms-tw23/img-m-visual-bg.jpg);
  padding-top: 42.1388%;
  background-size: 100%;
}
.tw-23-top-visual__inner {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding: 0 11.4179% 0 17.4627%;
}
.tw-23-top-visual__inner__item-1 {
  width: 18.3682%;
  margin-right: 5.4085%;
}
.tw-23-top-visual__inner__item-2 {
  width: 23.2371%;
  margin-right: 1.611%;
}
.tw-23-top-visual__inner__item-3 {
  width: 23.7768%;
  margin-right: 0.5754%;
}
.tw-23-top-visual__inner__item-4 {
  width: 18.023%;
}
.tw-23-top-visual__catch {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 10;
  width: 42.8209%;
  padding-left: 3%;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 1025px), (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 1025px), (min-resolution: 2dppx) and (min-device-width: 1025px) {
  .tw-23-top-visual {
    background-image: url(../img/products/ms-tw23/img-m-visual-bg@2x.jpg);
  }
}
@media only screen and (max-width: 768px) {
  .tw-23-top-visual {
    background-image: url(../img/products/ms-tw23/img-m-visual-bg_sp.jpg);
    padding-top: 56.801%;
  }
  .tw-23-top-visual__inner {
    padding: 0 4%;
  }
  .tw-23-top-visual__inner__item-1 {
    width: 19.6833%;
    margin-right: 6.1086%;
  }
  .tw-23-top-visual__inner__item-2 {
    width: 25.3394%;
    margin-right: 0.6787%;
  }
  .tw-23-top-visual__inner__item-3 {
    width: 24.8869%;
    margin-right: 0.5754%;
  }
  .tw-23-top-visual__inner__item-4 {
    width: 19.457%;
  }
  .tw-23-top-visual__catch {
    width: 61.875%;
    padding-left: 3%;
  }
}
/* ========================================================================== */
/* tw-23-containar
============================================================================= */
.tw-23-containar {
  width: 100%;
}

.tw-23-containar-1 {
  margin-bottom: 50px;
}
.tw-23-containar-1:first-child {
  margin-top: 50px;
}

.tw-23-containar__inner {
  padding: 0 20px;
}

.tw-23-containar__child {
  width: 100%;
  max-width: 994px;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  .w-23-containar__inner {
    padding: 0 4%;
  }
}
/* ========================================================================== */
/* tw-23-slider
============================================================================= */
.tw-23-slider {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.tw-23-slider__item, .tw-23-slider__item-4, .tw-23-slider__item-3, .tw-23-slider__item-2, .tw-23-slider__item-1 {
  position: relative;
  border-radius: 40px;
  background-size: 1200px;
  background-position: bottom;
}
.tw-23-slider__img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 50px;
}
.tw-23-slider__btn {
  position: absolute;
  bottom: 50px;
  left: 42%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  width: 100%;
  max-width: 300px;
  background-color: white;
  color: black;
  border: 2px solid black;
  border-radius: 40px;
  font-family: Hiragino Kaku Gothic W4 JIS2004;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1em;
  text-align: center;
  margin: 0 auto;
  padding: 20px 0;
}
.tw-23-slider__arrow-l, .tw-23-slider__arrow-r {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 52px;
}
.tw-23-slider__arrow-l {
  left: 22px;
}
.tw-23-slider__arrow-r {
  right: 22px;
}
.tw-23-slider__item-1 {
  background-image: url(../img/products/ms-tw23/img-slider-bg-pink.jpg);
}
.tw-23-slider__item-2 {
  background-image: url(../img/products/ms-tw23/img-slider-bg-white.jpg);
}
.tw-23-slider__item-3 {
  background-image: url(../img/products/ms-tw23/img-slider-bg-moca.jpg);
}
.tw-23-slider__item-4 {
  background-image: url(../img/products/ms-tw23/img-slider-bg-purple.jpg);
}

.slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: 66px;
  z-index: 11;
}

.prev-arrow {
  left: 29px;
}

.next-arrow {
  right: 29px;
}

@media only screen and (max-width: 768px) {
  .tw-23-slider {
    padding: 0;
  }
  .tw-23-slider__item, .tw-23-slider__item-1, .tw-23-slider__item-2, .tw-23-slider__item-3, .tw-23-slider__item-4 {
    position: relative;
    border-radius: 0;
    background-size: 100%;
  }
  .tw-23-slider__img {
    width: 80.0781%;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 4.4%;
  }
  .tw-23-slider__btn {
    position: absolute;
    bottom: 45px;
    left: 42%;
    max-width: 180px;
  }
  .tw-23-slider__arrow-l {
    left: 3.7%;
  }
  .tw-23-slider__arrow-r {
    right: 3.9%;
  }
  .tw-23-slider__item-1 {
    background-image: url(../img/products/ms-tw23/img-slider-bg-pink-sp.jpg);
  }
  .tw-23-slider__item-2 {
    background-image: url(../img/products/ms-tw23/img-slider-bg-white-sp.jpg);
  }
  .tw-23-slider__item-3 {
    background-image: url(../img/products/ms-tw23/img-slider-bg-moca-sp.jpg);
  }
  .tw-23-slider__item-4 {
    background-image: url(../img/products/ms-tw23/img-slider-bg-purple-sp.jpg);
  }
  .tw-23-slider .prev-arrow {
    left: 2%;
  }
  .tw-23-slider .next-arrow {
    right: 2%;
  }
}
@media only screen and (max-width: 480px) {
  .tw-23-slider__btn {
    position: absolute;
    bottom: 45px;
    left: 42%;
    max-width: 130px;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 13px;
  }
  .tw-23-slider__arrow-l {
    left: 3%;
  }
  .tw-23-slider__arrow-r {
    right: 3%;
  }
  .tw-23-slider .slide-arrow {
    width: 50px;
  }
}
@media only screen and (max-width: 400px) {
  .tw-23-slider__btn {
    position: absolute;
    bottom: 30px;
    left: 40%;
  }
}
/* ========================================================================== */
/* tw-23-features
============================================================================= */
/* tw-23-features-1 */
.tw-23-features-1 {
  position: relative;
  height: 0;
  padding-top: 40.8701492%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/products/ms-tw23/img-catch-1-bg.jpg);
}
.tw-23-features-1__heading, .tw-23-features-1__note {
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.tw-23-features-1__heading {
  bottom: 10%;
  left: 46%;
  width: 18.1343%;
}
.tw-23-features-1__note {
  top: 35.5%;
  left: 59.5%;
  width: 6.194%;
}

/* tw-23-size */
.tw-23-size {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.tw-23-size__item:first-child {
  width: 100%;
  max-width: 397px;
  margin-right: 50px;
}
.tw-23-size__item:last-child {
  width: 100%;
  max-width: 221px;
}

/* tw-23-features-2_tw-23-features-3 */
.tw-23-features-2, .tw-23-features-3 {
  background-size: 1340px;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
}
.tw-23-features-2__item-1, .tw-23-features-2__item-2, .tw-23-features-3__item-1, .tw-23-features-3__item-2 {
  width: 100%;
  max-width: 420px;
}
.tw-23-features-2__item-1, .tw-23-features-3__item-1 {
  padding-top: 30px;
}
.tw-23-features-2__item-2, .tw-23-features-3__item-2 {
  padding-top: 50px;
}
.tw-23-features-2__heading, .tw-23-features-3__heading {
  width: 100%;
  max-width: 336px;
  margin: 0 auto;
}
.tw-23-features-2__img-1, .tw-23-features-2__img-2, .tw-23-features-3__img-1, .tw-23-features-3__img-2 {
  display: none;
}
.tw-23-features-2__box-1, .tw-23-features-2__box-2, .tw-23-features-3__box-1, .tw-23-features-3__box-2 {
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-x, repeat-y, repeat-y;
  background-position: left top, right top, left bottom, right bottom, top, bottom, left, right;
  background-size: 27px, 27px, 27px, 27px, 27px, 27px, 27px, 27px;
  background-color: #FFFFFF;
  box-sizing: border-box;
  padding: 30px;
  font-family: Hiragino Maru Gothic W3 JIS2004;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5em;
  color: #95674a;
}
.tw-23-features-2__box-1__group, .tw-23-features-2__box-2__group, .tw-23-features-3__box-1__group, .tw-23-features-3__box-2__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px dotted #95674a;
  margin-top: 10px;
  padding-top: 10px;
}
.tw-23-features-2__box-1__group__item:first-child, .tw-23-features-2__box-2__group__item:first-child, .tw-23-features-3__box-1__group__item:first-child, .tw-23-features-3__box-2__group__item:first-child {
  width: 100%;
  max-width: 150px;
}
.tw-23-features-2__box-1__group__item:last-child, .tw-23-features-2__box-2__group__item:last-child, .tw-23-features-3__box-1__group__item:last-child, .tw-23-features-3__box-2__group__item:last-child {
  width: 100%;
  max-width: 190px;
}
.tw-23-features-2__box-1__group__item:last-child p, .tw-23-features-2__box-2__group__item:last-child p, .tw-23-features-3__box-1__group__item:last-child p, .tw-23-features-3__box-2__group__item:last-child p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5em;
}
.tw-23-features-2__box-1__group__strong, .tw-23-features-2__box-2__group__strong, .tw-23-features-3__box-1__group__strong, .tw-23-features-3__box-2__group__strong {
  display: block;
  margin-bottom: 20px;
}
.tw-23-features-2__box-1, .tw-23-features-3__box-1 {
  background-image: url(../img/products/ms-tw23/img-frame-top-left.jpg), url(../img/products/ms-tw23/img-frame-top-right.jpg), url(../img/products/ms-tw23/img-frame-bottom-left.jpg), url(../img/products/ms-tw23/img-frame-bottom-right.jpg), url(../img/products/ms-tw23/img-frame-top-center.jpg), url(../img/products/ms-tw23/img-frame-bottom-center.jpg), url(../img/products/ms-tw23/img-frame-side-left.jpg), url(../img/products/ms-tw23/img-frame-side-right.jpg);
}
.tw-23-features-2__box-2, .tw-23-features-3__box-2 {
  background-image: url(../img/products/ms-tw23/img-frame-top-left-2.jpg), url(../img/products/ms-tw23/img-frame-top-right-2.jpg), url(../img/products/ms-tw23/img-frame-bottom-left-2.jpg), url(../img/products/ms-tw23/img-frame-bottom-right-2.jpg), url(../img/products/ms-tw23/img-frame-top-center-2.jpg), url(../img/products/ms-tw23/img-frame-bottom-center-2.jpg), url(../img/products/ms-tw23/img-frame-side-left-2.jpg), url(../img/products/ms-tw23/img-frame-side-right-2.jpg);
}

.tw-23-features-2 {
  height: 537px;
  background-color: #f7c4c9;
  background-image: url(../img/products/ms-tw23/img-catch-2.jpg);
}

.tw-23-features-3 {
  height: 403px;
  background-color: #e4ecf8;
  background-image: url(../img/products/ms-tw23/img-catch-3.jpg);
}

/* tw-23-features-4 */
.tw-23-features-4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: Hiragino Maru Gothic W3 JIS2004;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5em;
  padding: 80px 0;
}
.tw-23-features-4__item:first-child {
  width: 100%;
  max-width: 396px;
  margin-right: 20px;
}
.tw-23-features-4__item:last-child {
  width: 100%;
  max-width: 519px;
}
.tw-23-features-4__heading {
  width: 100%;
  max-width: 395px;
  margin: 0 auto 30px auto;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 1025px), (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 1025px), (min-resolution: 2dppx) and (min-device-width: 1025px) {
  /* tw-23-features-1 */
  .tw-23-features-1 {
    background-image: url(../img/products/ms-tw23/img-catch-1-bg@2x.jpg);
  }
}
@media only screen and (max-width: 768px) {
  /* tw-23-features-1 */
  .tw-23-features-1 {
    padding-top: 70.7333%;
    background-image: url(../img/products/ms-tw23/img-catch-1-bg-sp.jpg);
    background-size: 100%;
  }
  .tw-23-features-1__heading {
    bottom: 8.2083%;
    left: 46%;
    width: 32.8125%;
  }
  .tw-23-features-1__note {
    top: 35.5%;
    left: 66%;
    width: 12.2396%;
  }
  /* tw-23-size */
  .tw-23-size {
    display: block;
  }
  .tw-23-size__item:first-child {
    max-width: 473px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .tw-23-size__item:last-child {
    max-width: 265px;
    margin: 0 auto;
  }
  /* tw-23-features-2_tw-23-features-3 */
  .tw-23-features-2, .tw-23-features-3 {
    position: relative;
    height: auto;
    background-size: cover;
    background-image: none;
    width: 100%;
  }
  .tw-23-features-2__item-1, .tw-23-features-2__item-2, .tw-23-features-3__item-1, .tw-23-features-3__item-2 {
    width: 100%;
    max-width: 100%;
  }
  .tw-23-features-2__item-1, .tw-23-features-3__item-1 {
    padding-bottom: 8%;
  }
  .tw-23-features-2__item-2, .tw-23-features-3__item-2 {
    padding-top: 28.5%;
  }
  .tw-23-features-2__heading, .tw-23-features-3__heading {
    position: absolute;
    top: 7%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 46%;
    padding-top: 0;
  }
  .tw-23-features-2__img-1, .tw-23-features-2__img-2, .tw-23-features-3__img-1, .tw-23-features-3__img-2 {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .tw-23-features-2__img-1, .tw-23-features-3__img-1 {
    padding-top: 15.5%;
  }
  .tw-23-features-2__img-2, .tw-23-features-3__img-2 {
    padding-top: 20px;
  }
  .tw-23-features-2__box-1, .tw-23-features-2__box-2, .tw-23-features-3__box-1, .tw-23-features-3__box-2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .tw-23-features-2__box-1__group, .tw-23-features-2__box-2__group, .tw-23-features-3__box-1__group, .tw-23-features-3__box-2__group {
    justify-content: center;
  }
  .tw-23-features-2__box-1__group__item:first-child, .tw-23-features-2__box-2__group__item:first-child, .tw-23-features-3__box-1__group__item:first-child, .tw-23-features-3__box-2__group__item:first-child {
    max-width: 30%;
    margin-right: 20px;
  }
  .tw-23-features-2__box-1__group__item:last-child, .tw-23-features-2__box-2__group__item:last-child, .tw-23-features-3__box-1__group__item:last-child, .tw-23-features-3__box-2__group__item:last-child {
    max-width: 40%;
  }
  .tw-23-features-2__box-1__group__item:last-child p, .tw-23-features-2__box-2__group__item:last-child p, .tw-23-features-3__box-1__group__item:last-child p, .tw-23-features-3__box-2__group__item:last-child p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5em;
  }
  .tw-23-features-2__box-1__group__strong, .tw-23-features-2__box-2__group__strong, .tw-23-features-3__box-1__group__strong, .tw-23-features-3__box-2__group__strong {
    display: block;
    margin-bottom: 20px;
  }
  /* tw-23-features-4 */
  .tw-23-features-4 {
    display: block;
    padding: 60px 0;
  }
  .tw-23-features-4__item {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .tw-23-features-4__item:first-child {
    margin: 0 auto 30px auto;
  }
  .tw-23-features-4__item:last-child {
    margin: 0 auto;
  }
  .tw-23-features-4__heading {
    width: 100%;
    max-width: 395px;
    margin: 0 auto 30px auto;
  }
}
@media only screen and (max-width: 480px) {
  /* tw-23-size */
  .tw-23-size__item:first-child {
    max-width: 323px;
  }
  .tw-23-size__item:last-child {
    max-width: 180px;
  }
  /* tw-23-features-2_tw-23-features-3 */
  .tw-23-features-2__item-1, .tw-23-features-3__item-1 {
    padding-bottom: 14%;
  }
  .tw-23-features-2__item-2, .tw-23-features-3__item-2 {
    padding-top: 44%;
  }
  .tw-23-features-2__heading, .tw-23-features-3__heading {
    position: absolute;
    top: 9.4%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 65%;
  }
  .tw-23-features-2__img-1, .tw-23-features-3__img-1 {
    padding-top: 21.3%;
  }
  .tw-23-features-2__img-2, .tw-23-features-3__img-2 {
    padding-top: 15px;
  }
  .tw-23-features-2__box-1__group, .tw-23-features-2__box-2__group, .tw-23-features-3__box-1__group, .tw-23-features-3__box-2__group {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
  }
  .tw-23-features-2__box-1__group__item:first-child, .tw-23-features-2__box-2__group__item:first-child, .tw-23-features-3__box-1__group__item:first-child, .tw-23-features-3__box-2__group__item:first-child {
    max-width: 60%;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .tw-23-features-2__box-1__group__item:last-child, .tw-23-features-2__box-2__group__item:last-child, .tw-23-features-3__box-1__group__item:last-child, .tw-23-features-3__box-2__group__item:last-child {
    max-width: 100%;
  }
  .tw-23-features-2__box-1__group__item:last-child p, .tw-23-features-2__box-2__group__item:last-child p, .tw-23-features-3__box-1__group__item:last-child p, .tw-23-features-3__box-2__group__item:last-child p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .tw-23-features-2__box-1__group__strong, .tw-23-features-2__box-2__group__strong, .tw-23-features-3__box-1__group__strong, .tw-23-features-3__box-2__group__strong {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  /* tw-23-features-4 */
  .tw-23-features-4__heading {
    max-width: 284px;
  }
}
@media only screen and (max-width: 390px) {
  /* tw-23-features-2_tw-23-features-3 */
  .tw-23-features-2__item-2, .tw-23-features-3__item-2 {
    padding-top: 44%;
  }
  .tw-23-features-2__heading, .tw-23-features-3__heading {
    top: 8%;
  }
}
/* ========================================================================== */
/* tw-23-purchase
============================================================================= */
.tw-23-purchase {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.tw-23-purchase__item {
  position: relative;
  width: 25%;
  height: 0;
  padding-top: 36.55%;
  background-size: contain;
  background-repeat: no-repeat;
}
.tw-23-purchase__item:nth-of-type(1) {
  background-image: url(../img/products/ms-tw23/img-purchase-bg-pink.jpg);
}
.tw-23-purchase__item:nth-of-type(2) {
  background-image: url(../img/products/ms-tw23/img-purchase-bg-white.jpg);
}
.tw-23-purchase__item:nth-of-type(3) {
  background-image: url(../img/products/ms-tw23/img-purchase-bg-moca.jpg);
}
.tw-23-purchase__item:nth-of-type(4) {
  background-image: url(../img/products/ms-tw23/img-purchase-bg-purple.jpg);
}
.tw-23-purchase__img, .tw-23-purchase__img-4, .tw-23-purchase__img-3, .tw-23-purchase__img-2, .tw-23-purchase__img-1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 67.4627%;
}
.tw-23-purchase__img-1 {
  top: 19%;
}
.tw-23-purchase__img-2 {
  top: 21%;
}
.tw-23-purchase__img-3 {
  top: 24%;
}
.tw-23-purchase__img-4 {
  top: 22%;
}
.tw-23-purchase__btn {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  width: 100%;
  max-width: 200px;
  background-color: white;
  color: black;
  border: 2px solid black;
  border-radius: 40px;
  font-family: Hiragino Kaku Gothic W4 JIS2004;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1em;
  text-align: center;
  margin: 0 auto;
  padding: 20px 0;
}

@media only screen and (max-width: 1000px) {
  .tw-23-purchase__item {
    width: 50%;
    background-size: 100%;
    padding-top: 73%;
  }
}
@media only screen and (max-width: 480px) {
  .tw-23-purchase__item {
    width: 100%;
    padding-top: 60.31666%;
  }
  .tw-23-purchase__item:nth-of-type(1) {
    background-image: url(../img/products/ms-tw23/img-purchase-bg-pink-sp.jpg);
  }
  .tw-23-purchase__item:nth-of-type(2) {
    background-image: url(../img/products/ms-tw23/img-purchase-bg-white-sp.jpg);
  }
  .tw-23-purchase__item:nth-of-type(3) {
    background-image: url(../img/products/ms-tw23/img-purchase-bg-moca-sp.jpg);
  }
  .tw-23-purchase__item:nth-of-type(4) {
    background-image: url(../img/products/ms-tw23/img-purchase-bg-purple-sp.jpg);
  }
  .tw-23-purchase__img, .tw-23-purchase__img-1, .tw-23-purchase__img-2, .tw-23-purchase__img-3, .tw-23-purchase__img-4 {
    position: absolute;
    left: 5%;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    width: 45.125%;
  }
  .tw-23-purchase__img-1 {
    top: 7%;
  }
  .tw-23-purchase__img-2 {
    top: 9%;
  }
  .tw-23-purchase__img-3 {
    top: 13%;
  }
  .tw-23-purchase__img-4 {
    top: -2%;
  }
  .tw-23-purchase__btn {
    bottom: 15%;
    right: 6.25%;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    max-width: 200px;
    font-family: Hiragino Kaku Gothic W4 JIS2004;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 20px 0;
  }
}
@media only screen and (max-width: 436px) {
  .tw-23-purchase__btn {
    bottom: 20%;
    max-width: 150px;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
/* ========================================================================== */
/* tw-23-function
============================================================================= */
.tw-23-function {
  margin-bottom: 100px;
}
.tw-23-function__heading {
  font-family: Shuei NijimiMGo B;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 50px;
}
.tw-23-function__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.tw-23-function__box {
  width: 48.289%;
  border: 8px solid #d8d8d8;
  border-radius: 20px;
  font-family: Hiragino Maru Gothic W3 JIS2004;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5em;
  margin-top: 3.4205%;
  padding: 25px;
}
.tw-23-function__box:nth-child(-n+2) {
  margin-top: 0;
}
.tw-23-function__box__group {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.tw-23-function__box__group__item:first-child {
  width: 65.4167%;
}
.tw-23-function__box__group__item:last-child {
  display: block;
  width: 27.7917%;
}
.tw-23-function__box__heading {
  width: 100%;
  max-width: 360px;
  border-radius: 40px;
  font-family: Shuei NijimiMGo B;
  background-color: #ebe8e8;
  font-size: 25px;
  font-size: 2.5rem;
  margin: 0 auto 25px auto;
  padding: 15px;
  text-align: center;
}
.tw-23-function__box__small {
  display: inline;
  font-size: 16px;
  font-size: 1.6rem;
  vertical-align: middle;
}
.tw-23-function__box__img {
  margin-top: 25px;
}
.tw-23-function__box__btn {
  display: block;
  width: 100%;
  max-width: 200px;
  background-color: white;
  color: black;
  border: 2px solid black;
  border-radius: 40px;
  font-family: Hiragino Kaku Gothic W4 JIS2004;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1em;
  text-align: center;
  margin: 25px auto 0 auto;
  padding: 20px 0;
}

@media only screen and (max-width: 768px) {
  .tw-23-function {
    margin-bottom: 80px;
  }
  .tw-23-function__heading {
    font-size: 25px;
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
  .tw-23-function__inner {
    display: block;
  }
  .tw-23-function__box {
    width: 100%;
    font-size: 15px;
    font-size: 1.5rem;
    margin-top: 5%;
  }
  .tw-23-function__box:nth-child(-n+2) {
    margin-top: 5%;
  }
  .tw-23-function__box:nth-child(-n+1) {
    margin-top: 0;
  }
  .tw-23-function__box__heading {
    font-size: 20px;
    font-size: 2rem;
  }
  .tw-23-function__box__small {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .tw-23-function__box__group {
    display: block;
  }
  .tw-23-function__box__group__item:first-child {
    width: 100%;
  }
  .tw-23-function__box__group__item:last-child {
    width: 30%;
    margin: 25px auto 0 auto;
  }
  .tw-23-function__box__img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 480px) {
  .tw-23-function {
    margin-bottom: 60px;
  }
  .tw-23-function__box__group__item:last-child {
    width: 40%;
  }
  .tw-23-function__box__heading {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .tw-23-function__box__small {
    display: block;
  }
  .tw-23-function__box__img {
    width: 100%;
  }
}
/* ========================================================================== */
/* product tw-33 */
/* tw-33-top-visual
============================================================================= */
.tw33TopVisual {
  width: 100%;
  background-color: #c6cdd4;
  padding-top: 115px;
}

.tw33TopVisualInner {
  display: flex;
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
  padding: 0 20px;
}
.tw33TopVisualInnerItem:first-child {
  width: 100%;
  max-width: 460px;
  margin-right: 30px;
}
.tw33TopVisualInnerItem:last-child {
  width: 100%;
  max-width: 310px;
  margin-left: 30px;
}

.tw33TopVisualTitle {
  width: 100%;
  max-width: 297px;
  margin-top: 50px;
}

.tw33TopVisualCatch {
  width: 100%;
  max-width: 297px;
  margin-top: 30px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 768px) {
  .tw33TopVisual {
    padding-top: 3%;
  }
  .tw33TopVisual .tw33TopVisualInner {
    position: relative;
    max-width: 100%;
    padding: 0 4%;
  }
  .tw33TopVisual .tw33TopVisualInnerItem:first-child {
    width: 54%;
    max-width: 100%;
  }
  .tw33TopVisual .tw33TopVisualInnerItem:last-child {
    width: 52%;
    max-width: 100%;
    margin-top: 10%;
    margin-right: 0;
    margin-left: auto;
  }
  .tw33TopVisual .tw33TopVisualInnerItem:last-child .img {
    width: 80%;
    margin-top: 10%;
  }
  .tw33TopVisual .tw33TopVisualTitle {
    width: 87%;
    max-width: 100%;
    margin-top: 0;
  }
  .tw33TopVisual .tw33TopVisualCatch {
    width: 86%;
    max-width: 100%;
    margin-top: 8%;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  .tw33TopVisual .tw33TopVisualInnerItem:first-child {
    width: 53%;
  }
  .tw33TopVisual .tw33TopVisualInnerItem:last-child {
    width: 45%;
    max-width: 100%;
    margin-top: 8%;
    margin-right: 0;
    margin-left: auto;
  }
  .tw33TopVisual .tw33TopVisualInnerItem:last-child .img {
    width: 80%;
    padding-bottom: 14.3%;
  }
  .tw33TopVisual .tw33TopVisualTitle {
    width: 100%;
  }
  .tw33TopVisual .tw33TopVisualCatch {
    width: 100%;
    margin-top: 10%;
    margin-bottom: 8%;
  }
}
/* ========================================================================== */
/* products-title
============================================================================= */
.ProductsTitleTw33 {
  width: 100%;
  max-width: 315px;
}

/* ========================================================================== */
/* tw33product-image-area
============================================================================= */
.tw33Image {
  width: 100%;
  max-width: 285px;
  margin-bottom: 60px;
}
.tw33ImageNote {
  bottom: -4%;
}

@media only screen and (max-width: 890px) {
  .tw33Image .btn-3, .tw33Image .topProducts .productsName .productsBtn, .topProducts .productsName .tw33Image .productsBtn, .tw33Image .topProducts .productsNameBlack .productsBtn, .topProducts .productsNameBlack .tw33Image .productsBtn, .tw33Image .topProducts .productsBtnBlack, .topProducts .tw33Image .productsBtnBlack {
    width: 140px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .tw33Image {
    width: 47.7%;
    max-width: 100%;
    margin-top: 80px;
  }
  .tw33Image .btn-3, .tw33Image .topProducts .productsName .productsBtn, .topProducts .productsName .tw33Image .productsBtn, .tw33Image .topProducts .productsNameBlack .productsBtn, .topProducts .productsNameBlack .tw33Image .productsBtn, .tw33Image .topProducts .productsBtnBlack, .topProducts .tw33Image .productsBtnBlack {
    width: 280px;
  }
}
@media only screen and (max-width: 680px) {
  .tw33Image {
    width: 47.7%;
    max-width: 100%;
    margin-top: 100px;
  }
  .tw33Image .btn-3, .tw33Image .topProducts .productsName .productsBtn, .topProducts .productsName .tw33Image .productsBtn, .tw33Image .topProducts .productsNameBlack .productsBtn, .topProducts .productsNameBlack .tw33Image .productsBtn, .tw33Image .topProducts .productsBtnBlack, .topProducts .tw33Image .productsBtnBlack {
    width: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .tw33Image {
    width: 58%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
  }
  .tw33Image:nth-child(2n) {
    margin-top: 70px;
    margin-right: auto;
  }
  .tw33Image .btn-3, .tw33Image .topProducts .productsName .productsBtn, .topProducts .productsName .tw33Image .productsBtn, .tw33Image .topProducts .productsNameBlack .productsBtn, .topProducts .productsNameBlack .tw33Image .productsBtn, .tw33Image .topProducts .productsBtnBlack, .topProducts .tw33Image .productsBtnBlack {
    width: 150px;
  }
}
@media only screen and (max-width: 370px) {
  .tw33Image {
    margin-left: auto;
    margin-right: auto;
  }
  .tw33Image .btn-3, .tw33Image .topProducts .productsName .productsBtn, .topProducts .productsName .tw33Image .productsBtn, .tw33Image .topProducts .productsNameBlack .productsBtn, .topProducts .productsNameBlack .tw33Image .productsBtn, .tw33Image .topProducts .productsBtnBlack, .topProducts .tw33Image .productsBtnBlack {
    margin-top: 5px;
  }
}
/* ========================================================================== */
/* tw33Catch-area
============================================================================= */
.tw33Catch {
  width: 100%;
  background-image: url(../img/products/ms-tw33/img-tw33_catch.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.tw33CatchInner {
  position: relative;
}
.tw33CatchItem_1 {
  width: 290px;
}
.tw33CatchItem_1 .heading {
  width: 240px;
}
.tw33CatchItem_1 .text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
  margin-top: 20px;
}
.tw33CatchItem_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.5em;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 1025px), (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 1025px), (min-resolution: 2dppx) and (min-device-width: 1025px) {
  .tw33Catch {
    background-image: url(../img/products/ms-tw33/img-tw33_catch@2x.jpg);
  }
}
@media only screen and (max-width: 768px) {
  .tw33Catch {
    width: 100%;
    background-image: url(../img/products/ms-tw33/img-tw33_catch_767.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 30px 0 50px 0;
  }
  .tw33CatchInner {
    position: relative;
  }
  .tw33CatchItem_1 {
    width: 100%;
    max-width: 100%;
  }
  .tw33CatchItem_1 .heading {
    width: 45%;
    max-width: 100%;
    margin-bottom: 20%;
  }
  .tw33CatchItem_1 .text {
    margin-top: 0;
    margin-left: 37%;
  }
  .tw33CatchItem_2 {
    bottom: 23%;
    left: 37%;
    font-weight: 300;
    font-size: 30px;
    font-size: 3rem;
  }
}
@media only screen and (max-width: 690px) {
  .tw33CatchItem_1 .heading {
    margin-bottom: 25%;
  }
  .tw33CatchItem_1 .text {
    padding-top: 10%;
  }
}
@media only screen and (max-width: 520px) {
  .tw33CatchItem_1 .heading {
    margin-bottom: 0;
  }
  .tw33CatchItem_1 .text {
    padding-top: 0;
  }
  .tw33CatchItem_2 {
    font-size: 20px;
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .tw33Catch {
    width: 100%;
    background-image: url(../img/products/ms-tw33/img-tw33_catch_sp.jpg);
    background-size: contain;
    background-position: center;
    padding: 20px 0;
  }
  .tw33CatchItem_1 {
    width: 100%;
    max-width: 100%;
  }
  .tw33CatchItem_1 .heading {
    width: 40%;
    max-width: 100%;
    margin-bottom: 20%;
  }
  .tw33CatchItem_1 .text {
    margin-top: 0;
    margin-left: 30%;
    font-size: 10px;
    font-size: 1rem;
  }
  .tw33CatchItem_2 {
    bottom: 28%;
    left: 30%;
    font-weight: 400;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 370px) {
  .tw33CatchItem_1 .text {
    margin-top: 0;
    margin-left: 30%;
    font-size: 8px;
    font-size: 0.8rem;
  }
  .tw33CatchItem_2 {
    bottom: 30%;
    left: 30%;
    font-weight: 400;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 360px) {
  .tw33CatchItem_1 .text {
    margin-top: 0;
    margin-left: 30%;
    font-size: 6px;
    font-size: 0.6rem;
  }
  .tw33CatchItem_2 {
    bottom: 30%;
    left: 30%;
    font-weight: 400;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/* ======================================================================== */
/* product tw-22 */
/* tw-22-top-visual
============================================================================= */
.tw22TopVisual {
  width: 100%;
  height: 665px;
  background-image: url(../img/products/ms-tw22/img-tw22_top_visual.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tw22TopVisualInner {
  width: 100%;
  max-width: 277px;
  padding-top: 406px;
  margin-left: 6.0841%;
}

@media only screen and (max-width: 768px) {
  .tw22TopVisual {
    position: relative;
    height: 0;
    background-image: url(../img/products/ms-tw22/img-tw22_top_visual_sp.jpg);
    padding-top: 85.5%;
    background-size: contain;
  }
  .tw22TopVisualInner {
    position: absolute;
    top: 37%;
    left: 25%;
    width: 40%;
    max-width: 100%;
    padding-top: 0;
    margin-left: 0;
  }
}
/* ========================================================================== */
/* tw22-products-title
============================================================================= */
.ProductsTitleTw22 {
  width: 100%;
  max-width: 315px;
}

/* ========================================================================== */
/* tw22-product-image-area
============================================================================= */
.tw22Image {
  width: 100%;
  max-width: 218px;
  margin-bottom: 50px;
}
.tw22ImageNote {
  bottom: -2%;
}

@media only screen and (max-width: 890px) {
  .tw22Image .btn-3, .tw22Image .topProducts .productsName .productsBtn, .topProducts .productsName .tw22Image .productsBtn, .tw22Image .topProducts .productsNameBlack .productsBtn, .topProducts .productsNameBlack .tw22Image .productsBtn, .tw22Image .topProducts .productsBtnBlack, .topProducts .tw22Image .productsBtnBlack {
    width: 180px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .tw22Image {
    width: 47.7%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .tw22Image {
    width: 53%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }
  .tw22Image:nth-child(2n) {
    margin-right: auto;
  }
}
/* ========================================================================== */
/* tw22-Catch-area
============================================================================= */
.tw22Catch_2 {
  width: 100%;
  background-image: url(../img/products/ms-tw22/img-tw22_catch_2_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.tw22Catch_2 p {
  text-align: center;
}
.tw22Catch_2 p span {
  display: inline-block;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
}

.featuresTw22Catch_2Item {
  width: 100%;
  max-width: 370px;
  margin-left: auto;
  margin-right: 0px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 1025px), (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 1025px), (min-resolution: 2dppx) and (min-device-width: 1025px) {
  .tw22Catch_2 {
    background-image: url(../img/products/ms-tw22/img-tw22_catch_2_bg@2x.jpg);
  }
}
@media only screen and (max-width: 768px) {
  .tw22Catch_2 {
    width: 100%;
    background-image: url(../img/products/ms-tw22/img-tw22_catch_2_bg_767.jpg);
    background-size: 767px;
    background-position: top center;
    background-color: #fffdf4;
    padding: 0 0 0 0;
  }
  .featuresTw22Catch_2Item {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 345px;
    padding-bottom: 50px;
  }
  .featuresTw22Catch_2Item img {
    display: block;
    width: 68%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .tw22Catch_2 {
    width: 100%;
    background-size: 480px;
    background-position: top center;
    background-color: #fffdf4;
    padding: 0 0 0 0;
  }
  .featuresTw22Catch_2Item {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 200px;
    padding-bottom: 30px;
  }
  .featuresTw22Catch_2Item img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}
/* ======================================================================== */
/* product tw-21 */
/* tw-21-top-visual
============================================================================= */
.tw21TopVisual {
  width: 100%;
  background-color: #b1b7ba;
  padding-top: 50px;
}

.tw21TopVisualInner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 866px;
  margin: 0 auto;
  padding: 0 20px;
}
.tw21TopVisualInnerItem:first-child {
  width: 100%;
  max-width: 291px;
}
.tw21TopVisualInnerItemChildTitle {
  width: 100%;
  max-width: 217px;
  margin: 0 auto 25px auto;
}
.tw21TopVisualInnerItemChildImg {
  width: 100%;
  max-width: 287px;
  margin: 0 auto 50px auto;
}
.tw21TopVisualInnerItem:last-child {
  width: 100%;
  max-width: 500px;
  margin-left: 35px;
}

@media only screen and (max-width: 817px) {
  .tw21TopVisualInnerItemChildImg {
    max-width: 240px;
  }
}
@media only screen and (max-width: 768px) {
  .tw21TopVisual {
    padding-top: 20px;
  }
  .tw21TopVisual .tw21TopVisualInner {
    position: relative;
    max-width: 100%;
    padding: 0 4%;
  }
  .tw21TopVisual .tw21TopVisualInnerItem:first-child {
    width: 40%;
    max-width: 100%;
  }
  .tw21TopVisual .tw21TopVisualInnerItemChildTitle {
    width: 83%;
    max-width: 100%;
    margin: 8% auto 5% auto;
  }
  .tw21TopVisual .tw21TopVisualInnerItemChildImg {
    width: 83%;
    max-width: 100%;
    margin: 0 auto 15% auto;
  }
  .tw21TopVisual .tw21TopVisualInnerItem:last-child {
    position: absolute;
    top: 0;
    right: 0;
    width: 53%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .tw21TopVisual {
    padding-top: 2%;
  }
  .tw21TopVisual .tw21TopVisualInnerItemChildImg {
    margin: 0 auto 10% auto;
  }
  .tw21TopVisual .tw21TopVisualInnerItem:last-child {
    width: 51.6%;
  }
}
/* ========================================================================== */
/* tw21-products-title
============================================================================= */
.ProductsTitleTw21 {
  width: 100%;
  max-width: 315px;
}

/* ========================================================================== */
/* tw21-product-image-area
============================================================================= */
.tw21Image {
  width: 100%;
  max-width: 246px;
  margin-bottom: 60px;
}
.tw21ImageNote {
  bottom: 0;
}

@media only screen and (max-width: 880px) {
  .tw21Image {
    margin-bottom: 70px;
  }
  .tw21Image .btn-3, .tw21Image .topProducts .productsName .productsBtn, .topProducts .productsName .tw21Image .productsBtn, .tw21Image .topProducts .productsNameBlack .productsBtn, .topProducts .productsNameBlack .tw21Image .productsBtn, .tw21Image .topProducts .productsBtnBlack, .topProducts .tw21Image .productsBtnBlack {
    width: 180px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .tw21Image {
    width: 47.7%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .tw21Image {
    width: 53%;
    margin-left: auto;
    margin-right: auto;
  }
  .tw21Image:nth-child(2n) {
    margin-right: auto;
  }
}
/* ========================================================================== */
/* tw21Catch-area
============================================================================= */
.tw21Catch {
  position: relative;
  width: 100%;
  background: rgb(255, 255, 255);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(255, 244, 244) 100%);
  padding: 116px 0;
}
.tw21CatchInner {
  width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.tw21CatchInnerItem-1 {
  width: 100%;
  max-width: 246px;
}
.tw21CatchInnerItem-2 {
  position: absolute;
  width: 100%;
  max-width: 745px;
  top: -35px;
  right: 0;
}

@media only screen and (max-width: 1000px) {
  .tw21Catch {
    padding: 80px 0;
  }
  .tw21CatchInner {
    position: relative;
    width: 100%;
    padding: 0 0 0 20px;
  }
  .tw21CatchInnerItem-1 {
    position: absolute;
    top: 6%;
    right: 15%;
  }
  .tw21CatchInnerItem-2 {
    position: static;
    max-width: 100%;
    top: 0;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .tw21Catch {
    padding: 50px 0;
  }
  .tw21CatchInner {
    position: relative;
    width: 100%;
    padding: 0 0 0 20px;
  }
  .tw21CatchInnerItem-1 {
    position: absolute;
    top: 6%;
    right: 10%;
    max-width: 35%;
  }
  .tw21CatchInnerItem-2 {
    position: static;
    max-width: 100%;
    top: 0;
    right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .tw21Catch {
    padding: 30px 0;
  }
}
/* ======================================================================== */
/* product tw-11 */
/* tw-11-top-visual
============================================================================= */
.tw11TopVisual {
  width: 100%;
  height: 665px;
  background-image: url(../img/products/ms-tw11/img-tw11_top_visual_bg.jpg);
  background-size: 1473px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f6f8;
}

.tw11TopVisualInner {
  position: relative;
  width: 100%;
  max-width: 767px;
  height: 665px;
  margin: 0 auto;
  padding: 86px 20px 0 20px;
}
.tw11TopVisualInnerItem-1 {
  width: 100%;
  max-width: 256px;
  margin-left: auto;
  margin-right: 0;
}
.tw11TopVisualInnerItem-1Child {
  width: 100%;
  max-width: 153px;
  margin: 35px 0 0 auto;
}
.tw11TopVisualInnerItem-2 {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 100%;
  max-width: 316px;
}

@media only screen and (max-width: 768px) {
  .tw11TopVisual {
    position: relative;
    height: 0;
    background-image: url(../img/products/ms-tw11/img-tw11_top_visual_bg_sp.jpg);
    padding-top: 74.8674054758%;
    background-size: contain;
  }
  .tw11TopVisualInner {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 4% 4% 0 4%;
  }
  .tw11TopVisualInnerItem-1 {
    width: 47%;
    max-width: 100%;
  }
  .tw11TopVisualInnerItem-1Child {
    width: 55%;
    max-width: 100%;
    margin: 6% 0 0 auto;
  }
  .tw11TopVisualInnerItem-2 {
    position: absolute;
    bottom: -85%;
    right: 17%;
    width: 40%;
    max-width: 100%;
  }
}
/* ========================================================================== */
/* tw11-products-title
============================================================================= */
.ProductsTitleTw11 {
  width: 100%;
  max-width: 315px;
}

/* ========================================================================== */
/* tw11-product-image-area
============================================================================= */
.tw11Image {
  width: 100%;
  max-width: 285px;
  margin-top: 70px;
  margin-bottom: 100px;
}
.tw11ImageNote {
  bottom: -15%;
}

@media only screen and (max-width: 1024px) {
  .tw11Image {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 890px) {
  .tw11Image {
    margin-bottom: 80px;
  }
  .tw11Image .btn-3, .tw11Image .topProducts .productsName .productsBtn, .topProducts .productsName .tw11Image .productsBtn, .tw11Image .topProducts .productsNameBlack .productsBtn, .topProducts .productsNameBlack .tw11Image .productsBtn, .tw11Image .topProducts .productsBtnBlack, .topProducts .tw11Image .productsBtnBlack {
    width: 180px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .tw11Image {
    width: 47.7%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .tw11Image {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
  }
  .tw11Image:nth-child(2n) {
    margin-top: 60px;
    margin-right: auto;
  }
}
/* ========================================================================== */
/* tw11-Catch-area
============================================================================= */
.tw11Catch {
  width: 100%;
  background-color: #474645;
  padding: 85px 0;
}
.tw11CatchInner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 807px;
  margin: 0 auto;
  padding: 0 20px;
}
.tw11CatchInnerItem:first-child {
  width: 100%;
  max-width: 290px;
}
.tw11CatchInnerItemChild {
  width: 100%;
  max-width: 350px;
  margin-bottom: 20px;
}
.tw11CatchInnerItem p {
  font-family: "Noto Sans JP", sans-serif;
  color: white;
  font-weight: 200;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
}
.tw11CatchInnerItem:last-child {
  width: 100%;
  max-width: 339px;
}

@media only screen and (max-width: 768px) {
  .tw11Catch {
    padding: 50px 0;
  }
  .tw11CatchInner {
    justify-content: center;
    padding: 0 4%;
  }
  .tw11CatchInnerItem:first-child {
    width: 45%;
    max-width: 100%;
    margin-right: 5%;
  }
  .tw11CatchInnerItem:last-child {
    width: 40%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .tw11Catch {
    padding: 30px 0;
  }
  .tw11CatchInner {
    display: block;
  }
  .tw11CatchInnerItem:first-child {
    width: 60%;
    margin: 0 auto;
  }
  .tw11CatchInnerItem:last-child {
    width: 50%;
    margin: 0 auto;
  }
}
/* ======================================================================== */
/* product tw-3 */
/* tw-3-top-visual
============================================================================= */
.tw3TopVisual {
  width: 100%;
  background-color: #96939B;
  padding-top: 75px;
}

.tw3TopVisualInner {
  display: flex;
  width: 692px;
  margin: 0 auto;
}
.tw3TopVisualInnerItem:first-child {
  width: 433px;
  margin-right: 90px;
}
.tw3TopVisualInnerItem:last-child {
  width: 200px;
}
.tw3TopVisualInnerChildItem-1 {
  width: 114px;
}
.tw3TopVisualInnerChildItem-2 {
  width: 110%;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .tw3TopVisual {
    padding-top: 40px;
  }
  .tw3TopVisualInner {
    position: relative;
    width: 100%;
  }
  .tw3TopVisualInnerItem:first-child {
    width: 76%;
    max-width: 100%;
    margin-left: -45px;
  }
  .tw3TopVisualInnerItem:first-child img {
    width: 73%;
  }
  .tw3TopVisualInnerItem:last-child {
    width: 24%;
    max-width: 100%;
    margin-right: 4%;
  }
  .tw3TopVisualInnerChildItem-1 {
    width: 100%;
    max-width: 100%;
  }
  .tw3TopVisualInnerChildItem-1 img {
    width: 85%;
  }
  .tw3TopVisualInnerChildItem-2 {
    position: absolute;
    bottom: 10%;
    right: 29%;
    width: 30%;
  }
  .tw3TopVisualInnerChildItem-2 img {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .tw3TopVisual {
    padding-top: 20px;
  }
  .tw3TopVisualInnerItem:first-child {
    width: 76%;
    max-width: 100%;
    margin-left: -25px;
  }
  .tw3TopVisualInnerItem:first-child img {
    width: 82%;
  }
  .tw3TopVisualInnerChildItem-1 img {
    width: 100%;
  }
  .tw3TopVisualInnerChildItem-2 {
    position: absolute;
    bottom: 20%;
    right: 28%;
  }
}
/* ========================================================================== */
/* tw3-products-title
============================================================================= */
.ProductsTitleTw3 {
  width: 100%;
  max-width: 291px;
}

/* ========================================================================== */
/* tw3-product-image-area
============================================================================= */
.tw3Image {
  width: 100%;
  max-width: 285px;
  margin-bottom: 70px;
}
.tw3ImageNote {
  bottom: -3%;
}

@media only screen and (max-width: 768px) {
  .tw3Image {
    width: 47.7%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .tw3Image {
    width: 53%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
  }
  .tw3Image:nth-child(2n) {
    margin-right: auto;
  }
}
/* ========================================================================== */
/* tw3-Catch-area
============================================================================= */
.tw3CatchHeading, .tw3CatchHeading-3, .tw3CatchHeading-2, .tw3CatchHeading-1 {
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.5em;
}

.tw3CatchHeading-1 {
  margin-top: 50px;
}

.tw3CatchHeading-2 {
  margin-top: 185px;
}

.tw3CatchHeading-3 {
  color: black;
  margin-top: 216px;
}

.tw3Catch-1, .tw3Catch-2, .tw3Catch-3 {
  width: 100%;
}

.tw3Catch-1 {
  background-color: #050000;
  margin-top: 100px;
}
.tw3Catch-1Inner {
  display: flex;
  width: 100%;
  max-width: 554px;
  margin: 0 auto;
}
.tw3Catch-1Item-1 {
  width: 100%;
  max-width: 313px;
  margin: 0 auto;
}
.tw3Catch-1Item-2 {
  width: 100%;
  max-width: 241px;
  margin-top: 115px;
}
.tw3Catch-1Item-2heading {
  width: 100%;
}

.tw3Catch-2 {
  background-color: #96939b;
}
.tw3Catch-2Inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
.tw3Catch-2Item:first-child {
  width: 100%;
  max-width: 260px;
}
.tw3Catch-2Item:last-child {
  width: 100%;
  max-width: 396px;
  margin-top: 15px;
}

.tw3Catch-3 {
  background-color: #eff8fd;
}
.tw3Catch-3Inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
.tw3Catch-3Item:first-child {
  width: 100%;
  max-width: 483px;
  margin-top: 26px;
}
.tw3Catch-3Item:last-child {
  width: 100%;
  max-width: 156px;
}

@media only screen and (max-width: 768px) {
  .tw3Catch-1 {
    margin-top: 80px;
  }
  .tw3Catch-1Inner {
    padding-right: 4%;
  }
  .tw3Catch-1Item-2 {
    margin-top: 50px;
  }
  .tw3Catch-2Inner {
    padding-left: 4%;
  }
  .tw3Catch-2Item .tw3CatchHeading-2 {
    margin-top: 40%;
  }
  .tw3Catch-2Item:first-child {
    width: 100%;
    max-width: 260px;
  }
  .tw3Catch-3Inner {
    padding-right: 4%;
  }
  .tw3Catch-3Item .tw3CatchHeading-3 {
    margin-top: 85%;
  }
  .tw3Catch-3Item:first-child {
    width: 60%;
    max-width: 100%;
    margin-top: 26px;
  }
  .tw3Catch-3Item:last-child {
    width: 30%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .tw3CatchHeading, .tw3CatchHeading-1, .tw3CatchHeading-2, .tw3CatchHeading-3 {
    font-size: 20px;
    font-size: 2rem;
  }
  .tw3CatchHeading-1 {
    margin-top: 20px;
  }
  .tw3Catch-1 {
    margin-top: 60px;
  }
  .tw3Catch-1Inner {
    max-width: 100%;
  }
  .tw3Catch-1Item-1 {
    width: 70%;
    max-width: 100%;
  }
  .tw3Catch-1Item-2 {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }
  .tw3Catch-1Item-2heading {
    width: 80%;
  }
  .tw3Catch-2Inner {
    padding-left: 18%;
  }
  .tw3Catch-2Item .tw3CatchHeading-2 {
    margin-top: 30%;
  }
  .tw3Catch-3Item .tw3CatchHeading-3 {
    margin-top: 45%;
  }
  .tw3Catch-3Item:first-child {
    width: 55%;
    max-width: 100%;
    margin-top: 10px;
  }
  .tw3Catch-3Item:last-child {
    width: 40%;
    max-width: 100%;
  }
}
/* ======================================================================== */
/* product tw-2 */
/* tw-2-top-visual
============================================================================= */
.tw2TopVisual {
  width: 100%;
  background-color: #030303;
  padding-top: 55px;
}

.tw2TopVisualInner {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 681px;
  margin: 0 auto;
}
.tw2TopVisualInnerItem:first-child {
  width: 100%;
  max-width: 484px;
}
.tw2TopVisualInnerItem:last-child {
  position: absolute;
  top: 138px;
  right: 0;
  width: 100%;
  max-width: 200px;
}
.tw2TopVisualInnerChildItem-1 {
  width: 100%;
  max-width: 216px;
}
.tw2TopVisualInnerChildItem-2 {
  width: 100%;
  max-width: 154px;
  margin: 40px auto 0 auto;
}

@media only screen and (max-width: 768px) {
  .tw2TopVisual {
    padding-top: 30px;
  }
  .tw2TopVisualInner {
    width: 100%;
    max-width: 100%;
  }
  .tw2TopVisualInnerItem:first-child {
    width: 60%;
    max-width: 100%;
    margin-left: 5%;
  }
  .tw2TopVisualInnerItem:last-child {
    top: 15%;
    right: 4%;
    width: 35%;
    max-width: 100%;
  }
  .tw2TopVisualInnerChildItem-1 {
    width: 85%;
    max-width: 100%;
  }
  .tw2TopVisualInnerChildItem-2 {
    width: 76%;
    max-width: 100%;
    margin: 30px auto 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .tw2TopVisual {
    padding-top: 0;
  }
  .tw2TopVisualInnerItem:last-child {
    top: 10%;
    right: 8%;
  }
  .tw2TopVisualInnerChildItem-1 {
    width: 100%;
  }
  .tw2TopVisualInnerChildItem-2 {
    width: 76%;
    margin: 20px auto 0 auto;
  }
}
/* ========================================================================== */
/* tw2-products-title
============================================================================= */
.ProductsTitleTw2 {
  width: 100%;
  max-width: 314px;
}

/* ========================================================================== */
/* tw2-product-image-area
============================================================================= */
.tw2Image {
  width: 100%;
  max-width: 218px;
}
.tw2ImageNote {
  bottom: 0;
}

@media only screen and (max-width: 768px) {
  .tw2Image {
    width: 47.7%;
    max-width: 100%;
  }
  .tw2ImageNote {
    bottom: 3%;
  }
}
@media only screen and (max-width: 480px) {
  .tw2Image {
    width: 53%;
    margin-left: auto;
    margin-right: auto;
  }
  .tw2Image:nth-child(2n) {
    margin-right: auto;
  }
  .tw2Image:last-child {
    margin-right: auto;
  }
  .tw2ImageNote {
    bottom: -2%;
  }
}
/* ========================================================================== */
/* tw2-Catch-area
============================================================================= */
.tw2Catch-2 {
  height: 434px;
  background: url("../img/products/ms-tw2/img-tw2_catch_2.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: #f5f5f5;
}
.tw2Catch-2Inner {
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  padding-top: 115px;
}

@media only screen and (max-width: 768px) {
  .tw2Catch-2 {
    position: relative;
    height: 0;
    padding-top: 56.48409387%;
    background-size: contain;
  }
  .tw2Catch-2Inner {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 100%;
    padding-top: 18%;
    padding-left: 4%;
  }
}
/* ======================================================================== */
/* product tw-1 */
/* tw-1-top-visual
============================================================================= */
.tw1TopVisual {
  width: 100%;
  height: 661px;
  background-image: url(../img/products/ms-tw1/img-tw11_top_visual_bg.jpg);
  background-size: 1571px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
}

.tw1TopVisualInner {
  width: 100%;
  max-width: 767px;
  height: 661px;
  margin: 0 auto;
  padding: 254px 20px 0 20px;
}
.tw1TopVisualInnerItem {
  width: 100%;
  max-width: 280px;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .tw1TopVisual {
    position: relative;
    height: 0;
    background-image: url(../img/products/ms-tw1/img-tw11_top_visual_bg_sp.jpg);
    padding-top: 74.8674054759%;
    background-size: contain;
  }
  .tw1TopVisualInner {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }
  .tw1TopVisualInnerItem {
    width: 50%;
    max-width: 100%;
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .tw1TopVisualInnerItem {
    width: 55%;
    text-align: left;
  }
}
/* ========================================================================== */
/* tw1-products-title
============================================================================= */
.ProductsTitleTw1 {
  width: 100%;
  max-width: 287px;
}

/* ========================================================================== */
/* tw1-product-image-area
============================================================================= */
.tw1Image {
  width: 100%;
  max-width: 285px;
}
.tw1ImageNote {
  bottom: -5%;
}

@media only screen and (max-width: 768px) {
  .tw1Image {
    width: 47.7%;
    max-width: 100%;
  }
  .tw1ImageNote {
    bottom: -1%;
  }
}
@media only screen and (max-width: 480px) {
  .tw1Image {
    width: 53%;
    margin-left: auto;
    margin-right: auto;
  }
  .tw1Image:nth-child(2n) {
    margin-right: auto;
  }
  .tw1ImageNote {
    bottom: 1%;
  }
}
@media only screen and (max-width: 370px) {
  .tw1ImageNote {
    bottom: -1%;
  }
}
/* ========================================================================== */
/* tw1-Catch-area
============================================================================= */
.tw1Catch-1 {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.tw1Catch-2 {
  width: 100%;
  background-image: url(../img/products/ms-tw1/img-tw1_catch_2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 158px 0;
}
.tw1Catch-2 .features {
  padding: 0 20px;
}
.tw1Catch-2Item {
  width: 100%;
  max-width: 505px;
  margin-right: 20px;
  margin-left: auto;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 1025px), (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 1025px), (min-resolution: 2dppx) and (min-device-width: 1025px) {
  .tw1Catch-1 {
    background-image: url(../img/products/ms-tw1/img-tw1_catch_2@2x.jpg);
  }
}
@media only screen and (max-width: 800px) {
  .tw1Catch-2Item {
    width: 100%;
    max-width: 480px;
  }
}
@media only screen and (max-width: 768px) {
  .tw1Catch-1 {
    max-width: 80%;
    margin: 0 auto;
  }
  .tw1Catch-2Item {
    width: 60%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .tw1Catch-1 {
    max-width: 92%;
  }
  .tw1Catch-2Item {
    width: 65%;
  }
}
@media only screen and (max-width: 370px) {
  .tw1Catch-2Item {
    width: 70%;
  }
}
/* ======================================================================== */
/* 404-error
============================================================================= */
.errorWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 70px auto;
}
.errorWrapItem:first-child {
  width: 30%;
  padding-right: 5%;
}
.errorWrapItem:last-child {
  width: 70%;
}
.errorWrapItemTitle {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 110px;
  font-size: 11rem;
  line-height: 1.5em;
}
.errorWrapItem p span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
}

.errorBtn {
  display: block;
  width: 100%;
  max-width: 300px;
  background-color: black;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  border-radius: 5px;
  margin: 0 auto;
  padding: 10px;
  margin-bottom: 100px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .errorWrap {
    display: block;
    width: 100%;
    margin: 0 auto 50px auto;
  }
  .errorWrapItem {
    margin: 0 auto;
  }
  .errorWrapItem:first-child {
    width: 150px;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .errorWrapItem:last-child {
    width: 100%;
  }
  .errorWrapItemTitle {
    font-size: 90px;
    font-size: 9rem;
    text-align: center;
  }
  .errorWrapItem p {
    text-align: center;
  }
  .errorWrapItem p span {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: left;
  }
  .errorBtn {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .errorWrap {
    margin: 0 auto 30px auto;
  }
  .errorWrapItemTitle {
    font-size: 70px;
    font-size: 7rem;
    text-align: center;
  }
  .errorWrapItem p span {
    font-weight: 500;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .errorBtn {
    margin-bottom: 60px;
  }
}
/* ======================================================================== *//*# sourceMappingURL=style.css.map */