@charset "UTF-8";

/* safari用のvw調整用 */
_::-webkit-full-page-media,
_:future,
:root,
body {
  -webkit-animation: safariFix 1s forwards infinite;
}

@-webkit-keyframes safariFix {
  100% {
    z-index: 1;
  }
}

html,
body {
  width: 100%;
  height: 100%;
}

/* support iOS 高さいっぱいに表示 */
html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  word-break: auto-phrase;
  /* <wbr>タグ、またはゼロ幅スペース（&ZeroWidthSpace;）で改行可能なポイント設定します。また、ゼロ幅ジョイナー（&zwj;）は改行を防ぎます。 */
}

a {
  color: var(--font-color);
  word-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

.fl,
.fix_fl {
  float: left;
}

.fr,
.fix_fr {
  float: right;
}

.fixed {
  position: fixed;
  top: 0;
  padding: 0;
  width: 100%;
}

.relative {
  position: relative;
}

.relative * {
  z-index: 1;
}

.absolute {
  position: absolute;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.taj {
  text-align: justify;
}

.vertical_text {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.text-combine {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}

.p0 {
  padding: 0;
}

.m0 {
  margin: 0;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.flex.flex_height {
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  align-items: stretch;
}

.flex.flex_height>* {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.flex.flex_height>*>* {
  flex: 1 0 auto;
}

.flex.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.flex.nowrap {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.flex.end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex.around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex.v-start {
  -webkit-box-align: start;
  align-items: flex-start;
}

.flex.v-end {
  -webkit-box-align: end;
  align-items: flex-end;
}

.flex.v-center {
  -webkit-box-align: center;
  align-items: center;
}

.flex.v-baseline {
  -webkit-box-align: baseline;
  align-items: baseline;
}

.flex.v-stretch {
  -webkit-box-align: stretch;
  align-items: stretch;
}

.flex.i-start {
  align-content: flex-start;
}

.flex.i-end {
  align-content: flex-end;
}

.flex.i-center {
  align-content: center;
}

.flex.i-between {
  align-content: space-between;
}

.flex.i-around {
  align-content: space-around;
}

.grid {
  display: grid;
  height: 100%;
}

.grid.columns_auto {
  grid-template-columns: repeat(auto, 1fr);
}

.grid.columns1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid.columns2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.columns3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.columns4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid.columns5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid.columns6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid.columns7 {
  grid-template-columns: repeat(7, 1fr);
}

.grid.columns8 {
  grid-template-columns: repeat(8, 1fr);
}

.grid.columns9 {
  grid-template-columns: repeat(9, 1fr);
}

.grid.columns10 {
  grid-template-columns: repeat(10, 1fr);
}

.grid.rows_auto {
  grid-template-rows: repeat(auto, 1fr);
}

.grid.rows1 {
  grid-template-rows: repeat(1, 1fr);
}

.grid.rows2 {
  grid-template-rows: repeat(2, 1fr);
}

.grid.rows3 {
  grid-template-rows: repeat(3, 1fr);
}

.grid.rows4 {
  grid-template-rows: repeat(4, 1fr);
}

.grid.rows5 {
  grid-template-rows: repeat(5, 1fr);
}

.grid.rows6 {
  grid-template-rows: repeat(6, 1fr);
}

.grid.rows7 {
  grid-template-rows: repeat(7, 1fr);
}

.grid.rows8 {
  grid-template-rows: repeat(8, 1fr);
}

.grid.rows9 {
  grid-template-rows: repeat(9, 1fr);
}

.grid.rows10 {
  grid-template-rows: repeat(10, 1fr);
}

.grid.grid_padding1 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
}

.grid.grid_padding2 {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
}

.grid.grid_padding3 {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
}

.grid.grid_padding4 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.grid.grid_padding5 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.grid.grid_padding6 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
}

.grid.grid_padding7 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
}

.grid.grid_padding8 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.grid.grid_padding9 {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
}

.grid.grid_padding10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.grid.grid_padding1em {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.grid.grid_padding2em {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.grid.grid_padding3em {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
}

.grid.grid_padding4em {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
}

.grid.grid_padding5em {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
}

.grid.grid_padding6em {
  grid-column-gap: 6em;
  grid-row-gap: 6em;
}

.grid.grid_padding7em {
  grid-column-gap: 7em;
  grid-row-gap: 7em;
}

.grid.grid_padding8em {
  grid-column-gap: 8em;
  grid-row-gap: 8em;
}

.grid.grid_padding9em {
  grid-column-gap: 9em;
  grid-row-gap: 9em;
}

.grid.grid_padding10em {
  grid-column-gap: 10em;
  grid-row-gap: 10em;
}

/* .clearfix {margin: 0;} */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.hidden {
  display: none;
}

.cb {
  clear: both;
}

.oh {
  overflow: hidden;
}

.nobr {
  display: inline-block;
}

.core {
  width: 100%;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

.half_core {
  width: 100%;
  top: 50%;
  left: 0%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  margin: 0;
  padding: 0;
}

header {
  position: relative;
  z-index: 10;
}

button {
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0px solid;
  background: none;
  cursor: pointer;
}

table {
  width: 100%;
  table-layout: fixed;
  /* border-collapse: separate; */
  /* テーブルにpaddingをかけたいとき */
}

table th {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid;
}

table td {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid;
}

img,
object,
svg {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

img:not([alt]) {
  outline: 5px solid red;
}

video {
  width: 100%;
}

:focus {
  outline: -webkit-focus-ring-color auto 0px;
}

@media screen and (max-width: 768px) {
  .fl {
    float: none;
  }

  .fr {
    float: none;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*---------------------------------------フォント----------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  min-height: 0vw;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
}

.serif {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN W3",
    "Yu Mincho", "MS PMincho", serif;
}

.sanserif {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    sans-serif;
}

input,
textarea {
  color: var(--font-color);
}

textarea {
  form-sizing: content;
}

.bold {
  font-weight: bold;
}

.bold100 {
  font-weight: 100;
}

.bold200 {
  font-weight: 200;
}

.bold300 {
  font-weight: 300;
}

.bold400 {
  font-weight: 400;
}

.bold500 {
  font-weight: 500;
}

.bold600 {
  font-weight: 600;
}

.bold600 {
  font-weight: 600;
}

.bold700 {
  font-weight: 700;
}

.bold800 {
  font-weight: 800;
}

.bold900 {
  font-weight: 900;
}

/*---------------------------------------フォントサイズ----------------------------------------*/
.fs06 {
  font-size: 0.6rem;
}

.fs07 {
  font-size: 0.7rem;
}

.fs08 {
  font-size: 0.8rem;
}

.fs09 {
  font-size: 0.9rem;
}

.fs10 {
  font-size: 1rem;
}

.fs11 {
  font-size: 1.1rem;
}

.fs12 {
  font-size: 1.2rem;
}

.fs13 {
  font-size: 1.3rem;
}

.fs14 {
  font-size: 1.4rem;
}

.fs15 {
  font-size: 1.5rem;
}

.fs16 {
  font-size: 1.6rem;
}

.fs17 {
  font-size: 1.7rem;
}

.fs18 {
  font-size: 1.8rem;
}

.fs19 {
  font-size: 1.9rem;
}

.fs20 {
  font-size: 2rem;
}

.fs21 {
  font-size: 2.1rem;
}

.fs22 {
  font-size: 2.2rem;
}

.fs23 {
  font-size: 2.3rem;
}

.fs24 {
  font-size: 2.4rem;
}

.fs08em {
  font-size: 0.8em;
}

.fs09em {
  font-size: 0.9em;
}

.fs11em {
  font-size: 1.1em;
}

.fs12em {
  font-size: 1.2em;
}

.fs13em {
  font-size: 1.3em;
}

.fs14em {
  font-size: 1.4em;
}

.fs15em {
  font-size: 1.5em;
}

.fs16em {
  font-size: 1.6em;
}

.fs17em {
  font-size: 1.7em;
}

.fs18em {
  font-size: 1.8em;
}

.fs19em {
  font-size: 1.9em;
}

.fs20em {
  font-size: 2em;
}

/*---------------------------------------レイアウト----------------------------------------*/
.mt1 {
  margin-top: calc(16px * 1);
}

.mt2 {
  margin-top: calc(16px * 2);
}

.mt3 {
  margin-top: calc(16px * 3);
}

.mt4 {
  margin-top: calc(16px * 4);
}

.mt5 {
  margin-top: calc(16px * 5);
}

.mt6 {
  margin-top: calc(16px * 6);
}

.mt7 {
  margin-top: calc(16px * 7);
}

.mt8 {
  margin-top: calc(16px * 8);
}

.mt9 {
  margin-top: calc(16px * 9);
}

.mt10 {
  margin-top: calc(16px * 10);
}

.mb1 {
  margin-bottom: calc(16px * 1);
}

.mb2 {
  margin-bottom: calc(16px * 2);
}

.mb3 {
  margin-bottom: calc(16px * 3);
}

.mb4 {
  margin-bottom: calc(16px * 4);
}

.mb5 {
  margin-bottom: calc(16px * 5);
}

.mb6 {
  margin-bottom: calc(16px * 6);
}

.mb7 {
  margin-bottom: calc(16px * 7);
}

.mb8 {
  margin-bottom: calc(16px * 8);
}

.mb9 {
  margin-bottom: calc(16px * 9);
}

.mb10 {
  margin-bottom: calc(16px * 10);
}

.mt1p {
  margin-top: 1%;
}

.mt2p {
  margin-top: 2%;
}

.mt3p {
  margin-top: 3%;
}

.mt4p {
  margin-top: 4%;
}

.mt5p {
  margin-top: 5%;
}

.mt6p {
  margin-top: 6%;
}

.mt7p {
  margin-top: 7%;
}

.mt8p {
  margin-top: 8%;
}

.mt9p {
  margin-top: 9%;
}

.mt10p {
  margin-top: 10%;
}

.mb1p {
  margin-bottom: 1%;
}

.mb2p {
  margin-bottom: 2%;
}

.mb3p {
  margin-bottom: 3%;
}

.mb4p {
  margin-bottom: 4%;
}

.mb5p {
  margin-bottom: 5%;
}

.mb6p {
  margin-bottom: 6%;
}

.mb7p {
  margin-bottom: 7%;
}

.mb8p {
  margin-bottom: 8%;
}

.mb9p {
  margin-bottom: 9%;
}

.mb10p {
  margin-bottom: 10%;
}

/*---------------------------------------z-index----------------------------------------*/
.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

.z5 {
  z-index: 5;
}

.z6 {
  z-index: 6;
}

.z7 {
  z-index: 7;
}

.z8 {
  z-index: 8;
}

.z9 {
  z-index: 9;
}

.z10 {
  z-index: 10;
}

.z20 {
  z-index: 20;
}

.z30 {
  z-index: 30;
}

.z40 {
  z-index: 40;
}

.z50 {
  z-index: 50;
}

.z60 {
  z-index: 60;
}

.z70 {
  z-index: 70;
}

.z80 {
  z-index: 80;
}

.z90 {
  z-index: 90;
}

.z100 {
  z-index: 100;
}

/*---------------------------------------Wordpress----------------------------------------*/
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  display: block;
  margin: 0 0 0 auto;
}

.alignleft {
  display: block;
  margin: 0 auto 0 0;
}