@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

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

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

::selection {
  background-color: #FFEF27;
  color: #333;
}

html * {
  font-feature-settings: "palt";
  line-break: strict;
}

html,
body {
  position: relative;
  width: 100%;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
}

body {
  font-size: 1.8rem;
  line-height: 1.6875;
}

:where(body, button, input, textarea, select) {
  color: #333333;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

a {
  color: #09568D;
}
a:hover {
  text-decoration: none;
}

small {
  font-size: 85%;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 25px;
}

.mb35 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 30px;
}

.mb45 {
  margin-bottom: 35px;
}

.mb50 {
  margin-bottom: 30px;
}

.mb55 {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 30px;
}

.mb65 {
  margin-bottom: 30px;
}

.mb70 {
  margin-bottom: 35px;
}

.mb75 {
  margin-bottom: 35px;
}

.mb80 {
  margin-bottom: 40px;
}

.mb85 {
  margin-bottom: 40px;
}

.mb90 {
  margin-bottom: 45px;
}

.mb95 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 50px;
}

.mb110 {
  margin-bottom: 55px;
}

.mb120 {
  margin-bottom: 60px;
}

.mb125 {
  margin-bottom: 65px;
}

.mb130 {
  margin-bottom: 60px;
}

.mb140 {
  margin-bottom: 60px;
}

.mb150 {
  margin-bottom: 60px;
}

.mb160 {
  margin-bottom: 70px;
}

.mb170 {
  margin-bottom: 70px;
}

.mb180 {
  margin-bottom: 70px;
}

.mb190 {
  margin-bottom: 70px;
}

.mb200 {
  margin-bottom: 70px;
}

.centerBox {
  max-width: 1082px;
  margin-inline: auto;
  padding-inline: 25px;
}

.pcBr {
  display: none;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #fff;
}

