@charset "UTF-8";
/* ------------------------------
　　common
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital@0;1&family=Noto+Sans+JP:wght@400;500;700&family=Zen+Kaku+Gothic+Antique:wght@500;700&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  background: #FFF;
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}
body.is-locked {
  overflow: hidden;
}

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

p + p {
  margin-top: 1em;
}

nav ul {
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl {
  margin: 0;
}
dl + dl {
  margin-top: 30px;
}

dd {
  margin: 0;
}

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

figure {
  margin: 0;
}

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

strong, .strong {
  font-weight: bold;
}

main {
  padding-top: 80px;
}

:target::before {
  height: 80px; /* ずらしたい高さ */
  margin-top: -80px; /* heightに対するネガティブマージン */
}

.hide-sp {
  display: block;
}

.hide-pc {
  display: none;
}

/* リンクの設定 */
a {
  color: #333;
  text-decoration: none;
  border: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

a:visited {
  color: #333;
  text-decoration: none;
}

a:active {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #333;
  text-decoration: none;
}

.br-sp {
  display: none;
}

.br-pc {
  display: inline-block;
}

.f-palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.f-lato {
  font-family: "Lato", sans-serif;
}

.f-notoSans {
  font-family: "Noto Sans JP", sans-serif;
}

.f-zenkaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.word-break {
  display: inline-block;
}

/* コンテナ */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: 100px 0;
}

/* タイトル */
.en-cap-title {
  font-size: 20px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  margin: 0 auto 40px;
}
.en-cap-title span {
  font-size: 48px;
  display: block;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  font-family: "Lato", sans-serif;
}

