@charset "UTF-8";
.txt-h2 {
  text-align: center;
  flex-flow: column;
  display: flex;
  margin-bottom: 3.6458333333vw;
  letter-spacing: 0.2vw;
}
.txt-h2 span {
  color: #18469D;
  gap: 0.2vw;
  display: block;
  letter-spacing: 0.1vw;
}

@media screen and (max-width: 767px) {
  .txt-h2 {
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-size: 14px;
  }
  .txt-h2 span {
    font-size: 26px;
    gap: 0;
    margin-bottom: 5px;
    letter-spacing: 1px;
  }
}
/*==========================================================================
section#products01
========================================================================== */
@-webkit-keyframes arrow-move {
  0% {
    transform: translateY(0); /* 初期位置 */
    opacity: 1; /* 表示 */
  }
  50% {
    transform: translateY(20px); /* 右に移動して消える */
    opacity: 0;
  }
  51% {
    transform: translateY(-20px); /* 左から戻ってくる */
    opacity: 0;
  }
  100% {
    transform: translateX(0); /* 元の位置に戻る */
    opacity: 1; /* 表示 */
  }
}
@keyframes arrow-move {
  0% {
    transform: translateY(0); /* 初期位置 */
    opacity: 1; /* 表示 */
  }
  50% {
    transform: translateY(20px); /* 右に移動して消える */
    opacity: 0;
  }
  51% {
    transform: translateY(-20px); /* 左から戻ってくる */
    opacity: 0;
  }
  100% {
    transform: translateY(0); /* 元の位置に戻る */
    opacity: 1; /* 表示 */
  }
}
section#products01 .inner {
  padding:  5.2083333333vw 0 0;
}
section#products01 .box {
  justify-content: space-between;
}
section#products01 .item-box {
  position: relative;
  width: 48%;
  padding-bottom: 5.7291666667vw;
}
section#products01 .item-box .img-box {
  width: 100%;
  height: 21vw;
  padding: 2.5vw;
  box-sizing: border-box;
  background: #F2F4F5;
  border-radius: 1vw;
  margin-bottom: 2.5vw;
}
section#products01 .item-box .img-box img {
  border-radius: 1vw;
}
section#products01 .item-box .txt-box {
  padding: 0 1vw;
  box-sizing: border-box;
}
section#products01 .item-box .txt-h3 {
  text-align: center;
  color: #18469D;
  margin-bottom: 1.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
section#products01 .item-box .txt-h3 img {
  display: flex;
  width: auto;
  height: 2.5vw;
}
section#products01 .item-box .txt-p {
  line-height: 1.8em;
}
section#products01 .item-box .txt-a {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 400px;
  padding: 0 2.5vw;
  box-sizing: border-box;
  margin: 0;
}
section#products01 .item-box .txt-a svg {
  display: flex;
  width: 0.5vw;
  height: 0.8vw;
  transition: 0.5s;
  position: absolute;
  right: 2.2vw;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
section#products01 .item-box .txt-a:hover svg {
  -webkit-animation: arrow-move 0.5s ease-in-out;
          animation: arrow-move 0.5s ease-in-out;
}

