@font-face {
  font-family: "mini-wakuwaku";
  src: url("../fonts/mini-wakuwaku/mini-wakuwaku.otf") format("opentype");
}
:root {
  --scrollbar: 0rem;
  --c_white: #fff;
  --c_primary: #009242;
  --c_primary_pale: #8acaa6;
  --c_primary_opacity: rgba(0, 146, 66, 0.5);
  --c_accent: #3E2300;
  --c_pink: #EE7397;
  --c_txt: #000;
  --c_placeholder: #aaa;
  --bg_base: #F5F5F1;
  --bg_base_dark: #EFEFE8;
  --bdr_gray: #2D2D2D;
  --bdr_gray_pale: #B0B0B0;
  --f_notoSans: Noto Sans JP, sans-serif;
  --f_notoSerif: Noto Serif JP, serif;
  --f_libreFranklin: Libre Franklin, sans-serif;
  --f_miniWakuwaku: mini-wakuwaku;
  --c_theme_primary: #F67000;
  --c_theme_txt: #763C00;
  --bg_theme_primary: #FFE421;
}

* {
  max-width: 100%;
  height: auto;
  font-family: var(--f_notoSans);
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  word-break: break-all;
  color: var(--c_txt);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before, *::after {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  color: inherit;
  box-sizing: border-box;
}
* > a, * > span, * > label, * > mark, * > em, * > strong, * > var, * > sup, * > ruby, * > rp, * > rt {
  font-family: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  text-align: inherit;
  color: inherit;
}
*:focus {
  outline: auto;
  outline-color: var(--c_txt);
}

html, body {
  scrollbar-gutter: stable;
}

html {
  font-size: 62.5%;
}
@media all and (min-width: 1920px) {
  html {
    font-size: 0.520832vw;
  }
}
@media all and (max-width: 1500px) {
  html {
    font-size: 0.666666vw;
  }
}
@media all and (max-width: 1023px) {
  html {
    font-size: 62.5%;
  }
}
@media all and (max-width: 374px) {
  html {
    font-size: 2.6vw;
  }
}

body {
  font-size: 1.6rem;
  position: relative;
}
@media all and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
  }
}

p {
  text-align: justify;
}

li {
  list-style-type: none;
}

img {
  width: auto;
  border: none;
  display: block;
}

a {
  text-decoration: none;
  display: block;
  outline: none;
}
.cfix:after {
  content: "";
  display: block;
  clear: both;
}

.hidden {
  overflow-y: hidden !important;
}

var {
  font-size: 1em;
}
var sup {
  font-size: 0.75em;
}

picture {
  display: block;
}

