/*base     ======================================
フォントや文字色、ベースカラーなど
=================================================*/
html {
  font-size: 62.5%;
  /*10px*/
}
body {
  background-color: #f0f0f0;
  color: #231815;
  letter-spacing: 0.1rem;
  font-weight: 600;
  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;
}
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%;
  line-height: 0;
  image-rendering: -webkit-optimize-contrast;
  height: auto;
}
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: 769px;
  width: 100%;
}

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

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

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

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

main {
  margin-bottom: 138px;
}

footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 999;
}

.unset--fixed {
  position: unset !important;
  left: unset !important;
  transform: unset !important;
}

@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: 769px;
  }
}

.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(97% / 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;
}

/*header*/
.header_logo a:hover {
  opacity: 1;
}
.header_logo a:hover img {
  opacity: 1;
}
.header {
  width: 100%;
  background-color: #000;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}
.header__inner {
  position: relative;
  z-index: 100;
  display: table;
  margin: auto;
  padding: 8px 0 7px;
  max-width: 1300px;
  width: 100%;
}
.header__logo {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  line-height: 1;
}
.header__logo a {
  display: inline-block;
}
.header__logo img {
  margin: 5px 0;
  width: 200px;
}

@media all and (min-width: 769px) {
  .header__logo {
    text-align: center;
  }
  .header__logo img {
    width: 500px;
    margin: 10px 0;
  }
}
/*component =====================================
サイト内で何度も使いまわしたいもの(btnや各ブロックのタイトルなど)
=================================================*/
.btn--img:hover,
a.btn--img:hover{
  opacity: 0.6;
  transition: 0.3s;
}

/*ボタン 共通デフォルト 黄色ボタン テキスト黒*/
.button {
  position: relative;
  text-align: center;
  margin: 0 auto !important;
}
.button a {
  display: block;
  height: 40px;
  border: 2px #fff solid;
  border-radius: 10px;
  background-image: linear-gradient(to bottom, #f7b300, #efd504, #f7b300);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 4.5vw;
  line-height: 36px;
  transition: 0.5s;
  transform: rotate(0.05deg);
  letter-spacing: 0rem;
  padding: 0 10px;
  margin: 5px 0;
  filter: drop-shadow(3px 5px 0px rgba(0, 0, 0, 0.5));
}
.button a:hover {
  -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  transition: 0.4s;
  margin: 10px auto 0px;
}
.button a::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 2%;
  z-index: 100;
  width: 16px;
  height: 16px;
  background: url(../images/ico_arrow--bk@2x.png) no-repeat;
  background-size: 100% 100%;
}
@media screen and (min-width: 500px) {
  .button {
    cursor: pointer;
  }
  .button a {
    height: 60px;
    border: 4px #fff solid;
    border-radius: 20px;
    font-size: 22px;
    line-height: 50px;
    right: 5%;
  }
  .button a::after {
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
  }
}
/*ボタン 黒ボタン テキスト白*/
.button2 a {
  height: 30px;
  border: none;
  border-radius: 30px !important;
  background-image: linear-gradient(to bottom, #f6a900, #fdee00, #f6a900);
  color: #000 !important;
  font-size: 10px;
  line-height: 28px;
  -webkit-filter: none !important;
  filter: none !important;
  transition: 0.5s;
  transform: rotate(0.05deg);
  letter-spacing: 0rem;
  padding: 0 10px;
  margin: 5px auto 5px ;
}
.button2 a::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right:5%;
  z-index: 100;
  width: 10px;
  height: 10px;
  background: url("../images/ico_arrow--bk@2x.png") no-repeat;
  background-size: 100% 100%;
}

@media screen and (min-width: 769px) {
  .button2 a {
    height: 40px;
    border-radius: 20px;
    font-size: 18px;
    line-height: 36px;
  }
  .button2 a::after {
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
  }
}

/*ボタン 緑ボタン テキスト白*/
.button3 a {
  color: #fff !important;
  background-image: linear-gradient(to bottom, #30753e, #87b61d, #30753e);
}
.button3 a::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 2%;
  z-index: 100;
  width: 16px;
  height: 16px;
  background: url(../images/ico_arrow@2x.png) no-repeat;
  background-size: 100% 100%;
}
@media screen and (min-width: 769px) {
  .button3 a::after {
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
  }
}

/*project  ======================================
各ブロックごとのスタイルを指定
=================================================*/
.wrap{
  background-image: url("../images/bg.png");
  background-size: 100% auto;
  background-repeat: repeat;
}

.mainvisual_title {
  width: 60%;
  left: 20%;
  top: 4%;
}

.kurumakobetu {
  width: 92%;
  margin:0 auto;
}

.secret_btn {
    width: 87%;
    left: -3%;
    right: 0;
    margin: 0 auto;
    bottom: 5%;
}




@media screen and (min-width: 769px) {
  .fixed_icon {
    width: 70%;
    margin: auto;
  }
}

.fixed_icon_wrap {
  position: sticky;
  width: 100%;
  max-width: 100%;
  bottom: 0;
  left: 0;
  z-index: 8;
  background: rgba(0, 0, 0, .7);
}
.fixed_icon_inner div:hover {
  opacity: 0.7;
}

/*animation =====================================
画像遅延表示など動きの設定
=================================================*/
/*loading*/
.loader-wrap {
  position: fixed;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
  background: #FFF;
}
.loader, .loader:after {
  width: 5em;
  height: 5em;
  border-radius: 50%;
}
.loader {
  position: relative;
  margin: 60px auto;
  border-top: 0.8em solid rgba(230, 230, 230, 0.2);
  border-right: 0.8em solid rgba(230, 230, 230, 0.2);
  border-bottom: 0.8em solid rgba(230, 230, 230, 0.2);
  border-left: 0.8em solid #ddd;
  text-indent: -9999em;
  font-size: 10px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loader 1.1s infinite linear;
  animation: loader 1.1s infinite linear;
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media all and (min-width: 769px) {
  .loader, .loader:after {
    width: 10em;
    height: 10em;
    border-radius: 50%;
  }
  .loader {
    margin: 60px auto;
    border-top: 1.1em solid rgba(230, 230, 230, 0.2);
    border-right: 1.1em solid rgba(230, 230, 230, 0.2);
    border-bottom: 1.1em solid rgba(230, 230, 230, 0.2);
    border-left: 1.1em solid #ddd;
    font-size: 10px;
  }
}
/*TOP*/
#page_top {
  position: fixed;
  right: 5px;
  bottom: 20vw;
  z-index: 100;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #888888;
  opacity: 0.8;
  text-align: center;
  font-weight: bold;
}

#page_top a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  text-decoration: none;
  color: #FFF;
  padding: 25px 0px 0 3px;
  font-size: 10px;
}

