@charset "UTF-8";

/* ====================================
	共通スタイル
 ==================================== */
/* ====================================
	ホバーが有効な環境のみ
===================================== */
@media (hover:hover) and (pointer: fine) {}

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media screen and (width < 768px) {
  .flex-container {
    row-gap: 1rem;
  }

  section[id^="sub"] .flex-item:has(img) {
    padding: 0 20px 0 50px;
  }
}

/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print, screen and (width >=768px) {
  section[id^="sub"] .flex-item:has(img) {
    inline-size: 30%;
    margin-left: 5rem;
  }

  section[id^="sub"] .flex-item:has(.text) {
    flex: 1 0;
  }
}

/* ====================================
	タブレット専用スタイル（768px～1080px）
===================================== */
@media screen and (768px <=width < 1080px) {}
