@charset "UTF-8";
/*
@media screen and (max-width: 449px) { スマホ }
@media screen and (max-width: 1366px) and (min-width: 450px) { スマホ以上ノート以下 }
「iPhone 5s 320px」「iPhone 375px」「iPhonePlus 414px」
 320:スマホ
 375:スマホ
 4xx:スマホ
 768:タブレット iPad
1024:タブレット iPad Pro
1366:ノート
1920:デスクトップ
*/
/*
 縦
 5se   568px
 6/7/8 667px
 x     812px
*/

/*
orientation: portrait 縦長
orientation: landscape 横長
*/

/* For PC */
@media screen and (min-width: 1051px) {
  .sp-only { display: none !important; }
}

/* For SmartPhone & Tablet */
@media screen and (max-width: 1050px) {
  .pc-only { display: none !important; }
  :is(.ta-l, .ta-c, .ta-r).sp-ta-l { text-align: left !important; }
  :is(.ta-l, .ta-c, .ta-r).sp-ta-c { text-align: center !important; }
  :is(.ta-l, .ta-c, .ta-r).sp-ta-r { text-align: right !important; }
}

/* For SmartPhone */
@media screen and (max-width: 767px) {
  .pc-only { display: none !important; }
}

/* For Tablet */
@media screen and (max-width: 1050px) and (min-width: 768px) {
}
