@charset "utf-8";
/*base     ======================================
フォントや文字色、ベースカラーなど
=================================================*/

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

body {
  overflow-x: hidden;
  width: 100%;
  color: #231815;
  letter-spacing: 0.1rem;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  background: #FFF;
}

a,
a:link,
a:hover,
a:active,
a:visited {
  display: block;
  border: none;
  color: #231815;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  line-height: 0;
  image-rendering: -webkit-optimize-contrast;
  		/*クロームのテキスト画像ボヤケ防止*/
}

section {
  position: relative;
}

.pc {
  display: none !important;
}

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

  .pc {
    display: block !important;
  }
}

.wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: auto;
  max-width: 769px;
}

.header__logo a:hover {
  opacity: 1;
}

.header__logo a:hover img {
  opacity: 1;
}

/*layout   ======================================
header、footer、hamburger なども
=================================================*/
.container {
  margin: auto;
  max-width: 1300px;
  width: 100%;
}

/*画面横幅フル*/
.container--full {
  max-width: 100%;
}

/*左右余白アリ*/
.content {
  margin: auto;
  width: calc(100% - 16px);
  max-width: 630px;
}

/*左右余白ナシ*/
.content--pdLess {
  max-width: 100%;
  width: 100%;
}

/*スマホの時のみ左右余白ナシ*/
.content--pdLess--sp {
  max-width: 100%;
  width: 100%;
}

@media all and (min-width:769px) {
  .content {
    margin: auto;
    width: calc(100% - 60px);
  }

  .content--pdLess {
    max-width: 100%;
    width: 100%;
  }

  /*スマホの時のみ左右余白ナシ*/
  .content--pdLess--sp {
    max-width: 1000px;
  }
}

.db {
  display: block !important;
}

.posi--r {
  position: relative;
}

.posi--a {
  position: absolute;
}

.posi--fix {
  position: fixed;
}

.columns {
  display: flex;
  flex-wrap:wrap;
  margin: auto;
  width: 100%;
  justify-content: space-between;
}

.column2 {
  margin-right: 2% !important;
  width: calc(49%) !important;
}

.column2:nth-child(even) {
  margin-right: 0% !important;
}

.column3 {
  margin-right: 1% !important;
  width: calc(98% / 3) !important;
}

.column3:nth-child(3) {
  margin-right: 0% !important;
}

.column4 {
  margin-right: 1% !important;
  width: calc(97% / 4) !important;
}

.column4:nth-child(4) {
  margin-right: 0% !important;
}

/*component =====================================
サイト内で何度も使いまわしたいもの(btnや各ブロックのタイトルなど)
=================================================*/
.btn--img:hover,
a.btn--img:hover{
  opacity: 0.6;
  transition: 0.3s;
}


/*==========================================
 ヘッダー
===========================================*/
.head_logo a:hover {
  opacity: 0.7;
}

/*animation  ======================================
ボタンきらりやフェードイン
=================================================*/

/*fadein*/
.fadein {
  opacity: 0;
}

