@charset "UTF-8";
/* vw設定
=========================================== */
/* ページ設定
=========================================== */
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: unset;
}

html,
body {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-black-size-adjust: 100%;
  font-weight: 500;
}

body {
  width: 100%;
  -webkit-black-size-adjust: 100%;
  position: relative;
}

html {
  font-size: 0.732vw;
}
@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}

a {
  display: inline-block;
  black-decoration: none;
  color: #333;
  transition: 0.3s all;
}
a:hover, a:link, a:active {
  black-decoration: none;
}
a:hover {
  transition: 0.3s all;
}

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

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

img {
  max-width: 100%;
  vertical-align: middle;
}

h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.8;
}

.black_right {
  black-align: right;
}

/* container
=========================================== */
/* iPadサイズをPCに合わせる
=========================================== */
/* device-only
=========================================== */
.pc-only1 {
  display: block;
}
@media (max-width: 820px) {
  .pc-only1 {
    display: none;
  }
}

.sp-only1 {
  display: none;
}
@media (max-width: 820px) {
  .sp-only1 {
    display: block;
  }
}

.pc-only2 {
  display: block;
}
@media (max-width: 576px) {
  .pc-only2 {
    display: none;
  }
}

.sp-only2 {
  display: none;
}
@media (max-width: 576px) {
  .sp-only2 {
    display: block;
  }
}

.pc-only3 {
  display: block;
}
@media (max-width: 960px) {
  .pc-only3 {
    display: none;
  }
}

.sp-only3 {
  display: none;
}
@media (max-width: 960px) {
  .sp-only3 {
    display: block;
  }
}

/* font-size
=========================================== */
html {
  font-size: 62.5%;
}

p {
  line-height: 1.6;
}

/* background
=========================================== */
#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/common/img/bg_fixed.png);
  background-repeat: repeat;
  background-size: 100%;
  filter: blur(1.3vw);
  z-index: -1;
}
@media (max-width: 767px) {
  #bg {
    background-image: url(/common/img/bg_fixed_sp.png);
  }
}
#bg .circle_animation_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1350;
}
@media (max-width: 767px) {
  #bg .circle_animation_wrapper {
    aspect-ratio: 750/1920;
  }
}
#bg .rotate3d {
  position: absolute;
  animation: rotate3d;
  animation-timing-function: linear;
  animation-direction: normal;
  animation-iteration-count: infinite;
}
#bg .rotate3d.circle01 {
  animation-duration: 32s;
  bottom: 25%;
  left: -15%;
  width: 40%;
  transform-style: preserve-3d;
}
@media (max-width: 767px) {
  #bg .rotate3d.circle01 {
    top: 16%;
    animation-duration: 16s;
  }
}
#bg .rotate3d.circle02 {
  animation-duration: 24s;
  top: 10%;
  right: -15%;
  width: 30%;
}
@media (max-width: 767px) {
  #bg .rotate3d.circle02 {
    top: 46%;
    right: -10%;
    animation-duration: 12s;
  }
}
@keyframes rotate3d {
  0% {
    border-width: 100px;
    transform: rotate3d(1, 1, 1, 0deg);
    /* rotate3dでXYZ軸(立体)の回転角度を指定 */
  }
  12.5% {
    border-width: 75px;
    transform: rotate3d(1, 1, 1, 90deg);
    /* rotate3dでXYZ軸(立体)の回転角度を指定 */
  }
  25% {
    border-width: 50px;
    transform: rotate3d(1, 1, 1, 180deg);
    /* rotate3dでXYZ軸(立体)の回転角度を指定 */
  }
  37.5% {
    border-width: 25px;
    transform: rotate3d(1, 1, 1, 270deg);
    /* rotate3dでXYZ軸(立体)の回転角度を指定 */
  }
  50% {
    border-width: 0px;
    transform: rotate3d(1, 1, 1, 360deg);
    /* rotate3dでXYZ軸(立体)の回転角度を指定 */
  }
  62.5% {
    border-width: 25px;
    transform: rotate3d(1, 1, 1, 450deg);
    /* rotate3dでXYZ軸(立体)の回転角度を指定 */
  }
  75% {
    border-width: 50px;
    transform: rotate3d(1, 1, 1, 540deg);
    /* rotate3dでXYZ軸(立体)の回転角度を指定 */
  }
  87.5% {
    border-width: 75px;
    transform: rotate3d(1, 1, 1, 630deg);
    /* rotate3dでXYZ軸(立体)の回転角度を指定 */
  }
  100% {
    border-width: 100px;
    transform: rotate3d(1, 1, 1, 720deg);
    /* rotate3dでXYZ軸(立体)の回転角度を指定 */
  }
}

/* iOS
=========================================== */
input[type=submit],
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;
  cursor: pointer;
}

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;
}

/* clearfix
=========================================== */
.clearfix:before,
.clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* link
=========================================== */
a.link {
  color: #333;
  display: inline-block;
  black-decoration: underline;
  black-underline-offset: 4px;
  cursor: pointer;
}
@media (hover: hover) {
  a.link:hover {
    opacity: 0.6;
  }
}

/* btn
=========================================== */
/* flexbox
=========================================== */
.flex {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.flex.center {
  justify-content: space-between;
}

.flex.flex-between {
  justify-content: space-between;
}

.flex.reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .flex.reverse {
    flex-direction: row;
  }
}

@media only screen and (max-width: 767px) {
  .spFlexRow {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.flex-set {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
}

/* grid
=========================================== */
.grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .grid {
    grid-template-rows: 2fr;
    grid-template-columns: 1fr;
  }
}

/* header
=========================================== */
/*humburger
=========================================== */
/* footer
=========================================== */
/* accordion
=========================================== */
.js-accordion-title {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.js-accordion-title:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: #333;
  transition: all 0.3s ease-in-out;
}
.js-accordion-title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #333;
  transition: all 0.2s ease-in-out;
}

.js-accordion-title.open:before {
  transform: rotate(180deg);
}
.js-accordion-title.open:after {
  opacity: 0;
}

.accordion-content {
  display: none;
}

@media only screen and (max-width: 767px) {
  .js-accordion-title_sp {
    display: none;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
  }
  .js-accordion-title_sp:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 30%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(135deg);
  }
  .accordion-content_sp {
    display: none;
  }
  .js-accordion-title_sp.open:after {
    transform: rotate(-45deg);
    top: 30%;
  }
}
/* cta
=========================================== */
/* 404 not found
=========================================== */
#notfound .black_box {
  black-align: center;
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  #notfound .black_box {
    black-align: left;
  }
}
#notfound .btn_top {
  margin: 0 auto;
}

/* MV
=========================================== */
#mv {
  height: 4000px;
}/*# sourceMappingURL=common.css.map */