@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ============================================ */
/* リセット（destyle.css） の追加設定
/* ============================================ */
html {
  box-sizing: border-box;
}

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

/* ============================================ */
/* ベース スタイル
/* ============================================ */
body {
  position: relative;
  color: var(--color-black);
  font-family: var(--fontfamily-gothic);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  width: 100%;
  overflow-x: hidden;
}

img {
  width: 100%;
  max-width: 100%;
}

img[src$=".svg"] {
  width: 100%;
}

/* ============================================ */
/* :root 
/* ============================================ */
:root {
  --color-white: #fff;
  --color-black: #313c48;
  --color-blue: #2880e6;
  --fontfamily-gothic: "Noto Sans JP", sans-serif;
  --fontfamily-mincho: "Noto Serif JP", serif;
  --fontfamily-en: "Poppins", sans-serif;
  --transition: .3s;
}

/* ============================================ */
/* ローディング
/* ============================================ */
.loading {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ぼかし加工 */
.blur {
  -ms-filter: blur(10px);
  filter: blur(10px);
}
.blur.hide {
  -webkit-animation: blur 1s linear 0.8s normal both;
          animation: blur 1s linear 0.8s normal both;
}

@-webkit-keyframes blur {
  0% {
    -ms-filter: blur(10px);
    filter: blur(10px);
  }
  100% {
    -ms-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes blur {
  0% {
    -ms-filter: blur(10px);
    filter: blur(10px);
  }
  100% {
    -ms-filter: blur(0);
    filter: blur(0);
  }
}
/* ============================================ */
/* 共通スタイル
/* ============================================ */
/* ===== main ===== */
#main {
  overflow: hidden;
}

/* ===== wrap ===== */
.out-wrap {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.in-wrap {
  position: relative;
}

.wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (min-width: 1401px) {
  .in-wrap {
    width: calc(100% - (100vw - 1100px) / 2);
  }
  .wrap {
    width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .in-wrap {
    width: 90%;
  }
  .wrap {
    width: 80%;
  }
}
/* ===== 表示切り替え ===== */
.d-switch {
  display: none !important;
}

@media screen and (min-width: 1025px) {
  .d-switch.min-lg {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .d-switch.max-lg {
    display: block !important;
  }
}
@media screen and (min-width: 769px) {
  .d-switch.min-md {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .d-switch.max-md {
    display: block !important;
  }
}
@media screen and (min-width: 601px) {
  .d-switch.min-sm {
    display: block !important;
  }
}
@media screen and (max-width: 600px) {
  .d-switch.max-sm {
    display: block !important;
  }
}
/* ===== ボタン ===== */
.btn-style01 {
  position: relative;
  display: block;
  justify-content: space-between;
  width: 100%;
  font-family: var(--fontfamily-en);
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-white);
  font-weight: 600;
  background: var(--color-blue);
  padding: 1em 1.5em;
  border: solid 2px var(--color-blue);
  border-radius: 2em;
  transition: 0.3s;
}

.icon-blank {
  position: absolute;
  right: 1.5em;
  top: 50%;
  width: 1.3em;
  stroke: var(--color-white);
  transform: translate(0, -50%);
}

.icon-arrow {
  position: absolute;
  right: 1.2em;
  top: 50%;
  width: 2.5em;
  stroke: var(--color-white);
  transform: translate(0, -50%);
}

@media (hover: hover) {
  .btn-style01:hover {
    color: var(--color-blue);
    font-weight: 600;
    background: var(--color-white);
    border: solid 2px var(--color-blue);
  }
  .btn-style01:hover .icon-blank {
    stroke: var(--color-blue);
  }
  .btn-style01:hover .icon-arrow {
    stroke: var(--color-blue);
  }
}

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