html::-webkit-scrollbar-thumb {
  background-color: #326C5C;
}
.header {
  background-image: url(../images/bg-hero.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 380px;
  min-height: 240px;
  height: 30vh;
  padding: 10px 0 50px;
  position: relative;
  z-index: 0;
}
.header:after {
  content: "";
  display: block;
  background-image: url(../images/deco-wave.png);
  background-position: center top;
  background-size: auto 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 50px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.headerImg {
  position: relative;
  z-index: 2;
}

.contentsOuter {
  overflow: hidden;
}

.c-maxContainer {
  max-width: 1140px;
  width: 95%;
  margin-inline: auto;
  padding-inline: 8px;
}

.c-middleContainer {
  max-width: 940px;
  width: 95%;
  margin-inline: auto;
  padding-inline: 8px;
}

.c-maxImg {
  width: 100%;
  height: auto;
}

.c-screenReaderText {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}

.c-note {
  display: block;
  text-indent: -1.25em;
  padding-left: 1.25em;
}
.c-note::before {
  content: "※ ";
}

.c-textCenter {
  text-align: center;
}

.c-textLeft {
  text-align: left;
}

.c-textRight {
  text-align: right;
}

.c-textFlexCenter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.c-largeText {
  font-size: 2rem;
  line-height: 1.4;
}

.c-largeText02 {
  font-size: 2.4rem;
  line-height: 1.4;
}

.c-green {
  color: #5A9466;
}

.c-bgGray {
  background-color: #F4F4F4;
}

.c-fontBold {
  font-weight: bold;
}

.c-fontNormal {
  font-weight: normal;
}

.c-pageButton {
  border: none;
  background-color: transparent;
  background-color: #326C5C;
  border-radius: 10px;
  border: 2px solid #326C5C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: fit-content;
  margin-inline: auto;
  padding: 0.5em 1.25em;
  transition: background 0.3s, color 0.3s;
}
.c-pageButton:hover {
  background-color: #fff;
  color: #326C5C;
}

.c-dataBox {
  gap: 15px;
}

.c-dataButton {
  color: inherit;
  display: flex;
  align-items: start;
  gap: 0 8px;
  line-height: 1.4;
  position: relative;
  width: fit-content;
  transition: color 0.3s;
}
.c-dataButton[href*=".doc"]:after, .c-dataButton[href*=".docx"]:after, .c-dataButton[href*=".xls"]:after, .c-dataButton[href*=".xlsx"]:after, .c-dataButton[href*=".pdf"]:after, .c-dataButton[href*=".rtf"]:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
  width: 30px;
  height: 30px;
  min-width: 30px;
}
.c-dataButton[href*=".doc"]:after, .c-dataButton[href*=".docx"]:after {
  background-image: url(../images/icon-word-01.png);
}
.c-dataButton[href*=".xls"]:after, .c-dataButton[href*=".xlsx"]:after {
  background-image: url(../images/icon-excel-01.png);
}
.c-dataButton[href*=".pdf"]:after {
  background-image: url(../images/icon-pdf-01.png);
}
.c-dataButton[href*=".rtf"]:after {
  background-image: url(../images/icon-rtf-01.png);
}
.c-dataButton:hover {
  color: #326C5C;
}

.c-discList {
  display: grid;
  gap: 8px;
  list-style: disc;
  margin-left: 1em;
}
.c-discList ul, .c-discList ol {
  margin-top: 5px;
}
.c-discList.c-dataFlex {
  gap: 10px 2em;
}

.c-squareList {
  display: grid;
  gap: 8px;
}
.c-squareList ul, .c-squareList ol {
  margin-top: 5px;
}
.c-squareList.c-dataFlex {
  gap: 10px 1em;
}

.c-squareListItem {
  padding-left: 1.5em;
  position: relative;
}
.c-squareListItem::before {
  content: "";
  display: block;
  background-color: #333;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 7px;
  left: 0;
}
.c-yellowSquare .c-squareListItem::before {
  background-color: #FFDF63;
}
.c-greenSquare01 .c-squareListItem::before {
  background-color: #95C15A;
}
.c-greenSquare02 .c-squareListItem::before {
  background-color: #5A9466;
}

.c-gridBox {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.c-gridBox.c-grid_sp02 {
  grid-template-columns: repeat(2, 1fr);
}
.c-gridBox.c-grid_sp03 {
  grid-template-columns: repeat(3, 1fr);
}
.c-gridBox.c-grid_sp04 {
  grid-template-columns: repeat(4, 1fr);
}

.c-gridImgBox img {
  margin-inline: auto;
}

.c-wrapGap {
  gap: 50px;
}

.c-largeGap {
  gap: 40px;
}

.c-mediumGap {
  gap: 30px;
}

.c-smallGap {
  gap: 20px;
}

.c-sectionTitle01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}

.c-sectionTitle02 {
  border-bottom: 2px dashed #959595;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 0.75em;
}

.pagetopWrap {
  padding: 30px 0 5px;
  position: relative;
  z-index: 0;
}
.pagetopWrap .c-maxContainer {
  position: relative;
  z-index: 2;
}
.pagetopWrap:before {
  content: "";
  display: block;
  background-image: url(../images/deco-wave.png);
  background-position: center top;
  background-size: auto 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 50px;
  margin: auto;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  z-index: 1;
  transform: scale(1, -1);
}

.pagetop {
  background: none;
  border: none;
  display: block;
  font-weight: bold;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  transition: opacity 0.3s;
}
.pagetop:before {
  content: "";
  display: block;
  background-color: transparent;
  border-top: solid 2px #444;
  border-right: solid 2px #444;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  transform: rotate(-45deg);
}
.pagetop:hover {
  opacity: 0.7;
}

.footerContents {
  background-color: #F3FCE8;
  padding: 80px 0 100px;
}

.footerContact {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
  max-width: 550px;
  width: fit-content;
  margin-inline: auto;
}
.footerContact span:first-child {
  width: 100%;
}

.copyright {
  font-size: 1.5rem;
}

.footerImg {
  margin-inline: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (min-width: 768px){
  body {
    font-size: 2rem;
  }
  .spBr {
    display: none;
  }
  .header {
    max-height: 100%;
    height: 550px;
  }
  .header:after {
    background-size: 100% 100%;
  }
  .c-largeText {
    font-size: 2.4rem;
  }
  .c-largeText02 {
    font-size: 3rem;
  }
  .c-squareListItem::before {
    top: 7px;
  }
  .c-gridBox.c-grid_tb01 {
    grid-template-columns: minmax(0, 1fr);
  }
  .c-gridBox.c-grid_tb02 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-gridBox.c-grid_tb03 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-gridBox.c-grid_tb04 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-gridBox.c-grid_tb05 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-gridBox.c-grid_tb06 {
    grid-template-columns: repeat(6, 1fr);
  }
  .c-gridBox.c-grid_tb01_03 {
    grid-template-columns: 1fr 30%;
  }
  .c-gridBox.c-grid_tb03_01 {
    grid-template-columns: 30% 1fr;
  }
  .c-wrapGap {
    gap: 100px;
  }
  .c-largeGap {
    gap: 60px;
  }
  .c-sectionTitle01 {
    font-size: 3rem;
  }
  .c-sectionTitle02 {
    font-size: 3rem;
  }
  .pagetopWrap:before {
    background-size: 100% 100%;
  }
  .footerContents {
    padding: 120px 0;
  }
}

@media (min-width: 960px){
  .mb30 {
    margin-bottom: 30px;
  }
  .mb35 {
    margin-bottom: 35px;
  }
  .mb40 {
    margin-bottom: 40px;
  }
  .mb45 {
    margin-bottom: 45px;
  }
  .mb50 {
    margin-bottom: 50px;
  }
  .mb55 {
    margin-bottom: 55px;
  }
  .mb60 {
    margin-bottom: 60px;
  }
  .mb65 {
    margin-bottom: 65px;
  }
  .mb70 {
    margin-bottom: 70px;
  }
  .mb75 {
    margin-bottom: 75px;
  }
  .mb80 {
    margin-bottom: 80px;
  }
  .mb85 {
    margin-bottom: 85px;
  }
  .mb90 {
    margin-bottom: 90px;
  }
  .mb95 {
    margin-bottom: 95px;
  }
  .mb100 {
    margin-bottom: 100px;
  }
  .mb110 {
    margin-bottom: 110px;
  }
  .mb120 {
    margin-bottom: 120px;
  }
  .mb125 {
    margin-bottom: 125px;
  }
  .mb130 {
    margin-bottom: 130px;
  }
  .mb140 {
    margin-bottom: 140px;
  }
  .mb150 {
    margin-bottom: 150px;
  }
  .mb160 {
    margin-bottom: 160px;
  }
  .mb170 {
    margin-bottom: 170px;
  }
  .mb180 {
    margin-bottom: 180px;
  }
  .mb190 {
    margin-bottom: 190px;
  }
  .mb200 {
    margin-bottom: 200px;
  }
  .tbBr {
    display: none;
  }
  .pcBr {
    display: inline;
  }
  a[href*="tel:"] {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
  }
  .c-gridBox.c-grid_pc01 {
    grid-template-columns: minmax(0, 1fr);
  }
  .c-gridBox.c-grid_pc02 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-gridBox.c-grid_pc03 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-gridBox.c-grid_pc04 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-gridBox.c-grid_pc05 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-gridBox.c-grid_pc06 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=common.css.map*/