@charset "utf-8";
/*共通CSS*/

* {
  box-sizing: border-box
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
html {
  overflow-y: scroll;
}
body {
  max-width: 1920px;
  min-width: 320px;
  margin: auto;
  word-break: break-word;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: normal;
}
section {
  position: relative;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
fieldset, img {
  border: 0;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
.circle {
  border-radius: 30px;
}
button {
  border: none;
  -webkit-appearance: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
strong {
  font-weight: bold;
}
span,a {
  display: inline-block;
}
a {
  position: relative;
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: none;
}
a,button,input[type="submit"] {
  position: relative;
  transition: all .7s;
}
a:hover,button:hover,input[type="submit"]:hover {
  cursor: pointer;
  transition: all .7s;
}
a:not([class]):hover,
button:not([class]):hover,
.opa:hover {
  opacity: .6;
}
figure {
  margin: 0;
  display: inline-block;
}
figcaption {
  margin-top: 10px;
}
address, caption, cite, code, dfn, em, th {
  font-style: normal;
  font-weight: normal;
}

input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
}
.on1366, .on1280, .on1024, .on768, .on480, .on375 {
  display: none;
}
@media (min-width:1367px) {
  .off1366 {
    display: none;
  }
  .on1366 {
    display: block;
  }
}
@media (max-width:1280px) {
  .off1280 {
    display: none;
  }
  .on1280 {
    display: block;
  }
}
@media (max-width:1024px) {
  .off1024 {
    display: none;
  }
  .on1024 {
    display: block;
  }
}
@media (max-width:768px) {
  .off768 {
    display: none;
  }
  .on768 {
    display: block;
  }
}
@media (max-width:480px) {
  .off480 {
    display: none;
  }
  .on480 {
    display: block;
  }
}
.tc {
  text-align: center;
}
.tr {
  text-align: right;
}
.tl {
  text-align: left;
}
.tj {
  text-align: justify;
}
.lhn {
  line-height: normal;
}
.fs {
  font-size: .85em;
}
.fb {
  font-weight: 600;
}
.opa {
  transition: .5s;
  cursor: pointer;
}
.opa:hover {
  opacity: .6;
}
/*margin*/
.mts {
  margin-top: .5em;
}
.mt1em {
  margin-top: 1em;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt45 {
  margin-top: 45px;
}
.mt60 {
  margin-top: 60px;
}
.mt80 {
  margin-top: 80px;
}
.mt100 {
  margin-top: 100px;
}
.mbs {
  margin-bottom: .5em;
}
.mb1em {
  margin-bottom: 1em;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb100 {
  margin-bottom: 100px;
}
.pt60 {
  padding-top: 60px;
}

/*  アニメーション  */
.inview {
  opacity: 0;
  transition: all 1s;
}
/*フェードイン*/
.inview.fadein.is_show {
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*フェードアップ*/
.inview.fadeup.is_show {
  animation: fadeup .8s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*横からスライドイン*/
.inview.slide01.is_show {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}
/*ななめから*/
.inview.slide02.is_show {
  animation: slide-skew 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slide-skew {
  0% {
    transform: translate(-180px,-30px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
    opacity: 1;
  }
}
/*ズームイン*/
.inview.zoomin.is_show {
  animation: zoomIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*ヌルッと出てくる*/
.inview.bg-wrap,
.inview.bg-wrap .inn {
  display: block;
}
.inview.bg-wrap {
  overflow: hidden;
  opacity: 0;
}
.inview.is_show.bg-wrap {
  opacity: 1;
}
/*下から上*/
.inview.bg-wrap .inn.bt {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.inview.is_show.bg-wrap .inn.bt {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
/*左から右*/
.inview.bg-wrap .inn.lr {
  opacity: 0;
  transform: translateX(-100px);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.inview.is_show.bg-wrap .inn.lr {
  opacity: 1;
  transform: translateX(0); 
}
/*SVGのアニメーション*/
.inview.svg_icon {
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: hidden;
}
.svg_image {
  width: 100%;
  height: auto;
}
#part1, #part2, #part3, #part4,#part5,
#part6, #part7, #part8, #part9,#part10,
#part11, #part12, #part13, #part14,#part15 {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.05s * var(--char-index));
}
.inview.svg_icon.is_show #part1 {
  opacity: 1;
  transition-delay: 0.2s;
}
.inview.svg_icon.is_show #part2 {
  opacity: 1;
  transition-delay: 0.3s;
}
.inview.svg_icon.is_show #part3 {
  opacity: 1;
  transition-delay: 0.4s;
}
.inview.svg_icon.is_show #part4 {
  opacity: 1;
  transition-delay: 0.5s;
}
.inview.svg_icon.is_show #part5 {
  opacity: 1;
  transition-delay: 0.6s;
}
.inview.svg_icon.is_show #part6 {
  opacity: 1;
  transition-delay: 0.7s;
}
.inview.svg_icon.is_show #part7 {
  opacity: 1;
  transition-delay: 0.8s;
}
.inview.svg_icon.is_show #part8 {
  opacity: 1;
  transition-delay: 0.9s;
}
.inview.svg_icon.is_show #part9 {
  opacity: 1;
  transition-delay: 1.0s;
}
.inview.svg_icon.is_show #part10 {
  opacity: 1;
  transition-delay: 1.1s;
}
.inview.svg_icon.is_show #part11 {
  opacity: 1;
  transition-delay: 1.2s;
}
.inview.svg_icon.is_show #part12 {
  opacity: 1;
  transition-delay: 1.3s;
}
.inview.svg_icon.is_show #part13 {
  opacity: 1;
  transition-delay: 1.4s;
}
.inview.svg_icon.is_show #part14 {
  opacity: 1;
  transition-delay: 1.5s;
}
.inview.svg_icon.is_show #part15 {
  opacity: 1;
  transition-delay: 1.6s;
}
/*画像のフェードアニメーション*/
.img_container {
  margin: auto;
  overflow: hidden;
  background-color: var(--primary_bg);
  opacity: 1;
}
.img_container .blurry_img {
  filter: blur(20px);
  opacity: 0;
  animation: clearImage 3s ease forwards;
}
@keyframes clearImage {
  0% {
    filter: blur(20px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}