.fadein--show {
  -webkit-animation: fadein--show .5s;
  animation: fadein--show .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

@-webkit-keyframes fadein--show {
  0% {
    opacity: 0;
    transform: translate(0%, 0%);
  }

  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

@keyframes fadein--show {
  0% {
    opacity: 0;
    transform: translate(0%, 0%);
  }

  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

.fadeup.fadein--show {
  -webkit-animation: fadein--up .5s;
  animation: fadein--up .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

@-webkit-keyframes fadein--up {
  0% {
    opacity: 0;
    transform: translate(0%, 7%);
  }

  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

@keyframes fadein--up {
  0% {
    opacity: 0;
    transform: translate(0%, 7%);
  }

  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

/*boyoyon*/
.boyoyon.fadein--show {
  -webkit-animation: boyoyon 0.5s;
  animation: boyoyon 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes boyoyon {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.0);
  }
}
@keyframes boyoyon {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1.0);
  }
}

.fadeinLeft.fadein--show {
  -webkit-animation: fadein--l .5s;
  animation: fadein--l .5s;
  animation-delay: 0.2s !important;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes fadein--l {
  0% {
    opacity: 0;
    transform: translate(3%, 0%);
  }

  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

@keyframes fadein--l {
  0% {
    opacity: 0;
    transform: translate(3%, 0%);
  }

  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

.fadeinRight.fadein--show {
  -webkit-animation: fadein--r .5s;
  animation: fadein--r .5s;
  animation-delay: 0.2s !important;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes fadein--r {
  0% {
    opacity: 0;
    transform: translate(-3%, 0%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@keyframes fadein--r {
  0% {
    opacity: 0;
    transform: translate(-3%, 0%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

.fuwafuwa.fadein--show {
  -webkit-animation: float 2s infinite ease-in-out !important;
  animation: float 2s infinite ease-in-out !important;
}

@-webkit-keyframes float {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  50% {
    transform: translateY(-5%);
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  50% {
    transform: translateY(-5%);
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}


/*loading*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  text-align: center;
}
#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading .kvArea {
  width: 100%;
}
#loading .kvArea .img_box {
  text-align: center;
}
#loading .kvArea .img_box img {
  width: 90% !important;
  max-width: 400px !important;
  height: auto;
  margin: auto;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  opacity: 1;
}
@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
  }
}

/*ボタンきらり*/
.kiran-img {
  position: relative;
  max-width: 100%;
  overflow: hidden !important;
  z-index: 1;
  border-radius: 5px;
}
@media screen and (min-width: 500px) {
  .kiran-img {
    border-radius: 10px;
  }
}

.kiran-img2 {
  position: relative;
  max-width: 100%;
  overflow: hidden !important;
  z-index: 1;
  border-radius: 30px;
}
.kiran-img3 {
  position: relative;
  max-width: 100%;
  overflow: hidden !important;
  z-index: 1;
  border-radius: 60px;
}

.kiran-img4 {
  position: relative;
  max-width: 100%;
  overflow: hidden !important;
  z-index: 1;
  border-radius: 0px;
}

.kiran {
  height: 100%;
  width: 20px;
  position: absolute;
  top: -84px;
  left: 0;
  background-color: rgba(255, 255, 255, .9);
  opacity: 0;
  transform: rotate(20deg);
  animation: reflection 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 2s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 2s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 2s ease-in-out infinite;
}
@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  31% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  31% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-moz-keyframes reflection {
  0% {
    -moz-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    -moz-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  31% {
    -moz-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}




/*utility =====================================
余白 横幅など
=================================================*/

.w102p {
  width: 102% !important;
  left: -1%;
  overflow: hidden;
  position: relative;
}

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

.w98p {
  margin: auto;
  width: 98% !important;
}

.w97p {
  margin: auto;
  width: 97% !important;
}

.w96p {
  margin: auto;
  width: 96% !important;
}

.w90p {
  margin: auto;
  width: 90% !important;
}

.w88p {
  margin: auto;
  width: 88% !important;
}

.w85p {
  margin: auto;
  width: 85% !important;
}

.w80p {
  margin: auto;
  width: 80% !important;
}

.w70p {
  margin: auto;
  width: 70% !important;
}

.w60p {
  margin: auto;
  width: 60% !important;
}

.w50p {
  margin: auto;
  width: 50% !important;
}
.w1300 {
  margin: auto;
  max-width: 1300px;
}

.w1024 {
  margin: auto;
  max-width: 1024px !important;
}

.w1000 {
  margin: auto;
  max-width: 1000px !important;
}

.w800 {
  margin: auto;
  max-width: 800px !important;
}

.w750 {
  margin: auto;
  max-width: 750px !important;
}

.w700 {
  margin: auto;
  max-width: 700px !important;
}

.w600 {
  margin: auto;
  max-width: 600px !important;
}

.w650 {
  margin: auto;
  max-width: 650px !important;
}

.w500 {
  margin: auto;
  max-width: 500px !important;
}

.w450 {
  margin: auto;
  max-width: 450px !important;
}

.w400 {
  margin: auto;
  max-width: 400px !important;
}

.w100psp--w80p {
  width: 100% !important;
  margin: auto;
}
.w100psp--w70p {
  width: 100% !important;
  margin: auto;
}
.w90psp--w70p {
  width: 90% !important;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .w100psp--w80p {
    width: 80% !important;
    margin: auto;
  }
  .w100psp--w70p {
    width: 70% !important;
  }
  .w90psp--w70p {
    width: 70% !important;
    margin: auto;
  }
}



/*margin padding*/
.m--auto {
  display: block !important;
  margin: auto !important;
}
/*****/
.mt--s {
  margin-top: 15px !important;
}

.mt--m {
  margin-top: 25px !important;
}

.mt--l {
  margin-top: 45px !important;
}

.mb--s {
  margin-bottom: 15px !important;
}

.mb--m {
  margin-bottom: 25px !important;
}

.mb--l {
  margin-bottom: 45px !important;
}

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

.mb---m {
  margin-bottom: -25px !important;
}

/*****/
.mt--1p {
  margin-top: 1% !important;
}

.mt--2p {
  margin-top: 2% !important;
}

.mt--3p {
  margin-top: 3% !important;
}

.mt--4p {
  margin-top: 4% !important;
}

.mt--5p {
  margin-top: 5% !important;
}

.mt--7p {
  margin-top: 7% !important;
}

.mt--10p {
  margin-top: 10% !important;
}

.mb--1p {
  margin-bottom: 1% !important;
}

.mb--2p {
  margin-bottom: 2% !important;
}

.mb--3p {
  margin-bottom: 3% !important;
}

.mb--5p {
  margin-bottom: 5% !important;
}

.mb--7p {
  margin-bottom: 7% !important;
}

.mb--10p {
  margin-bottom: 10% !important;
}

/*****/
.mt--3 {
  margin-top: 3px !important;
}

.mt--5 {
  margin-top: 5px !important;
}

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

.mt--15 {
  margin-top: 15px !important;
}

.mb--3 {
  margin-bottom: 3px !important;
}

.mb--5 {
  margin-bottom: 5px !important;
}

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

.mb--15 {
  margin-bottom: 15px !important;
}


/*****/
.pt--s {
  padding-top: 15px !important;
}

.pt--m {
  padding-top: 25px !important;
}

.pt--l {
  padding-top: 45px !important;
}

.pb--s {
  padding-bottom: 15px !important;
}

.pb--m {
  padding-bottom: 25px !important;
}

.pb--l {
  padding-bottom: 45px !important;
}

/*****/
.pt--1p {
  padding-top: 1% !important;
}

.pt--2p {
  padding-top: 2% !important;
}

.pt--3p {
  padding-top: 3% !important;
}

.pt--5p {
  padding-top: 5% !important;
}

.pt--7p {
  padding-top: 7% !important;
}

.pt--10p {
  padding-top: 10% !important;
}

.pb--1p {
  padding-bottom: 1% !important;
}

.pb--2p {
  padding-bottom: 2% !important;
}

.pb--3p {
  padding-bottom: 3% !important;
}

.pb--5p {
  padding-bottom: 5% !important;
}

.pb--7p {
  padding-bottom: 7% !important;
}

.pb--10p {
  padding-bottom: 10% !important;
}

/*****/
.pt--3 {
  padding-top: 3px !important;
}

.pt--5 {
  padding-top: 5px !important;
}

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

.pt--15 {
  padding-top: 15px !important;
}

.pb--3 {
  padding-bottom: 3px !important;
}

.pb--5 {
  padding-bottom: 5px !important;
}

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

.pb--15 {
  padding-bottom: 15px !important;
}

/*****/
.p--3 {
  padding: 3px;
}

.p--1p {
  padding: 1%;
}

.p--2p {
  padding: 2%;
}

.p--3p {
  padding: 3%;
}

.p--5p {
  padding: 5%;
}

/*****/
.mt--anchor {
  margin-top: -105px !important;
  padding-top: 105px !important;
}

@media all and (min-width:769px) {
  .mt--s {
    margin-top: 20px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mt--anchor {
    margin-top: -60px !important;
    padding-top: 60px !important;
  }

}

/*  pc  */
@media all and (min-width: 1024px) {
  .mt--s {
    margin-top: 25px !important;
  }

  .mt--m {
    margin-top: 45px !important;
  }

  .mt---s {
    margin-top: -25px !important;
  }

  .mt---m {
    margin-top: -45px !important;
  }

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

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

  .mb--m {
    margin-bottom: 45px !important;
  }

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

  .pt--s {
    padding-top: 25px !important;
  }

  .pt--m {
    padding-top: 45px !important;
  }

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

  .pb--s {
    padding-bottom: 25px !important;
  }

  .pb--m {
    padding-bottom: 45px !important;
  }

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

/*color*/
.bgColor--bk {
  background: #040000;
  /*  background: #231815;*/
}

.bgColor--w {
  background: #FFF;
}

.bgColor--yw {
  background: #ffe100;
}

.bgColor--red {
  background: #930e14;
}

.bgColor--gry {
  background-color: #666666;
}

.bgColor--or {
  background-color: #f29300;
}

.bgColor--bule {
  background-color: #00a0e9;
}

.fontColor--w {
  color: #FFF !important;
}

.fontColor--gry {
  color: #4f4d4d;
}

.fontColor--shinGry {
  color: #858686;
}

.fontColor--red {
  color: #e50012;
}

.fontColor--blue {
  color: #00a0e9;
}

a.linkText_red {
  display: inline;
  color: #e50012;
  text-decoration: underline;
}

.border1 {
  border: 1px solid #040000;
}

.border--top {
  border-top: 1px solid #040000;
}

.border--top--bold3 {
  border-top: 3px solid #040000;
}

.border--top--bold8 {
  border-top: 8px solid #040000;
}

.border--btm--bold3 {
  border-bottom: 3px solid #040000;
}

.border--top--red--bold3 {
  border-top: 3px solid #CA1C1D;
}

.border--top--gry {
  border-top: 1px solid #aaa;
}

.border--top--w {
  border-top: 1px solid #fff;
}

.border--top--or--bold8 {
  border-top: 8px solid #f29300;
}

.border--top--bule--bold8 {
  border-bottom: 8px solid #122360;
}

.border--zancre {
  border: solid 8px #008bd5;
}

/*font*/
.font--M_PLUS_Rounded {
  letter-spacing: 0;
  font-weight: 700;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  transform: rotateZ(0.03deg);
}

.fontSize--s {
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.fontSize--m {
  font-size: 1.2rem;
  line-height: 1.4;
}

@media all and (min-width:769px) {
  .fontSize--s {
    letter-spacing: 0.2px;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .fontSize--m {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.lineHight1 {
  line-height: 1;
}

.lineHight14 {
  line-height: 1.4;
}

.letterSpacing02 {
  letter-spacing: 0.2rem;
}

.letterSpacing0 {
  letter-spacing: 0.;
}

.bold {
  font-weight: bold;
}

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

.textAlign--r {
  text-align: right;
}

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

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}
.z5 {
  z-index: 1;
}

.z10 {
  z-index: 10;
}


.z100 {
  z-index: 100;
}

.z997 {
  position: relative;
  z-index: 997;
}
.z998 {
  position: relative;
  z-index: 998;
}
.z999 {
  position: relative;
  z-index: 999;
}

.z1000 {
  z-index: 1000;
}

.shadow {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.shadow2 {
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
}

.shadow3 {
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.8));
}

.shadow4 {
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
}

.radius {
  border-radius: 10px;
}
@media screen and (min-width: 1001px) {
  .radius {
    border-radius: 20px;
  }
}
