@charset "UTF-8";

html {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 500px;
  min-width: 370px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5;
}

/*================== 角丸 ==================*/
/* md */
.rounded-md	{
  border-radius: 0.375rem;
}

/* lg */
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-t-lg	{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

/* xl */
.rounded-xl {
  border-radius: 0.75rem;
}

/* full */
.rounded-full	{
  border-radius: 9999px;
}
/*=========================================*/


/*================ shadow ================*/
/* 左右移動 上下移動 ぼかし具合 影の大きさ 色 */

/* lg */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
/*========================================*/


/*================ border ================*/
/* style */
.border-dashed {
  border-style: dashed;
}

/* その他 */
.border-solid-xs {
  border-style: solid;
  border-width: 1px;
}
.border-solid-sm {
  border-style: solid;
  border-width: 2px;
}
.border-dashed-xs {
  border-style: dashed;
  border-width: 1px;
}
.border-t-2 {
  border-top-width: 2px;
}
/*========================================*/

/*================ その他 ================*/
/* 左右中央揃え */
.is-horizontal-center {
  display: flex;
  justify-content: center;
}

/* 上下中央揃え */
.is-vertical-center {
  display: flex;
  align-items: center;
}

/* 上下左右中央揃え */
.is-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 文字の中央揃え */
.text-center {
  text-align: center;
}

/* 文字の右揃え */
.text-right {
  text-align: right;
}

/* 文字の左揃え */
.text-left {
  text-align: left;
}

/* 幅 100% */
.w-full {
  width: 100%;
}

/* 透過度 */
.opacity-60 {
  opacity: 0.6;
}

/* display */
.relative {
  position: relative;
}
.hidden {
  display: none !important; /* 動作確認用 */
}

/* disabled */
.disabled {
  pointer-events: none;
  opacity: 0.5;
}
/*========================================*/