@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  outline: none !important;
}
html {
  overflow-y: scroll;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

ol,
ul,
li {
  list-style: none;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}
a {
  color: #000000;
  display: block;
}
a:focus {
  outline: none;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s;
}
a:hover {
  opacity: 0.7;
}

/* フォーム初期化 */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

button {
  transition: all 0.4s;
}
button:hover {
  opacity: 0.6;
}

select::-ms-expand {
  display: none;
}

body * {
  box-sizing: border-box;
}

::placeholder {
  color: #999999;
}

/* 色 */
:root {
  --main_color: #32cd32;
  --white: #ffffff;
  --black: #000000;
  --green: #028502;
  --green2: #e6f8e6;
  --green3: #c1f0c1;
  --green4: #20a020;
  --gray: #737373;
  --dark_gray: #474747;
  --yellow: #f2f200;
  --blue: #2d8cff;
  --tshirt_main_color: #9dd9d3;
  --tshirt_blue: #33ac9e;
}



.on768 {
  display: none;
}
@media screen and (max-width: 768px) {
  .on768 {
    display: block;
  }
  .off768 {
    display: none;
  }
}

/* 表示非表示 */
.on480 {
  display: none;
}
@media screen and (max-width: 480px) {
  .on480 {
    display: block;
  }
  .off480 {
    display: none;
  }
}

.on1024 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .on1024 {
    display: block;
  }
  .off1024 {
    display: none;
  }
}

/* flex */
.flex {
  display: flex;
}

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

.flex_end {
  display: flex;
  justify-content: flex-end;
}

.flex_ctr {
  display: flex;
  justify-content: center;
}

.align_ctr {
  align-items: center;
}

.align_base {
  align-items: baseline;
}