@media screen and (max-width: 767px) {
  section#products01 .inner {
    padding: 0;
        padding-top: 30px;
  }


  section#products01 .item-box {
    width: 100%;
    padding-bottom: 0;
  }
  section#products01 .item-box .img-box {
    width: 100%;
    height: 61vw;
    padding: 20px;

    
    border-radius: 10px;
    margin-bottom: 20px;
  }
  section#products01 .item-box .img-box img {
    border-radius: 10px;
  }
  section#products01 .item-box .txt-box {
    padding: 0 20px;
    box-sizing: border-box;
  }
  section#products01 .item-box .txt-h3 {
    font-size: 18px;
    margin-bottom: 15px;
    gap: 10px;
  }
  section#products01 .item-box .txt-h3 img {
    height: 30px;
  }
  section#products01 .item-box .txt-p {
    font-size: 14px;
  }
  section#products01 .item-box .txt-a {
    position: initial;
    transform: initial;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: initial;
    left: initial;
    max-width: 400px;
    width: 100%;
    padding: 0;
    margin: 20px auto 0;
  }
  section#products01 .item-box .txt-a svg {
    width: 8px;
    height: 15px;
    right: 0;
    position: initial;
  }
  section#products01 .item-box.inflation {
    padding-top: 60px;
  }
}
/*==========================================================================
section#products02
========================================================================== */
/* 流れるアニメーション */
@-webkit-keyframes flowText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 幅の半分だけ移動 */
  }
}
@keyframes flowText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 幅の半分だけ移動 */
  }
}
section#products02 .inner {
  padding: 10.4166666667vw 0 0;
}
section#products02 .sp-links {
  display: none;
}
section#products02 .txt-h2 {
  margin: 0 auto;
}
section#products02 .box {
  overflow-x: clip;
  position: relative;
}
section#products02 .box .bg {
  content: "";
  background: url(../img/mizwa_txt_bg.svg) repeat-x; /* repeat-xで横方向に繰り返し */
  background-size: auto 20.82vw; /* 高さを固定、幅は自動 */
  width: 200%; /* 画面幅の2倍の幅を確保 */
  height: 20.82vw;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  -webkit-animation: flowText 20s linear infinite;
          animation: flowText 20s linear infinite; /* 20秒で無限ループ */
}
section#products02 .item-box .txt-h3 {
  color: #18469D;
  background: #F2F4F5;
  padding: 1.1vw 2vw;
  box-sizing: border-box;
  border-left: solid 0.4vw #18469D;
  border-radius: 0.5vw;
  display: flex;
  align-items: center;
  gap: 1vw;
}
section#products02 .item-box .txt-h3 img {
  display: flex;
  width: auto;
  height: 2vw;
}
section#products02 .item-box .txt-h4 {
  color: #18469D;
  margin-bottom: 1.5vw;
  padding-bottom: 0.5vw;
  position: relative;
}
section#products02 .item-box .txt-h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #18469D;
  border-radius: 5px;
}
section#products02 .item-box .list-box {
  gap: 4vw 2%;
  flex-wrap: wrap;
}
section#products02 .item-box .list-box li {
  width: 32%;
}
section#products02 .item-box .list-box .img-box {
  background: gray;
  width: 100%;
  height: 13vw;
  border-radius: 1vw;
  margin-bottom: 1vw;
}
section#products02 .item-box .list-box .img-box img {
  border-radius: 1vw;
}
section#products02 .item-box .list-box .txt-h5 {
  color: #18469D;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.5vw;
}
section#products02 .item-box .list-box .txt-h5 svg {
  display: flex;
  width: 1vw;
  height: 1vw;
}
section#products02 .item-box .in-box {
  padding: 0 2.4vw;
  padding-top: 2.5vw;
  box-sizing: border-box;
}
section#products02 .item-box.blow {
  padding-top: 10.6458333333vw;
  margin-top: -7vw;
}
section#products02 .item-box.inflation {
  padding-top: 10.4166666667vw;
}

@media screen and (max-width: 767px) {
  section#products02 {
    position: relative;
  }
  section#products02 .inner {
    padding: 60px 0 0;
  }
  section#products02 .box .bg {
    content: "";
    background: url(../img/mizwa_txt_bg.svg) repeat-x; /* repeat-xで横方向に繰り返し */
    background-size: auto 20.82vw; /* 高さを固定、幅は自動 */
    width: 200%; /* 画面幅の2倍の幅を確保 */
    height: 20.82vw;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    -webkit-animation: flowText 20s linear infinite;
            animation: flowText 20s linear infinite; /* 20秒で無限ループ */
  }
  section#products02 .item-box .txt-h3 {
    padding: 10px 15px;
    border-width: 2px;
    border-radius: 5px;
    font-size: 16px;
    gap: 10px;
  }
  section#products02 .item-box .txt-h3 img {
    height: 24px;
  }
  section#products02 .item-box .txt-h4 {
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-size: 18px;
  }
  section#products02 .item-box .txt-h4:after {
    height: 1.5px;
  }
  section#products02 .item-box .list-box {
    gap: 40px 4%;
    flex-wrap: wrap;
    display: flex;
  }
  section#products02 .item-box .list-box li {
    width: 100%;
  }
  section#products02 .item-box .list-box .img-box {
    height: 55vw;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  section#products02 .item-box .list-box .img-box img {
    border-radius: 8px;
  }
  section#products02 .item-box .list-box .txt-h5 {
    font-size: 14px;
    gap: 10px;
  }
  section#products02 .item-box .list-box .txt-h5 br {
    display: none;
  }
  section#products02 .item-box .list-box .txt-h5 svg {
    width: 14px;
    height: 14px;
  }
  section#products02 .item-box .in-box {
    padding: 0 15px;
    padding-top: 20px;
  }
  section#products02 .item-box.blow {
    padding-top: 90px;
    margin-top: -60px;
  }
  section#products02 .item-box.inflation {
    margin-top: -60px;
    padding-top: 120px;
  }
  section#products02 .item-box.inflation .in-box {
    padding-top: 30px;
  }
}
/*==========================================================================
section#products03
========================================================================== */
section#products03 {
  position: relative;
  padding: 10.4166666667vw 0;
}
section#products03::before {
  content: "";
  background: url(../img/mizwa_icon_bl.svg) center no-repeat;
  background-size: cover;
  width: 62vw;
  height: 57.6vw;
  position: absolute;
  z-index: -1;
  bottom: -2vw;
  right: -18.6vw;
}
section#products03 .inner {
  background: rgba(24, 70, 157, 0.1);
  padding: 5vw 13.75vw;
  box-sizing: border-box;
  border-radius: 1vw;
}
section#products03 .txt-h3 {
  text-align: center;
  color: #18469D;
  margin-bottom: 2.5vw;
}
section#products03 .txt-h3 span {
  display: block;
  margin-top: 0.2vw;
  color: #000000;
}
section#products03 .txt-p {
  text-align: center;
    line-height: 2em;
}
section#products03 .worries {
  margin: 3.5vw 0;
}
section#products03 .worries .txt-h4 {
  text-align: center;
  color: #18469D;
  margin-bottom: 2vw;
}
section#products03 .worries .list-box {
  width: 95%;
  margin: 0 auto;
  justify-content: space-between;
}
section#products03 .worries .list-box li {
  width: 30%;
  height: 13.35vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: solid 2px #18469D;
  box-sizing: border-box;
  text-align: center;
  border-radius: 300px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