#page_top a::before {
  position: absolute;
  top: -33px;
  right: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 35px;
  height: 35px;
  color: #fff;
  content: '\f106';
  text-align: center;
  font-weight: 600;
  font-size: 35px;
  font-family: 'Font Awesome 5 Free';
}

@media all and (min-width:376px) {

  #page_top {
    bottom: 26vw;
  }
  
  }

  @media all and (min-width:490px) {

    #page_top {
      bottom: 16vw;
    }
    
    }

@media all and (min-width:700px) {

  #page_top {
    bottom: 90px;
  }
  
  }


@media all and (min-width:1000px) {

  .page_top_wrap{
    position:fixed;
    width: 1000px;
    bottom: 14px;
    margin: auto;
    text-align: right;
    z-index: 1001;
  }

  #page_top {
    position: fixed;
    right: 10px;
    bottom: 100px;
    left: auto;
    z-index: 1001;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #888888;

    text-align: center;
    font-weight: bold;
    margin-left: auto;
    margin-right: 0;
  }
  
  #page_top a {
    position: relative;
    display: block;
    width: 55px;
    height: 55px;
    text-decoration: none;
    color: #FFF;
    padding: 27px 0px 0 4px;
    font-size: 14px;
  }
  
  #page_top a::before {
    position: absolute;
    top: -38px;
    right: -3px;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    color: #fff;
    content: '\f106';
    text-align: center;
    font-weight: 600;
    font-size: 43px;
    font-family: 'Font Awesome 5 Free';
  }  
  }

/*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%, -2%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@keyframes fadein--show {
  0% {
    opacity: 0;
    transform: translate(0%, -2%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

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

.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--red--highlights {
  background: #e60012;
}

.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: #930e14;
}

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

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

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

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

.border--top--bold8 {
  border-top: 8px 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.1));
}

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

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