/* base style**************************************************************************************/
.bdr-sep-block {
  margin-top: 7rem;
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
}
@media all and (max-width: 1023px) {
  .bdr-sep-block {
    margin-top: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.bdr-sep-block:first-child {
  margin-top: auto;
}
.bdr-sep-block::before, .bdr-sep-block::after {
  content: "";
  width: 100%;
  border-top: 0.2rem solid;
  position: absolute;
  top: 0;
}
.bdr-sep-block::before {
  max-width: 16.4rem;
  border-top-color: var(--c_theme_primary);
  left: 0;
}
@media all and (max-width: 1023px) {
  .bdr-sep-block::before {
    max-width: 8rem;
  }
}
.bdr-sep-block::after {
  max-width: calc(100% - 16.4rem);
  border-top-color: var(--bdr_gray_pale);
  right: 0;
}
@media all and (max-width: 1023px) {
  .bdr-sep-block::after {
    max-width: calc(100% - 8rem);
  }
}

.flex-sep-block {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1em 0;
  margin-top: 4rem;
}
@media all and (max-width: 1023px) {
  .flex-sep-block {
    flex-flow: column;
  }
}
.flex-sep-block:first-child {
  margin-top: auto;
}
.flex-sep-block .col-ttl-area {
  width: 100%;
  max-width: 16.4rem;
  flex: none;
}
@media all and (max-width: 1023px) {
  .flex-sep-block .col-ttl-area {
    max-width: 100%;
  }
}
.flex-sep-block .col-content-area {
  width: 100%;
}

.line-block-wrap + .line-block-wrap {
  padding-top: 4rem;
  margin-top: 4rem;
  position: relative;
}
.line-block-wrap + .line-block-wrap::before {
  content: "";
  width: 100%;
  border-top: 0.1rem solid var(--bdr_gray_pale);
  position: absolute;
  top: 0;
  left: 0;
}

.daily-flow-wrap {
  display: flex;
  flex-flow: column;
  justify-content: stretch;
  align-items: stretch;
  gap: 0.5em;
}
@media all and (max-width: 1023px) {
  .daily-flow-wrap {
    gap: 1em;
  }
}
.daily-flow-wrap .daily-flow-item {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0 5rem;
}
@media all and (max-width: 1023px) {
  .daily-flow-wrap .daily-flow-item {
    flex-flow: column;
  }
}
.daily-flow-wrap .daily-flow-item + .daily-flow-item .detail {
  position: relative;
}
.daily-flow-wrap .daily-flow-item + .daily-flow-item .detail::before {
  content: "";
  width: 100%;
  border-top: 0.1rem solid var(--bdr_gray_pale);
  position: absolute;
  top: -0.25em;
  left: 0;
  display: block;
}
@media all and (max-width: 1023px) {
  .daily-flow-wrap .daily-flow-item + .daily-flow-item .detail::before {
    content: none;
  }
}
.daily-flow-wrap .daily-flow-item .item {
  width: 100%;
  max-width: 21rem;
  min-height: 6.4rem;
  background: var(--c_theme_primary);
  border-radius: 100vw 0 0 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  padding: 1em;
}
@media all and (max-width: 1023px) {
  .daily-flow-wrap .daily-flow-item .item {
    min-height: auto;
  }
}
.daily-flow-wrap .daily-flow-item .item p {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c_white);
}
@media all and (max-width: 1023px) {
  .daily-flow-wrap .daily-flow-item .item p {
    font-size: 1.6rem;
  }
}
.daily-flow-wrap .daily-flow-item .detail {
  width: 100%;
  min-height: 6.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5em 0;
}
@media all and (max-width: 1023px) {
  .daily-flow-wrap .daily-flow-item .detail {
    border-bottom: 0.1rem solid var(--bdr_gray_pale);
    padding: 0.5em 0 0.5em 1em;
  }
}
.daily-flow-wrap .daily-flow-item .detail p {
  font-size: 1.7rem;
  font-weight: 500;
}
@media all and (max-width: 1023px) {
  .daily-flow-wrap .daily-flow-item .detail p {
    font-size: 1.6rem;
  }
}
.daily-flow-wrap .daily-flow-item .detail p .sml {
  font-size: 1.4rem;
}
@media all and (max-width: 1023px) {
  .daily-flow-wrap .daily-flow-item .detail p .sml {
    font-size: 1.3rem;
  }
}

.radius-flow-wrap {
  display: flex;
  flex-flow: column;
  justify-content: stretch;
  align-items: stretch;
  gap: 1em;
}
.radius-flow-wrap .radius-flow-item {
  background: var(--bg_theme_primary);
  border-radius: 100vw;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1em 0;
}
.radius-flow-wrap .radius-flow-item .item {
  width: 100%;
  max-width: 15rem;
  min-height: 15rem;
  border-radius: 100vw 0 0 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  padding: 2em 1.5em;
}
@media all and (max-width: 1023px) {
  .radius-flow-wrap .radius-flow-item .item {
    max-width: 8rem;
    min-height: 8rem;
    padding: 1em;
  }
}
.radius-flow-wrap .radius-flow-item .item p {
  width: 7rem;
  height: 7rem;
  font-family: var(--f_miniWakuwaku);
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c_theme_primary);
  background: var(--c_white);
  border-radius: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  flex: none;
}
@media all and (max-width: 1023px) {
  .radius-flow-wrap .radius-flow-item .item p {
    width: 5rem;
    height: 5rem;
    font-size: 2.5rem;
  }
}
.radius-flow-wrap .radius-flow-item .detail {
  width: 100%;
  min-height: 6.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1lh 3.5em 1lh 0;
}
.radius-flow-wrap .radius-flow-item .detail p {
  font-size: 2.1rem;
  font-weight: 700;
}
@media all and (max-width: 1023px) {
  .radius-flow-wrap .radius-flow-item .detail p {
    font-size: 1.6rem;
  }
}
.radius-flow-wrap .radius-flow-item .detail p .sml {
  font-size: 1.6rem;
  font-weight: 400;
}
@media all and (max-width: 1023px) {
  .radius-flow-wrap .radius-flow-item .detail p .sml {
    font-size: 1.3rem;
  }
}

.ttl-simple {
  font-size: 2.8rem;
  font-weight: 700;
}
@media all and (max-width: 1023px) {
  .ttl-simple {
    font-size: 2rem;
  }
}

.ttl-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ttl-img img {
  width: 100%;
  max-width: 53rem;
  margin: auto;
}

.txt-center {
  text-align: center;
}

.writing-mode-v-rl {
  writing-mode: vertical-rl;
}
@media all and (max-width: 1023px) {
  .writing-mode-v-rl {
    writing-mode: unset;
  }
}

.table-wrap .table-def {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
}
@media all and (max-width: 1023px) {
  .table-wrap .table-def {
    display: block;
  }
}
@media all and (max-width: 1023px) {
  .table-wrap .table-def tbody {
    display: block;
  }
}
@media all and (max-width: 1023px) {
  .table-wrap .table-def tbody tr {
    display: block;
  }
}
.table-wrap .table-def tbody tr:first-child th, .table-wrap .table-def tbody tr:first-child td {
  border-top: 0.1rem solid var(--bdr_gray_pale);
}
@media all and (max-width: 1023px) {
  .table-wrap .table-def tbody tr:first-child td {
    border-top: none;
  }
}
.table-wrap .table-def tbody tr th, .table-wrap .table-def tbody tr td {
  border-bottom: 0.1rem solid var(--bdr_gray_pale);
  padding: 3rem 4.5rem;
}
@media all and (max-width: 1023px) {
  .table-wrap .table-def tbody tr th, .table-wrap .table-def tbody tr td {
    display: block;
  }
}
@media all and (max-width: 1023px) {
  .table-wrap .table-def tbody tr th {
    padding: 1em;
    border-bottom: none;
  }
}
.table-wrap .table-def tbody tr th p {
  width: 100%;
  min-width: -moz-max-content;
  min-width: max-content;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-justify: inter-ideograph;
  max-width: 100%;
  margin: auto;
}
@media all and (max-width: 1023px) {
  .table-wrap .table-def tbody tr th p {
    min-width: auto;
    -moz-text-align-last: left;
         text-align-last: left;
    text-justify: auto;
  }
}
.table-wrap .table-def tbody tr td {
  width: 100%;
}
@media all and (max-width: 1023px) {
  .table-wrap .table-def tbody tr td {
    padding: 0 1em 1em 2em;
  }
}

@media all and (max-width: 1023px) {
  .sp-hide {
    display: none;
  }
}

@media all and (min-width: 1024px) {
  .pc-hide {
    display: none;
  }
}
/*# sourceMappingURL=maps/common.css.map */
