@charset "UTF-8";
/* Sass Document */
/*!
Theme Name:社会福祉法人優心会　法人ページ
Description: 法人ページ
Author: masaichi
*/
/*1: ress.css*/
/* A (more) Modern CSS Reset
 2023-10
 */
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* デフォルトのマージンを削除、作成するCSSの制御を改善するため
*p,dl,ddの記述を削除*/
h1,
h2,
h3,
h4,
figure,
blockquote {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します*/
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* bodyのデフォルトを設定 */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* 見出しのテキスト折り返しをbalanceに設定（複数行の文字数を同じにする）
h1,
h2,
h3,
h4 {
	text-wrap: balance;
}
*/
/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* 画像の扱い */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
  min-height: 10em;
}

/* アンカーされている要素には余分なスクロールマージンが必要 */
:target {
  scroll-margin-block: 5ex;
}

/*2: 独自設定 */
a {
  word-wrap: break-word;
}

.innerwrap > :not(.mainblock) a:not([class]) {
  color: currentColor;
  text-decoration: none;
}

.innerwrap > :not(.mainblock) ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

body {
  font-size: clamp(16px, 1.8vw, 18px);
  margin: 0;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

h1 {
  font-size: clamp(24px, 3.6vw, 36px);
  /* 24px~36pxで可変*/
}

h2 {
  font-size: clamp(20px, 2.4vw, 24px);
  /* 20px~24pxで可変*/
}

pre {
  white-space: break-spaces;
}

.pagination ul {
  display: flex;
  font-size: clamp(18px, 2.4vw, 24px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 0;
  margin: 0 auto;
}
.pagination a,
.pagination span {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .next,
.pagination .prev {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination li {
  margin: 1rem;
  list-style-type: none;
}

.input,
textarea {
  border: 1px solid #ccc;
}
/*# sourceMappingURL=style.css.map */