@charset "UTF-8";

/*************CSSの初期設定*************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow: auto;
}

.initial {
  -webkit-transform: unset !important;
  transform: unset !important;
  -webkit-transition: none !important;
  transition: none !important;
}

a {
  display: block;
  color: inherit;
  text-decoration: unset;
  width: 100%;
  height: 100%;
}

p,
ul,
li,
h1,
h2,
h3,
h4 {
  margin: 0;
}

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

li {
  text-align: left;
  list-style: none;
}

dl,
dt,
dd {
  margin: 0;
}

button {
  padding: 0;
  margin: 0;
  border: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

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

/*画像をオリジナルサイズで*/
img.original {
  width: inherit;
}

video {
  width: 100%;
  height: auto;
}

/*ローディング有はbodyに.show初期なし、ローディング無は.show初期あり*/

/*リストのパターン集*/
ul.list {
  list-style: disc;
  padding-left: 1em;
}

ul.num {
  list-style: decimal;
  padding-left: 1em;
}

.bold {
  font-weight: bold;
}

/*************よく使うもの*************/
/*レイアウト関係*/
.wrapper {
  position: relative;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
}

.alignEqual {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
}

/*absoluteで真ん中に止めるやつ*/
.myAbcen {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

/*タップさせない*/
.myNoSelect {
  user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
  -moz-user-select: none !important;
  -khtml-user-select: none !important;
  -webkit-user-drag: none !important;
  -khtml-user-drag: none !important;
  pointer-events: none !important;
}

/*************パーツ類*************/
.header,
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 350;
}

/*ポップアップメニュー*/
.my-global-nav {
  text-align: center;
  position: fixed;
  z-index: 300;
  min-height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  opacity: 0;
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100vh;
  overflow-y: scroll;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.my-global-nav.show,
.my-global-nav.true {
  display: inherit;
  opacity: 1;
}

/*フォーム関連*/
label,
input {
  display: block;
  width: 100%;
}

label,
input,
textarea {
  display: block;
  width: 100%;
}

label {
  font-weight: bold;
  margin: 0 0 10px;
}

textarea {
  height: 15em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  border: 1px solid #007E66;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  background: none;
  font-weight: inherit;
  margin: 0 0 20px;
  padding: 1em;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  display: inline-block;
  width: 10px;
}

label {
  font-weight: bold;
  margin: 0 15px 10px 0px;
  display: inline-block;
  width: auto;
}

/*レスポンシブの表示非表示*/
.pc {
  display: none !important;
}

@media screen and (min-width: 1366px) {
  .pc {
    display: inherit !important;
  }
}

.tb {
  display: none;
}

@media screen and (min-width: 768px) {
  .tb {
    display: inherit !important;
  }
}

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

.tbpc {
  display: none !important;
}

@media screen and (min-width: 1024px) {
  .tbpc {
    display: inherit !important;
  }
}

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

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

/*# sourceMappingURL=my.css.map */