/* 
1.デバイス共通css
2.767px以下のみ (スマホのみ)
3.768px以上のみ (タブレット含むスマホサイズ以上)
4.1080px以上のみ (PC)
5.320px以下のみ (幅狭スマホ) 
*/

.LanguageSwitch__area {
  max-width: 1400px;
  margin: auto;
}

.Heading__module02 {
  margin-top: 40px;
}

._bg__lightyellow {
  background-color: lightyellow;
}

/* タブレットサイズ（スマホ）未満の指定 */
@media (max-width: 767px) {}


/* タブレット以上の指定 */
@media (min-width: 768px) {}

/* PCコンテンツ幅以下 */
@media (max-width: 999px) {}


/* PCコンテンツ幅以上 */
@media (min-width: 1080px) {}

/* iphone5等小さめのスマホ */
@media (max-width: 320px) {}