.page-title {
  background: -webkit-gradient(linear, left top, left bottom, from(#F5FBFF), to(#F4F1EE));
  background: linear-gradient(180deg, #F5FBFF 0%, #F4F1EE 100%);
  margin: 0;
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  padding: 49px 0;
}
.page-title span {
  font-size: 16px;
  text-transform: uppercase;
  display: block;
}

/* アニメーション */
.fadeup {
  opacity: 0;
  visibility: hidden;
}
.fadeup.animated {
  -webkit-animation: fadeIn 1s forwards;
          animation: fadeIn 1s forwards;
}
@media screen and (min-width: 768px) {
  .fadeup.animated.__02 {
    -webkit-animation: fadeIn 1s 0.2s forwards;
            animation: fadeIn 1s 0.2s forwards;
  }
  .fadeup.animated.__03 {
    -webkit-animation: fadeIn 1s 0.4s forwards;
            animation: fadeIn 1s 0.4s forwards;
  }
  .fadeup.animated.__04 {
    -webkit-animation: fadeIn 1s 0.6s forwards;
            animation: fadeIn 1s 0.6s forwards;
  }
  .fadeup.animated.__05 {
    -webkit-animation: fadeIn 1s 0.8s forwards;
            animation: fadeIn 1s 0.8s forwards;
  }
  .fadeup.animated.__06 {
    -webkit-animation: fadeIn 1s 1s forwards;
            animation: fadeIn 1s 1s forwards;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0%;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    visibility: hidden;
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0%;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    visibility: hidden;
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}
.fuwafuwa {
  -webkit-animation: 4s fuwafuwa infinite;
          animation: 4s fuwafuwa infinite;
}

@-webkit-keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.fuwafuwa02 {
  -webkit-animation: 4s fuwafuwa02 infinite;
          animation: 4s fuwafuwa02 infinite;
}

@-webkit-keyframes fuwafuwa02 {
  0%, 100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fuwafuwa02 {
  0%, 100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
:target::before {
  content: "";
  display: block;
  height: 80px; /* ずらしたい高さ */
  margin-top: -80px; /* heightに対するネガティブマージン */
  visibility: hidden;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .hide-sp {
    display: none;
  }
  .hide-pc {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline-block;
  }
  .container {
    padding: 0 5.33%;
  }
  .en-cap-title {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .en-cap-title span {
    font-size: 48px;
    line-height: 1.5;
  }
}
/* ------------------------------
　　header
------------------------------ */
header {
  background: #FFF;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(108, 151, 165, 0.2));
          filter: drop-shadow(0px 4px 4px rgba(108, 151, 165, 0.2));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  position: fixed;
  z-index: 9999;
  width: 100%;
}

.header-logo {
  width: 95px;
  margin: 0 50px;
}
.header-logo img {
  display: block;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 1;
}
.header-nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.header-nav ul li:nth-child(odd) a {
  background: #F4F1EE;
}
.header-nav ul li:nth-child(even) a {
  background: #D8EDFF;
}
.header-nav ul li:nth-child(1) img {
  width: 37px;
}
.header-nav ul li:nth-child(2) img {
  width: 36px;
}
.header-nav ul li:nth-child(3) img, .header-nav ul li:nth-child(4) img {
  width: 32px;
}
.header-nav ul li:nth-child(5) img {
  width: 32px;
}
.header-nav ul li:nth-child(6) img {
  width: 32px;
}
.header-nav ul li:nth-child(7) img {
  width: 30px;
}
.header-nav ul li a {
  width: 90px;
  height: 80px;
  padding: 0 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.header-nav ul li a:hover {
  opacity: 0.5;
}
.header-nav ul li img {
  display: block;
  margin: 0 auto;
}
.header-nav ul li span {
  width: 100%;
  text-align: center;
}

.header-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-mobile {
  display: none;
}

.header-btn-wrap .tel-btn {
  width: 225px;
  margin-left: 9px;
}
.header-btn-wrap .tel-btn img {
  padding-right: 5px;
}
.header-btn-wrap .tel-btn p {
  font-size: 12px;
  font-weight: bold;
  background: #4A7AB2;
  border-radius: 2px;
  color: #FFF;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-top: 5px;
}
.header-btn-wrap .tel-btn p br {
  display: none;
}
.header-btn-wrap .tel-btn p span {
  font-size: 18px;
}
.header-btn-wrap .tel-btn p span.__m {
  font-size: 13px;
}
.header-btn-wrap .mail-btn {
  width: 230px;
  margin-left: 1.41vw;
}
.header-btn-wrap .mail-btn span {
  display: none;
}
.header-btn-wrap .mail-btn .mail-icon {
  vertical-align: -3px;
  margin-right: 6px;
}

.company-profile {
  width: 262px;
  margin: 30px auto 100px;
}
.company-profile .address {
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 20px 0;
}
.company-profile .sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company-profile .sns-link li + li {
  margin-left: 10px;
}
.company-profile .sns-link li a {
  display: block;
}
.company-profile .sns-link li a img {
  display: block;
}

@media screen and (max-width: 825px) {
  header {
    height: 80px;
    padding: 0;
    -webkit-filter: none;
            filter: none;
  }
  .header-left {
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 4px 4px rgba(108, 151, 165, 0.2);
            box-shadow: 0px 4px 4px rgba(108, 151, 165, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    z-index: 9999;
  }
  .header-left > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-logo {
    margin: 0 0 0 20px;
  }
  .header-tel-btn, .header-toggle-btn {
    display: inline-block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 90px;
    height: 80px;
  }
  .header-tel-btn a, .header-toggle-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .header-tel-btn img, .header-toggle-btn img {
    display: block;
    margin: 0 auto;
  }
  .header-tel-btn span, .header-toggle-btn span {
    width: 100%;
    text-align: center;
  }
  .header-tel-btn {
    padding: 0;
  }
  .header-tel-btn a {
    width: 90px;
    height: 80px;
    background: #F4F1EE;
    padding: 0 0 10px;
  }
  .header-tel-btn img {
    width: 28px;
    margin-bottom: -2px;
  }
  .header-toggle-btn {
    background: #D8EDFF;
    padding: 0 0 10px;
  }
  .header-toggle-btn img {
    width: 35px;
  }
  .header-inner {
    display: none;
    opacity: 0;
    width: 100%;
    height: 100vh;
    background: #FFF;
    padding-top: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
  }
  .header-inner.is-opened {
    opacity: 1;
  }
  .header-inner.is-active {
    display: block;
  }
  .header-inner > div {
    height: 100vh;
    display: block;
    overflow-y: scroll;
  }
  .header-nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 40px 5.33% 100px;
    font-size: 16px;
  }
  .header-nav ul li {
    width: 22.75%;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
  }
  .header-nav ul li + li {
    margin-left: 3%;
  }
  .header-nav ul li:nth-child(5) {
    margin-left: 0;
  }
  .header-nav ul li:nth-child(5) a, .header-nav ul li:nth-child(7) a {
    background: #D8EDFF;
  }
  .header-nav ul li:nth-child(6) a {
    background: #F4F1EE;
  }
  .header-nav ul li:nth-child(7) img {
    width: 25% !important;
  }
  .header-nav ul li::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .header-nav ul li a {
    width: 100%;
    height: 100%;
    padding: 9.37% 0 20%;
    border-radius: 20px;
    position: absolute;
  }
  .header-nav ul li img {
    width: 30% !important;
    margin-top: 10px;
  }
}
@media screen and (min-width: 601px) and (max-width: 700px) {
  .header-nav ul {
    font-size: clamp(14px, 4.27vw, 18px);
  }
  .header-nav ul li {
    width: 30.666%;
  }
  .header-nav ul li + li {
    margin-left: 4%;
  }
  .header-nav ul li:nth-child(4), .header-nav ul li:nth-child(7) {
    margin-left: 0;
  }
  .header-nav ul li:nth-child(6) a {
    background: #D8EDFF;
  }
  .header-nav ul li:nth-child(5) {
    margin-left: 4%;
  }
  .header-nav ul li:nth-child(5) a, .header-nav ul li:nth-child(7) a {
    background: #F4F1EE;
  }
}
@media screen and (max-width: 600px) {
  .header-nav ul {
    font-size: clamp(14px, 4.27vw, 18px);
  }
  .header-nav ul li {
    width: 47.76%;
  }
  .header-nav ul li + li {
    margin-left: 0;
  }
  .header-nav ul li:nth-child(odd) {
    margin-right: 4.48%;
  }
  .header-nav ul li:nth-child(1) a, .header-nav ul li:nth-child(4) a, .header-nav ul li:nth-child(5) a {
    background: #F4F1EE;
  }
  .header-nav ul li:nth-child(2) a, .header-nav ul li:nth-child(3) a, .header-nav ul li:nth-child(6) a, .header-nav ul li:nth-child(7) a {
    background: #D8EDFF;
  }
}
/* ------------------------------
　　footer
------------------------------ */
footer > .container {
  max-width: 1320px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer small {
  display: block;
  font-size: 12px;
  background: #F4F1EE;
  text-align: center;
  padding: 15px 30px 17px;
}

.footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 4.16%;
  width: calc(100% - 338px);
  min-width: 640px;
}
.footer-left .logo {
  width: 120px;
  margin-right: 3.47%;
}
.footer-left p {
  font-size: 14px;
  margin: 0 0 5px;
  line-height: 1.71;
  white-space: nowrap;
}

.footer-nav-wrap {
  margin: -5px 30px 0 4.1%;
  min-width: 430px;
}

.footer-nav li {
  float: left;
  margin-right: 30px;
}
.footer-nav li:last-child {
  margin-right: 0;
}
.footer-nav li a:hover {
  opacity: 0.5;
}
.footer-nav li img {
  margin-left: 6px;
  vertical-align: -3px;
}

.footer-right {
  width: 308px;
}

.footer-sns-title {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  letter-spacing: 0.3em;
  margin: 0 10px 0 0;
  vertical-align: 3px;
}

.footer-sns-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.footer-sns-link li {
  margin-left: 20px;
}
.footer-sns-link li span {
  display: none;
}
.footer-sns-link li a:hover {
  opacity: 0.5;
}

.page-top-btn {
  width: 80px;
  height: 80px;
  background: #000;
  border-radius: 8px 0 0 0;
  position: fixed;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 1000;
  display: block;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  opacity: 0;
}
.page-top-btn:hover {
  opacity: 0.6;
}
.page-top-btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.page-top-btn-appear {
  opacity: 1;
}

@media screen and (max-width: 1070px) {
  footer > .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-right {
    width: 100%;
    text-align: right;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  footer > .container {
    display: block;
    padding: 60px 0 0;
  }
  footer small {
    padding: 12px 20px 15px;
  }
  .footer-left {
    display: block;
    padding: 0;
    width: 100%;
    text-align: center;
    min-width: auto;
  }
  .footer-left .logo {
    width: 150px;
    margin: 0 auto 50px;
  }
  .footer-left p {
    margin: 0 0 25px;
  }
  .footer-nav-wrap {
    margin: 0;
    min-width: auto;
  }
  .footer-nav li {
    float: none;
    margin-right: 0;
    text-align: left;
  }
  .footer-nav li:nth-child(odd) a {
    background: #F3FAFF;
  }
  .footer-nav li a {
    display: block;
    padding: 20px 8.55%;
    position: relative;
  }
  .footer-nav li img {
    position: absolute;
    margin: 0;
    vertical-align: unset;
    right: 5.33%;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .footer-right {
    text-align: left;
  }
  .footer-sns-title {
    display: block;
    font-size: 28px;
    text-align: center;
    margin: 0 0 10px;
  }
  .footer-sns-link {
    display: block;
  }
  .footer-sns-link li {
    margin-left: 0;
  }
  .footer-sns-link li:nth-child(odd) a {
    background: #F3FAFF;
  }
  .footer-sns-link li img {
    width: 24px;
    vertical-align: -5px;
  }
  .footer-sns-link li span {
    display: inline-block;
    margin-left: 8px;
  }
  .footer-sns-link li a {
    display: block;
    padding: 20px 5.33%;
  }
}
/* ------------------------------
　　--- parts
------------------------------ */
.btn {
  width: 280px;
  height: 64px;
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 110px;
  padding: 16px 0 17px;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
}
.btn.__black {
  background: #000;
}
.btn.__blue {
  background: #3364BB;
}
.btn.__blue:hover {
  background: #333;
}
.btn.__gradation {
  background: -webkit-gradient(linear, left top, left bottom, from(#3364BB), to(#3364BB));
  background: linear-gradient(180deg, #3364BB 0%, #3364BB 100%);
  color: #333;
}
.btn.__gradation::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#D8EDFF), to(#F9FDFF));
  background: linear-gradient(180deg, #D8EDFF 0%, #F9FDFF 100%);
  border-radius: 110px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  width: 100%;
}
.btn.__gradation:visited, .btn.__gradation:active {
  color: #333;
}
.btn.__gradation:hover {
  color: #FFF;
}
.btn.__gradation:hover::before {
  opacity: 0;
}
.btn.__gradation:hover .icon-access {
  background: url(../images/icon/icon-access-white.svg) no-repeat center/contain;
}
.btn.__gradation span {
  position: relative;
}
.btn.__lsize {
  width: 320px;
}
.btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  color: #FFF;
  background: #3364BB;
}
.btn .icon-outlink {
  display: block;
  position: absolute;
  right: 19px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.btn .icon-access {
  width: 16px;
  height: 24px;
  background: url(../images/icon/icon-access-blue.svg) no-repeat center/contain;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 9px;
}

/* ------------------------------
　　top
------------------------------ */
.mv {
  padding: 60px 0 20px;
  background: url(../images/top/mv-bg.webp) no-repeat center/cover;
  position: relative;
}
.mv::before {
  content: "";
  width: 20.9vw;
  height: 15.76vw;
  background: url(../images/top/mv-bg-on.png) no-repeat center/cover;
  position: absolute;
  right: 2.78vw;
  bottom: 51px;
  z-index: 2;
}

.mv-slider .slick-slide {
  margin: 20px 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 20px rgba(108, 151, 165, 0.2);
          box-shadow: 0px 0px 20px rgba(108, 151, 165, 0.2);
}
.mv-slider .slick-slide img {
  border-radius: 20px;
}
.mv-slider .slick-dots li {
  margin: 0;
}
.mv-slider .slick-dots li button::before {
  width: 10px;
  height: 10px;
  content: "";
  background: #D9D9D9;
  opacity: 1;
  border-radius: 50%;
  margin: 5px;
}
.mv-slider .slick-dots li.slick-active button::before {
  background: #557ABD;
  opacity: 1;
}
.mv-slider .slick-prev, .mv-slider .slick-next {
  z-index: 2;
}
.mv-slider .slick-prev::before, .mv-slider .slick-next::before {
  font-family: "";
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 2px solid;
  border-radius: 3px;
  opacity: 1;
}
.mv-slider .slick-prev {
  left: calc(9.72% - 10px);
}
.mv-slider .slick-prev::before {
  border-color: transparent transparent #557ABD #557ABD;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mv-slider .slick-next {
  right: calc(9.72% + 5px);
}
.mv-slider .slick-next::before {
  border-color: #557ABD #557ABD transparent transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* 　ABOUT
------------------------------ */
.top-about {
  padding: 100px 0 105px;
  background: url(../images/top/about-bg.webp) no-repeat center/cover;
  position: relative;
}
.top-about::before, .top-about::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
}
.top-about::before {
  background: url(../images/top/light-blue-bottom.webp) repeat-x center/1440px 10px;
  top: 0;
}
.top-about::after {
  background: url(../images/top/white-top.webp) repeat-x center/1440px 10px;
  bottom: 0;
}
.top-about h2 {
  margin: 0 0 42px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
}
.top-about h2 img {
  width: 224px;
}
.top-about p {
  text-align: center;
  color: #000;
  margin: 0;
  font-size: 18px;
  line-height: 2;
}
.top-about p + p {
  margin-top: 0;
}

/* 　STORES
------------------------------ */
.top-stores {
  padding: 80px 0 60px;
  overflow: hidden;
}
.top-stores > .container {
  position: relative;
}
.top-stores > .container::before, .top-stores > .container::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 36.8vw;
  height: auto;
  aspect-ratio: 53/40;
  max-width: 530px;
}
.top-stores > .container::before {
  background: url(../images/top/stores-img-before.webp) no-repeat center bottom/contain;
  top: 1.4%;
  left: -8vw;
}
.top-stores > .container::after {
  background: url(../images/top/stores-img-after.webp) no-repeat center bottom/contain;
  bottom: 0.9%;
  right: -10.5vw;
}

.stores-list-wrap {
  text-align: center;
  position: relative;
}

.stores-notice-text {
  text-align: center;
  background: #F4F1EE;
  color: #000;
  font-weight: 500;
  padding: 15px 20px;
  margin: 0 auto 40px;
  display: inline-block;
}
.stores-notice-text img {
  width: 32px;
  margin-right: 16px;
}
.stores-notice-text strong {
  color: #3364BB;
  font-weight: 700;
}

.stores-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.stores-item-list li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
}
.stores-item-list li:nth-child(4n) {
  margin-right: 0;
}
.stores-item-list li figure img {
  border-radius: 6px;
  aspect-ratio: 235/200;
}
.stores-item-list li .store-name {
  font-size: 20px;
  font-weight: 500;
}
.stores-item-list li .store-name span {
  font-size: 14px;
  display: block;
}
.stores-item-list li .btn {
  width: 100%;
  max-width: 180px;
  height: 48px;
  font-size: 16px;
  padding: 10px 0;
  margin: 0 auto;
}
.stores-item-list li .btn + .btn {
  margin-top: 16px;
}
.stores-item-list li .btn .icon-outlink {
  width: 16px;
}

/* 　NEWS
------------------------------ */
.top-news {
  padding: 100px 0;
  background: #F4F1EE;
  position: relative;
}
.top-news::before, .top-news::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
}
.top-news::before {
  background: url(../images/top/beige-top.webp) repeat-x center/1440px 10px;
  top: -9px;
}
.top-news::after {
  background: url(../images/top/white-top.webp) repeat-x center/1440px 10px;
  bottom: 0;
}
.top-news .en-cap-title {
  letter-spacing: 0;
  text-align: left;
  margin: 0 auto 30px;
}
.top-news .en-cap-title span {
  display: inline-block;
  padding: 0 26px 0 11px;
}
.top-news .en-cap-title img {
  width: 48px;
  vertical-align: text-bottom;
}

.new-item-list {
  background-image: linear-gradient(to right, #000, #000 2px, transparent 2px, transparent 8px);
  background-size: 4px 1px;
  background-position: left top;
  background-repeat: repeat-x;
}
.new-item-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 4%;
  background-image: linear-gradient(to right, #000, #000 2px, transparent 2px, transparent 8px);
  background-size: 4px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.new-item-list li time {
  font-family: "Lato", sans-serif;
  font-style: italic;
  width: 100px;
}
.new-item-list li p {
  width: calc(100% - 100px);
  margin: 0;
}
.new-item-list li p a {
  color: #0000EE;
  text-decoration: underline;
}

/* 　STORAGE
------------------------------ */
.top-storage {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(243, 250, 255, 0)), to(#F3FAFF));
  background: linear-gradient(to bottom, rgba(243, 250, 255, 0) 0%, #F3FAFF 100%);
  padding: 100px 0;
  overflow-x: hidden;
}
.top-storage h2 {
  font-size: 32px;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  margin: 0 0 70px;
  text-align: center;
  color: #000;
}
.top-storage .btn {
  margin: 0 auto;
}

.storage-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.storage-img-wrap::before, .storage-img-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 22.22vw;
  height: auto;
  padding-top: 35.75%;
  max-width: 320px;
}
.storage-img-wrap::before {
  background: url(../images/top/storage-img-before.webp) no-repeat center/contain;
  left: -11.5vw;
  top: -30.29%;
}
.storage-img-wrap::after {
  background: url(../images/top/storage-img-after.webp) no-repeat center/contain;
  right: -11.5vw;
  bottom: -30.29%;
}
.storage-img-wrap figure {
  width: 6.4%;
  margin-bottom: 3%;
}
.storage-img-wrap .main-item {
  width: 45.2%;
  margin: 0;
}
.storage-img-wrap + p {
  margin: 50px 0;
  text-align: center;
}

/* 　FEATURE
------------------------------ */
.top-feature {
  padding: 100px 0;
  position: relative;
}
.top-feature::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  background: url(../images/top/white-top.webp) repeat-x center/1440px 10px;
  top: -9px;
}
.top-feature .section-intro {
  text-align: center;
  margin: 0 0 40px;
}

.feature-item-list {
  max-width: 765px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.feature-item-list li {
  text-align: center;
  width: 30.72%;
  margin: 0 3.92% 40px 0;
}
.feature-item-list li:nth-child(3n) {
  margin-right: 0;
}
.feature-item-list li img {
  width: 150px;
}
.feature-item-list li p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  margin: 0;
}
.feature-item-list li p span {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

/* 　ATTENTION
------------------------------ */
.top-attention {
  background: #F4F1EE;
  padding: 80px 0 100px;
  position: relative;
}
.top-attention::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  background: url(../images/top/beige-top.webp) repeat-x center/1440px 10px;
  top: -9px;
}
.top-attention > .container {
  max-width: 960px;
}
.top-attention h2 img {
  width: 48px;
}

.top-attention-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-attention-list li {
  background: #FFF;
  border: 1px solid #000;
  border-radius: 20px;
  width: 31.25%;
  margin: 0 3.12% 30px 0;
  padding: 40px 3.13%;
}
.top-attention-list li:nth-child(3n) {
  margin-right: 0;
}
.top-attention-list li .title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
}
.top-attention-list li p {
  margin: 0;
}

/* 　MACHINES
------------------------------ */
.top-machines {
  padding: 80px 0 110px;
  position: relative;
}
.top-machines::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  background: url(../images/top/white-top.webp) repeat-x center/1440px 10px;
  top: -9px;
}
.top-machines .section-intro {
  text-align: center;
  margin: 0 0 40px;
}

.drop-item:first-of-type .drop-title::after {
  -webkit-transform: translate(0, -50%) rotate(0deg);
          transform: translate(0, -50%) rotate(0deg);
}
.drop-item:first-of-type .drop-title.open::after {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}
.drop-item:first-of-type .drop-text {
  display: block;
}
.drop-item .drop-title {
  position: relative;
}
.drop-item .drop-title::before, .drop-item .drop-title::after {
  content: "";
  width: 24px;
  height: 4px;
  background: #FFF;
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.drop-item .drop-title::after {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}
.drop-item .drop-title.open::after {
  -webkit-transform: translate(0, -50%) rotate(0deg);
          transform: translate(0, -50%) rotate(0deg);
}
.drop-item.__in-contents + .drop-item {
  margin-top: 40px;
}
.drop-item.__in-contents .drop-title {
  font-size: 24px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #FFF;
  background: #557ABD;
  padding: 10px 60px 10px 40px;
}
.drop-item.__in-contents .drop-title p {
  margin: 0;
}
.drop-item.__in-contents .drop-title p .icon-foam {
  width: 22px;
  height: 25px;
  background: url(../images/icon/icon-foam.png) no-repeat center/cover;
  display: inline-block;
  vertical-align: -3px;
  margin-right: 20px;
}
.drop-item.__in-contents .drop-contents-wrap {
  border: 1px solid #557ABD;
  padding: 40px 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drop-item.__in-contents .drop-contents-left {
  width: 63.04%;
}
.drop-item.__in-contents .drop-contents-right {
  width: 34.78%;
}
.drop-item .drop-text {
  display: none;
}

.drop-contents-left h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 36px;
}
.drop-contents-left h3 span {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.foam-no-list {
  counter-reset: number 0;
}
.foam-no-list li {
  position: relative;
  padding: 0 0 0 40px;
}
.foam-no-list li + li {
  margin-top: 40px;
}
.foam-no-list li::before {
  counter-increment: number 1;
  content: counter(number) " ";
  width: 30px;
  height: 38px;
  line-height: 38px;
  background: url(../images/no-bg.png) no-repeat right bottom/24px 24px;
  display: block;
  font-size: 32px;
  color: #3364BB;
  position: absolute;
  top: -5px;
  left: 0;
}
.foam-no-list li h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.foam-no-list li p {
  margin: 20px 0 0;
}
.foam-no-list li p small {
  font-size: 14px;
}
.foam-no-list + h3 {
  margin-top: 40px;
}

/* 　Q&A
------------------------------ */
.top-qa {
  padding: 80px 0 110px;
  background: #F3FAFF;
  position: relative;
}
.top-qa::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  background: url(../images/top/light-blue-top.webp) repeat-x center/1440px 10px;
  top: -9px;
}
.top-qa .drop-item:first-of-type {
  margin-top: 60px;
}

.drop-item.__qa + .drop-item {
  margin-top: 30px;
}
.drop-item.__qa:first-of-type .drop-title {
  color: #FFF;
  background: #3364BB;
}
.drop-item.__qa:first-of-type .drop-title::before, .drop-item.__qa:first-of-type .drop-title::after {
  background: #FFF;
}
.drop-item.__qa:first-of-type .drop-title.open {
  background: #FFF;
  color: #333;
}
.drop-item.__qa:first-of-type .drop-title.open::before, .drop-item.__qa:first-of-type .drop-title.open::after {
  background: #3364BB;
}
.drop-item.__qa .drop-title {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  background: #FFF;
  border-radius: 60px;
  padding: 16px 60px 17px 35px;
}
.drop-item.__qa .drop-title::before, .drop-item.__qa .drop-title::after {
  background: #3364BB;
}
.drop-item.__qa .drop-title.open {
  color: #FFF;
  background: #3364BB;
}
.drop-item.__qa .drop-title.open::before, .drop-item.__qa .drop-title.open::after {
  background: #FFF;
}
.drop-item.__qa .drop-title p {
  margin: 0;
}
.drop-item.__qa .drop-text {
  padding: 32px 35px;
}
.drop-item.__qa .drop-text p {
  margin: 0;
}
.drop-item.__qa .drop-text p a {
  color: #0000EE;
  text-decoration: underline;
}
.drop-item.__qa .drop-text p a[href^="tel:"] {
  color: #333;
  text-decoration: none;
}
.drop-item.__qa .drop-text p a:hover {
  opacity: 0.7;
}
.drop-item.__qa .drop-text p + p {
  margin-top: 1rem;
}

/* 　MEMBER
------------------------------ */
.member {
  padding: 100px 0 110px;
  position: relative;
}
.member::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  background: url(../images/top/white-top.webp) repeat-x center/1440px 10px;
  top: -9px;
}
.member > .container {
  max-width: 1260px;
}
.member h2 {
  color: #000;
  font-size: 28px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0 0 65px;
}
.member h2 small {
  font-size: 28px;
  display: block;
}

.member-contens-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.member-contens-wrap figure {
  width: 40%;
}
.member-contens-wrap figure img {
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 10px #A6A6A6;
          box-shadow: 0px 0px 10px #A6A6A6;
}

.member-text {
  width: 55%;
}
.member-text p {
  color: #000;
  margin: 0 0 40px;
}
.member-text .btn {
  margin: 0 0 0 auto;
  padding-right: 20px;
}

/* 　APPLI
------------------------------ */
.appli {
  background: #557ABD;
  padding: 100px 0;
  color: #FFF;
  position: relative;
}
.appli::before, .appli::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
}
.appli::before {
  background: url(../images/top/appli-top.webp) repeat-x center/1440px 10px;
  top: -9px;
}
.appli::after {
  background: url(../images/top/appli-bottom.webp) repeat-x center/1440px 10px;
  bottom: -9px;
}
.appli > .container {
  max-width: 1160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.appli h2 {
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.1em;
  margin: 0 0 50px;
}
.appli h2 span {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  font-size: 48px;
  display: block;
}
@media screen and (max-width: 845px) {
  .appli h2 span {
    font-size: clamp(43px, 3.33vw, 48px);
  }
}

.appli-text-wrap {
  width: 60%;
}

.appli-img {
  width: 36.36%;
}

.appli-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.appli-item-list li.ios {
  margin-right: 30px;
}
.appli-item-list li.ios a {
  font-size: 0;
  width: 163px;
  height: 60px;
  background: url(../images/top/appli-item-app.png) no-repeat center/cover;
}
.appli-item-list li.android a {
  font-size: 0;
  width: 203px;
  height: 60px;
  background: url(../images/top/appli-item-google.png) no-repeat center/cover;
}
.appli-item-list li a {
  display: block;
}
.appli-item-list li a:hover {
  opacity: 0.6;
}

/* 　CONTACT
------------------------------ */
.contact {
  padding: 80px 0 112px;
  background: url(../images/top/contact-bg.webp) no-repeat center/cover;
}
.contact h2 {
  color: #FFF;
  font-size: 32px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 40px;
}
.contact h2 img {
  width: 80px;
  margin: 0 auto 16px;
  display: block;
}
.contact .section-intro {
  color: #FFF;
  text-align: center;
}

.area-list-wrap {
  background: #FFF;
  border: 1px solid #000;
  color: #000;
  border-radius: 20px;
  padding: 40px 7% 34px;
  margin: 40px 0 0;
}

.area-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.area-list li {
  width: 45%;
  margin-bottom: 10px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
}
.area-list li span {
  margin-left: 12.19%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}
@media screen and (max-width: 1054px) {
  .area-list li span {
    display: block;
    text-align: right;
  }
}

.contact-btn {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 56px;
  background: #F3FAFF;
  border: 1px dashed black;
  color: #000;
  display: block;
  text-align: center;
  margin: 20px auto 0;
  border-radius: 47px;
  line-height: 1;
  padding: 11px 0 19px;
  width: 500px;
}
.contact-btn:hover {
  background: #557ABD;
  color: #FFF;
}
.contact-btn:hover svg {
  fill: #FFF;
}
.contact-btn svg {
  fill: #557ABD;
  width: 32px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .mv {
    padding: 40px 0 30px;
  }
  .mv::before {
    content: none;
  }
  .mv::after {
    background: url(../images/top/light-blue-bottom_sp.webp) repeat-x center/375px 10px;
  }
  .mv-slider .slick-slide {
    margin: 0;
    border-radius: 0;
  }
  .mv-slider .slick-slide img {
    border-radius: 0;
    aspect-ratio: 375/351;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .mv-slider .slick-dots {
    bottom: -40px;
  }
  /* 　ABOUT
  ------------------------------ */
  .top-about {
    padding: 80px 0 70px;
    background: url(../images/top/about-bg_sp.webp) no-repeat center/cover;
  }
  .top-about::before {
    background: url(../images/top/light-blue-bottom_sp.webp) repeat-x center/375px 10px;
  }
  .top-about::after {
    background: url(../images/top/white-top_sp.webp) repeat-x center/375px 10px;
    bottom: -1px;
  }
  .top-about h2 {
    margin: 0 0 35px;
  }
  .top-about h2 img {
    width: 167px;
  }
  .top-about p {
    font-size: 16px;
  }
  .top-about p + p {
    margin-top: 1rem;
  }
  /* 　STORES
  ------------------------------ */
  .top-stores {
    padding: 80px 0;
  }
  .top-stores > .container::before, .top-stores > .container::after {
    content: none;
  }
  .top-stores .en-cap-title {
    margin-bottom: 30px;
  }
  .stores-notice-text {
    text-align: left;
    padding: 15px 20px 15px 58px;
    margin: 0 auto 32px;
    display: block;
    position: relative;
  }
  .stores-notice-text img {
    margin-right: 0;
    position: absolute;
    left: 16px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .stores-notice-text strong {
    color: #000;
  }
  .stores-item-list li {
    width: 100%;
    margin-right: 0;
  }
  .stores-item-list li .btn {
    max-width: 225px;
  }
  .stores-item-list li .btn + .btn {
    margin-top: 20px;
  }
  /* 　NEWS
  ------------------------------ */
  .top-news {
    padding: 40px 0 100px;
  }
  .top-news::before {
    background: url(../images/top/beige-top_sp.webp) repeat-x center/375px 10px;
    top: -9px;
  }
  .top-news::after {
    background: url(../images/top/light-blue-top_sp.webp) repeat-x center/375px 10px;
    bottom: 0;
  }
  .top-news .en-cap-title {
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0 auto 35px;
  }
  .top-news .en-cap-title span {
    display: block;
    font-size: 36px;
    padding: 4px 0;
  }
  .top-news .en-cap-title img {
    vertical-align: bottom;
  }
  .new-item-list {
    background-image: -webkit-gradient(linear, left top, right top, from(#000), to(#000));
    background-image: linear-gradient(to right, #000, #000);
  }
  .new-item-list li {
    display: block;
    padding: 32px 5.33;
    background-image: -webkit-gradient(linear, left top, right top, from(#000), to(#000));
    background-image: linear-gradient(to right, #000, #000);
  }
  .new-item-list li time {
    width: 100%;
  }
  .new-item-list li p {
    width: 100%;
    margin: 16px 0 0;
  }
  /* 　STORAGE
  ------------------------------ */
  .top-storage {
    background: #F3FAFF;
    padding: 90px 0 80px;
  }
  .top-storage h2 {
    font-size: 24px;
    letter-spacing: 0.1em;
    margin: 0 0 35px;
  }
  .top-storage .btn {
    max-width: 300px;
  }
  .storage-img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .storage-img-wrap::before, .storage-img-wrap::after {
    content: none;
  }
  .storage-img-wrap figure {
    width: 100%;
    margin: 13px 0;
  }
  .storage-img-wrap figure img {
    width: 50px;
    display: block;
    margin: 0 auto;
  }
  .storage-img-wrap .main-item {
    width: 95%;
    margin: 0 auto;
  }
  .storage-img-wrap + p {
    margin: 40px 0 32px;
  }
  /* 　FEATURE
  ------------------------------ */
  .top-feature {
    padding: 80px 0;
  }
  .top-feature::before {
    background: url(../images/top/white-top_sp.webp) repeat-x center/375px 10px;
  }
  .top-feature .section-intro {
    margin: 0 0 32px;
  }
  .feature-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .feature-item-list li {
    width: 46.27%;
    margin: 0 0 30px 0;
  }
  .feature-item-list li:nth-child(even) {
    margin-left: 7.46%;
  }
  .feature-item-list li img {
    width: 100%;
    max-width: 155px;
  }
  .feature-item-list li p span {
    display: block;
  }
  /* 　ATTENTION
  ------------------------------ */
  .top-attention {
    padding: 50px 0 100px;
  }
  .top-attention::before {
    background: url(../images/top/beige-top_sp.webp) repeat-x center/375px 10px;
  }
  .top-attention .en-cap-title span {
    font-size: clamp(34px, 9.6vw, 36px);
    margin: 8px 0 2px;
  }
  .top-attention-list {
    margin-top: 50px;
    display: block;
  }
  .top-attention-list li {
    border-radius: 8px;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 35px 5.33% 40px;
  }
  .top-attention-list li:last-child {
    margin-bottom: 0;
  }
  /* 　MACHINES
  ------------------------------ */
  .top-machines {
    padding: 80px 0;
  }
  .top-machines::before {
    background: url(../images/top/white-top_sp.webp) repeat-x center/375px 10px;
  }
  .top-machines .en-cap-title span {
    font-size: clamp(38px, 11.73vw, 44px);
  }
  .top-machines .section-intro {
    text-align: left;
    margin: 0 0 30px;
    padding: 0 10px;
  }
  .drop-item .drop-title::before, .drop-item .drop-title::after {
    right: 20px;
  }
  .drop-item.__in-contents + .drop-item {
    margin-top: 30px;
  }
  .drop-item.__in-contents .drop-title {
    line-height: 1.448;
    font-size: 20px;
    padding: 13px 60px 13px 48px;
  }
  .drop-item.__in-contents .drop-title p .icon-foam {
    width: 22px;
    height: 25px;
    position: absolute;
    left: 14px;
    top: 17px;
  }
  .drop-item.__in-contents .drop-contents-wrap {
    padding: 30px 5.33% 80px;
    display: block;
  }
  .drop-item.__in-contents .drop-contents-left {
    width: 100%;
  }
  .drop-contents-left h3 {
    font-size: 20px;
    line-height: 1.8;
    margin: 0 0 30px;
  }
  .drop-contents-left .item-img {
    width: 85.85%;
    margin: 0 auto 30px;
  }
  .foam-no-list li {
    padding: 0;
  }
  .foam-no-list li + li {
    margin-top: 30px;
  }
  .foam-no-list li h4 {
    padding: 0 0 0 40px;
  }
  .foam-no-list + h3 {
    margin-top: 30px;
  }
  /* 　Q&A
  ------------------------------ */
  .top-qa {
    padding: 70px 0 60px;
  }
  .top-qa::before {
    background: url(../images/top/light-blue-top_sp.webp) repeat-x center/375px 10px;
  }
  .top-qa .drop-item:first-of-type {
    margin-top: 40px;
  }
  .drop-item.__qa + .drop-item {
    margin-top: 30px;
  }
  .drop-item.__qa .drop-title {
    border-radius: 20px;
    padding: 16px 60px 20px 20px;
  }
  .drop-item.__qa .drop-title::before, .drop-item.__qa .drop-title::after {
    top: 30px;
  }
  .drop-item.__qa .drop-text {
    padding: 19px 20px 0;
  }
  .drop-item.__qa .drop-text p a[href^="tel:"] {
    color: #0000EE;
    text-decoration: underline;
  }
  /* 　MEMBER
  ------------------------------ */
  .member {
    padding: 100px 0;
  }
  .member::before {
    background: url(../images/top/white-top_sp.webp) repeat-x center/375px 10px;
  }
  .member h2 {
    font-size: 22px;
    letter-spacing: 0.3em;
    line-height: 1.44;
    margin: 0 0 40px;
  }
  .member h2 small {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .member-contens-wrap {
    display: block;
  }
  .member-contens-wrap figure {
    width: calc(100% - 20px);
    margin: 0 auto 40px;
  }
  .member-text {
    width: 100%;
  }
  .member-text p {
    text-align: center;
    padding: 0 10px;
    margin: 0 0 60px;
  }
  .member-text .btn {
    margin: 0 auto;
  }
  /* 　APPLI
  ------------------------------ */
  .appli::before {
    background: url(../images/top/appli-top_sp.webp) repeat-x center/375px 10px;
    top: -9px;
  }
  .appli::after {
    background: url(../images/top/appli-bottom_sp.webp) repeat-x center/375px 10px;
    bottom: -9px;
  }
  .appli > .container {
    display: block;
  }
  .appli h2 {
    letter-spacing: 0.3em;
    margin: 0 0 24px;
    text-align: center;
  }
  .appli h2 span {
    font-size: clamp(31px, 9.6vw, 36px);
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    margin: 0 -10px;
  }
  .appli .section-intro {
    padding: 0 10px;
  }
  .appli .section-intro .word-break {
    display: inline;
  }
  .appli-text-wrap {
    width: 100%;
  }
  .appli-img {
    width: 88.05%;
    margin: 0 auto;
  }
  .appli-item-list {
    display: block;
  }
  .appli-item-list li a {
    margin: 0 auto;
  }
  .appli-item-list li.ios {
    margin: 40px 0 24px;
  }
  /* 　CONTACT
  ------------------------------ */
  .contact {
    padding: 80px 0 100px;
  }
  .contact h2 {
    font-size: 32px;
    margin: 0 auto 25px;
  }
  .area-list-wrap {
    padding: 32px 7.46%;
  }
  .area-list li {
    width: 100%;
    margin-bottom: 7px;
    text-align: center;
  }
  .area-list li span {
    margin-left: 0;
    text-align: center;
  }
  .contact-btn {
    font-size: clamp(32px, 9.6vw, 36px);
    border-radius: 32px;
    padding: 11px 0 15px;
    width: 100%;
  }
  .contact-btn svg {
    width: 24px;
    vertical-align: 0;
    margin-right: -5px;
  }
}
@media screen and (max-width: 320px) {
  .member-text p .word-break {
    display: inline;
  }
}
/* ------------------------------
　　__detail
------------------------------ */
.__detail .top-news::after {
  background: url(../images/top/light-blue-top.webp) repeat-x center/1440px 10px;
  bottom: -1px;
}
.__detail .member {
  padding-top: 0;
}

.shop-info {
  padding: 80px 0 110px;
  position: relative;
}
.shop-info::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  background: url(../images/top/white-top.webp) repeat-x center/1440px 10px;
  top: -9px;
}
.shop-info .btn {
  margin: 60px auto 0;
}

.shop-main-img {
  max-width: 820px;
  margin: 0 auto 50px;
}
.shop-main-img img {
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(108, 151, 165, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(108, 151, 165, 0.2);
}

.information-table {
  border-top: 1px solid #557ABD;
}
.information-table > div {
  border-bottom: 1px solid #557ABD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 20px;
}
.information-table > div dt {
  color: #FFF;
  border-radius: 60px;
  background: #3364BB;
  font-size: 18px;
  font-weight: 500;
  min-width: 120px;
  text-align: center;
  margin-right: 30px;
  padding: 0 20px;
}
.information-table > div dt._empty {
  display: none;
}
.information-table > div dd {
  color: #000;
}
.information-table > div dd a {
  color: #3364BB;
  text-decoration: underline;
}

.realtime-check {
  padding: 0 0 70px;
  position: relative;
}
.realtime-check::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  background: url(../images/top/white-bottom.webp) repeat-x center/1440px 10px;
  bottom: -9px;
}
.realtime-check > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.realtime-check > div figure {
  width: 36%;
}

.realtime-check-text {
  width: 60%;
}
.realtime-check-text p {
  font-size: 20px;
  margin: -5% 0 34px;
}

.price {
  background: #F5FBFF;
  padding: 80px 0 100px;
}
.price .section-intro {
  text-align: center;
  margin: 0 0 40px;
}

.facility {
  padding: 80px 0 0;
  position: relative;
}
.facility::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  background: url(../images/top/white-top.webp) repeat-x center/1440px 10px;
  top: -9px;
}
.facility > .container {
  position: relative;
}
.facility > .container::before, .facility > .container::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 36.8vw;
  height: auto;
  aspect-ratio: 53/40;
  max-width: 530px;
}
.facility > .container::before {
  background: url(../images/top/stores-img-before.webp) no-repeat center bottom/contain;
  top: -1.5%;
  left: -8vw;
}
.facility > .container::after {
  background: url(../images/top/stores-img-after.webp) no-repeat center bottom/contain;
  bottom: 0.9%;
  right: -10.5vw;
}

.stores-item-list .machine-name {
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0 15px;
}
.stores-item-list .machine-number {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid #557ABD;
  background: #FFF;
  padding: 6px 28px;
  line-height: 1;
  border-radius: 30px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .__detail .top-news::after {
    background: url(../images/top/light-blue-top_sp.webp) repeat-x center/375px 10px;
  }
  .__detail .top-storage {
    background: #FFF;
  }
  .page-title {
    font-size: 28px;
    padding: 53px 0;
  }
  .shop-info {
    padding: 60px 0 90px;
  }
  .shop-info::before {
    background: url(../images/top/white-top_sp.webp) repeat-x center/375px 10px;
  }
  .shop-info .btn {
    margin-top: 40px;
  }
  .shop-main-img {
    margin-bottom: 60px;
  }
  .information-table > div {
    padding: 29px 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .information-table > div dt {
    font-size: 17px;
    padding: 2px 10px;
    min-width: 96px;
    margin-right: 14px;
  }
  .realtime-check {
    padding: 0 0 80px;
  }
  .realtime-check::after {
    background: url(../images/top/light-blue-top_sp.webp) repeat-x center/375px 10px;
    bottom: -1px;
  }
  .realtime-check > div {
    display: block;
  }
  .realtime-check > div figure {
    width: 94%;
    max-width: 315px;
    margin: 0 auto;
  }
  .realtime-check-text {
    width: 100%;
  }
  .realtime-check-text p {
    margin: 0 0 50px;
    padding: 0 10px;
  }
  .realtime-check-text .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .price {
    padding: 80px 0;
  }
  .price .section-intro {
    text-align: left;
    padding: 0 20px;
    margin: 0 0 30px;
  }
  .price picture {
    padding: 0 20px;
    display: block;
  }
  .facility {
    margin-bottom: -20px;
  }
  .facility::before {
    background: url(../images/top/white-top_sp.webp) repeat-x center/375px 10px;
  }
  .facility > .container::before, .facility > .container::after {
    content: none;
  }
  .facility .stores-list-wrap {
    padding: 0 20px;
  }
}
/*# sourceMappingURL=style.css.map */