section#products03 .txt-g {
  text-align: center;
  line-height: 1.8em;
}
section#products03 .custom {
  margin-top: 3.5vw;
  background: #ffffff;
  padding: 2.5vw;
  box-sizing: border-box;
  justify-content: center;
  gap: 15%;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0.5vw;
  position: relative;
}
section#products03 .custom article {
  width: 40%;
  text-align: center;
}
section#products03 .custom article .txt-h4 {
  margin-bottom: 1vw;
  color: #18469D;
}
section#products03 .custom article .txt-o {
  line-height: 1.8em;
}
section#products03 .custom .line {
  position: absolute;
  width: 2px;
  height:60%;
  background: #18469D;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 767px) {
  section#products03 {
    position: relative;
    padding: 60px 0;
  }
  section#products03::before {
    width: 92vw;
    height: 85.6vw;
    bottom: -30px;
    right: -110px;
  }
  section#products03 .inner {
    padding: 40px 7.5%;
    border-radius: 10px;
    width: 100%;
    border-radius: 0;
  }
  section#products03 .txt-h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  section#products03 .txt-h3 span {
    font-size: 12px;
    margin-top: 0;
  }
  section#products03 .txt-p {
    font-size: 14px;
    text-align: start;
  }
  section#products03 .worries {
    margin: 30px 0;
  }
  section#products03 .worries .txt-h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  section#products03 .worries .list-box {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    gap: 15px;
  }
  section#products03 .worries .list-box li {
    width: 100%;
    height: initial;
    padding: 20px 0;
    font-size: 14px;
  }
  section#products03 .txt-g {
    font-size: 14px;
    text-align: start;
  }
  section#products03 .custom {
    margin-top: 30px;
    padding: 20px;
    gap: 0;
    border-radius: 10px;
  }
  section#products03 .custom article {
    width: 100%;
  }
  section#products03 .custom article .txt-h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  section#products03 .custom article .txt-o {
    font-size: 14px;
  }
  section#products03 .custom .line {
    position: initial;
    transform: initial;
    width: 90%;
    height: 2px;
    margin: 30px auto;
  }
}
.sp-links {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 9999;
}

.sp-links.show {
  display: flex;
}

.sp-links .txt-a {
  width: 50%;
  height: 50px;
  border-radius: 0;
  font-size: 14px;
  background: #ffffff;
}
.sp-links .txt-a img {
  display: flex;
  width: auto;
  height: 20px;
}
.sp-links .txt-a:hover {
  background: #ffffff;
  color: #18469D;
}

/* モバイルのみ表示 */
@media (min-width: 769px) {
  .sp-links {
    display: none !important;
  }
}
/*# sourceMappingURL=products.css.map */