@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
/*-----------------------------------
アニメーション
------------------------------------*/
.fadein_item01 {
  -webkit-animation: fadeinright 0.5s 0s forwards;
          animation: fadeinright 0.5s 0s forwards;
}

.fadein_item02 {
  -webkit-animation: extenddown 0.5s 0.2s forwards;
          animation: extenddown 0.5s 0.2s forwards;
}

.flap_in01, .flap_in02, .flap_in03 {
  will-change: top, left, opacity, margin, padding, width, height, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fade_in01 {
  -webkit-animation: fadein 0.3s 0s forwards;
          animation: fadein 0.3s 0s forwards;
}

.fade_in02 {
  -webkit-animation: fadein 0.3s 0.5s forwards;
          animation: fadein 0.3s 0.5s forwards;
}

.fade_in03 {
  -webkit-animation: fadein 0.3s 1s forwards;
          animation: fadein 0.3s 1s forwards;
}

.flap_in01 {
  -webkit-animation: flapin 0.5s 0s forwards;
          animation: flapin 0.5s 0s forwards;
}

.flap_in02 {
  -webkit-animation: flapin 0.5s 0.3s forwards;
          animation: flapin 0.5s 0.3s forwards;
}

.flap_in03 {
  -webkit-animation: flapin 0.5s 0.6s forwards;
          animation: flapin 0.5s 0.6s forwards;
}

.ext_lr {
  -webkit-animation: extendright 0.5s 0.3s forwards;
          animation: extendright 0.5s 0.3s forwards;
}

.ext_lr2 {
  -webkit-animation: extendright 0.5s 0.7s forwards;
          animation: extendright 0.5s 0.7s forwards;
}

.ext_lr3 {
  -webkit-animation: extendright 0.5s 1.1s forwards;
          animation: extendright 0.5s 1.1s forwards;
}

.ext_lr0 {
  -webkit-animation: extendright 0.5s 0s forwards;
          animation: extendright 0.5s 0s forwards;
}

.ext_ud {
  -webkit-animation: extenddown 0.5s 0.3s forwards;
          animation: extenddown 0.5s 0.3s forwards;
}

.ext_ud2 {
  -webkit-animation: extenddown 0.5s 0.6s forwards;
          animation: extenddown 0.5s 0.6s forwards;
}

.ext_ud3 {
  -webkit-animation: extenddown 0.5s 0.9s forwards;
          animation: extenddown 0.5s 0.9s forwards;
}

.blur_in01 {
  -webkit-animation: fadeinblur 1s 0.1s forwards;
          animation: fadeinblur 1s 0.1s forwards;
}

.blur_in02 {
  -webkit-animation: fadeinblur 0.5s 0.5s forwards;
          animation: fadeinblur 0.5s 0.5s forwards;
}

.blur_in03 {
  -webkit-animation: fadeinblur 0.7s 1.2s forwards;
          animation: fadeinblur 0.7s 1.2s forwards;
}

.blur_in04 {
  -webkit-animation: fadeinblur 0.7s 1.6s forwards;
          animation: fadeinblur 0.7s 1.6s forwards;
}

.zoom_in01 {
  -webkit-animation: zoomin 0.5s 1s forwards;
          animation: zoomin 0.5s 1s forwards;
}

.zoom_in02 {
  -webkit-animation: zoomin 0.5s 0.5s forwards;
          animation: zoomin 0.5s 0.5s forwards;
}

.zoom_in03 {
  -webkit-animation: zoomin 0.5s 1s forwards;
          animation: zoomin 0.5s 1s forwards;
}

/*個別エフェクト（ヘッダーイン）*/
@-webkit-keyframes show_mvhead {
  0% {
    opacity: 0;
    z-index: 1;
  }
  to {
    opacity: 1;
    z-index: 1;
  }
}
@keyframes show_mvhead {
  0% {
    opacity: 0;
    z-index: 1;
  }
  to {
    opacity: 1;
    z-index: 1;
  }
}
/*固定位置フェードイン*/
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.common_fadeinup {
  opacity: 0;
  -webkit-animation: fadeinup 0.8s 0s forwards;
          animation: fadeinup 0.8s 0s forwards;
}

/*上昇フェードイン*/
@-webkit-keyframes fadeinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*下降フェードイン*/
@-webkit-keyframes fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*左⇒右へフェードイン*/
@-webkit-keyframes fadeinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*左⇒右へフェードイン*/
@-webkit-keyframes fadeinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*フラップイン*/
@-webkit-keyframes flapin {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes flapin {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
/*にじみフェードイン*/
@-webkit-keyframes fadeinblur {
  0% {
    opacity: 0;
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -ms-filter: blur(30px);
    -o-filter: blur(30px);
    filter: blur(30px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes fadeinblur {
  0% {
    opacity: 0;
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -ms-filter: blur(30px);
    -o-filter: blur(30px);
    filter: blur(30px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/*下から上に伸びる*/
@-webkit-keyframes extendup {
  0% {
    clip-path: inset(100% 0 0 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0% 0 0 0 round 0);
    opacity: 1;
  }
}
@keyframes extendup {
  0% {
    clip-path: inset(100% 0 0 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0% 0 0 0 round 0);
    opacity: 1;
  }
}
/*上から下に伸びる*/
@-webkit-keyframes extenddown {
  0% {
    clip-path: inset(0 0 100% 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
@keyframes extenddown {
  0% {
    clip-path: inset(0 0 100% 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
/*左から右に伸びる*/
@-webkit-keyframes extendright {
  0% {
    clip-path: inset(0 100% 0 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
@keyframes extendright {
  0% {
    clip-path: inset(0 100% 0 0 round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
/*右から左に伸びる*/
@-webkit-keyframes extendleft {
  0% {
    clip-path: inset(0 0 0 100% round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
@keyframes extendleft {
  0% {
    clip-path: inset(0 0 0 100% round 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
/*ズームイン*/
@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomin {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/*ズームアウト*/
@-webkit-keyframes zoomout {
  0% {
    -webkit-transform: scale(3);
            transform: scale(3);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomout {
  0% {
    -webkit-transform: scale(3);
            transform: scale(3);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
body {
  font-size: 100%;
}

@media screen and (min-width: 800px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

.center {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (max-width: 800px) {
  .center_sp {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

@media screen and (max-width: 800px) {
  .tal_sp {
    text-align: left !important;
  }
}

@media screen and (max-width: 800px) {
  .tar_sp {
    text-align: right !important;
  }
}

.fl {
  float: left;
}

.fr {
  float: right;
}

@media screen and (max-width: 800px) {
  .fl_sp {
    float: left;
  }
}

@media screen and (max-width: 800px) {
  .fr_sp {
    float: right;
  }
}

.clear {
  clear: both;
  *zoom: 1;
}
.clear:before, .clear:after {
  content: "";
  display: table;
}
.clear:after {
  clear: both;
}

.cf {
  *zoom: 1;
}
.cf:before, .cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb1 {
  margin-bottom: 10px !important;
}

.mb2 {
  margin-bottom: 20px !important;
}

.mb3 {
  margin-bottom: 30px !important;
}

.mb4 {
  margin-bottom: 40px !important;
}

.mb5 {
  margin-bottom: 50px !important;
}

.mb6 {
  margin-bottom: 60px !important;
}

.mb7 {
  margin-bottom: 70px !important;
}

.mb8 {
  margin-bottom: 80px !important;
}

.mb9 {
  margin-bottom: 90px !important;
}

.mb10 {
  margin-bottom: 100px !important;
}

.mb11 {
  margin-bottom: 110px !important;
}

.mb12 {
  margin-bottom: 120px !important;
}

.mb13 {
  margin-bottom: 130px !important;
}

.mb14 {
  margin-bottom: 140px !important;
}

.mb15 {
  margin-bottom: 150px !important;
}

.mb16 {
  margin-bottom: 160px !important;
}

.mb17 {
  margin-bottom: 170px !important;
}

.mb18 {
  margin-bottom: 180px !important;
}

.mb19 {
  margin-bottom: 190px !important;
}

.mb20 {
  margin-bottom: 200px !important;
}

@media screen and (max-width: 800px) {
  .mb0_sp {
    margin-bottom: 0px !important;
  }
}

@media screen and (max-width: 800px) {
  .mb1_sp {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 800px) {
  .mb2_sp {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 800px) {
  .mb3_sp {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 800px) {
  .mb4_sp {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 800px) {
  .mb5_sp {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 800px) {
  .mb6_sp {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 800px) {
  .mb7_sp {
    margin-bottom: 70px !important;
  }
}

@media screen and (max-width: 800px) {
  .mb8_sp {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 800px) {
  .mb9_sp {
    margin-bottom: 90px !important;
  }
}

@media screen and (max-width: 800px) {
  .mb10_sp {
    margin-bottom: 100px !important;
  }
}

.mt0 {
  margin-top: 0px !important;
}

.mt1 {
  margin-top: 10px !important;
}

.mt2 {
  margin-top: 20px !important;
}

.mt3 {
  margin-top: 30px !important;
}

.mt4 {
  margin-top: 40px !important;
}

.mt5 {
  margin-top: 50px !important;
}

.mt6 {
  margin-top: 60px !important;
}

.mt7 {
  margin-top: 70px !important;
}

.mt8 {
  margin-top: 80px !important;
}

.mt9 {
  margin-top: 90px !important;
}

.mt10 {
  margin-top: 100px !important;
}

@media screen and (max-width: 800px) {
  .mt0_sp {
    margin-top: 0px !important;
  }
}

@media screen and (max-width: 800px) {
  .mt1_sp {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 800px) {
  .mt2_sp {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 800px) {
  .mt3_sp {
    margin-top: 30px !important;
  }
}

@media screen and (max-width: 800px) {
  .mt4_sp {
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 800px) {
  .mt5_sp {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 800px) {
  .mt6_sp {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 800px) {
  .mt7_sp {
    margin-top: 70px !important;
  }
}

@media screen and (max-width: 800px) {
  .mt8_sp {
    margin-top: 80px !important;
  }
}

@media screen and (max-width: 800px) {
  .mt9_sp {
    margin-top: 90px !important;
  }
}

@media screen and (max-width: 800px) {
  .mt10_sp {
    margin-top: 100px !important;
  }
}

.mr0 {
  margin-right: 0px !important;
}

.mr1 {
  margin-right: 10px !important;
}

.mr2 {
  margin-right: 20px !important;
}

.mr3 {
  margin-right: 30px !important;
}

.mr4 {
  margin-right: 40px !important;
}

.mr5 {
  margin-right: 50px !important;
}

.mr6 {
  margin-right: 60px !important;
}

.mr7 {
  margin-right: 70px !important;
}

.mr8 {
  margin-right: 80px !important;
}

.mr9 {
  margin-right: 90px !important;
}

.mr10 {
  margin-right: 100px !important;
}

@media screen and (max-width: 800px) {
  .mr0_sp {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 800px) {
  .mr1_sp {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 800px) {
  .mr2_sp {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 800px) {
  .mr3_sp {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 800px) {
  .mr4_sp {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 800px) {
  .mr5_sp {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 800px) {
  .mr6_sp {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 800px) {
  .mr7_sp {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 800px) {
  .mr8_sp {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 800px) {
  .mr9_sp {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 800px) {
  .mr10_sp {
    margin-right: 100px !important;
  }
}

.ml0 {
  margin-left: 0px !important;
}

.ml1 {
  margin-left: 10px !important;
}

.ml2 {
  margin-left: 20px !important;
}

.ml3 {
  margin-left: 30px !important;
}

.ml4 {
  margin-left: 40px !important;
}

.ml5 {
  margin-left: 50px !important;
}

.ml6 {
  margin-left: 60px !important;
}

.ml7 {
  margin-left: 70px !important;
}

.ml8 {
  margin-left: 80px !important;
}

.ml9 {
  margin-left: 90px !important;
}

.ml10 {
  margin-left: 100px !important;
}

@media screen and (max-width: 800px) {
  .ml0_sp {
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 800px) {
  .ml1_sp {
    margin-left: 10px !important;
  }
}

@media screen and (max-width: 800px) {
  .ml2_sp {
    margin-left: 20px !important;
  }
}

@media screen and (max-width: 800px) {
  .ml3_sp {
    margin-left: 30px !important;
  }
}

@media screen and (max-width: 800px) {
  .ml4_sp {
    margin-left: 40px !important;
  }
}

@media screen and (max-width: 800px) {
  .ml5_sp {
    margin-left: 50px !important;
  }
}

@media screen and (max-width: 800px) {
  .ml6_sp {
    margin-left: 60px !important;
  }
}

@media screen and (max-width: 800px) {
  .ml7_sp {
    margin-left: 70px !important;
  }
}

@media screen and (max-width: 800px) {
  .ml8_sp {
    margin-left: 80px !important;
  }
}

@media screen and (max-width: 800px) {
  .ml9_sp {
    margin-left: 90px !important;
  }
}

@media screen and (max-width: 800px) {
  .ml10_sp {
    margin-left: 100px !important;
  }
}

.pt0 {
  padding-top: 0px !important;
}

.pt1 {
  padding-top: 10px !important;
}

.pt2 {
  padding-top: 20px !important;
}

.pt3 {
  padding-top: 30px !important;
}

.pt4 {
  padding-top: 40px !important;
}

.pt5 {
  padding-top: 50px !important;
}

.pt6 {
  padding-top: 60px !important;
}

.pt7 {
  padding-top: 70px !important;
}

.pt8 {
  padding-top: 80px !important;
}

.pt9 {
  padding-top: 90px !important;
}

.pt10 {
  padding-top: 100px !important;
}

@media screen and (max-width: 800px) {
  .pt0_sp {
    padding-top: 0px !important;
  }
}

@media screen and (max-width: 800px) {
  .pt1_sp {
    padding-top: 10px !important;
  }
}

@media screen and (max-width: 800px) {
  .pt2_sp {
    padding-top: 20px !important;
  }
}

@media screen and (max-width: 800px) {
  .pt3_sp {
    padding-top: 30px !important;
  }
}

@media screen and (max-width: 800px) {
  .pt4_sp {
    padding-top: 40px !important;
  }
}

@media screen and (max-width: 800px) {
  .pt5_sp {
    padding-top: 50px !important;
  }
}

@media screen and (max-width: 800px) {
  .pt6_sp {
    padding-top: 60px !important;
  }
}

@media screen and (max-width: 800px) {
  .pt7_sp {
    padding-top: 70px !important;
  }
}

@media screen and (max-width: 800px) {
  .pt8_sp {
    padding-top: 80px !important;
  }
}

@media screen and (max-width: 800px) {
  .pt9_sp {
    padding-top: 90px !important;
  }
}

@media screen and (max-width: 800px) {
  .pt10_sp {
    padding-top: 100px !important;
  }
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb1 {
  padding-bottom: 10px !important;
}

.pb2 {
  padding-bottom: 20px !important;
}

.pb3 {
  padding-bottom: 30px !important;
}

.pb4 {
  padding-bottom: 40px !important;
}

.pb5 {
  padding-bottom: 50px !important;
}

.pb6 {
  padding-bottom: 60px !important;
}

.pb7 {
  padding-bottom: 70px !important;
}

.pb8 {
  padding-bottom: 80px !important;
}

.pb9 {
  padding-bottom: 90px !important;
}

.pb10 {
  padding-bottom: 100px !important;
}

@media screen and (max-width: 800px) {
  .pb0_sp {
    padding-bottom: 0px !important;
  }
}

@media screen and (max-width: 800px) {
  .pb1_sp {
    padding-bottom: 10px !important;
  }
}

@media screen and (max-width: 800px) {
  .pb2_sp {
    padding-bottom: 20px !important;
  }
}

@media screen and (max-width: 800px) {
  .pb3_sp {
    padding-bottom: 30px !important;
  }
}

@media screen and (max-width: 800px) {
  .pb4_sp {
    padding-bottom: 40px !important;
  }
}

@media screen and (max-width: 800px) {
  .pb5_sp {
    padding-bottom: 50px !important;
  }
}

@media screen and (max-width: 800px) {
  .pb6_sp {
    padding-bottom: 60px !important;
  }
}

@media screen and (max-width: 800px) {
  .pb7_sp {
    padding-bottom: 70px !important;
  }
}

@media screen and (max-width: 800px) {
  .pb8_sp {
    padding-bottom: 80px !important;
  }
}

@media screen and (max-width: 800px) {
  .pb9_sp {
    padding-bottom: 90px !important;
  }
}

@media screen and (max-width: 800px) {
  .pb10_sp {
    padding-bottom: 100px !important;
  }
}

.w05 {
  width: 4% !important;
}
@media screen and (max-width: 800px) {
  .w05 {
    width: 100% !important;
  }
}

.w10 {
  width: 9% !important;
}
@media screen and (max-width: 800px) {
  .w10 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w10_sp {
    width: 9% !important;
  }
}

.w15 {
  width: 14% !important;
}
@media screen and (max-width: 800px) {
  .w15 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w15_sp {
    width: 14% !important;
  }
}

.w20 {
  width: 19% !important;
}
@media screen and (max-width: 800px) {
  .w20 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w20_sp {
    width: 19% !important;
  }
}

.w25 {
  width: 24% !important;
}
@media screen and (max-width: 800px) {
  .w25 {
    width: 100% !important;
  }
}

.w30 {
  width: 29% !important;
}
@media screen and (max-width: 800px) {
  .w30 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w30_sp {
    width: 29% !important;
  }
}

.w33 {
  width: 32% !important;
}
@media screen and (max-width: 800px) {
  .w33 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w33_sp {
    width: 32% !important;
  }
}

.w35 {
  width: 34% !important;
}
@media screen and (max-width: 800px) {
  .w35 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w35_sp {
    width: 34% !important;
  }
}

.w40 {
  width: 39% !important;
}
@media screen and (max-width: 800px) {
  .w40 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w40_sp {
    width: 39% !important;
  }
}

.w45 {
  width: 44% !important;
}
@media screen and (max-width: 800px) {
  .w45 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w45_sp {
    width: 44% !important;
  }
}

.w49 {
  width: 48% !important;
}
@media screen and (max-width: 800px) {
  .w49 {
    width: 100% !important;
  }
}

.w50 {
  width: 47% !important;
}
@media screen and (max-width: 800px) {
  .w50 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w50_sp {
    width: 49% !important;
  }
}

.w53 {
  width: 52% !important;
}
@media screen and (max-width: 800px) {
  .w53 {
    width: 100% !important;
  }
}

.w55 {
  width: 54% !important;
}
@media screen and (max-width: 800px) {
  .w55 {
    width: 100% !important;
  }
}

.w60 {
  width: 59% !important;
}
@media screen and (max-width: 800px) {
  .w60 {
    width: 100% !important;
  }
}

.w65 {
  width: 64% !important;
}
@media screen and (max-width: 800px) {
  .w65 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w60_sp {
    width: 59% !important;
  }
}

@media screen and (max-width: 800px) {
  .w65_sp {
    width: 64% !important;
  }
}

.w70 {
  width: 69% !important;
}
@media screen and (max-width: 800px) {
  .w70 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w70_sp {
    width: 69% !important;
  }
}

.w75 {
  width: 74% !important;
}
@media screen and (max-width: 800px) {
  .w75 {
    width: 100% !important;
  }
}

.w80 {
  width: 79% !important;
}
@media screen and (max-width: 800px) {
  .w80 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w80_sp {
    width: 79% !important;
  }
}

.w83 {
  width: 82% !important;
}
@media screen and (max-width: 800px) {
  .w83 {
    width: 100% !important;
  }
}

.w85 {
  width: 84% !important;
}
@media screen and (max-width: 800px) {
  .w85 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w85_sp {
    width: 84% !important;
  }
}

.w88 {
  width: 88% !important;
}
@media screen and (max-width: 800px) {
  .w88 {
    width: 100% !important;
  }
}

.w90 {
  width: 89% !important;
}
@media screen and (max-width: 800px) {
  .w90 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w90_sp {
    width: 89% !important;
  }
}

.w95 {
  width: 94% !important;
}
@media screen and (max-width: 800px) {
  .w95 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w95_sp {
    width: 94% !important;
  }
}

@media screen and (max-width: 800px) {
  .w25_sp {
    width: 24% !important;
  }
}

.w75 {
  width: 74% !important;
}
@media screen and (max-width: 800px) {
  .w75 {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  .w75_sp {
    width: 74% !important;
  }
}

.w66 {
  width: 65% !important;
}
@media screen and (max-width: 800px) {
  .w66 {
    width: 100% !important;
  }
}

img.w100 {
  max-width: 100% !important;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex img {
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .flex {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .sp-flex, .flex_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.a-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bold {
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  img {
    max-width: 100%;
  }
}

a {
  outline: none;
}

a:focus {
  outline: none;
}

a.fade:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a.scale img {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

a.scale:hover img {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

a.scale2 img {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

a.scale2:hover img {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.eng {
  font-family: "Trajan Pro 3", "Adobe Garamond Pro", "Times New Roman";
  font-weight: normal;
}

.red {
  color: #d31c1c;
}

.st {
  font-size: 150%;
}

.fs16 {
  font-size: 1.5rem !important;
}

/*.expand{
    @media screen and (max-width:800px) {
        background: url(../imgs/common/expand@2x.png) no-repeat center top;
        padding-top: 57px;
        background-size: 262px 47px;
    }
}*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

.-sustainability {
  padding-bottom: 60px;
}
@media print, screen and (max-width: 1023.9px) {
  .-sustainability {
    padding-bottom: 0px;
  }
}

.mv {
  margin-top: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .mv {
    margin-top: 40px;
  }
}
.mv h2 {
  background: #000;
  font-size: 24px;
  text-align: center;
  padding: 8px 0 10px;
  line-height: 1;
  color: #FFF;
  font-weight: bold;
}
@media print, screen and (max-width: 1023.9px) {
  .mv h2 {
    font-size: 16px;
    padding: 4px 0 6px;
  }
}

.busLead {
  font-size: 27px;
  text-align: center;
  padding: 50px 0;
  margin-bottom: 0px;
  border-bottom: 2px solid #000;
  font-weight: bold;
  line-height: 1.8;
}
@media print, screen and (max-width: 1023.9px) {
  .busLead {
    font-size: 16.5px;
    line-height: 1.8;
    padding: 30px 0;
  }
}

.susH3 {
  text-align: center;
  padding: 60px 0 50px;
}
@media print, screen and (max-width: 1023.9px) {
  .susH3 {
    padding: 40px 0 25px;
  }
}
.susH3 img {
  width: 470px;
  margin: 0 auto 0px;
}
@media print, screen and (max-width: 1023.9px) {
  .susH3 img {
    width: 100%;
  }
}
.susH3.-n2 img {
  width: 350px;
  margin: 0 auto 0px;
}
@media print, screen and (max-width: 1023.9px) {
  .susH3.-n2 img {
    width: 260px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .susH3.-n2 span {
    line-height: 1.5;
    display: block;
    margin-top: 7px;
  }
}
.susH3.-n3 img {
  width: 210px;
  margin: 0 auto 0px;
}
@media print, screen and (max-width: 1023.9px) {
  .susH3.-n3 img {
    width: 180px;
  }
}
.susH3.-n4 img {
  width: 150px;
  margin: 0 auto 0px;
}
@media print, screen and (max-width: 1023.9px) {
  .susH3.-n4 img {
    width: 110px;
  }
}
.susH3.-n5 img {
  width: 700px;
  margin: 0 auto 0px;
}
@media print, screen and (max-width: 1023.9px) {
  .susH3.-n5 img {
    width: 84%;
  }
}
.susH3.-n6 img {
  width: 360px;
  margin: 0 auto 0px;
}
@media print, screen and (max-width: 1023.9px) {
  .susH3.-n6 img {
    width: 84%;
  }
}
.susH3 span {
  font-size: 14px;
  font-weight: bold;
}
@media print, screen and (max-width: 1023.9px) {
  .susH3 span {
    font-size: 12px;
  }
}

.sublead {
  margin-top: -30px;
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .sublead {
    margin-top: 0px;
  }
}
.sublead.-nomt {
  margin-top: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .sublead {
    font-size: 13px;
    text-align: left;
  }
}

.bus-sec01 {
  width: 31%;
  margin-bottom: 20px;
  position: relative;
}
@media print, screen and (max-width: 1023.9px) {
  .bus-sec01 {
    width: 100%;
  }
}
.bus-sec01 h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 5px;
  padding-left: 3px;
}
@media print, screen and (max-width: 1023.9px) {
  .bus-sec01 h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.bus-sec01 h4 img {
  height: 35px;
  margin-right: 15px;
}
@media print, screen and (max-width: 1023.9px) {
  .bus-sec01 h4 img {
    height: 30px;
    margin-bottom: 10px;
  }
}
.bus-sec01 p {
  margin-bottom: 20px;
  font-size: 14px;
}
@media print, screen and (max-width: 1023.9px) {
  .bus-sec01 p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.bus-sec01 p strong {
  font-size: 110%;
}
.bus-sec01 .-ab {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
}
@media print, screen and (max-width: 1023.9px) {
  .bus-sec01 .-ab {
    position: static;
    margin: 14px auto 0;
  }
}

.bus-sec01__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bus-sec01__inner p {
  width: 48%;
}

.bus-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .bus-row {
    margin-bottom: 20px;
  }
}
.bus-row.-n2 .bus-sec01 {
  width: 47%;
}
@media print, screen and (max-width: 1023.9px) {
  .bus-row.-n2 .bus-sec01 {
    width: 100%;
  }
}
.bus-row.-n3 .bus-sec01 {
  width: 100%;
  margin-bottom: 40px;
}
.bus-row.-nomb {
  margin-bottom: 0;
}

section.-bg {
  background: #ebe6e6;
  padding: 0px 0 60px;
  margin-bottom: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  section.-bg {
    padding-top: 20px;
    padding-bottom: 40px;
    margin-bottom: 50px;
  }
}

.process .arrow {
  width: 35px;
  margin: 15px 0 15px 83px;
}
@media print, screen and (max-width: 1023.9px) {
  .process .arrow {
    margin: 12px 0 12px 46.5%;
    width: 25px;
  }
}
.process .arrow.-n2 {
  width: 23px;
  margin: 15px 0 15px 6%;
}
@media print, screen and (max-width: 1023.9px) {
  .process .arrow.-n2 {
    margin: 0px 0 12px 46.5%;
  }
}

.process__flow {
  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;
}
@media print, screen and (max-width: 1023.9px) {
  .process__flow {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.process__flow dt {
  background: #FFF;
  padding: 10px 0;
  width: 200px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #000;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.3;
}
@media print, screen and (max-width: 1023.9px) {
  .process__flow dt {
    width: 100%;
    font-size: 15px;
    margin-bottom: 10px;
    height: 40px;
  }
}
.process__flow dd {
  width: calc(100% - 210px);
  font-weight: 16px;
}
@media print, screen and (max-width: 1023.9px) {
  .process__flow dd {
    width: 100%;
    font-size: 13px;
    line-height: 1.6;
  }
}
.process__flow.-n2 dt {
  background: #ebe6e6;
  width: 15%;
}
@media print, screen and (max-width: 1023.9px) {
  .process__flow.-n2 dt {
    width: 100%;
  }
}
.process__flow.-n2 dd {
  width: 40%;
}
@media print, screen and (max-width: 1023.9px) {
  .process__flow.-n2 dd {
    width: 100%;
    margin-bottom: 10px;
  }
}

.process__img {
  border: 2px solid #000;
  background: #ebe6e6;
  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;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .process__img {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.process__img h4 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 4px;
}
@media print, screen and (max-width: 1023.9px) {
  .process__img h4 {
    font-size: 21px;
  }
}
.process__img figure {
  width: 250px;
}
@media print, screen and (max-width: 1023.9px) {
  .process__img figure {
    width: 100%;
  }
}
.process__img .process__inner {
  width: calc(100% - 270px);
  padding-right: 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .process__img .process__inner {
    width: 100%;
    padding: 20px;
  }
}
.process__img p {
  font-size: 16px;
}
@media print, screen and (max-width: 1023.9px) {
  .process__img p {
    font-size: 12px;
  }
}

.narahashi {
  font-size: 20px;
  -moz-text-align-last: center;
       text-align-last: center;
  font-weight: bold;
}
@media print, screen and (max-width: 1023.9px) {
  .narahashi {
    font-size: 16px;
  }
}